Tuesday, 28 February 2012

Sub procedure

<html>
<head>
<script type="text/vbscript">
Sub mySub()
  msgbox("Procedure")
End Sub
</script>
</head>
<body>
<script type="text/vbscript">
Call mySub()
</script>
</body>
</html>

No comments:

Post a Comment