-
Is there a setting to make the captions of command buttons display vertically.
I've drawn them tall and narrow, but unfortunately I have a class module in my app to handle resizing, so when the user maximises the form the buttons get wider and mess up the formatting of the caption.
The only other thing I can think of is to make the text an image and put that on the button.
Thanks in advance for the help.
-Jack Vinitsky
-
Try this:
Code:
'Command1 is your command button
Command1.Caption = "V" & vbCrLf & "E" & vbCrLf & "R" & vbCrLf & "T" & vbCrLf & "I" & vbCrLf & "C" & vbCrLf & "A" & vbCrLf & "L"
It's the best I could do without an image.
Hope this helps.
-
Thanks
Thanks a lot Sc0rp.
As long as I use a font like courier, each letter takes up the same size, it works like a charm.
-Jack Vinitsky