Results 1 to 5 of 5

Thread: bold

  1. #1

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606

    Unhappy

    i do i put just a part of a label in bold.

  2. #2
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    You don't.
    It's either Label1.FontBold = True
    or
    Label1.FontBold = False

    You could use text as an image and display it as an image
    from some other control.
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  3. #3
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    Code:
    'here is another walk around
    'add 3 labels to a form Label1,Label2,Label3
    'run it
    
    Private Sub Form_Load()
        Label1.AutoSize = True
        Label2.AutoSize = True
        Label3.AutoSize = True
        Label2.FontBold = True
        Label1.Caption = "Please "
        Label2.Caption = "help me out "
        Label3.Caption = "will you?"
        Label1.Left = 100
        Label2.Left = 100 + Label1.Width
        Label3.Left = 100 + Label1.Width + Label2.Width
    End Sub
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  4. #4

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606

    Lightbulb ahhhhhhhhhhhhh

    that's a good idea,ISaidSebs

    thanx a lot HeSaidJoe

  5. #5
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    ISaidSeb
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

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