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.
Declare Function DlgFunction(identifier$, action, suppvalue)
Sub Main
Begin Dialog Dialog1 186, 50, .DlgFunction
OkButton 130, 6, 50, 14
TextBox 5, 5, 57, 12, .TextBox1
CheckBox 70, 8, 50, 8, "CheckBox", .CheckBox1
End Dialog
Dim CallDialog as Dialog1
Dialog CallDialog
End Sub
Function DlgFunction(identifier$, action, suppvalue)
Select Case action
Case 1'Execute on startup
Case 2'Execute when button pressed
Case 3'Execute when text og combobox is changed
Case 4'Execute when control focus is changed
Case 5'Execute all the time (When mouse is moved)
If DlgText("TextBox1") = "2" Then
DlgEnable("CheckBox1"),0
DlgValue("CheckBox1"),0
DlgVisible("CheckBox1"),0
Else
DlgEnable("CheckBox1"),1
DlgVisible("CheckBox1"),0
End If
End Select
End Function