View Single Post
Old 08-30-2007, 10:20 AM   #2
bemshaswing
Talking BlackBerry Encyclopedia
 
Join Date: Oct 2006
Model: 7103
Carrier: Verizon
Posts: 259
Default

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