Hi All,
I have a toolbar in my MDI form with buttons. This is used as Quick Access Buttons for the menu items. Now I need to set Access Permissions to these buttons. I have already done the same with my menu items. i used the following code :
I need to know how to get access to toolbar control while running the project.
If anybody has any idea about this, please do share with me.
I have a toolbar in my MDI form with buttons. This is used as Quick Access Buttons for the menu items. Now I need to set Access Permissions to these buttons. I have already done the same with my menu items. i used the following code :
Code:
Dim Ctrl As Control
For Each Ctrl In mdiMAIN.Controls
If TypeOf Ctrl Is Menu Then
End If
Next Ctrl
If anybody has any idea about this, please do share with me.