IE COMM object windows size

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
evillemonkey
Posts: 51
Joined: 12 Nov 2015, 09:57

IE COMM object windows size

18 Oct 2018, 11:16

Is there a way when creating an IE windows via..

Code: Select all

wb := ComObjCreate( "InternetExplorer.Application" )	; Creates the ComObj
	wb.MenuBar := False
	wb.ToolBar := False
	wb.AddressBar := True
	wb.Visible := True
	wb.Navigate("www.somesite.com")
	
A way to set the IE window height and width?
example..

Code: Select all

wb.width := 23
wb.height := 52
awel20
Posts: 211
Joined: 19 Mar 2018, 14:09

Re: IE COMM object windows size

18 Oct 2018, 11:43

Code: Select all

; https://msdn.microsoft.com/en-us/ie/aa752084(v=vs.94)#properties
wb.Left := 100
wb.Top := 200
wb.Height := 300
wb.Width := 400

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: gongnl, Rohwedder and 268 guests