View Single Post
  #5 (permalink)  
Old 07-09-2008, 07:27 AM
Eku Eku is offline
Senior Member
 
Join Date: May 2008
Location: Makati, Philippines
Posts: 228
Eku is on a distinguished road
You have a very simple error ^_^

please change this:
Code:
while ( !employeeName.equalsIgnoreCase ("stop") );
to This:
Code:
while ( !employeeName.equalsIgnoreCase ("stop") )
You put a ";". ^_^ Try removing it ^_^

I hope that helps
__________________
Mind only knows what lies near the heart, it alone sees the depth of the soul.
Reply With Quote