Home
Submit
Free Hosting
Link To Us
Contacts
VBScript Sub Procedure
VBScript
Download
(.zip)
<html>
<head>
<script type="text/vbscript">
sub mySub()
msgbox("Example of sub procedure")
end sub
</script>
</head>
<body>
<script type="text/vbscript">
call mySub()
</script>
</body>
</html>
VBScript
Sub Procedure