I have a program I am trying to execute that is written with .HTA the method is running a program with html.
this shell is suppose to call the program vbscript.hta
<html>
<SCRIPT LANGUAGE="vbScript">
dim shell
set shell = createobject("WScript.Shell")
shell.run("vbscript.hta")
</script>
</html>
the program vbscript.hta is below.
<html>
<head>
<title>Run FPA</title>
<hta:application
applicationname="F:/tzo/fpaweb.tzo.com/fpa/aas2.exe"
maximizebutton="no"
minimizebutton="no"
singleinstance="yes"
innerborder="no"
contextmenu="no"
selection="no"
scroll="no" />
</script>
</head>
</html>
Is my shell code correct. It only gives a blank page when executed.
Thanks
Vernon
this shell is suppose to call the program vbscript.hta
<html>
<SCRIPT LANGUAGE="vbScript">
dim shell
set shell = createobject("WScript.Shell")
shell.run("vbscript.hta")
</script>
</html>
the program vbscript.hta is below.
<html>
<head>
<title>Run FPA</title>
<hta:application
applicationname="F:/tzo/fpaweb.tzo.com/fpa/aas2.exe"
maximizebutton="no"
minimizebutton="no"
singleinstance="yes"
innerborder="no"
contextmenu="no"
selection="no"
scroll="no" />
</script>
</head>
</html>
Is my shell code correct. It only gives a blank page when executed.
Thanks
Vernon