Check Box

Check Box

am 22.01.2008 18:34:17 von burnspaul

How do I default a Check Box to have the tick already in it

Re: Check Box

am 22.01.2008 18:35:14 von frogsteaks

On Jan 22, 12:34=A0pm, Paul wrote:
> How do I default a Check Box to have the tick already in it

set the default value to true i believe

Re: Check Box

am 22.01.2008 18:39:07 von burnspaul

On 22 Jan, 17:35, frogste...@yahoo.com wrote:
> On Jan 22, 12:34=A0pm, Paul wrote:
>
> > How do I default a Check Box to have the tick already in it
>
> set the default value to true i believe

Have set Default Value to True but no joy. Thanks

Re: Check Box

am 22.01.2008 20:01:22 von frogsteaks

On Jan 22, 12:39=A0pm, Paul wrote:
> On 22 Jan, 17:35, frogste...@yahoo.com wrote:
>
> > On Jan 22, 12:34=A0pm, Paul wrote:
>
> > > How do I default a Check Box to have the tick already in it
>
> > set the default value to true i believe
>
> Have set Default Value to True but no joy. Thanks

If you have this on a form and the Check Box is bound to a field in
the underlying recordsource, then the box will reflect the value in
the current record. If it is an unbound object, then setting the
defualt to True will have it checked by default. If you are
attempting to set the default value of the check box for a new record
in the datasource, this is accomplished by setting the default for the
field in the table in question to True.

Re: Check Box

am 23.01.2008 08:12:00 von Dominic Vella

There are 2 places where you would set the default value of a check box.

1) This is set in your Table
2) Secondly, in the Form where your table data is presented.

The Form will normally over-ride the Table's default.

To set the default value to show a tick you can use True, Yes or -1.

Changing the default value will only effect new data being entered. You
will need to edit any data that you may have at the time.


Hope this helps.


Dominic


"Paul" wrote in message
news:62447773-032b-4f56-8230-fb1423f3a871@i29g2000prf.google groups.com...
> How do I default a Check Box to have the tick already in it