i used toolbar1 control in my program but the problem is i want when form load the 3 and 5 item in toolbar to Enabeled=False does any know how do i do this .
Printable View
i used toolbar1 control in my program but the problem is i want when form load the 3 and 5 item in toolbar to Enabeled=False does any know how do i do this .
Code:Private Sub Form_Load()
Toolbar1.Buttons.Item(3).Enabled = False
Toolbar1.Buttons.Item(5).Enabled = False
End Sub