M
MBison80
Hello all,
I am experiencing problems with what I thought would be
straight forwards task. I have a form based on a table name
tblCalendar. The form is viewed as Continous forms. The tbl has a fe
fields, one of which is 'subject' (txtBox) and another is 'Completed'
(chkBox). Both fields are displayed on the form, the txtbox has anothe
control on it, a line which should show as visible when the chkbox i
checked. Problem is that whenever the form is loaded/opened, although
have three records out of the ten that have a checked chkbox, the line
for those records do not display, and when I check any of the chkboxe
all the txtboxes then display the line, instead of just the txtbox fo
thatb record. The code I have for the afterupdate for the chkbox is a
follows.
If Me.chkCom.Value = -1 Then
Me.Strike.Visible = True
Else: Me.Strike.Visible = False
End If
Can anyone please correct me on this problem ?
Many thanks,
Craig....
I am experiencing problems with what I thought would be
straight forwards task. I have a form based on a table name
tblCalendar. The form is viewed as Continous forms. The tbl has a fe
fields, one of which is 'subject' (txtBox) and another is 'Completed'
(chkBox). Both fields are displayed on the form, the txtbox has anothe
control on it, a line which should show as visible when the chkbox i
checked. Problem is that whenever the form is loaded/opened, although
have three records out of the ten that have a checked chkbox, the line
for those records do not display, and when I check any of the chkboxe
all the txtboxes then display the line, instead of just the txtbox fo
thatb record. The code I have for the afterupdate for the chkbox is a
follows.
If Me.chkCom.Value = -1 Then
Me.Strike.Visible = True
Else: Me.Strike.Visible = False
End If
Can anyone please correct me on this problem ?
Many thanks,
Craig....