T
Tim
I don't know why my following codes don't work. Can you help me? I already
created a textbox (txt1) in the Detail section.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me!txt1.Value = "ABC" Then
txtPara1ABC.Visible = -1
txtPara1SomethingElse.Visible = 0
Else
txtPara1SomethingElse.Visible = -1
txtPara1ABC.Visible = 0
End If
End Sub
created a textbox (txt1) in the Detail section.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me!txt1.Value = "ABC" Then
txtPara1ABC.Visible = -1
txtPara1SomethingElse.Visible = 0
Else
txtPara1SomethingElse.Visible = -1
txtPara1ABC.Visible = 0
End If
End Sub