Need to open a workbook and have it go to a specific Sheet tab at the bottom.
this is my icon on my desktop
"F:\data\DougTest.xls" /e/6
I want to open DougTest.xls and have it goto the sixth tab or a Tab named MyData or whatever.
I found this code elsewhere.
but I get error on the Declare line.
I tried it outside any sub at the very top of the Workbook code area and also inside the workbook_open sub.
It won't allow it. Where do I put declares in Excel????
it needs to be in each workbook (they will be on our web site at some point)
also tried this code which works in VB6 and Access
But the message box is empty
DougP, MCP, A+
this is my icon on my desktop
"F:\data\DougTest.xls" /e/6
I want to open DougTest.xls and have it goto the sixth tab or a Tab named MyData or whatever.
I found this code elsewhere.
Code:
Declare Function GetCommandLineA Lib "Kernel32" () As String
Dim CmdLine As String 'command-line string
CmdLine = GetCommandLineA 'get the cmd-line string
msgbox CmdLine
I tried it outside any sub at the very top of the Workbook code area and also inside the workbook_open sub.
It won't allow it. Where do I put declares in Excel????
it needs to be in each workbook (they will be on our web site at some point)
also tried this code which works in VB6 and Access
Code:
Dim CmdLine As String 'command-line string
CmdLine = Command() 'get the cmd-line string
msgbox CmdLine
DougP, MCP, A+