Hi,
I am developing a PDA application using Cr�me JVM on windows ce 4.2 platform. I need to change the system time through my
java application. In windows xp I can use a simple routine to solve this problem and that is
Runtime rt = Runtime.getRuntime();
Process proc;
proc = rt.exec("cmd /C time " + timeStr);
I am wondering is there anything like that available in windows ce as well?
Regards.