J
Jim Jones
Hi.
I'd like to be able to tile both form windows horizontally, when I
click on the button, which is on the first form.
The two forms that are displayed at the same time were created by the
form wizard, using a query that uses 3 tables. I think i like the
way the wizard split them up.
But, when I click on the button on the first form, the second one pops
up, and displays the proper record and everything, but the second
window is overlaid on top of the first or "calling" form as I call it.
OK, so here is the current code in the "onclick" event of the button
that pops up the second form.
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
OK, so how do I fit in the code that would tile the two forms
horizontally? I imagine it would go after the End If statement.
Please help,
Thanks,
Jim
I'd like to be able to tile both form windows horizontally, when I
click on the button, which is on the first form.
The two forms that are displayed at the same time were created by the
form wizard, using a query that uses 3 tables. I think i like the
way the wizard split them up.
But, when I click on the button on the first form, the second one pops
up, and displays the proper record and everything, but the second
window is overlaid on top of the first or "calling" form as I call it.
OK, so here is the current code in the "onclick" event of the button
that pops up the second form.
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
OK, so how do I fit in the code that would tile the two forms
horizontally? I imagine it would go after the End If statement.
Please help,
Thanks,
Jim