J
Jim Jones
Hi,
I created a form via a wizard, which "did its best" in laying out my
forms/subforms.
On the first form, it placed a button to open a pop up (linked form),
and this is the code behind the button, that it created:
**********************************************************
Sub ToggleLink_Click()
On Error GoTo ToggleLink_Click_Err
If ChildFormIsOpen() Then
CloseChildForm
Else
OpenChildForm
FilterChildForm
End If
ToggleLink_Click_Exit:
Exit Sub
ToggleLink_Click_Err:
MsgBox Error$
Resume ToggleLink_Click_Exit
End Sub
********************************************************
From that code, what does the "FilterChildForm" statement, which is
on a line by itself do?
What does it filter off of or from or to ?
If the FilterChildForm statement something it created somewhere hidden
in my database?
Thanks,
Jim
I created a form via a wizard, which "did its best" in laying out my
forms/subforms.
On the first form, it placed a button to open a pop up (linked form),
and this is the code behind the button, that it created:
**********************************************************
Sub ToggleLink_Click()
On Error GoTo ToggleLink_Click_Err
If ChildFormIsOpen() Then
CloseChildForm
Else
OpenChildForm
FilterChildForm
End If
ToggleLink_Click_Exit:
Exit Sub
ToggleLink_Click_Err:
MsgBox Error$
Resume ToggleLink_Click_Exit
End Sub
********************************************************
From that code, what does the "FilterChildForm" statement, which is
on a line by itself do?
What does it filter off of or from or to ?
If the FilterChildForm statement something it created somewhere hidden
in my database?
Thanks,
Jim