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 Sub mnuPopUp_Click(Index As Integer)
Select Case mnuPopUp(Index)[b].Caption[/b]
Case "bla", "hello"
' code
Case ...
' code
End Select
End Sub
Dim i, j As Integer
Dim temp As String
For i = 1 To mnuPopUp.UBound
For j = mnuPopUp.UBound To i Step -1
If mnuPopUp(j - 1).Caption > mnuPopUp(j).Caption Then
temp = mnuPopUp(j - 1).Caption
mnuPopUp(j - 1).Caption = mnuPopUp(j).Caption
mnuPopUp(j).Caption = temp
End If
Next
Next