|
|
Title | Make a popup menu look like a ComboBox |
Keywords | popup, menu, ComboBox, dropmenu |
Categories | Controls |
|
|
Make a TextBox and a button with a drop arrow. When the user clicks the button, display the popup menu below the TextBox using the PopupMenu command.
|
|
Private Sub cmdDrop_Click()
PopupMenu mnuPopup, , txtDrop.Left, txtDrop.Top + _
txtDrop.Height
End Sub
|
|
|
|
|
|