+ Reply to Thread
Results 1 to 5 of 5

Hiding a Command Button in a UserForm

Hybrid View

  1. #1
    dvoit91
    Guest

    Hiding a Command Button in a UserForm

    Thank you for reading this,

    I have programmed a button on SHEET 2 of Excel that allows the user to see a Multi-Page Userform via Excel once clicked. Once the Userform pops up, the user is then required to read the License/agreement information listed within a text box.

    Once the user reads the terms and conditions, he/she is prompted to make a decision to either Agree or Disagree with the terms and conditions. For this, i have inserted 2 option buttons on the userform (1 for agree, other for disagree).

    Important: There is a NEXT button and a CLOSE button (which both work).

    HERE IS MY PROBLEM,
    I would like to have the 'NEXT' button hidden when the user selects the DISAGREE button, then have it APPEAR once the AGREE button is selected (In case the user selects disagree then agree).

    This is what I want in order to prevent the user from using my program unless he/she agrees to my terms and conditions.


    How would i do this?


    THANKS SO MUCH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Attached Files Attached Files

  2. #2
    Forum Expert p24leclerc's Avatar
    Join Date
    07-05-2010
    Location
    Québec
    MS-Off Ver
    Excel 2021
    Posts
    2,081

    Re: Hiding a Command Button in a UserForm

    You simply do this which makes the NEXT button visible or not.:
    Private Sub OptionButton1_Click()
    CommandButton1.Visible = True
    End Sub
    
    Private Sub OptionButton2_Click()
    CommandButton1.Visible = False
    End Sub

  3. #3
    dvoit91
    Guest

    Re: Hiding a Command Button in a UserForm

    Oh, its that simple!? I was thinking that i would need to write an IF statemant...

    THANK YOU SO MUCH!!

  4. #4
    dvoit91
    Guest

    Re: Hiding a Command Button in a UserForm

    One more thing,

    I would like to have the NEXT button be Hidden UNTIL the user selects AGREE...
    (instead of having it be visible before any option is selected)

    would the code be similar to what you have stated above?

  5. #5
    dvoit91
    Guest

    Re: Hiding a Command Button in a UserForm

    Nevermind, figured it out...

    Thanks again for the help!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1