switchboard

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H
I have created a form (Timesheet) and have set the default view to 'Datasheet'. I have a switchboard menu that when you click on the item to open the form 'Timesheet' it opens the form in form view rather than datasheet view. How can I get it to oen the form in datasheet view when selected from the switchboard
Regards
Sean
 
Sean,

Check the code fired by the Click event of the command button on the
switchboard opening the form. There should be a line like
DoCmd.OpenForm "Form Name"...
If there are more arguments, then the one right after the form name must be
acNormal. Change this argument (or add it if it does not exist) to acFormDS.

HTH,
Nikos

Sean said:
Hi
I have created a form (Timesheet) and have set the default view to
'Datasheet'. I have a switchboard menu that when you click on the item to
open the form 'Timesheet' it opens the form in form view rather than
datasheet view. How can I get it to oen the form in datasheet view when
selected from the switchboard?
 
Hi Sean,

You must be using the Access built-in Switchboard Manager
I presume.
You have three options (at least) available to you.

1. You could make your form into a Continuous Form and
design it so it *looks* just like a datasheet. Then open
it in Edit mode from the Switchboard.

2. You could design your own "Switchboard-type" form and
launch all your procedures from there.

3. You can change the Switchboard code a little bit to
achieve your desired result. The Switchboard automatically
will open a form in Single view. If you change the code to
datasheet view then ALL forms will open in Datasheet view
which is probably not a good thing. If you would like to
have the best of both worlds, follow these instructions on
a BACK-UP COPY.

Open the Switchboard code. Find the area that has this:

' Constants for the commands that can be executed.
Const conCmdGotoSwitchboard = 1
Const conCmdOpenFormAdd = 2
Const conCmdOpenFormBrowse = 3
Const conCmdOpenReport = 4
Const conCmdCustomizeSwitchboard = 5
Const conCmdExitApplication = 6
Const conCmdRunMacro = 7
Const conCmdRunCode = 8

Add one more line to the list like this:

Const conCmdOpenFormDatasheet = 9

Now go a little further down the code until you come to
this area:

' Run code.
Case conCmdRunCode
Application.Run rst![Argument]

' Any other command is unrecognized.
Case Else
MsgBox "Unknown option."

In between these two areas we want to add another one for
datasheet view. Add in this new code in the middle so it
looks like this:

' Run code.
Case conCmdRunCode
Application.Run rst![Argument]

' Open a form in Datasheet Mode.
Case conCmdOpenFormDatasheet
DoCmd.OpenForm rst![Argument], acFormDS

' Any other command is unrecognized.
Case Else
MsgBox "Unknown option."

Compile and save the form.

Now you will NOT be able to use the Switchboard Wizard to
use this option. The Wizard will only use the 8 pre-
defined options. To open a form in Datasheet View you will
need to go directly to the Switchboard Items TABLE and add
it yourself. If you study the records you will figure out
what is going on. Just use the number 9 in the Command
field to open a form in datasheet view and showing all
records.

Hope that helps,
Jeff Conrad
Bend, Oregon

Sean said:
Hi
I have created a form (Timesheet) and have set the default view to
'Datasheet'. I have a switchboard menu that when you click on the item to
open the form 'Timesheet' it opens the form in form view rather than
datasheet view. How can I get it to oen the form in datasheet view when
selected from the switchboard?
 
Back
Top