Subject: open Ms Word Application on IE
Posted By: Sheikh Abdul Jaweed Post Date: 12/11/2006 5:39:26 AM
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


Go to topic 53434

Return to index page 97
Return to index page 96
Return to index page 95
Return to index page 94
Return to index page 93
Return to index page 92
Return to index page 91
Return to index page 90
Return to index page 89
Return to index page 88