Hi,
How can I modify my code (below) to open a table in front of a form? I am currently minimizing the form but I would prefer to send the form to the back of the table.
[BEGIN CODE]
Private Sub WO_View_Table_Click()
On Error GoTo Err_WO_View_Table_Click
Dim stDocName As String
Dim stLinkCriteria As String
'DoCmd.SelectObject acForm, "WO_User_Main_Menu", False
'DoCmd.Minimize
stDocName = "WO _Records"
DoCmd.OpenTable "WO_log_table", acViewNormal, acReadOnly
DoCmd.Maximize
Exit_WO_View_Table_Click:
Exit Sub
Err_WO_View_Table_Click:
MsgBox Err.Description
Resume Exit_WO_View_Table_Click
End Sub
[END CODE]
Thank you so much!
How can I modify my code (below) to open a table in front of a form? I am currently minimizing the form but I would prefer to send the form to the back of the table.
[BEGIN CODE]
Private Sub WO_View_Table_Click()
On Error GoTo Err_WO_View_Table_Click
Dim stDocName As String
Dim stLinkCriteria As String
'DoCmd.SelectObject acForm, "WO_User_Main_Menu", False
'DoCmd.Minimize
stDocName = "WO _Records"
DoCmd.OpenTable "WO_log_table", acViewNormal, acReadOnly
DoCmd.Maximize
Exit_WO_View_Table_Click:
Exit Sub
Err_WO_View_Table_Click:
MsgBox Err.Description
Resume Exit_WO_View_Table_Click
End Sub
[END CODE]
Thank you so much!