Yes/No checkbox in the form

Ask a Question related to Microsoft Access, Design and Development.

  1. #1

    Default Yes/No checkbox in the form

    I have a field called action in a table, to check if
    something requires action the user must check the box. The
    field in the table is defined as a yes/no field, but when
    I am designing the form, I would like to see both yes and
    no check boxes is there a way to do that? and import the
    result back to the table.?

    Thanks,

    Jordana

    Jordana Guest

  2. Similar Questions and Discussions

    1. CheckBox required on form?
      I have a form, and we need to have a checkbox that the user is required to check. Basically saying they read the disclaimer. Is there a way to...
    2. How do I use the form checkbox value?
      I'm creating a form that has multiple checkboxes. I want to use ActionScript to update a text box/area with the values each checkbox as the checkbox...
    3. Flash Form & Checkbox
      I'm having trouble changing this listbox code to checkboxes instead. Can you help? <cfselect name="binderyID" label = "Bindery Type"...
    4. Checkbox Set To OFF Not In Request.Form
      When using checkboxes on a form, if you uncheck them, the unchecked name/value pair in the Request.Form collection doesn't show up. It only shows...
    5. Form CheckBox question
      Hello, I have this in my form.... the checkUnCheck(this); will uncheck values 1,2,3 if None is chosen... Now when I submit this form, the output...
  3. #2

    Default Re: Yes/No checkbox in the form

    You could use the OptionGroup control on your form instead of a single
    CheckBox control. When using the wizard to create your OptionGroup, set
    the labels as 'Yes' and 'No'; the default value for 'Yes' should be -1 and
    for 'No', the default value should be 0. You can format the OptionGroup to
    display as Check Boxes or Radio Buttons.

    Bind this OptionGroup control to your table's Yes/No field and you won't
    need to "import the result back to the table".

    --
    Cheryl Fischer
    Law/Sys Associates
    Houston, TX

    "Jordana" <jordanahM@hotmail.com> wrote in message
    news:0ba701c3582d$0ada09e0$a301280a@phx.gbl...
    > I have a field called action in a table, to check if
    > something requires action the user must check the box. The
    > field in the table is defined as a yes/no field, but when
    > I am designing the form, I would like to see both yes and
    > no check boxes is there a way to do that? and import the
    > result back to the table.?
    >
    > Thanks,
    >
    > Jordana
    >

    Cheryl Fischer Guest

  4. #3

    Default Yes/No checkbox in the form

    Use tyhe Option Group control. this creates a mutually
    exclusive set of radio buttons, or check boxes.
    >-----Original Message-----
    >I have a field called action in a table, to check if
    >something requires action the user must check the box.
    The
    >field in the table is defined as a yes/no field, but when
    >I am designing the form, I would like to see both yes and
    >no check boxes is there a way to do that? and import the
    >result back to the table.?
    >
    >Thanks,
    >
    >Jordana
    >
    >.
    >
    Bish Guest

  5. #4

    Default Re: Yes/No checkbox in the form

    Thanks, I actually did that and when I open the table to
    see the value in the field it is 0 or -1 instead of yes/no
    how can I format the the values to give me the option name
    rather then the value number?

    Thanks again,

    Jordana

    >-----Original Message-----
    >You could use the OptionGroup control on your form
    instead of a single
    >CheckBox control. When using the wizard to create your
    OptionGroup, set
    >the labels as 'Yes' and 'No'; the default value for 'Yes'
    should be -1 and
    >for 'No', the default value should be 0. You can format
    the OptionGroup to
    >display as Check Boxes or Radio Buttons.
    >
    >Bind this OptionGroup control to your table's Yes/No
    field and you won't
    >need to "import the result back to the table".
    >
    >--
    >Cheryl Fischer
    >Law/Sys Associates
    >Houston, TX
    >
    >"Jordana" <jordanahM@hotmail.com> wrote in message
    >news:0ba701c3582d$0ada09e0$a301280a@phx.gbl...
    >> I have a field called action in a table, to check if
    >> something requires action the user must check the box.
    The
    >> field in the table is defined as a yes/no field, but
    when
    >> I am designing the form, I would like to see both yes
    and
    >> no check boxes is there a way to do that? and import the
    >> result back to the table.?
    >>
    >> Thanks,
    >>
    >> Jordana
    >>
    >
    >
    >.
    >
    jordana Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139