C crhodus Registered User. Local time Today, 04:52 Joined Mar 16, 2001 Messages 257 Oct 18, 2001 #1 How can I get my form to display records in datasheet view? When I launch the form from my switchboard, it loads it in Form View. I tried changing the Default View and Views allowed to Datasheet View, but this didn't help. Thanks!
How can I get my form to display records in datasheet view? When I launch the form from my switchboard, it loads it in Form View. I tried changing the Default View and Views allowed to Datasheet View, but this didn't help. Thanks!
D DJN Guest Oct 18, 2001 #2 This will open your form in datasheet view. I am assuming that you want to open that way all the time. Dim stDocName As String stDocName = "YourFormName" DoCmd.OpenForm stDocName, acFormDS, "", "", , acNormal
This will open your form in datasheet view. I am assuming that you want to open that way all the time. Dim stDocName As String stDocName = "YourFormName" DoCmd.OpenForm stDocName, acFormDS, "", "", , acNormal
C crhodus Registered User. Local time Today, 04:52 Joined Mar 16, 2001 Messages 257 Oct 18, 2001 #3 Thanks! That fixed my problem.