How to get and change dropDown value?

rusuh

New Member
I have two dropDown controls on ribbon \[code\]<dropDown id="dd01"onAction="dd01OnAction"/><dropDown id="dd02" onAction="dd02OnAction"/>\[/code\]In VBA I need \[code\]Sub dd01OnAction(control As IRibbonControl, ID As String, index As Integer)If dd01.Value = "http://stackoverflow.com/questions/12722357/Sky" Then dd02.Value = "http://stackoverflow.com/questions/12722357/Sea"End Sub\[/code\]How can I get and change this values ?
 
Back
Top