View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
news.microsoft.com[_7_] news.microsoft.com[_7_] is offline
external usenet poster
 
Posts: 4
Default Auto_Open question

Hi.

Is there a command line argument list ( like in c /c++ : int main(int argc, char *argv[]) )
available in VB for Excel, so that I can write an Auto_Open macro that read in arguments - like file names?

Sub Auto_Open()
Dim filename As String
filename= ????
..
..
..
End Sub