When a certian button is selected on a Toolbar like for instance "Add", some of the other icons on the toolbar must be disable till a other Icon is selected that will Enable it.
Current code is :
Private Sub Toolbar1_ButtonClick(ByVal Button MSComctlLib.Button)
Select Case Button.Key
Case is = "Add"
Case is = "Save"
Case is = "Delete"
Case is = "Cancel"
Case is = "Exit"
End Selected
End Sub
Current code is :
Private Sub Toolbar1_ButtonClick(ByVal Button MSComctlLib.Button)
Select Case Button.Key
Case is = "Add"
Case is = "Save"
Case is = "Delete"
Case is = "Cancel"
Case is = "Exit"
End Selected
End Sub