Hi All <br>i have this simple class in c:\mydir <br>class moh<br>{<br> public static void main(String arg[])<br> {<br> System.out.print("Hello from "
;<br> se s = new se();<br> }<br>}<br><br>Also i have this se class in the same directory(c:\mydir )<br>public class se<br>{<br> se()<br> {<br> System.out.println("this a se class "
;<br> }<br>}<br><br>I compiled both and so i got two classes moh.class and se.class in c:\mydir<br>what happened i moved se.class to directory c:\<br>and i tried to set path in autoexe.bat as :<br> SET CLASSPATH=%CLASSPATH%;.;c:\se.class and i restart my computer.<br>i tried to run moh class from c:\mydir i got a error message as:<br> class not found:se.<br>please help with it.<br>i will appreciate your help.