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 FileNumber as integer
' Open a file and send it a null character.
' Then close the file
FileNumber = FreeFile
On Error Resume Next
Open "C:\Temp\Null.txt" For Binary As FileNumber
Print #FileNumber, vbNull
Close FileNumber
On Error GoTo 0