#86178 - 2002-06-18 07:25 PM
$ie.resizeable = 0 not working?
|
Anonymous
Anonymous
Unregistered
|
Hello,
I'm trying to use a function to create an IE window that is not resizeable, but its not working... Has anyone got this to work?
Thanks, AA
code:
$Window = IECreateWindow("This Damn Thing",300,300,640,480)
Function IECreateWindow($title,$left,$top,$width,$height, optional $html) $ie = createobject("internetexplorer.application") $ie.resizeable = 0 $ie.addressbar = 0 $ie.menubar = 0 $ie.toolbar = 0 $ie.statusbar = 0 $ie.top = $top $ie.left = $left $ie.width = $width $ie.height = $height $ie.navigate("about:blank") while $ie.busy and $ie.readystate <> 4 and @error = 0 loop $ie.document.body.scroll = no if $html $ie.document.write('$html') else $ie.document.write('<title>$title</title>') endif $ie.document.body.bgcolor = "threedface" $ie.document.body.border = "1px solid #cccccc" $IECreateWindow = $ie $ie.Visible = 1 while setfocus("$title") <> 0 loop EndFunction
|
|
Top
|
|
|
|
#86185 - 2002-06-18 10:05 PM
Re: $ie.resizeable = 0 not working?
|
Anonymous
Anonymous
Unregistered
|
Doh! I just need a spell checker for notepad and I'll be all set. :-) Thanks shawn.
Regards,
AA
|
|
Top
|
|
|
|
Moderator: Shawn, ShaneEP, Ruud van Velsen, Arend_, Jochen, Radimus, Glenn Barnas, Allen, Mart
|
0 registered
and 472 anonymous users online.
|
|
|