// ## , M10000
//Set up the form for Wizard
MyForm = new Form();
MyForm.Size = new System.Drawing.Size(1200, 750);
MyForm.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
MyForm.Text = " UCCNC xxxxx Wizard vx.xxxxx ";
//((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
//Define the objects on the form
//
// numericUpDown1
//
numericUpDown1.DecimalPlaces = 2;
numericUpDown1.Location = new System.Drawing.Point(20, 60);
numericUpDown1.Name = "numericUpDown1";
numericUpDown1.Size = new System.Drawing.Size(65, 20);
numericUpDown1.TabIndex = 0;
numericUpDown1.Value = new decimal(new int[] {
325,
0,
0,
131072});
//
//
// Wizard Form
//
MyForm.Controls.Add(numericUpDown1); // numericUpDown1
MyForm.ShowDialog();
//*************** Starting of the Events Section *****************************
#Events
Form MyForm; //This is a global variable, a Windows Form
// DEFINE all of the elements of the Form HERE (VERY IMPORTANT)
NumericUpDown numericUpDown1= new NumericUpDown();
Users browsing this forum: Bing [Bot] and 5 guests