How can I get vertical text on a button? Do I have to use an image?
Printable View
How can I get vertical text on a button? Do I have to use an image?
Maybe overriding paint method of the button.
are you talking vertical where the text is on it's side? or vertical like this...
t
e
x
t ?
I mean vertical where you read the word from bottom up.
you could make the string in to a char array, add an Environment.Newline after each char and then add the string as your button's text ( in reverse if you wish to read from bottom first )
My solution was to use a tab control and rotate it 90 degrees to the reverse. Works good.
umm how do you rotate a tab control?Quote:
Originally posted by VBCrazyCoder
My solution was to use a tab control and rotate it 90 degrees to the reverse. Works good.
Maybe he means the location of the tabs to be at left side.
You just set the alignment property to Left.