I'm guessing that one or both of the check boxes aren't initialized (that
they're showing up as Gray, not White or Checked).
Try:
Me.chkOne = False
Me.chkTwo = False
Me.txtOne.Visible = Me.chkOne
Me.txtTwo.Visible = Me.chkTwo
or
Me.txtOne.Visible = Nz(Me.chkOne, False)
Me.txtTwo.Visible = Nz(Me.chkTwo, False)

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Hi all,
>
[quoted text clipped - 20 lines]
>
> Thanks in advance.
Bellyjeans - 20 May 2008 19:47 GMT
> I'm guessing that one or both of the check boxes aren't initialized (that
> they're showing up as Gray, not White or Checked).
[quoted text clipped - 41 lines]
>
> - Show quoted text -
It worked. Thanks Doug! You always give such great advice.