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.
Option Explicit
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
Public Sub Navigate(strUrl As String)
Dim hWnd As Long
Navigate = ShellExecute(hWnd, vbNullString, strUrl, vbNullString, _
vbNullString, vbNormalFocus)
End Function
Option Explicit
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
Public Sub Navigate(strUrl As String)
Dim hWnd As Long
Dim lngW as long
lngW = ShellExecute(hWnd, vbNullString, strUrl, vbNullString, _
vbNullString, vbNormalFocus)
End Sub
Sub TCLOOK_CLICK()
Call Navigate("http:\\10.250.2.51\tclook")
End Sub