open Ms Word Application on IE
Hi Dear,
I need to open a Ms Word Application from browser saparately, which is working fine, but the problem is, it is opening in a minimize mode. I need it to be open in maximize mode with control/focus in it.
Below is my code.
sub displayRTFDoc(rtfUrl)
Dim oWordApp
Set oWordApp = CreateObject("Word.Application")
oWordApp.Visible = True
oWordApp.Documents.Open(rtfUrl)
oWordApp.Documents(1).Activate
Set oWordApp = Nothing
end sub
thanks
Jaweed
|