J
John
Hi,
I have a three command buttons, one links to a particular
cell on a worksheet and the other two open up a browser
window. The VB for these buttons are:
Private Sub CommandButton1_Click()
ActiveWorkbook.FollowHyperlink
Address:="HTML\DevTeam.htm", _
NewWindow:=True
End Sub
Private Sub CommandButton2_Click()
ActiveWorkbook.FollowHyperlink
Address:="HTML\DevTeam2.htm", _
NewWindow:=True
End Sub
Private Sub CommandButton3_Click()
Application.Goto Reference:=Worksheets("MetaData").Range
("B6"), Scroll:=True
End Sub
What i want to do is have a combobox that has these three
buttons inside. Therefore acting as a drop down menu and
preventing having three buttons displayed.
Thanks for the help in advance.
John
I have a three command buttons, one links to a particular
cell on a worksheet and the other two open up a browser
window. The VB for these buttons are:
Private Sub CommandButton1_Click()
ActiveWorkbook.FollowHyperlink
Address:="HTML\DevTeam.htm", _
NewWindow:=True
End Sub
Private Sub CommandButton2_Click()
ActiveWorkbook.FollowHyperlink
Address:="HTML\DevTeam2.htm", _
NewWindow:=True
End Sub
Private Sub CommandButton3_Click()
Application.Goto Reference:=Worksheets("MetaData").Range
("B6"), Scroll:=True
End Sub
What i want to do is have a combobox that has these three
buttons inside. Therefore acting as a drop down menu and
preventing having three buttons displayed.
Thanks for the help in advance.
John