user control

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Hari babu
    New Member
    • Sep 2007
    • 1

    user control

    hi
    how use user control label in vb6.0 to display text
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    No one can helpyou with that.

    Please pass some more details ,to get help from experts.

    Comment

    • Killer42
      Recognized Expert Expert
      • Oct 2006
      • 8429

      #3
      Yes, we'll need an explanation of what you mean. The expression "user control label" doesn't seem to make any sense. VB has a Label control, and you can create User Controls. I don't see the connection.

      Comment

      • VBPhilly
        New Member
        • Aug 2007
        • 95

        #4
        Originally posted by Hari babu
        hi
        how use user control label in vb6.0 to display text
        i'll take a wild guess and assume you mean to ask:

        how do you use the label control in vb6 to display text?

        label control has a .caption property. use .caption to display text.

        Code:
        label1.caption = "my text"

        Comment

        Working...