Results 1 to 3 of 3

Thread: Buttons with vertical captions

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    80
    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



  2. #2
    Guest
    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.

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    80

    Smile 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
  •  



Click Here to Expand Forum to Full Width