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.
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Public Const EM_SETTABSTOPS = &HCB
Private Sub SetTabs
Dim TabStops(2) As Long
TabStops(0) = 90
TabStops(1) = 130
TabStops(2) = 185
Call SendMessage(control.hWnd, EM_SETTABSTOPS, 3, TabStops(0))
control.Refresh
End Sub