looks like you have a few problems here, firstly:
If you want to run an application on you need to have one class extend UiApplication like:
public class [YourClassName] extends UiApplication {
that class must implement:
public static void main(String[] args) {
[YourClassName] theApp = new [YourClassName]();
theApp.enterEventDispatcher();
}
as for part two of your question, it could be a couple of things. I'm not sure what you mean by included ProjectA.jar in ProjectB through properties. It also looks like you named your first class Class A.java. maybe that's a typo here, but the jre doesn't always play nice with filenames with spaces.
|