Hi,
Because it is a split form you need to target the controls using the form name too as follows:
Forms![Radio Family Form]!internal_ind.Visible = True
So your code would become:
Code:
Private Sub chk_be_replacement_Click()
Forms![Radio Family Form]!internalLabel.Visible = Forms![Radio Family Form]!chk_be_replacement
Forms![Radio Family Form]!internal_ind.Visible = Forms![Radio Family Form]!chk_be_replacement
End Sub
Private Sub Form_Current()
chk_be_replacement_Click()
End Sub
Note: The control 'chk_be_replacement' is unbound so you will need to add another yes/no field to your db and link it to this control. Then your oncurrent will work.