View Single Post
  #2 (permalink)  
Old 10-07-2008, 12:24 AM
madatlis madatlis is offline
Member
 
Join Date: Oct 2008
Posts: 8
madatlis is on a distinguished road
one thing I Noticed is you have a whole method in the actual program, they should be outside the main program and declared in the actual main. for example

Public static main(String [] args)
{
exampleMethod();
}
public static void exmpaleMethod();
{
// the crap u have in side here
}

that is the proper way to do a method on declaring it, I am not sure if that is the proglrem i just noticed ,that I dont have much time to look at it, but I will try tonight whe nI get off work.
Reply With Quote