Hi All:
I created a public property on my form3. The property I created is called lVisible. I assigned "F' to this property from Form2. Like so: Form3.lVisible = "F". Than I call form3 like so:
Load Form3
Form3.Show 1

If my form3, I have some code like so:
Private Sub Form_Activate()
If Me.lVisible = F Then
txtbxaddr2.Visible = False
End If
txtPerson.SetFocus
End Sub

The lVisible property in Form3 is null, even though I am setting the value to "F" in form. What am I doing wrong?
Thanks