Skip Bisconer
Who Me?
- Local time
- Today, 03:12
- Joined
- Jan 22, 2008
- Messages
- 285
The properties of the opening form are set the following way but it continues to open in single form view. I need it to open in datasheet view. If I open the as a stand alone it opens in Datasheet View. Can someone point out my error?
Property set as:
Popup Yes, Modal Yes
Default View Datasheet, Allow Form View No, Allow Datasheet View Yes
Private Sub Command23_Click()
On Error GoTo Err_Command23_Click
Me.Visible = False
MinimizeMainForm
DoCmd.OpenForm "frmViewAssignedOrdersProgress", , , , , acDialog " I have tried setting the acNormalVeiw" but it didn't work either.
Me.Visible = TrueExit_Command23_Click:
Exit Sub
Err_Command23_Click:
MsgBox Err.Description
Resume Exit_Command23_Click
Property set as:
Popup Yes, Modal Yes
Default View Datasheet, Allow Form View No, Allow Datasheet View Yes
Private Sub Command23_Click()
On Error GoTo Err_Command23_Click
Me.Visible = False
MinimizeMainForm
DoCmd.OpenForm "frmViewAssignedOrdersProgress", , , , , acDialog " I have tried setting the acNormalVeiw" but it didn't work either.
Me.Visible = TrueExit_Command23_Click:
Exit Sub
Err_Command23_Click:
MsgBox Err.Description
Resume Exit_Command23_Click