Hi all ! I've set the classpath. set classpath=d:\packages Now compiler reads class files in this folder But if i make folders com.dannish and place them in d:\packages then class files in com.dannish are not read. I do import the package import com.dannish.*; Now files in dannish are not read..... error is cannot access com.dannish.filename Regards Danish.
The files in com.dannish need to be part of the com.dannish package, and will need to be imported into any class that is not part of that package. Jason