StartArguments ?

  • Thread starter Thread starter Gary Dunne
  • Start date Start date
G

Gary Dunne

Can anyone tell me what NameSpace/Library I should be looking at to access
the StartArguments of an application ?

Thanks

(Just been trawling through the (un)Help file ... there are a few references
but no samples .... can't find it in the Object Browser ... I much preferred
the old (VS 6) version of Help .. The new version can be a bit of a pain,
not very intuitive etc )

Gary
 
The new version of help will become as friendly as the old one after you get
use to it.

Are you looking to get access to the command-line arguments? If so do a
search on command line arguments will reveal what you are looking for.

One way is like this:
Sub Module1
Sub Main(CmdArgs() as String)

End Sub
End Sub

Chris
 
Thanks ... that'll get me started


Chris said:
The new version of help will become as friendly as the old one after you get
use to it.

Are you looking to get access to the command-line arguments? If so do a
search on command line arguments will reveal what you are looking for.

One way is like this:
Sub Module1
Sub Main(CmdArgs() as String)

End Sub
End Sub

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top