Set the toolbar to the flat style, the same style as Visual Basic toolbars. This functionality is not built into the Windows Common Control ActiveX Control.
Procedure Name | Type | Description |
(Declarations) | Declarations | Declarations and private variables for the modToolBar module. |
SetToolBarFlat | Procedure | Set a toolbar to the flat style. |
FlatToolBarEnumChildProc | Procedure | Callback routine for EnumChildWindows. This function should never be called directly by user code. See the Windows SDK for more documentation on this procedure. |
' Example of modToolbar ' ' To try this example, do the following: ' 1. Create a new form ' 2. Create a toolbar named 'ToolBar1' ' 3. Create a command button named 'cmdTest' ' 4. Paste all the code from this example to the new form's module. ' 4. Run the form Private Sub cmdTest_Click() Static fFlat As Boolean fFlat = Not fFlat ' Example of SetToolBarFlat and 'flat' mode SetToolBarFlat Toolbar1, fFlat End Sub Private Sub Form_Load() Dim btn As ComctlLib.Button With Toolbar1 Set btn = .Buttons.Add(, , "Button 1") Set btn = .Buttons.Add(, , "Button 2") Set btn = .Buttons.Add(, , "Button 3") Set btn = .Buttons.Add(, , "Button 4") End With End Sub
The source code in Total Visual Sourcebook includes modules and classes for Microsoft Access, Visual Basic 6 (VB6), and Visual Basic for Applications (VBA) developers. Easily add this professionally written, tested, and documented royalty-free code into your applications to simplify your application development efforts.
Total Visual SourceBook is written for the needs of a developer using a source code library covering the many challenges you face. Countless developers over the years have told us they learned some or much of their development skills and tricks from our code. You can too!
Supports Access/Office 2016, 2013, 2010 and 2007, and Visual Basic 6.0!
"The code is exactly how I would like to write code and the algorithms used are very efficient and well-documented."
Van T. Dinh, Microsoft MVP