vote up 0 vote down star

I need to open several pdf, word and excel files from process.start like command, but only open one file at time.

flag

1  
Show us your code! – Rowland Shaw Oct 25 at 8:30

2 Answers

vote up 1 vote down

You can use WaitForExit with a process to pause execution until the application that handles the pdf, word, etc. file is closed. This will work if the user closes, for example, word instead of closing only the word document and leaving the word application running.

Dim proc As Process

proc = Process.Start("c:\tmp.jpg")
proc.WaitForExit()
proc = Process.Start("c:\tmp1.jpg")
proc.WaitForExit()
link|flag
vote up 0 vote down check

Its work without "proc.WaitForExit()", I can get several documents open at the same time with the following code:

Private Sub OpenDocument(ByVal strDocName as String)

   Dim proc as Process

   proc = Process.Start(strDocName)

End Sub
link|flag
I thought you only wanted to open one at a time. – xpda Oct 26 at 4:10
"I need to open several pdf, word and excel files" – Bitnius Oct 26 at 5:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.