+ Reply to Thread
Results 1 to 4 of 4

Control Toolbox

  1. #1
    goldcomac@mac.com
    Guest

    Control Toolbox

    I know how to make a Checkbox and Option button, but I don't know how
    to activate them. I can get the Checkbox on the spreadsheet, but I
    can't click it to put the check in it.

    What am I doing wrong?

    Thanks.

    Chip


  2. #2
    Forum Contributor
    Join Date
    05-14-2006
    Posts
    104

    check box

    you need to double click the box and give it some code to perform should it be checked for example >

    if you make a FORM - check box
    you need it to right click and format control and give a cell link value.

    so lets say you asign A1 to it the you will notice a1 will = true or flase depending on the check or uncheck then you could write a formula saying
    =if(A1=true,"check box is checked","check box is unchecked")

    if you make a control toolbox xhexk box
    double click it and asign some code
    example
    Private Sub CheckBox1_Click()
    If CheckBox1 = True Then
    Range("A2") = "checked"
    Else
    Range("a2") = "unchecked"
    End If
    End Sub


    hope this helps

  3. #3
    Gord Dibben
    Guest

    Re: Control Toolbox

    Perhaps you are still in "Design Mode"

    Click on the design mode button to get out of that mode.


    Gord Dibben MS Excel MVP

    On 7 Jul 2006 14:45:41 -0700, "goldcomac@mac.com" <goldcomac@mac.com> wrote:

    >I know how to make a Checkbox and Option button, but I don't know how
    >to activate them. I can get the Checkbox on the spreadsheet, but I
    >can't click it to put the check in it.
    >
    >What am I doing wrong?
    >
    >Thanks.
    >
    >Chip



  4. #4
    goldcomac@mac.com
    Guest

    Re: Control Toolbox

    Yes, this was the problem.

    Thanks.


    Gord Dibben wrote:
    > Perhaps you are still in "Design Mode"
    >
    > Click on the design mode button to get out of that mode.
    >
    >
    > Gord Dibben MS Excel MVP
    >
    > On 7 Jul 2006 14:45:41 -0700, "goldcomac@mac.com" <goldcomac@mac.com> wrote:
    >
    > >I know how to make a Checkbox and Option button, but I don't know how
    > >to activate them. I can get the Checkbox on the spreadsheet, but I
    > >can't click it to put the check in it.
    > >
    > >What am I doing wrong?
    > >
    > >Thanks.
    > >
    > >Chip



+ 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