From the switchboard I can not get forms to open in the datasheet view. I have it set as the default view but it still opens in the form view. Does anyone know the code? and if so, where do I put the code. Thank you 

I would imagine the Switchboard has a form. Open the Switchboard in Design and look for the code that opens the form, add the acFormDS constant in the parameter as you have it above.Below is the code that needs to be changed to open the form in the datasheet view: I just don't know where to change the code. Can anyone help and advise how to find where to change the code?
DoCmd.OpenForm stDocName, acNormal, , , , acDialog
DoCmd.OpenForm stDocName, acFormDS, , , , acDialog
Private Sub Option[B][I]X[/I][/B]_Click()
End Sub
Private Sub Option[B][I]X[/I][/B]_Click()
DoCmd.OpenForm "YourFormName", acFormDS
End Sub