import does not exist

hello,i want to build a program that creates a user interface. but it says that the imported things does not exists. Can you tell me a solution?
[158 byte] By [iozturka] at [2007-11-27 9:40:29]
# 1
> hello,> > i want to build a program that creates a user> interface. but it says that the imported things does> not exists. Can you tell me a solution?What "imported thing" are you talking about?
Navy_Codera at 2007-7-12 23:17:45 > top of Java-index,Java Essentials,New To Java...
# 2
import com.rim.samples.device.resource.*; //it says this does not exitsimport net.rim.device.api.ui.*; //no problemimport net.rim.device.api.ui.component.*; //no problemimports are like that
iozturka at 2007-7-12 23:17:45 > top of Java-index,Java Essentials,New To Java...
# 3
This is a classpath issue.Google for "java classpath."Here is one of the first results that I found: http://www.kevinboone.com/classpath.html
Navy_Codera at 2007-7-12 23:17:45 > top of Java-index,Java Essentials,New To Java...
# 4
ok thanks for help.i am googling now.
iozturka at 2007-7-12 23:17:45 > top of Java-index,Java Essentials,New To Java...
# 5
Hi,You are working around Blackberry classes.It should be somewhere in your jar files.Use this tool....very useful. http://www.alphaworks.ibm.com/tech/jarclassfinderRegards,Bhavani
polimetlaa at 2007-7-12 23:17:45 > top of Java-index,Java Essentials,New To Java...
# 6

> You are working around Blackberry classes.

An astute observation, I must say. I'm sure that when the OP went to the blackberry site to download a blackberry-specific development library that he was unware of its intended use with the Blackberry device. By the way - you are on the java developer forums (in case you didn't realize...) ;-)

Navy_Codera at 2007-7-12 23:17:45 > top of Java-index,Java Essentials,New To Java...