|
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.
|