combine .vbs and html?

zuse1000us

New member
I have a vbs script and want to keep it a .vbs script but dont know how to combine the html code into the vbs code. here is what i have:

Set objExplorer = CreateObject("InternetExplorer.Applicati…
with objExplorer
.Width=500
.Height=220
.Left=770
.Top=0
.ToolBar = 0
.Visible=true
.navigate "H:\profilecopy.jpg"
end with


and i would like to combine this code with it but donw know how


<script language="Javascript">
<!--

function doClock() {
window.setTimeout( "doClock()", 1000);
today = new Date();
self.status = today.toString();
}

doClock()
//-->
</script>
 
Back
Top