May 19, 2001 #1 sfenx Programmer Feb 23, 2001 81 BE What's the code to open a Word document using WordViewer?
May 19, 2001 1 #2 HermanvLimbeek Programmer Apr 9, 2001 209 NL I start the powerpoint viewer like this: strDoc = "Sample.Doc" strExec = strPath & "ppview32.exe /a " & strDoc taskID = Shell(strExec, vbMaximizedFocus) If you substitute ppview32.exe with wordview.exe, I thik it'll work. However, I haven't tried it. Herman :-Q Upvote 0 Downvote
I start the powerpoint viewer like this: strDoc = "Sample.Doc" strExec = strPath & "ppview32.exe /a " & strDoc taskID = Shell(strExec, vbMaximizedFocus) If you substitute ppview32.exe with wordview.exe, I thik it'll work. However, I haven't tried it. Herman :-Q
May 19, 2001 Thread starter #3 sfenx Programmer Feb 23, 2001 81 BE Thanks a lot Herman, it works as you wrote. Is there a way to make the WordViewer (or another app.) appear in my MDIform (as an MDIchild)? Sfenx Upvote 0 Downvote
Thanks a lot Herman, it works as you wrote. Is there a way to make the WordViewer (or another app.) appear in my MDIform (as an MDIchild)? Sfenx