setting unbound checkbox value

  • Thread starter Thread starter jnew
  • Start date Start date
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
 
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])
 
Back
Top