Det kræver jo, at du kan programmere i Delphi, Visual Studio eller lignende. Du har dog endnu en mulighed: At skrive en HTA (HyperText Application), som i virkeligheden blot er en 'stand-alone' instans af IE:
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/hta/hta_node_entry.aspHelt simpelt, kunne det se sådan ud:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>My Own Application</title>
<HTA:APPLICATION
ID="myOwnAppID"
APPLICATIONNAME="myOwnApp"
BORDER="thick"
CAPTION="yes"
ICON="myOwn.ico"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
WINDOWSTATE="minimize"
NAVIGABLE="yes">
<style type="text/css">
body, html {
height: 100%;
margin: 0px;
}
</style>
</head>
<body>
<h2 style="text-align:center">Min første applikation</h2>
</body>
</html>
... eller i en bestemt størrelse:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<script type="text/JavaScript">
var w=600, h=400;
resizeTo(w,h);
moveTo( (screen.availWidth-w)/2, (screen.availHeight-h)/2 );
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>My Own Application</title>
<HTA:APPLICATION
ID="myOwnAppID"
APPLICATIONNAME="myOwnApp"
BORDER="thick"
CAPTION="yes"
ICON="myOwn.ico"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
WINDOWSTATE="minimize"
NAVIGABLE="yes">
<script type="text/JavaScript">
this.focus()
</script>
<style type="text/css">
body, html {
height: 100%;
margin: 0px;
}
</style>
</head>
<body>
<h2 style="text-align:center">Min første applikation</h2>
</body>
</html>