Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passsing parameters
Message
From
14/01/2009 16:10:46
 
 
To
All
General information
Forum:
ASP.NET
Category:
Forms
Title:
Passsing parameters
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:
01373731
Views:
47
Hello UT,
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());
        }
    }
}
Next
Reply
Map
View

Click here to load this message in the networking platform