Dear,
Im having problems getting this to refresh the same IE page . I am uselss at html scripting and this is my first try so excuse me and no mickey taking.
Code i got so far
Code:
Break on
SetConsole("hide")
Open (1,"c:\temp\sw_audit.txt")
$Splash = Splash("C:\temp\cbs.jpg")
Sleep 8
$Splash.Quit()
$Splash = 0
;Exit
Do
$CompName=ReadLine(1)
Function Splash($picture)
Dim $ie
$ie = CreateObject("internetexplorer.application")
$ie.fullscreen = 0
$ie.menubar = 1
$ie.statusbar = 0
$ie.toolbar = 0
$ie.width = 500
$ie.height = 500
$ie.navigate("about:blank")
While $ie.busy AND $ie.readystate <> 4 AND @error = 0 Loop
$Aaron=$Aaron+1
$html="
<HTML>
<HEAD>
<TITLE>Working With VBScript: Exercise 1</TITLE>
</HEAD>
<BODY>
<H1>Your First Html Exercise</H1>
<P> By utilizing $Aaron you can give your Web pages actions.
Click on the button below to see what we mean. </P>
</SCRIPT>
</FORM>
</BODY>
</HTML>
"
$ie.document.write($html)
$ie.visible = 1
$Splash = $ie
EndFunction
Until $CompName = ""
It basically just counting every time it reads a line and i need this being put into the web page
Thanks all
Aaron
_________________________
If at first you don't succeed, try again. Then quit. There's no use being a damn fool about it. - W.C Fields