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.
Dim objScript As New MSScriptControl.ScriptControl
objScript.language = "Vbscript"
On error resume next
MsgBox objScript.Eval("(2*18)^(.5)")
if Err.Number <> 0 then
MsgBox err.description
end if
On error goto 0