Link with Text

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shaiful
    New Member
    • Oct 2007
    • 89

    Link with Text

    Hi all,
    I have a problem with link with text. for example: I have a data from database "RS(1)" i want to see on form it with link and will show a msgbox. My question is how to make a link such as hyper link on a text ..? pls give me advice or idea if u have . thx advance , shaif
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Your question is bit hazy.

    please clarify from where to where you wnat to link .

    Comment

    • shaiful
      New Member
      • Oct 2007
      • 89

      #3
      So Sorry 4 unclear, I just want to how it is possible just click on any text label and will display a msg. it will ack as hyperlink, thx

      Comment

      • debasisdas
        Recognized Expert Expert
        • Dec 2006
        • 8119

        #4
        Originally posted by shaiful
        So Sorry 4 unclear, I just want to how it is possible just click on any text label and will display a msg. it will ack as hyperlink, thx
        What message you want to display. Are you asking of tool tip text.

        Comment

        • shaiful
          New Member
          • Oct 2007
          • 89

          #5
          no toolip, i mean msgbox only

          Comment

          • QVeen72
            Recognized Expert Top Contributor
            • Oct 2006
            • 1445

            #6
            Hi,

            By HyperLink what do you mean :: You want to Change the MousePointer when it is Rowing over the TextBox.....?

            Regards
            Veena

            Comment

            • jeffbroodwar
              New Member
              • Oct 2006
              • 118

              #7
              Hi shaiful,

              Hope this gives you an idea:

              1. change the property of text1 (name of textbox) :
              - mouse pointer : to custom (99)
              - upload icon : get a cursor same with the link cursor (hand)

              2. look for the mouse move property of text1 then follow the idea below:
              (NOTE: the syntax below is not tested since i don't have vb in my office.. somehow it will atleast give you an idea how it's done ^^)
              Code:
                     private sub text1_click()
                         call msgbox("Show message here !!!",vbinformation)
                     end sub
              P.S.
              StarCraft II is coming soon.... En taro adun !!!

              Regards,
              Jeff

              Comment

              • debasisdas
                Recognized Expert Expert
                • Dec 2006
                • 8119

                #8
                Originally posted by shaiful
                no toolip, i mean msgbox only
                Do you want to display a message box when mouse moves over a control ?

                Comment

                Working...