Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<job id="Test">
<script language="VBScript" src="TEST_01.vbs">
</script>
<script language="VBScript" src="TEST_02.vbs">
</script>
<script language="VBScript">
Option Explicit
Dim A_s
Dim B_s
A_s = Get_A()
B_s = Get_B()
MsgBox( "Finished" )
</script>
</job>
Option Explicit
Function Get_A()
Dim A_s
A_s = "A"
Get_A = A_s
End Function
Option Explicit
Function Get_B()
Dim B_s
B_s = "B"
Get_B = B_s
End Function