Jul 5, 2004 #1 baggio7 Programmer Jun 23, 2004 14 CA Hello, Does anyone know how to ShellExecute a networked file. non-funcitonal example: ShellExecute (NULL, "open", "//Emilie/c:/F1000.DTA/Invoicing.exe", temp, NULL,SW_SHOWNORMAL); Cheers, Al
Hello, Does anyone know how to ShellExecute a networked file. non-funcitonal example: ShellExecute (NULL, "open", "//Emilie/c:/F1000.DTA/Invoicing.exe", temp, NULL,SW_SHOWNORMAL); Cheers, Al
Jul 5, 2004 #2 ArkM IS-IT--Management Oct 21, 2002 1,819 RU You must include share name (not a drive letter) in UNC name: Code: ShellExecute(...,"\\\\Emilie\\C$\\F1000.DTA\\...",...); Try this... Upvote 0 Downvote
You must include share name (not a drive letter) in UNC name: Code: ShellExecute(...,"\\\\Emilie\\C$\\F1000.DTA\\...",...); Try this...