im moving forward slowly but now got some more/different problems. Made
some .jar files and when i try to run the main one i get this msg..
Exception in thread "main" java.lang.NoClassDefFoundError:
ClickMeApp/java
Any ideas on how to fix it?
>NoClassDefFoundError
see http://mindprod.com/jgloss/cac.html

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
> im moving forward slowly but now got some more/different problems. Made
> some .jar files and when i try to run the main one i get this msg..
[quoted text clipped - 3 lines]
>
> Any ideas on how to fix it?
The correct command line to run a program called ClickMeApp is
javac ClickMeApp.java
java ClickMeApp
You probably typed "java ClickMeApp.java", which is wrong.
P.S. *Do* try to read Java's accompanying documentation... You'll find
solutions to most such basic problems there.

Signature
-Aki Laukkanen