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.
'Place one combobox, one textbox and one command buton on the form and paste this code
Option Explicit
Private Sub Combo1_Click()
Text1.Text = Combo1.Text
Text1.SetFocus
End Sub
Private Sub Command1_Click()
Combo1.SetFocus
SendKeys "{F4}"
End Sub
Private Sub Form_Load()
Combo1.AddItem "Test 1"
Combo1.AddItem "Test 2"
Combo1.AddItem "Test 3"
Combo1.AddItem "Test 4"
End Sub