I have workspace inside of Eclipse which has 2 projects in it.
I want to reference project #2 from project #1, but when I go to Project -> Properties -> References, and tick the project that I want to add as a reference, I am still not able to instantiate the classes from project #2 inside of project #1.
This is a blackberry app, developed in Java and in Eclipse.
Project1 Launcher.java
Project2 Screen.java
I want to use
Screen scr = new Screen(); // located in Project1
thx