Does anyone have an idea how/if a checkbox can be used in a dropdown menu? I don't see any way to do it using the menu editor.
Thanks
Printable View
Does anyone have an idea how/if a checkbox can be used in a dropdown menu? I don't see any way to do it using the menu editor.
Thanks
When you create a menu using Menu Editor there is an option Checked. You can use it to make a checkmark appear next to the Menu Caption (it can't be done on the top most menu).
TO make it works as checkbox use this code:
HTHCode:Private Sub MnuCheck_Click()
MnuCheck.Checked = Not MnuCheck.Checked
End Sub
Thanks.