HELP PLEASE...SWITCH BOARD

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

Guest

Hi,
I have created a switchboard that link to mulitple report.
Example: First page is the main menu with 3 buttons...i name this page(Main
Menu)
Second: When i click on button 1, 2, or 3 it take me to the
second page, this is where i want to change the name to something else rather
than the default Main Menu.

Is there a way to change the second or third page name to
something else? I new to Access, if possible please keep it simple.

Thanks
 
Hi,
Not sure what you used to create your switchboard but I would suggest you
use; Tools, Database Utilities, Switchboard Manager.

The page names can be changed to whatever you feel is appropriate.

Regards
Howard
 
Hi,
That's what i used (Tools, Database Utilities, Switchboard Manager)
The Switchboard work and all the links and stuff.....all i need to do
is change each page to a different name.
Example: Page 1: Main Menu
Page 2: Transaction Menu
Page 3: Customer Menu

I went into design view to change the name but whatever name i change
it to...it set that name for all the page. Again i just want to have a
different name on each page.
 
in message:
Hi,
That's what i used (Tools, Database Utilities, Switchboard Manager)
The Switchboard work and all the links and stuff.....all i need to do
is change each page to a different name.
Example: Page 1: Main Menu
Page 2: Transaction Menu
Page 3: Customer Menu

I went into design view to change the name but whatever name i change
it to...it set that name for all the page. Again i just want to have a
different name on each page.

I believe some of the control names and code are different across
the various Access versions, but are you wanting to change the label
at the top of the form or the form caption itself?

Just tell the label caption and form caption to change with the menu like so:

Private Sub Form_Current()
' Update the caption and fill in the list of options.

Me.Caption = Nz(Me![ItemText], "")
Me.Label1.Caption = Nz(Me![ItemText], "")
FillOptions

End Sub
 
Back
Top