Page 1 of 1

[Solved] Check box

Posted: Sun Feb 03, 2008 6:11 am
by loudog
I have learned much from the tutorials :) but have not seen the application of check boxes covered. What type of data input selection (Varchar etc.) would i use for a checkbox field :?:

loudog

Re: check box

Posted: Sun Feb 03, 2008 6:29 am
by DrewJensen
You can use a checkbox control on a form for columns with datatypes of
Yes/No ( Bolean )
Text( fixed )
Text( varchar )
Numeric

In all cases other then Boolean Checked = 1 and unCheched = 0
For an embedded database Checked = TRUE ( Yes ) and unChecked = FALSE ( No )

Re: check box

Posted: Sun Feb 03, 2008 6:51 am
by loudog
Nicely covered :D . Thank you ;)

loudog