I get a button on a toolbar and I've made it the DROP-DOWN STYLE... How do I populate the dropdown in there??
Can any 1 help?
Thanks in advance
Printable View
I get a button on a toolbar and I've made it the DROP-DOWN STYLE... How do I populate the dropdown in there??
Can any 1 help?
Thanks in advance
You use the Insert Button Menu button in the properties page. (on the same page as you define what appears on each button).
Thanks a lot Buzy... ( I did not know that)
Is there a way I can populate that from a db table
Thanks much..
Just in case someone does a search on this item
(If any interest...)
'Next I am trying to check off an item from this dropdown
'if selected
With Button
If rs Is Nothing Then
'
Else
Do Until rs.EOF
li_Counter = li_Counter + 1
.ButtonMenus.Add li_Counter, rs(0),rs(1)
.ButtonMenus.Item(li_Counter).Visible = True
.ButtonMenus.Item(li_Counter).Enabled = True
rs.MoveNext
Loop
End If
End With
Thanks