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.
'// API to call the default browser.
Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, _
ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, _
ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Dim l_lngRetVal As Long
Const SW_SHOWNORMAL = 1
l_lngRetVal = ShellExecute(0&, vbNullString, "[URL unfurl="true"]www.tek-tips.com",[/URL] vbNullString, "C:\", SW_SHOWNORMAL)