Toolbar alignment
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Hello, I would like to know wether there is a way to align a toolbar control to the right side of a VB .NET form, istead of to the left side as default. Thanks, Tom Rahav.
Tom You can just change the Dock property , in the design view, or as follows in runtime ToolBar1.Dock = DockStyle.Right
-
Tom You can just change the Dock property , in the design view, or as follows in runtime ToolBar1.Dock = DockStyle.Right