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.
Private Declare Function SHCreateDirectoryEx Lib "shell32" Alias _
"SHCreateDirectoryExA" (ByVal hwnd As Long, ByVal pszPath As String, _
ByVal psa As Any) As Long
Private Sub Form_Load()
'KPD-Team 2000
'URL: [URL unfurl="true"]http://www.allapi.net/[/URL]
'E-Mail: KPDTeam@allapi.net
'create the directory 'c:\test\dir\hello\something\apiguide\'
SHCreateDirectoryEx Me.hwnd, "c:\test\dir\hello\something\apiguide\", _
ByVal 0&
End Sub