Begginer's Question- Please, please help! VB

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kaylalooney
    New Member
    • Feb 2007
    • 1

    Begginer's Question- Please, please help! VB

    I am very new to visual basics, and I am doing a project and I need help!!

    Okay, so when I run the program, I have a label that does not show up because the visibility is set to "false".

    What I need to know is how to make it so that when you clilck a certian radiobutton it does show up. I am using the label to hide something that I don't want showing when I am using a certain other thing!! Thanks so much for the help.

    -VisibiltyConfus ion
  • Geoff
    New Member
    • Feb 2007
    • 17

    #2
    On the object that you click to do the action simly type:

    Code:
    Label1.Visible = True
    Label1 is the default name for a label in Visual Basic, if you've changed it to something else, then you'd have to chance it in the code as well.

    Comment

    • willakawill
      Top Contributor
      • Oct 2006
      • 1646

      #3
      Originally posted by kaylalooney
      I am very new to visual basics, and I am doing a project and I need help!!

      Okay, so when I run the program, I have a label that does not show up because the visibility is set to "false".

      What I need to know is how to make it so that when you clilck a certian radiobutton it does show up. I am using the label to hide something that I don't want showing when I am using a certain other thing!! Thanks so much for the help.

      -VisibiltyConfus ion
      Hi. You need to do the work on projects yourself. The policy at TSDN is not to complete projects for anyone. You can post code that you have completed and ask for help in areas that you are stuck.

      Comment

      Working...