Quote:
>> Hello,
>> I use
>> ShellExecute 0&, vbNullString, "Iexplore", "c:\yyyy.html",
>> vbNullString, vbMaximizedFocus
>> to open the file in IE. How can I make the browser to open directly
>> with a 80% zoom of the display?
> You need to use IE automation. This post will get you started:
> http://groups.google.com/group/microsoft.public.vb.general.discussion...
Try adding these to the beginning of Command1_Click:
ie.Width = 500
ie.Height = 500
To see the reference in MSDN, look for "InternetExplorer Object" in the
Index. Also see "IHTMLDocument3 Interface".