|
-
Aug 14th, 2000, 05:05 PM
#1
Thread Starter
Lively Member
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
-
Aug 14th, 2000, 05:57 PM
#2
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.
-
Aug 14th, 2000, 06:06 PM
#3
Thread Starter
Lively Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|