Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tickbox and Textbox

Status
Not open for further replies.

dmkennard2

Technical User
Jun 11, 2004
101
GB
Hi,
I have a tickbox, when the tickbox is true i have a textbox appear.
If i scroll through the records the textbox stays visible whether or not the tickbox is true or false on the other records.
Is there a way i can have the form refresh so the textbox stays hidden when scrolling through.

The textbox initially has the visible property set to false and the following statement is behind the tickbox.

If Services.Value = True Then
Notes.Visible = True
Else
Notes.Visible = False
End If

Thanks in advance.

Dazz
 
Is Services bound to a field of the recordset? If so you can reference that field in the Form_Current Event.

-Pete
 
Excellent. I think that was one of the only ones i did not try as its not abvious.

Thanks again.

Dazz
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top