error message: package Jfxcore does not exist
I have a file "Jfxcore.jar" in C:\Project. I added C:\Project\Jfxcore.jar to the classpath ( in xp control panel).
My app, test1, has the line: import Jfxcore.*;
It is also located in C:\Project
when I compile from the commad line with : javac test1.java or javac -cp . test1.java i get the error: package Jfxcore does not exist.
importing any of the stuff that comes with java works fine. It only fails when I try to import my own jar or class files.
I think I must have missed a step somewhere. Can anyone see what I am doing wrong? Thanks for the help.

