just wondering

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,

is it possible to call like a console application with parameters? if not
what would be some alternatives?

thanks,
rodchar
 
Sub Main(Args() as String)

End Sub

That will put your parameters from the command line into the Args array.

Chris
 
If you are calling a console app from your app, then use the
System.Diagnostics.Process class and the ProcessInfo class. You can
pass arguments using these.

Chris
 
Funny

Both Chrisses give a correct answer and because of that the answer becomes
complete in my opinion

(I think rodchar was looking for the first answer, however could as been the
second as well)

:-)

Cor
 

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

Similar Threads

wondering if this is possible... 4
just wondering why 2
is there a way to do this 4
form image 4
2 arrays into 1 2
making async calls 1
array bound listbox 2
is this even possible? 4

Back
Top