Hi
I am self learning .VB .Net and have encountered a requirement that is not
illustrated in any of my texts.
I have three toolbars which can be present in any combination from 0-3
They are quite small and when there are two or three I would like the first
pair to lie alongside each other
I have been fiddling for ages with code to do this. The latest version is
listed below. It always leaves three toolbars full width stacked vertically.
I would be grateful for some advice on how to achieve this.
Yours with thanks in anticipation
Roger Stenson
'Current Code
If (CurrentUser.UserStatus = "Authenticated") And (CurrentUser.UserLevel =
"Administrator") Then
'Basic Toolbar
tbrBasic.Visible = True
tbrBasic.Enabled = True
tbrBasic.Size = New Size(233, 16)
tbrBasic.Location = New Point(0, 0)
'User Toolbar
tbrUser.Visible = True
tbrUser.Enabled = True
tbrBasic.Size = New Size(233, 16)
tbrUser.Location = New Point(224, 0)
'Administrator Toolbar
tbrAdministrator.Visible = True
tbrAdministrator.Enabled = True
tbrBasic.Size = New Size(233, 16)
tbrUser.Location = New Point(0, 17)