L
L Mehl
The order of the worksheets is:
MainMenu
Its Worksheet_Activate() event says
frmMenuMain.Show
(frmMenuMain contains only buttons to run modules in the application;
cmdCancel hides the menu and displays the Plots tab)
Plots
Data
Instructions
....
At the end of a VBA module which creates a plot, I set focus to the Plots
worksheet with
Sheets("Plots").Select
This also changes the leftmost tab to be the Plots worksheet tab and moves
the MainMenu tab off the screen to the left.
As the code above indicates, showing the MainMenu worksheet (to have its tab
appear as the leftmost tab) displays the form on that worksheet.
Is there some code that will display all tabs starting with MainMenu and
then show the Plots worksheet?
Thanks for any help.
Larry Mehl
MainMenu
Its Worksheet_Activate() event says
frmMenuMain.Show
(frmMenuMain contains only buttons to run modules in the application;
cmdCancel hides the menu and displays the Plots tab)
Plots
Data
Instructions
....
At the end of a VBA module which creates a plot, I set focus to the Plots
worksheet with
Sheets("Plots").Select
This also changes the leftmost tab to be the Plots worksheet tab and moves
the MainMenu tab off the screen to the left.
As the code above indicates, showing the MainMenu worksheet (to have its tab
appear as the leftmost tab) displays the form on that worksheet.
Is there some code that will display all tabs starting with MainMenu and
then show the Plots worksheet?
Thanks for any help.
Larry Mehl