Switchboard

  • Thread starter Thread starter Slacy
  • Start date Start date
S

Slacy

I have created a switchboard in Access 2000. For some
reason my forms are not holding. I just want them to look
like a datasheet. Am I missing something? All my reports
are holding. Please help! Thanks
 
Change the OpenForm code to specifically open in datasheet view:
DoCmd.OpenForm "MyForm", acFormDS
 
Allen, thanks for the info. I had changed it to open in
datasheet view, but with no luck I am still getting a form
layout. I have changed this in the property box. The
strange thing is when I open it without going thru the
switchboard it opens in datasheet view. Any suggestions?
Thanks
 
Slacy, I find the built-in Switchboard is not powerful enough for most
things. You may need to create your own unbound form with the command
buttons you want, and then specify the desired code in the Click event of
each command button.
 
Back
Top