quote:
Originally posted by Zakukashi
I made a VB applicaion to open the folder ... is there an easier way to do it without using shell? when I try a normal link like Shell.Exec("C:\Myrecieved\");
it dosnt open it. Please let me know if theres an easier way to this thanks!
Well, the
ShellExecute function should do the trick
JScript code:
Interop.Call("shell32", "ShellExecuteW", null, "open", "C:\\Myrecieved", null, null, 1 /*SW_SHOWNORMAL*/);
Also, notice that "\" is an escape character in JScript so you need to use double backslash "\\" instead