Results 1 to 3 of 3

Thread: Multiline ToolTipText?

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2000
    Posts
    5

    Question

    How can I use multiline ToolTipText?

  2. #2
    Hyperactive Member Asaf_99's Avatar
    Join Date
    Jul 2000
    Location
    Israel
    Posts
    335
    Easy:

    In the properties of the object you refer to, change ToolTipText to " ".
    Then insert this:

    Code:
    Private Sub Form_Load()
    Dim TTT As String
    TTT = "Line 1 of text" & vbNewLine & "Line 2 of text"
    Text1.ToolTipText = TTT
    End Sub
    But you will have to ask someone else for the thing with those to chars that aren't suppose to be there.

    This is the code basicly.
    Sorry for now fully do the code...
    Asaf Sagi

    ICQ: 61917199
    E-Mail: [email protected]

  3. #3

    Thread Starter
    New Member
    Join Date
    Aug 2000
    Posts
    5

    Smile Thank you,that's the first step.Next?

    x

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