|
-
Feb 7th, 2001, 04:43 PM
#1
Ok simple question, how do i know what button the user clicked on?? I also have a dropdown button, and how do i make a menu appear from it??
-
Feb 7th, 2001, 04:46 PM
#2
Addicted Member
give the button a name and respond in the btton_click event.
-
Feb 7th, 2001, 05:51 PM
#3
PowerPoster
Here ya go:
Code:
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Key 'Set this property inside the toolbars properties
Case Is = "Email"
MsgBox "Email toolbar button clicked"
Case Is = "File"
MsgBox "File toolbar button clicked"
End Select
End Sub
-
Feb 7th, 2001, 10:15 PM
#4
thanks
ill give it a try, thanks both of ya
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|