I have found several snippet of code out there that allows me to pass arguments into excel from command line.
The code below is placed in a new module called parameters:
Declare Function GetCommandLine Lib "kernel32" Alias "GetCommandLineW" () As Long
Declare Function lstrlenW Lib "kernel32" (ByVal lpString As Long) As Long
Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (MyDest As Any, MySource As Any, ByVal MySize As Long)
Public CmdLineToStr() As String
'
' Returns the command line in the call to Excel
'
Dim Buffer() As Byte
Dim StrLen As Long
Dim CmdPtr As Long
CmdPtr = GetCommandLineW()
If CmdPtr > 0 Then
StrLen = lstrlenW(CmdPtr) * 2
If StrLen > 0 Then
ReDim Buffer(0 To (StrLen - 1)) As Byte
CopyMemory Buffer(0), ByVal CmdPtr, StrLen
CmdLineToStr = Buffer
End If
End If
End Sub
and then in thisworkbook i call this code
Sub workBook_open()
MsgBox Parameters.CmdLineToStr
End Sub
It fails with the GetCommandLine
function, so is the error due to problems with linking the dll library or is this due to the fact that i have some macros stored in personal.xlsb?
I call the excel sheet from the command line with this line:
C:\Users\kim\Desktop>start excel Parameters.xlsm /e/nmbnmbmnb
and i get this error :
The corrected, tested procedure: (The version above had two mistakes.)
...place the code in a new, regular module, then call
CmdLineToStr
to get the command line that was used to open Excel, such as:Change
Public CmdLineToStr() As String
to
Public Function CmdLineToStr() As String
Public CmdLineToStr() As String
is not a procedure, you need to put eitherSub
orFunction
so it is a procedure. Hence the error message "Invalid outside procedure" because you were precisely outside a procedure.