Hi,
I have to get this done by this week any ideas would be great. I have created a standard search button using access' wizard. the code on the onclick event is as follows:
-------------------------------------------
Private Sub Command205_Click()
On Error GoTo Err_Command205_Click
Screen.PreviousControl.SetFocus
docmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Command205_Click:
Exit Sub
Err_Command205_Click:
MsgBox Err.Description
Resume Exit_Command205_Click
End Sub
-----------------------------------------
This only searches data within the main form, how can I enable the searching of data within subforms from the same search pop up box?
Many thanks.
I have to get this done by this week any ideas would be great. I have created a standard search button using access' wizard. the code on the onclick event is as follows:
-------------------------------------------
Private Sub Command205_Click()
On Error GoTo Err_Command205_Click
Screen.PreviousControl.SetFocus
docmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Command205_Click:
Exit Sub
Err_Command205_Click:
MsgBox Err.Description
Resume Exit_Command205_Click
End Sub
-----------------------------------------
This only searches data within the main form, how can I enable the searching of data within subforms from the same search pop up box?
Many thanks.