setting unbound checkbox value

J

jnew

Greetings,

I am creating a report with a series of check boxes such
as:

() Morning
() Afternoon
() Evening
() Other _____A value is entered here____

Here's the catch: The "Other" textbox is a bound control
and the Other checkbox is unbound. I am trying to make a
check mark appear in the unbound checkbox if the textbox
is not null.

So far, I've had no success. Here is an example of what
I've tried:

chkOther.Value = txtOther Is Not Null

No success. Any hints?
jn
 
R

Rick Brandt

jnew said:
Greetings,

I am creating a report with a series of check boxes such
as:

() Morning
() Afternoon
() Evening
() Other _____A value is entered here____

Here's the catch: The "Other" textbox is a bound control
and the Other checkbox is unbound. I am trying to make a
check mark appear in the unbound checkbox if the textbox
is not null.

So far, I've had no success. Here is an example of what
I've tried:

chkOther.Value = txtOther Is Not Null

Me![chkOther] = Not IsNull(Me![txtOther])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top