Here is a simple application. What I want to do is to set the size to 300x200 when the program loads up. The problem is when it starts up, it flashes. Is there a different way of sizing the form so that it does not flash?
Code:
<html>
<head>
<title>Load Size</title>
<HTA:APPLICATION
APPLICATIONNAME="Load Size"
BORDER="thick"
CAPTION="yes"
MAXIMIZEBUTTON="yes"
MINIMIZEBUTTON="yes"
SCROLL="no"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
WINDOWSTATE="normal"
>
</head>
<body language="vbscript" onload="resizeTo 300,200">
</body>
</html>