-
maximizing window
hi,
i am opening a browser like this.......but unfortunately it is resized like a small icon on screen...how can i maximize it?
Code:
Set IExp = New SHDocVw.InternetExplorer
IExp.Visible = True
IExp.navigate "http://ttsvisas.com/StartModify.aspx"
thanks and regards
vivek.s
-
Re: maximizing window
-
Re: maximizing window
no other way to generally maximize it?
Iexp has no propery called move when i place a dot(.) after iexp
how can i do it?
thanks and regards
vivek.s
-
Re: maximizing window
if i use move then VB complains that it does not supportn this method with Iexp.........
Thanks and Regards
vivek.s
-
Re: maximizing window
Hi!
i jus used
IExp.Top = 10
IExp.Left = 10
IExp.Width = 550
IExp.Height = 450
these properties.........get the result
Thanks and regards
vivek.s