Check box to one table field

  • Thread starter Thread starter Sok Hong
  • Start date Start date
S

Sok Hong

Hello,

I am currently trying to set 19 check boxes so that when
they are clicked, the entry will be typed into a table
field. Any clue on how I can get started with that? Is
there a previous article that tells you how to do
something like that?
 
I am currently trying to set 19 check boxes so that when
they are clicked, the entry will be typed into a table
field. Any clue on how I can get started with that? Is
there a previous article that tells you how to do
something like that?

Are these 19 separate checkboxes or are they partly, or entirely, tied to (an)
option group(s)? Are there 19 separate fields? What do you want "typed"?
Checkboxes are "True/False" controls (values are -1 or 0, when containing a
value), so if you merely want to store the controls' values you would need to
bind them to "Boolean", or "Yes/No" fields in the table. If you have not
determined the answer to your question, provide more explicit information and
someone can help you work it out.
 
Hello,

I am currently trying to set 19 check boxes so that when
they are clicked, the entry will be typed into a table
field. Any clue on how I can get started with that? Is
there a previous article that tells you how to do
something like that?

A checkbox has a value of either -1 (Yes) or 0 (No). What do you want
the value of the field to contain, if you have nineteen different
values on the Form? A field can have only ONE value.
 
Back
Top