Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passsing parameters
Message
From
14/01/2009 16:18:21
 
 
To
14/01/2009 16:10:46
General information
Forum:
ASP.NET
Category:
Forms
Environment versions
Environment:
C# 3.0
OS:
Windows XP
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Desktop
Miscellaneous
Thread ID:
01373731
Message ID:
01373738
Views:
25
static class Program
{
    ...
    Application.Run(new Form1(args));
    ...
}

public partial class Form1 : Form
{
    public Form1(string[] args)
    {
        InitializeComponent();
        *-- Use parameters here
    }
}
>I need to pass parameters to a form (Form1) that is called in my main. I do collect the parameters using the args then I would like to pass it to the form called Form1.
>Any help is appreciated!!!!
>
>Here is the code :
>
>namespace PrintingLabel
>{
>    static class Program
>    {
>        /// <summary>
>        /// The main entry point for the application.
>        /// </summary>
>        [STAThread]
>        static void Main(params string[] args)
>        {
>            
>            Application.EnableVisualStyles();
>            Application.SetCompatibleTextRenderingDefault(false);
>            MessageBox.Show(args[0].ToString());
>            MessageBox.Show(args[1].ToString());
>
>            // HERE HOW DO I PASS THE PARAMETERS 
>
>
>            Application.Run(new Form1());
>        }
>    }
>}
>
>
Previous
Reply
Map
View

Click here to load this message in the networking platform