Quote:
>I was wondering if it's possible to have my program (written in VB) to
>accept command line arguments? I could've sworn I've done it before.
>If so, how can I access those values? The help files are useless. I'm
>using VB5 by the way.
Sub Main()
strArg = command$
End Sub
strArg will contain the command line arguements as one string. You
have to do your own parseing.
-dave-