I created a form in datasheet view and it works as it should. However, when I call it from a Form Menu, it reverts to the form view. How can I make the datasheet view stick? I turned off "Allow form View', in the Datsheet form, but it does no good.
Private Sub dvCommand38_Click()
On Error GoTo Err_dvCommand38_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Datasheet"
[B]DoCmd.Minimize[/B]
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
Exit_dvCommand38_Click:
Exit Sub
Err_dvCommand38_Click:
MsgBox Err.Description
Resume Exit_dvCommand38_Click
End Sub
Something thay should as simple as the other option menu items is just plain recalcitrarnt