Results 1 to 3 of 3

Thread: How to enable a button after clicking another?

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2010
    Posts
    133

    How to enable a button after clicking another?

    As the title says how can i enable a button after clicking another?

  2. #2
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: How to enable a button after clicking another?

    Enable the 2nd button in the 1st button's click event

  3. #3
    Lively Member
    Join Date
    Feb 2010
    Posts
    120

    Re: How to enable a button after clicking another?

    In Button 1
    Code:
    Button2.Enabled = True
    Button1.Enabled = False ' if u want to disable the first
    In Button 2
    Code:
    button3.enabled = true 
    Button2.Enabled = False ' if u want to disable the first
    And So on
    And make sure that u have disabled the other buttons except the first in the properties

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