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 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
Const SW_SHOWNORMAL = 1
Private Sub Label1_Click()
ShellExecute Me.hwnd, vbNullString, "[URL unfurl="true"]http://www.tek-tips.com",[/URL] vbNullString, "C:\", SW_SHOWNORMAL
End Sub
Private Sub lblURL_Click()
Dim myProgram
myProgram = Shell("C:\Program Files\Internet Explorer\iexplore.exe [URL unfurl="true"]http://www.sfcc.edu",[/URL] vbMaximizedFocus)
End Sub
myProgram =
vbMaximizedFocus)