I'm experimenting with IE as a Loginscreen window.
I can get text to populate the window, but if I run past the size of the
window, the output is put at the bottom of the window, and the bar on the
right becomes active.
If you run the script below, you will see what I mean.
is there any way to:
A.) make the bottom lines of the screen active, so they're not printed off
of the active area?
or
B.) Make the top lines of the display scroll off the top.
'SCRIPT:
Set IE = CreateObject("InternetExplorer.Application")
ie.width=450
ie.height=450
ie.top=5
ie.left=150
ie.menubar=0
ie.statusbar=true
ie.resizable=false
ie.toolbar=0
ie.navigate ("About:blank")
ie.visible=1
ie.Document.title="Network Logon Script"
ie.Document.Body.topmargin=5
ie.Document.Body.leftmargin=5
For I = 1 to 40
Display("Line# "&I)
Next
Function Display(text)
ie.Document.Body.InsertAdjacentHTML "beforeEnd","<font face=Tahoma
color=#000066 size=2> "&text&"</font><br>"
End Function