Comments

jetdv wrote on 1/9/2004, 7:49 PM
What code are you trying? In JScript, I use:

MessageBox.Show(myTimecode);

However, you could also use:
MessageBox.Show(myTimecode.ToString())
or
MessageBox.Show(myTimecode.ToMilliseconds())
RichMcG wrote on 1/9/2004, 7:52 PM
In VB.NET I was trying CStr to convert the number to a string. Then tried to just assign it to an integer variable and it did not like that. In JScript, can I create a file on the hard drive simply? I'd use jscript but I don't know how to create files without setting permissions.
jetdv wrote on 1/9/2004, 7:56 PM
You mean simply create a text file, put some text in it, and close it? If yes, then absolutely. That's how I create the INI files used by Excalibur and Tsunami.