How can I get args of Form program? In console application I can use args[] but what about Form Application?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

One simple way:

string[] args = Environment.GetCommandLineArgs();

Alternatively you could change the Main-call to include parameters (in Program.cs):

static void Main(string[] args)
{

You will then need to pass it into your Form, and change your form's constructor accordingly (assuming that's where you need the args):

public Form1(string[] args)
{
link|improve this answer
feedback

When you create a WinForm application in C# the editor creates a Program.cs file for you. That is where main is located and that is where the arguments are available.

It's a bit of IDE "magic" for lack of a better term. There is still a 'main' function, it just launches an instance of your main form does anything else that is required for you. Open that file up and take a look.

link|improve this answer
feedback

You need to change the form constructor to accept an args parameter.

eg:

public void Form1(string[] args)
{

}
link|improve this answer
stefan's answer is also correct. Are you passing args to the application or form? – WraithNath Jan 24 '11 at 9:02
3  
It is the Main()-entry that takes args, not the Form. – Tedd Hansen Jan 24 '11 at 9:04
@Tedd - thanks, I realised that aftwards – WraithNath Jan 24 '11 at 9:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.