-
I have a toolbar on my form with five buttons on it. Is there a way for me to be able to have the five buttons spread themselves equally across the whole toolbar, instead of the buttons appearing aligned to the left?
If not is there another type of control I could use to do this?
-
insert a new button between each button and make it a placeholder.
in your program you will need to adjust the width of the place holder depending on the screen res.
Toolbar1.Buttons(x).Width=...
regards
chris
-
Cheers, but I would like the buttons to take up the whole toolbar with no gaps.
Any other ideas?
-
The only way I can think of is to make the size of the images in the associated image box the width you require.
Though this would require a different imagebox for each screen resolution.
Regards
Chris
-
Cheers, but I've gone the easy route and just placed 5 large buttons side by side. Not exactly what I wanted but it will do.