G
Guest
dim FileName as string = "Test.doc"
dim P as Process = Process.Start(FileName)
'--P is NOTHING even though document opens!!!
dim Q as new process
Q.StartInfo.FileName = FileName
P = Q.start
'--P is nothing here, either
WHY????
dim P as Process = Process.Start(FileName)
'--P is NOTHING even though document opens!!!
dim Q as new process
Q.StartInfo.FileName = FileName
P = Q.start
'--P is nothing here, either
WHY????