I need guidance with my VB script.
When the menu item called title is selected I want to display a check mark next to the menu option called title and if it’s unselected the check mark disappears and does not display the caption.
Private Sub mnutitle_Click()
If mnutitle.Checked = False Then
fraDatabase.Caption = ""
Else
mnutitle.Checked = True
fraDatabase.Caption = "Database by Marisa"
End If
Thanks
When the menu item called title is selected I want to display a check mark next to the menu option called title and if it’s unselected the check mark disappears and does not display the caption.
Private Sub mnutitle_Click()
If mnutitle.Checked = False Then
fraDatabase.Caption = ""
Else
mnutitle.Checked = True
fraDatabase.Caption = "Database by Marisa"
End If
Thanks