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 strFile as string
Dim intHandle As Integer
intHandle = FreeFile
CommonDialog1.InitDir = "c:\"
CommonDialog1.FileName = "Fred.txt"
CommonDialog1.ShowSave
strFile = CommonDialog1.FileName
If strFile <> "" Then
Open strFile for Output as #intHandle
Write #intHandle, "BlaBlaBla"
Close #intHandle
End if