Example #1
0
        public Reboot(string title, string text)
        {
            InitializeComponent();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Reboot));
            Rectangle r = Screen.PrimaryScreen.WorkingArea;
            this.StartPosition = FormStartPosition.Manual;
            this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width, Screen.PrimaryScreen.WorkingArea.Height - this.Height);

            //Dictionary contains reminder durations
            remindTimes = new Dictionary<string, int>();
            remindTimes.Add(resources.GetString("5 Minutes"), 5);
            remindTimes.Add(resources.GetString("15 Minutes"), 15);
            remindTimes.Add(resources.GetString("1 Hour"), 60);
            remindTimes.Add(resources.GetString("4 Hours"), 240);

            //Assigns dictionary as data source for combobox
            remindCombo.DataSource = new BindingSource(remindTimes, null);
            remindCombo.DisplayMember = "Key";
            remindCombo.ValueMember = "Value";

            //Sets default dropbox value
            remindCombo.SelectedIndex = 0;

            //Load title and text
            this.rebootTitle.Text = title;
            this.rebootText.Text = text;
        }
Example #2
0
 public TracksManagerGUI(Manager database)
 {
     localization = new System.ComponentModel.ComponentResourceManager(typeof(WorkerTimeStrings));
     this.database = database;
     InitializeComponent();
     this.Text = localization.GetString("String18") + " " + localization.GetString("String19");
 }
Example #3
0
 public TrackManagerEdit(Manager database, Track track)
 {
     localization = new System.ComponentModel.ComponentResourceManager(typeof(WorkerTimeStrings));
     this.database = database;
     this.track = track;
     this.Text = localization.GetString("String18") + " " + localization.GetString("String20");
     InitializeComponent();
 }
Example #4
0
 public AboutBox()
 {
     InitializeComponent();
     System.ComponentModel.ComponentResourceManager localization = new System.ComponentModel.ComponentResourceManager(typeof(WorkerTimeStrings));
     this.Text = String.Format("Sobre {0}", AssemblyTitle);
     this.labelProductName.Text = AssemblyProduct;
     this.labelVersion.Text = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(localization.GetString("String1")) + " " + AssemblyVersion;
     this.labelCopyright.Text = AssemblyCopyright;
     this.textBoxInformation.Text = localization.GetString("String31");
 }
 public ActivityBindForm(IServiceProvider serviceProvider, ITypeDescriptorContext context)
 {
     this.context = context;
     this.serviceProvider = serviceProvider;
     this.InitializeComponent();
     this.createProperty.Checked = true;
     this.helpTextBox.Multiline = true;
     IUIService service = (IUIService) this.serviceProvider.GetService(typeof(IUIService));
     if (service != null)
     {
         this.Font = (Font) service.Styles["DialogFont"];
     }
     ComponentResourceManager manager = new ComponentResourceManager(typeof(ActivityBindForm));
     this.ActivityBindDialogTitleFormat = manager.GetString("ActivityBindDialogTitleFormat");
     this.PropertyAssignableFormat = manager.GetString("PropertyAssignableFormat");
     this.DescriptionFormat = manager.GetString("DescriptionFormat");
     this.EditIndex = manager.GetString("EditIndex");
     this.PleaseSelectCorrectActivityProperty = manager.GetString("PleaseSelectCorrectActivityProperty");
     this.PleaseSelectActivityProperty = manager.GetString("PleaseSelectActivityProperty");
     this.IncorrectIndexChange = manager.GetString("IncorrectIndexChange");
     this.CreateNewMemberHelpFormat = manager.GetString("CreateNewMemberHelpFormat");
     this.memberTypes = new ImageList();
     this.memberTypes.ImageStream = (ImageListStreamer) manager.GetObject("memberTypes.ImageStream");
     this.memberTypes.TransparentColor = AmbientTheme.TransparentColor;
     this.properties = CustomActivityDesignerHelper.GetCustomProperties(context);
 }
        public ActivityBindForm(IServiceProvider serviceProvider, ITypeDescriptorContext context)
        {
            this.context = context;
            this.serviceProvider = serviceProvider;

            InitializeComponent();
            this.createProperty.Checked = true; //make the property to be the default emitted entity

            this.helpTextBox.Multiline = true;

            //Set dialog fonts
            IUIService uisvc = (IUIService)this.serviceProvider.GetService(typeof(IUIService));
            if (uisvc != null)
                this.Font = (Font)uisvc.Styles["DialogFont"];

            //add images to the tree-view's imagelist
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ActivityBindForm));

            ActivityBindDialogTitleFormat = resources.GetString("ActivityBindDialogTitleFormat");
            PropertyAssignableFormat = resources.GetString("PropertyAssignableFormat");
            DescriptionFormat = resources.GetString("DescriptionFormat");
            EditIndex = resources.GetString("EditIndex");
            PleaseSelectCorrectActivityProperty = resources.GetString("PleaseSelectCorrectActivityProperty");
            PleaseSelectActivityProperty = resources.GetString("PleaseSelectActivityProperty");
            IncorrectIndexChange = resources.GetString("IncorrectIndexChange");
            CreateNewMemberHelpFormat = resources.GetString("CreateNewMemberHelpFormat");

            this.memberTypes = new System.Windows.Forms.ImageList();
            this.memberTypes.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("memberTypes.ImageStream")));
            this.memberTypes.TransparentColor = AmbientTheme.TransparentColor;
            //this.memberTypes.Images.SetKeyName(0, "Field_Public");
            //this.memberTypes.Images.SetKeyName(1, "Field_Internal");
            //this.memberTypes.Images.SetKeyName(2, "Field_Protected");
            //this.memberTypes.Images.SetKeyName(3, "Field_Private");
            //this.memberTypes.Images.SetKeyName(4, "Property_Public");
            //this.memberTypes.Images.SetKeyName(5, "Property_Internal");
            //this.memberTypes.Images.SetKeyName(6, "Property_Protected");
            //this.memberTypes.Images.SetKeyName(7, "Property_Private");
            //this.memberTypes.Images.SetKeyName(8, "Constant_Public");
            //this.memberTypes.Images.SetKeyName(9, "Constant_Internal");
            //this.memberTypes.Images.SetKeyName(10, "Constant_Protected");
            //this.memberTypes.Images.SetKeyName(11, "Constant_Private");
            //this.memberTypes.Images.SetKeyName(12, "Event_Public");
            //this.memberTypes.Images.SetKeyName(13, "Event_Internal");
            //this.memberTypes.Images.SetKeyName(14, "Event_Protected");
            //this.memberTypes.Images.SetKeyName(15, "Event_Private");
            //this.memberTypes.Images.SetKeyName(16, "Delegate_Public");
            //this.memberTypes.Images.SetKeyName(17, "Delegate_Internal");
            //this.memberTypes.Images.SetKeyName(18, "Delegate_Protected");
            //this.memberTypes.Images.SetKeyName(19, "Delegate_Private");
            //this.memberTypes.Images.SetKeyName(20, "Index_Public");
            //this.memberTypes.Images.SetKeyName(21, "Index_Internal");
            //this.memberTypes.Images.SetKeyName(22, "Index_Protected");
            //this.memberTypes.Images.SetKeyName(23, "Index_Private");

            //preload custom properties before getting type from the type provider (as it would refresh the types)
            this.properties = CustomActivityDesignerHelper.GetCustomProperties(context);

        }
Example #7
0
 private void InitializeComponent()
 {
     this.components = (IContainer)new Container();
     ComponentResourceManager resources = new ComponentResourceManager(typeof(about));
     this.pictureBox1 = new PictureBox();
     this.richTextBox1 = new RichTextBox();
     this.richTextBox2 = new RichTextBox();
     ((ISupportInitialize)this.pictureBox1).BeginInit();
     this.SuspendLayout();
     this.pictureBox1.Image = (Image)resources.GetObject("pictureBox1.Image");
     this.pictureBox1.Location = new Point(14, 16);
     this.pictureBox1.Margin = new Padding(3, 4, 3, 4);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Size(128, 128);
     this.pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.richTextBox1.Font = new Font("Arial Unicode MS", 9f, FontStyle.Regular, GraphicsUnit.Point, (byte)134);
     this.richTextBox1.Location = new Point(148, 13);
     this.richTextBox1.Margin = new Padding(3, 4, 3, 4);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.ReadOnly = true;
     this.richTextBox1.Size = new Size(333, 131);
     this.richTextBox1.TabIndex = 1;
     this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
     this.richTextBox2.Location = new Point(14, 151);
     this.richTextBox2.Name = "richTextBox2";
     this.richTextBox2.ReadOnly = true;
     this.richTextBox2.ScrollBars = RichTextBoxScrollBars.None;
     this.richTextBox2.Size = new Size(467, 249);
     this.richTextBox2.TabIndex = 2;
     this.richTextBox2.Text = resources.GetString("richTextBox2.Text");
     this.AutoScaleDimensions = new SizeF(7f, 16f);
     this.AutoScaleMode = AutoScaleMode.Font;
     this.ClientSize = new Size(496, 412);
     this.Controls.Add((Control)this.richTextBox2);
     this.Controls.Add((Control)this.richTextBox1);
     this.Controls.Add((Control)this.pictureBox1);
     this.Font = new Font("Arial Unicode MS", 9f, FontStyle.Regular, GraphicsUnit.Point, (byte)0);
     this.Icon = (Icon)resources.GetObject("$this.Icon");
     this.Margin = new Padding(3, 4, 3, 4);
     this.MaximizeBox = false;
     this.Name = "about";
     this.Text = "About HopeRF";
     ((ISupportInitialize)this.pictureBox1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #8
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Labelled));
     this.groupBox1 = new GroupBox();
     this.textBox1 = new TextBox();
     this.groupBox1.SuspendLayout();
     base.SuspendLayout();
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Location = new Point(13, 10);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new Size(0x128, 0x189);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "标签说明:";
     this.textBox1.Location = new Point(7, 0x15);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Size(0x11b, 0x162);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text = resources.GetString("textBox1.Text");
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x141, 0x199);
     base.Controls.Add(this.groupBox1);
     base.FormBorderStyle = FormBorderStyle.FixedDialog;
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "Labelled";
     base.StartPosition = FormStartPosition.CenterScreen;
     this.Text = "Labelled";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     base.ResumeLayout(false);
 }
Example #9
0
 private void btnAddSave_Click(object sender, EventArgs e)
 {
     int saveSelectedIndex = listBox.SelectedIndex;
     System.ComponentModel.ComponentResourceManager localResources = new System.ComponentModel.ComponentResourceManager(typeof(CustomEventsForm));
     if (txtCmd.Text == "")
     {
         MessageBox.Show(localResources.GetString("enterCommand"));
         return;
     }
     int selectedIndex = listBox.SelectedIndex;
     if (listBox.SelectedIndex == -1)
     {
         CustomEvent customEvent = new CustomEvent(
             txtCmd.Text, txtArgs.Text, boxWait.Checked);
         curCustomEvents.Add(customEvent);
     }
     else
     {
         CustomEvent customEvent = curCustomEvents[listBox.SelectedIndex];
         customEvent.cmd = txtCmd.Text;
         customEvent.args = txtArgs.Text;
         customEvent.execWait = boxWait.Checked;
     }
     RefreshDisplay();
     listBox.SelectedIndex = -1;   // Force refresh
     listBox.SelectedIndex = saveSelectedIndex;   // Re-select edited item
     ActiveControl = comboBox;
 }
Example #10
0
        /// <summary>
        /// 遍历窗体所有控件,针对其设置当前界面语言
        /// </summary>
        /// <param name="contrl"></param>
        /// <param name="resoureces"></param>
        private static void AppLang(Control control, ComponentResourceManager resources, ToolTip tp = null)
        {
            if (control is MenuStrip)
            {
                //将资源应用与对应的属性
                resources.ApplyResources(control, control.Name);
                MenuStrip ms = (MenuStrip)control;
                if (ms.Items.Count > 0)
                {
                    foreach (ToolStripMenuItem c in ms.Items)
                    {
                        //调用 遍历菜单 设置语言
                        AppLang(c, resources);
                    }
                }
            }

            foreach (Control c in control.Controls)
            {
                resources.ApplyResources(c, c.Name);
                if (tp != null)
                {
                    //MessageBox.Show(c.Name);
                    tp.SetToolTip(c, resources.GetString(c.Name + ".ToolTip"));
                }
                AppLang(c, resources);
            }
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(formAbout));
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.SuspendLayout();
            // 
            // richTextBox1
            // 
            this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.richTextBox1.Location = new System.Drawing.Point(14, 19);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.ReadOnly = true;
            this.richTextBox1.Size = new System.Drawing.Size(403, 328);
            this.richTextBox1.TabIndex = 0;
            this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
            // 
            // formAbout
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(430, 366);
            this.Controls.Add(this.richTextBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "formAbout";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "开发人员";
            this.ResumeLayout(false);

        }
Example #12
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Do you want to reset the language window?", "Reset", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == System.Windows.Forms.DialogResult.Yes)
     {
         System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
         textBox1.Text = resources.GetString("textBox1.Text");
     }
 }
Example #13
0
 public GenericManagerGUI(Manager database, String title, String table, String fields)
 {
     localization = new System.ComponentModel.ComponentResourceManager(typeof(WorkerTimeStrings));
     this.database = database;
     this.table = table;
     this.fields = fields;
     InitializeComponent();
     this.Text = localization.GetString("String18") + " " + title.ToLower();
 }
 public ConfigurationForm()
 {
     resources = new ComponentResourceManager(typeof(ConfigurationForm));
     InitializeComponent();
     this.Text = resources.GetString("configuration");
     this.CenterToParent();
     ConfigXML configXML = new ConfigXML();
     textBoxHost.Text = configXML.getHost();
     textBoxUserName.Text = configXML.getUser();
     textBoxPassword.Text = configXML.getPassword();
 }
        private static void ApplyResources(ComponentResourceManager manager, Control.ControlCollection ctls)
        {
            foreach (Control ctl in ctls)
            {
                manager.ApplyResources(ctl, ctl.Name);

                if (ctl is MenuStrip)
                {
                    ApplyResourcesMenuItems(manager, (ctl as MenuStrip).Items);
                }
                else if (ctl is ComboBox)
                {

                    var cmbBox = ctl as ComboBox;
                    int i = cmbBox.Items.Count;
                    cmbBox.Items.Clear();
                    for (int j = 0; j < i; j++)
                    {
                        var str = "";
                        if (j == 0)
                        {
                            str = string.Format("{0}.Items", cmbBox.Name);
                        }
                        else
                        {
                            str = string.Format("{0}.Items{1}", cmbBox.Name, j);
                        }
                        cmbBox.Items.AddRange(new object[]
                        {
                        manager.GetString(str)
                        });
                    }
                    cmbBox.SelectedIndex = 0;
                }
                else if ((ctl is MyCustomTab))
                {

                    var managerTab = new ComponentResourceManager(ctl.GetType());
                    managerTab.ApplyResources(ctl, "$this");
                    ApplyResourcesMenuItems(managerTab, (ctl as MyCustomTab).ContextMenuStrip.Items);

                    foreach (var item in (ctl as MyCustomTab).Controls)
                    {
                        var shape = (item as AShape);
                        var managerAShape = new ComponentResourceManager(typeof(AShape));
                        managerAShape.ApplyResources(item, "$this");
                        ApplyResourcesMenuItems(managerAShape, shape.ContextMenuStrip.Items);
                    }
                }
                else
                    ApplyResources(manager, ctl.Controls);
            }
        }
Example #16
0
        public TextPreview(Font font, CultureInfo locale)
            : this()
        {
            Thread.CurrentThread.CurrentUICulture = locale;
            ComponentResourceManager resources = new ComponentResourceManager(this.GetType());

            Localizer.ApplyResourceToControl(resources, this, locale);

            Text = resources.GetString("$this.Text", locale);
            this.font = font;
            tText.Font = this.font;
        }
        public ExplorerForm(Object application, String formType, ConfigXML configXML, DocumentXML docXML)
        {
            try
            {
                resources = new ComponentResourceManager(typeof(ExplorerForm));

                this.application = application;
                this.formType = formType;
                imageList = new ImageUtil();
                this.configXML = configXML;
                this.documentXML = docXML;

                // Initialize component
                InitializeComponent();

                // Centering form
                this.CenterToParent();

                // Column translations
                dataGridView.Columns[0].HeaderText = "";
                dataGridView.Columns[1].HeaderText = "";
                dataGridView.Columns[2].HeaderText = "";
                dataGridView.Columns[3].HeaderText = resources.GetString("name");
                dataGridView.Columns[4].HeaderText = resources.GetString("author");
                dataGridView.Columns[5].HeaderText = resources.GetString("version");
                dataGridView.Columns[6].HeaderText = resources.GetString("date");

                // Translations
                edit.Text = resources.GetString("edit");
                cancel.Text = resources.GetString("cancel");
                this.Text = resources.GetString("documentexplorer");

                // By default edit button is always disabled
                edit.Enabled = false;

                // Setting the image list
                tree.ImageList = imageList.get();

                // Grid user properties
                dataGridView.AllowUserToAddRows = false;
                dataGridView.AllowUserToDeleteRows = false;
                dataGridView.AllowUserToOrderColumns = false;
                dataGridView.MultiSelect = false;
                dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;

                // Adding click handlers
                tree.NodeMouseClick += new TreeNodeMouseClickEventHandler(nodeMouseClick);
                dataGridView.CellClick += new DataGridViewCellEventHandler(dataGridView_CellClick);
            }
            catch (Exception e)
            {
                String errorMsg = "ExplorerForm - (ExplorerForm)\n" + e.Message + "\n\n" + e.StackTrace;
                MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }
Example #18
0
        /// <summary>
        /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
        /// le contenu de cette méthode avec l'éditeur de code.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBoxWnd));
            this.button1 = new System.Windows.Forms.Button();
            this.linkLabel1 = new System.Windows.Forms.LinkLabel();
            this.lblAbout = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.button1.Location = new System.Drawing.Point(452, 461);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 0;
            this.button1.Text = "OK";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // linkLabel1
            // 
            this.linkLabel1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.linkLabel1.Location = new System.Drawing.Point(184, 64);
            this.linkLabel1.Name = "linkLabel1";
            this.linkLabel1.Size = new System.Drawing.Size(160, 16);
            this.linkLabel1.TabIndex = 3;
            // 
            // lblAbout
            // 
            this.lblAbout.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.lblAbout.Location = new System.Drawing.Point(8, 9);
            this.lblAbout.Name = "lblAbout";
            this.lblAbout.Size = new System.Drawing.Size(519, 450);
            this.lblAbout.TabIndex = 5;
            this.lblAbout.Text = resources.GetString("lblAbout.Text");
            // 
            // AboutBoxWnd
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(533, 489);
            this.Controls.Add(this.lblAbout);
            this.Controls.Add(this.linkLabel1);
            this.Controls.Add(this.button1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "AboutBoxWnd";
            this.ShowInTaskbar = false;
            this.Text = "AboutBox";
            this.ResumeLayout(false);

        }
Example #19
0
        public static void ApplyResourceToControl(ComponentResourceManager resources, ContextMenuStrip menu, CultureInfo lang)
        {
            if (menu == null)
                return;

            foreach (ToolStripItem m in menu.Items)
            {
                var text = resources.GetString(m.Name + ".Text", lang);

                if (text != null)
                    m.Text = text;
            }
        }
Example #20
0
        public static void ApplyResourceToControl(ComponentResourceManager resources, Control control, CultureInfo lang)
        {
            if (control == null)
                return;

            foreach (Control c in control.Controls)
            {
                ApplyResourceToControl(resources, c, lang);
                var text = resources.GetString(c.Name + ".Text", lang);

                if (text != null)
                    c.Text = text;
            }
        }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm));
			this.label1 = new System.Windows.Forms.Label();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Dock = System.Windows.Forms.DockStyle.Top;
			this.label1.Font = new System.Drawing.Font("Times New Roman", 26.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label1.ForeColor = System.Drawing.SystemColors.HotTrack;
			this.label1.Location = new System.Drawing.Point(0, 0);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(528, 64);
			this.label1.TabIndex = 1;
			this.label1.Text = "FactScan v0.50";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textBox1
			// 
			this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
			this.textBox1.Location = new System.Drawing.Point(0, 64);
			this.textBox1.Multiline = true;
			this.textBox1.Name = "textBox1";
			this.textBox1.ReadOnly = true;
			this.textBox1.Size = new System.Drawing.Size(528, 325);
			this.textBox1.TabIndex = 2;
			this.textBox1.Text = resources.GetString("textBox1.Text");
			// 
			// AboutForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(528, 389);
			this.Controls.Add(this.textBox1);
			this.Controls.Add(this.label1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(400, 300);
			this.Name = "AboutForm";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "About";
			this.ResumeLayout(false);
			this.PerformLayout();

		}
        public TreeForm(Object application, ConfigXML configXML)
        {
            try
            {
                resources = new ComponentResourceManager(typeof(TreeForm));

                this.application = application;
                this.configXML = configXML;
                imageList = new ImageUtil();

                // Initialize component
                InitializeComponent();

                // Centering form
                this.CenterToParent();

                // Translations
                accept.Text = resources.GetString("accept");
                cancel.Text = resources.GetString("cancel");
                this.Text = resources.GetString("treenavigator");

                // By default accept button is always disabled
                accept.Enabled = false;

                // Setting the image list
                tree.ImageList = imageList.get();

                // Adding click handler
                treeNodeMouseClickEventHandler = new TreeNodeMouseClickEventHandler(nodeMouseClick);
                tree.NodeMouseClick += treeNodeMouseClickEventHandler;
            }
            catch (Exception e)
            {
                String errorMsg = "TreeForm - (TreeForm)\n" + e.Message + "\n\n" + e.StackTrace;
                MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTrojanHelp));
			this.butCancel = new OpenDental.UI.Button();
			this.textMain = new System.Windows.Forms.RichTextBox();
			this.SuspendLayout();
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.Location = new System.Drawing.Point(530,386);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,26);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Close";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// textMain
			// 
			this.textMain.Location = new System.Drawing.Point(12,12);
			this.textMain.Name = "textMain";
			this.textMain.Size = new System.Drawing.Size(592,350);
			this.textMain.TabIndex = 1;
			this.textMain.Text = resources.GetString("textMain.Text");
			// 
			// FormTrojanHelp
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(617,424);
			this.Controls.Add(this.textMain);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormTrojanHelp";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Help";
			this.Load += new System.EventHandler(this.FormTrojanHelp_Load);
			this.ResumeLayout(false);

		}
Example #24
0
 private void InitializeComponent()
 {
     ComponentResourceManager resources = new ComponentResourceManager(typeof(MatlabLackFront));
     this.btnCancel = new Button();
     this.label1 = new Label();
     this.rtbInfoText = new RichTextBox();
     base.SuspendLayout();
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new Point(0x94, 0x10d);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new Size(0x73, 0x17);
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text = "Exit the Application";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.label1.Font = new Font("Microsoft Sans Serif", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.label1.Location = new Point(0x3f, 13);
     this.label1.Name = "label1";
     this.label1.Size = new Size(0x12b, 40);
     this.label1.TabIndex = 6;
     this.label1.Text = "Could not find Matlab runtime version 7.14 presence on your PC...";
     this.label1.TextAlign = ContentAlignment.TopCenter;
     this.rtbInfoText.BackColor = SystemColors.Control;
     this.rtbInfoText.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.rtbInfoText.Location = new Point(12, 60);
     this.rtbInfoText.Name = "rtbInfoText";
     this.rtbInfoText.ReadOnly = true;
     this.rtbInfoText.Size = new Size(0x183, 0xcb);
     this.rtbInfoText.TabIndex = 9;
     this.rtbInfoText.Text = resources.GetString("rtbInfoText.Text");
     this.rtbInfoText.LinkClicked += new LinkClickedEventHandler(this.rtbInfoText_LinkClicked);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     base.CancelButton = this.btnCancel;
     base.ClientSize = new Size(0x19b, 0x12d);
     base.Controls.Add(this.rtbInfoText);
     base.Controls.Add(this.btnCancel);
     base.Controls.Add(this.label1);
     this.Font = new Font("Microsoft Sans Serif", 8.25f);
     base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "MatlabLackFront";
     base.StartPosition = FormStartPosition.Manual;
     this.Text = "WARNING!";
     base.ResumeLayout(false);
 }
Example #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ListBoxDialog));
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOk = new System.Windows.Forms.Button();
     this.lstItems = new System.Windows.Forms.ListBox();
     this.SuspendLayout();
     //
     // btnCancel
     //
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // btnOk
     //
     resources.ApplyResources(this.btnOk, "btnOk");
     this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOk.Name = "btnOk";
     this.btnOk.UseVisualStyleBackColor = true;
     //
     // lstItems
     //
     resources.ApplyResources(this.lstItems, "lstItems");
     this.lstItems.FormattingEnabled = true;
     this.lstItems.Items.AddRange(new object[] {
                                                   resources.GetString("lstItems.Items")});
     this.lstItems.Name = "lstItems";
     //
     // ListBoxDialog
     //
     this.AcceptButton = this.btnOk;
     this.CancelButton = this.btnCancel;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.lstItems);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.btnCancel);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ListBoxDialog";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.ResumeLayout(false);
 }
Example #26
0
        public EditorForm(Image image, CultureInfo locale)
            : this()
        {
            imageBox1.Image = image;

            Thread.CurrentThread.CurrentUICulture = locale;
            var resources = new ComponentResourceManager(GetType());

            Localizer.ApplyResourceToControl(resources, this, locale);

            Text = resources.GetString("$this.Text", locale);

            nSize.Value = Settings.Instance.BrushWidth;
            cForeColor.SelectedColor = Settings.Instance.ForeColor;
            cBackColor.SelectedColor = Settings.Instance.BackColor;

            Load += (s, e) => Helper.SetForegroundWindow(Handle);
        }
Example #27
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_about));
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.btnOK = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// textBox1
			// 
			this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
						| System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.textBox1.Location = new System.Drawing.Point(8, 8);
			this.textBox1.Multiline = true;
			this.textBox1.Name = "textBox1";
			this.textBox1.ReadOnly = true;
			this.textBox1.Size = new System.Drawing.Size(512, 298);
			this.textBox1.TabIndex = 2;
			this.textBox1.TabStop = false;
			this.textBox1.Text = resources.GetString("textBox1.Text");
			// 
			// btnOK
			// 
			this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnOK.Location = new System.Drawing.Point(440, 312);
			this.btnOK.Name = "btnOK";
			this.btnOK.Size = new System.Drawing.Size(75, 23);
			this.btnOK.TabIndex = 0;
			this.btnOK.Text = "OK";
			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
			// 
			// frm_about
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(528, 341);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.textBox1);
			this.MinimumSize = new System.Drawing.Size(536, 368);
			this.Name = "frm_about";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "OGen - about";
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Example #28
0
        private void buttonLocalization_Click(object sender, EventArgs e)
        {
            var culture = buttonLocalization.Text;
            CultureInfo myCultureInfo = new CultureInfo(culture);

            if(culture == "en-US")
            {
                buttonLocalization.Text = "ru-RU";
                //return CommonResource.ResourceManager.GetString(buttonHome, new System.Globalization.CultureInfo(culture));
            }
            else
            {
                buttonLocalization.Text = "en-US";
            }

            Thread.CurrentThread.CurrentCulture = myCultureInfo;
            Thread.CurrentThread.CurrentUICulture = myCultureInfo;

            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));

            buttonHome.Text = resources.GetString("buttonHome.Text", myCultureInfo);
        }
Example #29
0
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(HelpForm));
     this.rtmHelp = new System.Windows.Forms.RichTextBox();
     base.SuspendLayout();
     this.rtmHelp.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.rtmHelp.set_Location(new System.Drawing.Point(0, 0));
     this.rtmHelp.set_Name("rtmHelp");
     this.rtmHelp.set_Size(new System.Drawing.Size(0x220, 0x120));
     this.rtmHelp.set_TabIndex(0);
     this.rtmHelp.set_Text(manager.GetString("rtmHelp.Text"));
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.set_ClientSize(new System.Drawing.Size(0x220, 0x120));
     base.Controls.Add(this.rtmHelp);
     base.set_FormBorderStyle(System.Windows.Forms.FormBorderStyle.FixedToolWindow);
     base.set_Name("HelpForm");
     base.set_StartPosition(System.Windows.Forms.FormStartPosition.CenterParent);
     this.set_Text("Справка");
     base.add_Load(new System.EventHandler(this.PayReesterHelpForm_Load));
     base.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label label10;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PreciseEditorLabelRowMinus));
            this.colNumLabel = new System.Windows.Forms.Label();
            this.peakCenterLabel = new System.Windows.Forms.Label();
            this.colToolTip = new System.Windows.Forms.ToolTip(this.components);
            label10 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // label10
            // 
            resources.ApplyResources(label10, "label10");
            label10.Name = "label10";
            // 
            // colNumLabel
            // 
            resources.ApplyResources(this.colNumLabel, "colNumLabel");
            this.colNumLabel.Name = "colNumLabel";
            this.colToolTip.SetToolTip(this.colNumLabel, resources.GetString("colNumLabel.ToolTip"));
            // 
            // peakCenterLabel
            // 
            resources.ApplyResources(this.peakCenterLabel, "peakCenterLabel");
            this.peakCenterLabel.Name = "peakCenterLabel";
            // 
            // PreciseEditorLabelRowMinus
            // 
            this.Controls.Add(this.peakCenterLabel);
            this.Controls.Add(this.colNumLabel);
            this.Controls.Add(label10);
            this.Name = "PreciseEditorLabelRowMinus";
            resources.ApplyResources(this, "$this");
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(rep_ent_components));
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPageBreak1   = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel20      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel22      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel23      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.EnterpriseName = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1,
         this.xrLabel20,
         this.xrLabel19,
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3
     });
     this.Detail.HeightF       = 280.8333F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 277.1667F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // xrLabel20
     //
     this.xrLabel20.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_notes]")
     });
     this.xrLabel20.Font                  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.LocationFloat         = new DevExpress.Utils.PointFloat(7.629395E-05F, 234.8334F);
     this.xrLabel20.Name                  = "xrLabel20";
     this.xrLabel20.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                 = new System.Drawing.SizeF(750F, 44.33328F);
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.Text                  = "Notes";
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel19.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 201.8333F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(100F, 33.00003F);
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Notes";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_serialNumber]")
     });
     this.xrLabel18.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(550.8333F, 150.1667F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(199.1667F, 37.1667F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "SerialNumber";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel17
     //
     this.xrLabel17.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel17.BorderColor   = System.Drawing.Color.LemonChiffon;
     this.xrLabel17.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(430F, 150.1667F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(120.8334F, 37.1667F);
     this.xrLabel17.StylePriority.UseBackColor     = false;
     this.xrLabel17.StylePriority.UseBorderColor   = false;
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text          = "SerialNumber";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_endDate]")
     });
     this.xrLabel16.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 150.1667F);
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(250F, 37.1667F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "End Date";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel15.BorderColor   = System.Drawing.Color.LemonChiffon;
     this.xrLabel15.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 150.1667F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(100F, 37.1667F);
     this.xrLabel15.StylePriority.UseBackColor     = false;
     this.xrLabel15.StylePriority.UseBorderColor   = false;
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text          = "End Date";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_startDate]")
     });
     this.xrLabel14.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(550.8333F, 100.1667F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(199.1667F, 35.50001F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "Start Date";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel13.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(450.8333F, 100.1667F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(100F, 35.50001F);
     this.xrLabel13.StylePriority.UseBackColor     = false;
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text          = "Start Date";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_location]")
     });
     this.xrLabel12.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 100.1667F);
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(250F, 35.50001F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "Location";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel11.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 100.1667F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(100F, 35.50001F);
     this.xrLabel11.StylePriority.UseBackColor     = false;
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text          = "Location";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_test]")
     });
     this.xrLabel10.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(550.8333F, 46.00001F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(199.1667F, 35.5F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "Test";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel9.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(450.8333F, 46.00001F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(100F, 35.5F);
     this.xrLabel9.StylePriority.UseBackColor     = false;
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "Test";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel8.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 46.00001F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(100F, 35.5F);
     this.xrLabel8.StylePriority.UseBackColor     = false;
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "Mode";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel7.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(450.8333F, 0F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(100F, 34.66667F);
     this.xrLabel7.StylePriority.UseBackColor     = false;
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "Type";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_mode]")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(99.99998F, 46.00001F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(250F, 35.5F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "Mode";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_type]")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(550.8333F, 0F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(199.1667F, 34.66667F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Type";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[comp_name]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 0F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(250F, 34.66667F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Componet Name";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel3.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(100F, 34.66667F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "Name";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 31F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 32.86458F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 50.83333F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI Symbol", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(350F, 50.83333F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Components";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EnterpriseName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Segoe UI Symbol", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(450.8333F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(299.1667F, 50.83333F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Tribe Name";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel22,
         this.xrPageInfo2,
         this.xrLabel23,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 109.6354F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel22
     //
     this.xrLabel22.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(7.629395E-05F, 50F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(197.2917F, 23.09373F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Generated by ReadyCert® for";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 73.09372F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 36.54169F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel23
     //
     this.xrLabel23.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel23.LocationFloat                  = new DevExpress.Utils.PointFloat(641.6666F, 74.13538F);
     this.xrLabel23.Name                           = "xrLabel23";
     this.xrLabel23.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                          = new System.Drawing.SizeF(49.47913F, 35.50003F);
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text                           = "Page";
     this.xrLabel23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel23.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(691.1456F, 74.13538F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85419F, 35.50003F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name = "Query";
     customSqlQuery1.Sql  = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // EnterpriseName
     //
     this.EnterpriseName.Description = "EnterpriseName";
     this.EnterpriseName.Name        = "EnterpriseName";
     this.EnterpriseName.Visible     = false;
     //
     // rep_ent_components
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Query";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(52, 48, 31, 33);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.EnterpriseName
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UI));
     this.pnWiz0x006d      = new System.Windows.Forms.Panel();
     this.cbPicker2        = new System.Windows.Forms.ComboBox();
     this.cbAttrPicker     = new System.Windows.Forms.CheckBox();
     this.cbDecimal        = new System.Windows.Forms.CheckBox();
     this.tbVal2           = new System.Windows.Forms.TextBox();
     this.cbDataOwner2     = new System.Windows.Forms.ComboBox();
     this.panel1           = new System.Windows.Forms.Panel();
     this.pnNotAllOver     = new System.Windows.Forms.Panel();
     this.tbMesh           = new System.Windows.Forms.TextBox();
     this.btnMesh          = new System.Windows.Forms.Button();
     this.tbVal5           = new System.Windows.Forms.TextBox();
     this.label8           = new System.Windows.Forms.Label();
     this.ckbMeshTemp      = new System.Windows.Forms.CheckBox();
     this.cbMeshScope      = new System.Windows.Forms.ComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.ckbAllOver       = new System.Windows.Forms.CheckBox();
     this.rb3Object        = new System.Windows.Forms.RadioButton();
     this.rb3Me            = new System.Windows.Forms.RadioButton();
     this.label2           = new System.Windows.Forms.Label();
     this.cbPicker1        = new System.Windows.Forms.ComboBox();
     this.tbVal1           = new System.Windows.Forms.TextBox();
     this.cbDataOwner1     = new System.Windows.Forms.ComboBox();
     this.pnMaterial       = new System.Windows.Forms.Panel();
     this.pnNotScrShot     = new System.Windows.Forms.Panel();
     this.tbMaterial       = new System.Windows.Forms.TextBox();
     this.btnMaterial      = new System.Windows.Forms.Button();
     this.tbVal3           = new System.Windows.Forms.TextBox();
     this.cbMatScope       = new System.Windows.Forms.ComboBox();
     this.label7           = new System.Windows.Forms.Label();
     this.label6           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.ckbMaterialTemp  = new System.Windows.Forms.CheckBox();
     this.rb2MovingTexture = new System.Windows.Forms.RadioButton();
     this.rb2Material      = new System.Windows.Forms.RadioButton();
     this.rb1Object        = new System.Windows.Forms.RadioButton();
     this.rb1Me            = new System.Windows.Forms.RadioButton();
     this.rb1ScrShot       = new System.Windows.Forms.RadioButton();
     this.label3           = new System.Windows.Forms.Label();
     this.label9           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.pnWiz0x006d.SuspendLayout();
     this.panel1.SuspendLayout();
     this.pnNotAllOver.SuspendLayout();
     this.pnMaterial.SuspendLayout();
     this.pnNotScrShot.SuspendLayout();
     this.SuspendLayout();
     //
     // pnWiz0x006d
     //
     this.pnWiz0x006d.Controls.Add(this.cbPicker2);
     this.pnWiz0x006d.Controls.Add(this.cbAttrPicker);
     this.pnWiz0x006d.Controls.Add(this.cbDecimal);
     this.pnWiz0x006d.Controls.Add(this.tbVal2);
     this.pnWiz0x006d.Controls.Add(this.cbDataOwner2);
     this.pnWiz0x006d.Controls.Add(this.panel1);
     this.pnWiz0x006d.Controls.Add(this.cbPicker1);
     this.pnWiz0x006d.Controls.Add(this.tbVal1);
     this.pnWiz0x006d.Controls.Add(this.cbDataOwner1);
     this.pnWiz0x006d.Controls.Add(this.pnMaterial);
     this.pnWiz0x006d.Controls.Add(this.label9);
     this.pnWiz0x006d.Controls.Add(this.label1);
     resources.ApplyResources(this.pnWiz0x006d, "pnWiz0x006d");
     this.pnWiz0x006d.Name = "pnWiz0x006d";
     //
     // cbPicker2
     //
     this.cbPicker2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbPicker2.DropDownWidth = 384;
     resources.ApplyResources(this.cbPicker2, "cbPicker2");
     this.cbPicker2.Name = "cbPicker2";
     //
     // cbAttrPicker
     //
     resources.ApplyResources(this.cbAttrPicker, "cbAttrPicker");
     this.cbAttrPicker.Name = "cbAttrPicker";
     //
     // cbDecimal
     //
     resources.ApplyResources(this.cbDecimal, "cbDecimal");
     this.cbDecimal.Name = "cbDecimal";
     //
     // tbVal2
     //
     resources.ApplyResources(this.tbVal2, "tbVal2");
     this.tbVal2.Name = "tbVal2";
     //
     // cbDataOwner2
     //
     this.cbDataOwner2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDataOwner2.DropDownWidth = 384;
     resources.ApplyResources(this.cbDataOwner2, "cbDataOwner2");
     this.cbDataOwner2.Name = "cbDataOwner2";
     //
     // panel1
     //
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Controls.Add(this.pnNotAllOver);
     this.panel1.Controls.Add(this.ckbAllOver);
     this.panel1.Controls.Add(this.rb3Object);
     this.panel1.Controls.Add(this.rb3Me);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Name = "panel1";
     //
     // pnNotAllOver
     //
     resources.ApplyResources(this.pnNotAllOver, "pnNotAllOver");
     this.pnNotAllOver.Controls.Add(this.tbMesh);
     this.pnNotAllOver.Controls.Add(this.btnMesh);
     this.pnNotAllOver.Controls.Add(this.tbVal5);
     this.pnNotAllOver.Controls.Add(this.label8);
     this.pnNotAllOver.Controls.Add(this.ckbMeshTemp);
     this.pnNotAllOver.Controls.Add(this.cbMeshScope);
     this.pnNotAllOver.Controls.Add(this.label4);
     this.pnNotAllOver.Name = "pnNotAllOver";
     //
     // tbMesh
     //
     resources.ApplyResources(this.tbMesh, "tbMesh");
     this.tbMesh.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.tbMesh.Name        = "tbMesh";
     this.tbMesh.ReadOnly    = true;
     this.tbMesh.TabStop     = false;
     //
     // btnMesh
     //
     resources.ApplyResources(this.btnMesh, "btnMesh");
     this.btnMesh.Name   = "btnMesh";
     this.btnMesh.Click += new System.EventHandler(this.btnMesh_Click);
     //
     // tbVal5
     //
     resources.ApplyResources(this.tbVal5, "tbVal5");
     this.tbVal5.Name = "tbVal5";
     //
     // label8
     //
     resources.ApplyResources(this.label8, "label8");
     this.label8.Name = "label8";
     //
     // ckbMeshTemp
     //
     resources.ApplyResources(this.ckbMeshTemp, "ckbMeshTemp");
     this.ckbMeshTemp.Name = "ckbMeshTemp";
     this.ckbMeshTemp.UseVisualStyleBackColor = true;
     this.ckbMeshTemp.CheckedChanged         += new System.EventHandler(this.ckbMeshTemp_CheckedChanged);
     //
     // cbMeshScope
     //
     this.cbMeshScope.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbMeshScope.FormattingEnabled = true;
     this.cbMeshScope.Items.AddRange(new object[] {
         resources.GetString("cbMeshScope.Items"),
         resources.GetString("cbMeshScope.Items1"),
         resources.GetString("cbMeshScope.Items2")
     });
     resources.ApplyResources(this.cbMeshScope, "cbMeshScope");
     this.cbMeshScope.Name = "cbMeshScope";
     this.cbMeshScope.SelectedIndexChanged += new System.EventHandler(this.cbMatMeshScope_SelectedIndexChanged);
     //
     // label4
     //
     resources.ApplyResources(this.label4, "label4");
     this.label4.Name = "label4";
     //
     // ckbAllOver
     //
     resources.ApplyResources(this.ckbAllOver, "ckbAllOver");
     this.ckbAllOver.Name = "ckbAllOver";
     this.ckbAllOver.UseVisualStyleBackColor = true;
     this.ckbAllOver.CheckedChanged         += new System.EventHandler(this.ckbAllOver_CheckedChanged);
     //
     // rb3Object
     //
     resources.ApplyResources(this.rb3Object, "rb3Object");
     this.rb3Object.Name    = "rb3Object";
     this.rb3Object.TabStop = true;
     this.rb3Object.UseVisualStyleBackColor = true;
     this.rb3Object.CheckedChanged         += new System.EventHandler(this.rb3group_CheckedChanged);
     //
     // rb3Me
     //
     resources.ApplyResources(this.rb3Me, "rb3Me");
     this.rb3Me.Name    = "rb3Me";
     this.rb3Me.TabStop = true;
     this.rb3Me.UseVisualStyleBackColor = true;
     this.rb3Me.CheckedChanged         += new System.EventHandler(this.rb3group_CheckedChanged);
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // cbPicker1
     //
     this.cbPicker1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbPicker1.DropDownWidth = 384;
     resources.ApplyResources(this.cbPicker1, "cbPicker1");
     this.cbPicker1.Name = "cbPicker1";
     //
     // tbVal1
     //
     resources.ApplyResources(this.tbVal1, "tbVal1");
     this.tbVal1.Name = "tbVal1";
     //
     // cbDataOwner1
     //
     this.cbDataOwner1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDataOwner1.DropDownWidth = 384;
     resources.ApplyResources(this.cbDataOwner1, "cbDataOwner1");
     this.cbDataOwner1.Name = "cbDataOwner1";
     //
     // pnMaterial
     //
     resources.ApplyResources(this.pnMaterial, "pnMaterial");
     this.pnMaterial.Controls.Add(this.pnNotScrShot);
     this.pnMaterial.Controls.Add(this.rb1Object);
     this.pnMaterial.Controls.Add(this.rb1Me);
     this.pnMaterial.Controls.Add(this.rb1ScrShot);
     this.pnMaterial.Controls.Add(this.label3);
     this.pnMaterial.Name = "pnMaterial";
     //
     // pnNotScrShot
     //
     resources.ApplyResources(this.pnNotScrShot, "pnNotScrShot");
     this.pnNotScrShot.Controls.Add(this.tbMaterial);
     this.pnNotScrShot.Controls.Add(this.btnMaterial);
     this.pnNotScrShot.Controls.Add(this.tbVal3);
     this.pnNotScrShot.Controls.Add(this.cbMatScope);
     this.pnNotScrShot.Controls.Add(this.label7);
     this.pnNotScrShot.Controls.Add(this.label6);
     this.pnNotScrShot.Controls.Add(this.label5);
     this.pnNotScrShot.Controls.Add(this.ckbMaterialTemp);
     this.pnNotScrShot.Controls.Add(this.rb2MovingTexture);
     this.pnNotScrShot.Controls.Add(this.rb2Material);
     this.pnNotScrShot.Name = "pnNotScrShot";
     //
     // tbMaterial
     //
     resources.ApplyResources(this.tbMaterial, "tbMaterial");
     this.tbMaterial.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.tbMaterial.Name        = "tbMaterial";
     this.tbMaterial.ReadOnly    = true;
     this.tbMaterial.TabStop     = false;
     //
     // btnMaterial
     //
     resources.ApplyResources(this.btnMaterial, "btnMaterial");
     this.btnMaterial.Name   = "btnMaterial";
     this.btnMaterial.Click += new System.EventHandler(this.btnMaterial_Click);
     //
     // tbVal3
     //
     resources.ApplyResources(this.tbVal3, "tbVal3");
     this.tbVal3.Name = "tbVal3";
     //
     // cbMatScope
     //
     this.cbMatScope.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbMatScope.FormattingEnabled = true;
     this.cbMatScope.Items.AddRange(new object[] {
         resources.GetString("cbMatScope.Items"),
         resources.GetString("cbMatScope.Items1"),
         resources.GetString("cbMatScope.Items2")
     });
     resources.ApplyResources(this.cbMatScope, "cbMatScope");
     this.cbMatScope.Name = "cbMatScope";
     this.cbMatScope.SelectedIndexChanged += new System.EventHandler(this.cbMatMeshScope_SelectedIndexChanged);
     //
     // label7
     //
     resources.ApplyResources(this.label7, "label7");
     this.label7.Name = "label7";
     //
     // label6
     //
     resources.ApplyResources(this.label6, "label6");
     this.label6.Name = "label6";
     //
     // label5
     //
     resources.ApplyResources(this.label5, "label5");
     this.label5.Name = "label5";
     //
     // ckbMaterialTemp
     //
     resources.ApplyResources(this.ckbMaterialTemp, "ckbMaterialTemp");
     this.ckbMaterialTemp.Name = "ckbMaterialTemp";
     this.ckbMaterialTemp.UseVisualStyleBackColor = true;
     this.ckbMaterialTemp.CheckedChanged         += new System.EventHandler(this.ckbMaterialTemp_CheckedChanged);
     //
     // rb2MovingTexture
     //
     resources.ApplyResources(this.rb2MovingTexture, "rb2MovingTexture");
     this.rb2MovingTexture.Name    = "rb2MovingTexture";
     this.rb2MovingTexture.TabStop = true;
     this.rb2MovingTexture.UseVisualStyleBackColor = true;
     //
     // rb2Material
     //
     resources.ApplyResources(this.rb2Material, "rb2Material");
     this.rb2Material.Name    = "rb2Material";
     this.rb2Material.TabStop = true;
     this.rb2Material.UseVisualStyleBackColor = true;
     //
     // rb1Object
     //
     resources.ApplyResources(this.rb1Object, "rb1Object");
     this.rb1Object.Name    = "rb1Object";
     this.rb1Object.TabStop = true;
     this.rb1Object.UseVisualStyleBackColor = true;
     this.rb1Object.CheckedChanged         += new System.EventHandler(this.rb1group_CheckedChanged);
     //
     // rb1Me
     //
     resources.ApplyResources(this.rb1Me, "rb1Me");
     this.rb1Me.Name    = "rb1Me";
     this.rb1Me.TabStop = true;
     this.rb1Me.UseVisualStyleBackColor = true;
     this.rb1Me.CheckedChanged         += new System.EventHandler(this.rb1group_CheckedChanged);
     //
     // rb1ScrShot
     //
     resources.ApplyResources(this.rb1ScrShot, "rb1ScrShot");
     this.rb1ScrShot.Name    = "rb1ScrShot";
     this.rb1ScrShot.TabStop = true;
     this.rb1ScrShot.UseVisualStyleBackColor = true;
     this.rb1ScrShot.CheckedChanged         += new System.EventHandler(this.rb1group_CheckedChanged);
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // label9
     //
     resources.ApplyResources(this.label9, "label9");
     this.label9.Name = "label9";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // UI
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.pnWiz0x006d);
     this.Name = "UI";
     this.pnWiz0x006d.ResumeLayout(false);
     this.pnWiz0x006d.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.pnNotAllOver.ResumeLayout(false);
     this.pnNotAllOver.PerformLayout();
     this.pnMaterial.ResumeLayout(false);
     this.pnMaterial.PerformLayout();
     this.pnNotScrShot.ResumeLayout(false);
     this.pnNotScrShot.PerformLayout();
     this.ResumeLayout(false);
 }
Example #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.gridGroupingControl1 = new Syncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl();
     this.sqlSelectCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlConnection1       = new System.Data.SqlClient.SqlConnection();
     this.sqlInsertCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlUpdateCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlDeleteCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlDataAdapter1      = new System.Data.SqlClient.SqlDataAdapter();
     this.dataSet11            = new CustomSummary.DataSet1();
     this.propertyGrid         = new System.Windows.Forms.PropertyGrid();
     ((System.ComponentModel.ISupportInitialize)(this.gridGroupingControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     this.SuspendLayout();
     //
     // gridGroupingControl1
     //
     this.gridGroupingControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.gridGroupingControl1.BackColor            = System.Drawing.SystemColors.Window;
     this.gridGroupingControl1.FreezeCaption        = false;
     this.gridGroupingControl1.GridOfficeScrollBars = Syncfusion.Windows.Forms.OfficeScrollBars.Metro;
     this.gridGroupingControl1.GridVisualStyles     = Syncfusion.Windows.Forms.GridVisualStyles.Metro;
     this.gridGroupingControl1.Location             = new System.Drawing.Point(12, 4);
     this.gridGroupingControl1.Name = "gridGroupingControl1";
     this.gridGroupingControl1.ShowGroupDropArea = true;
     this.gridGroupingControl1.Size     = new System.Drawing.Size(542, 391);
     this.gridGroupingControl1.TabIndex = 0;
     this.gridGroupingControl1.TableDescriptor.AllowNew = false;
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyCell.Font.Facename             = "Segoe UI";
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyCell.TextColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyGroupCell.Borders.Bottom       = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(234)))), ((int)(((byte)(234))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyGroupCell.Borders.Right        = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(234)))), ((int)(((byte)(234))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyGroupCell.Interior             = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235))))));
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyGroupCell.TextColor            = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyRecordFieldCell.Borders.Bottom = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(234)))), ((int)(((byte)(234))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     this.gridGroupingControl1.TableDescriptor.Appearance.AnyRecordFieldCell.Borders.Right  = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(234)))), ((int)(((byte)(234))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     this.gridGroupingControl1.TableDescriptor.Appearance.AnySummaryCell.BaseStyle          = "";
     this.gridGroupingControl1.TableDescriptor.Appearance.AnySummaryCell.Borders.Right      = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     this.gridGroupingControl1.TableDescriptor.Appearance.AnySummaryCell.Borders.Top        = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     this.gridGroupingControl1.TableDescriptor.Appearance.AnySummaryCell.Interior           = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208))))));
     this.gridGroupingControl1.TableDescriptor.Appearance.ColumnHeaderCell.Font.Bold        = true;
     this.gridGroupingControl1.TableDescriptor.Appearance.GroupCaptionCell.CellType         = "ColumnHeader";
     this.gridGroupingControl1.TableDescriptor.TableOptions.ColumnHeaderRowHeight           = 30;
     this.gridGroupingControl1.TableDescriptor.TableOptions.RecordRowHeight                 = 22;
     this.gridGroupingControl1.Text = "gridGroupingControl1";
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = "SELECT OrderID, ProductID, UnitPrice, Quantity, Discount FROM [Order Details]";
     this.sqlSelectCommand1.Connection  = this.sqlConnection1;
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "Network Address=66.135.59.108,49489;initial catalog=NORTHWIND;password=Sync_sampl" +
                                            "es;persist security info=True;user id=sa;packet size=4096;Pooling=true";
     this.sqlConnection1.FireInfoMessageEventOnUserErrors = false;
     //
     // sqlInsertCommand1
     //
     this.sqlInsertCommand1.CommandText = resources.GetString("sqlInsertCommand1.CommandText");
     this.sqlInsertCommand1.Connection  = this.sqlConnection1;
     this.sqlInsertCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@OrderID", System.Data.SqlDbType.Int, 4, "OrderID"),
         new System.Data.SqlClient.SqlParameter("@ProductID", System.Data.SqlDbType.Int, 4, "ProductID"),
         new System.Data.SqlClient.SqlParameter("@UnitPrice", System.Data.SqlDbType.Money, 8, "UnitPrice"),
         new System.Data.SqlClient.SqlParameter("@Quantity", System.Data.SqlDbType.SmallInt, 2, "Quantity"),
         new System.Data.SqlClient.SqlParameter("@Discount", System.Data.SqlDbType.Real, 4, "Discount")
     });
     //
     // sqlUpdateCommand1
     //
     this.sqlUpdateCommand1.CommandText = resources.GetString("sqlUpdateCommand1.CommandText");
     this.sqlUpdateCommand1.Connection  = this.sqlConnection1;
     this.sqlUpdateCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@OrderID", System.Data.SqlDbType.Int, 4, "OrderID"),
         new System.Data.SqlClient.SqlParameter("@ProductID", System.Data.SqlDbType.Int, 4, "ProductID"),
         new System.Data.SqlClient.SqlParameter("@UnitPrice", System.Data.SqlDbType.Money, 8, "UnitPrice"),
         new System.Data.SqlClient.SqlParameter("@Quantity", System.Data.SqlDbType.SmallInt, 2, "Quantity"),
         new System.Data.SqlClient.SqlParameter("@Discount", System.Data.SqlDbType.Real, 4, "Discount"),
         new System.Data.SqlClient.SqlParameter("@Original_OrderID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "OrderID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_ProductID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "ProductID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_Discount", System.Data.SqlDbType.Real, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Discount", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_Quantity", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Quantity", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_UnitPrice", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "UnitPrice", System.Data.DataRowVersion.Original, null)
     });
     //
     // sqlDeleteCommand1
     //
     this.sqlDeleteCommand1.CommandText = resources.GetString("sqlDeleteCommand1.CommandText");
     this.sqlDeleteCommand1.Connection  = this.sqlConnection1;
     this.sqlDeleteCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@Original_OrderID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "OrderID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_ProductID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "ProductID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_Discount", System.Data.SqlDbType.Real, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Discount", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_Quantity", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Quantity", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_UnitPrice", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "UnitPrice", System.Data.DataRowVersion.Original, null)
     });
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.DeleteCommand = this.sqlDeleteCommand1;
     this.sqlDataAdapter1.InsertCommand = this.sqlInsertCommand1;
     this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
     this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Order Details", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("OrderID", "OrderID"),
             new System.Data.Common.DataColumnMapping("ProductID", "ProductID"),
             new System.Data.Common.DataColumnMapping("UnitPrice", "UnitPrice"),
             new System.Data.Common.DataColumnMapping("Quantity", "Quantity"),
             new System.Data.Common.DataColumnMapping("Discount", "Discount")
         })
     });
     this.sqlDataAdapter1.UpdateCommand = this.sqlUpdateCommand1;
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // propertyGrid
     //
     this.propertyGrid.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.propertyGrid.BackColor                 = System.Drawing.Color.White;
     this.propertyGrid.CommandsBackColor         = System.Drawing.Color.White;
     this.propertyGrid.CommandsDisabledLinkColor = System.Drawing.Color.White;
     this.propertyGrid.HelpBackColor             = System.Drawing.Color.White;
     this.propertyGrid.LineColor                 = System.Drawing.Color.White;
     this.propertyGrid.Location       = new System.Drawing.Point(567, 4);
     this.propertyGrid.Margin         = new System.Windows.Forms.Padding(10);
     this.propertyGrid.Name           = "propertyGrid";
     this.propertyGrid.SelectedObject = this.gridGroupingControl1;
     this.propertyGrid.Size           = new System.Drawing.Size(263, 391);
     this.propertyGrid.TabIndex       = 12;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(840, 403);
     this.Controls.Add(this.propertyGrid);
     this.Controls.Add(this.gridGroupingControl1);
     this.MaximumSize = new System.Drawing.Size(1200, 1000);
     this.MinimumSize = new System.Drawing.Size(700, 400);
     this.Name        = "Form1";
     this.Text        = "Custom Summary ";
     ((System.ComponentModel.ISupportInitialize)(this.gridGroupingControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     this.ResumeLayout(false);
 }
Example #34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_asset_dettaglio));
     this.btnOK           = new System.Windows.Forms.Button();
     this.btnAnnulla      = new System.Windows.Forms.Button();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.tabControl1     = new System.Windows.Forms.TabControl();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.label30         = new System.Windows.Forms.Label();
     this.txtRfid         = new System.Windows.Forms.TextBox();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.cmbAmmortamento = new System.Windows.Forms.ComboBox();
     this.DS                  = new asset_dettaglio.vistaForm();
     this.button10            = new System.Windows.Forms.Button();
     this.textBox3            = new System.Windows.Forms.TextBox();
     this.textBox1            = new System.Windows.Forms.TextBox();
     this.label1              = new System.Windows.Forms.Label();
     this.gboxUbicazione      = new System.Windows.Forms.GroupBox();
     this.dataGrid4           = new System.Windows.Forms.DataGrid();
     this.button7             = new System.Windows.Forms.Button();
     this.button8             = new System.Windows.Forms.Button();
     this.button9             = new System.Windows.Forms.Button();
     this.gboxResponsabile    = new System.Windows.Forms.GroupBox();
     this.button4             = new System.Windows.Forms.Button();
     this.button5             = new System.Windows.Forms.Button();
     this.button6             = new System.Windows.Forms.Button();
     this.dataGrid3           = new System.Windows.Forms.DataGrid();
     this.chkTrasmesso        = new System.Windows.Forms.CheckBox();
     this.textBox2            = new System.Windows.Forms.TextBox();
     this.txtEsistenzaCespite = new System.Windows.Forms.TextBox();
     this.label2              = new System.Windows.Forms.Label();
     this.grpBene             = new System.Windows.Forms.GroupBox();
     this.txtDescrizione      = new System.Windows.Forms.TextBox();
     this.btnSelezBene        = new System.Windows.Forms.Button();
     this.txtNumInv           = new System.Windows.Forms.TextBox();
     this.tabPageInfoAgg      = new System.Windows.Forms.TabPage();
     this.tabConsegnatario    = new System.Windows.Forms.TabPage();
     this.gboxConsegnatario   = new System.Windows.Forms.GroupBox();
     this.button1             = new System.Windows.Forms.Button();
     this.button2             = new System.Windows.Forms.Button();
     this.button3             = new System.Windows.Forms.Button();
     this.dataGrid1           = new System.Windows.Forms.DataGrid();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.gboxUbicazione.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid4)).BeginInit();
     this.gboxResponsabile.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid3)).BeginInit();
     this.grpBene.SuspendLayout();
     this.tabConsegnatario.SuspendLayout();
     this.gboxConsegnatario.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location     = new System.Drawing.Point(618, 527);
     this.btnOK.Name         = "btnOK";
     this.btnOK.Size         = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex     = 8;
     this.btnOK.Tag          = "mainsave";
     this.btnOK.Text         = "OK";
     //
     // btnAnnulla
     //
     this.btnAnnulla.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAnnulla.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnAnnulla.Location     = new System.Drawing.Point(706, 527);
     this.btnAnnulla.Name         = "btnAnnulla";
     this.btnAnnulla.Size         = new System.Drawing.Size(75, 23);
     this.btnAnnulla.TabIndex     = 9;
     this.btnAnnulla.Text         = "Annulla";
     //
     // comboBox1
     //
     this.comboBox1.Location = new System.Drawing.Point(0, 0);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(121, 21);
     this.comboBox1.TabIndex = 0;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPageInfoAgg);
     this.tabControl1.Controls.Add(this.tabConsegnatario);
     this.tabControl1.Location      = new System.Drawing.Point(8, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(794, 511);
     this.tabControl1.TabIndex      = 16;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.gboxUbicazione);
     this.tabPage1.Controls.Add(this.gboxResponsabile);
     this.tabPage1.Controls.Add(this.chkTrasmesso);
     this.tabPage1.Controls.Add(this.textBox2);
     this.tabPage1.Controls.Add(this.txtEsistenzaCespite);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.grpBene);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(786, 485);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Principale";
     //
     // label30
     //
     this.label30.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location  = new System.Drawing.Point(532, 32);
     this.label30.Name      = "label30";
     this.label30.Size      = new System.Drawing.Size(35, 16);
     this.label30.TabIndex  = 32;
     this.label30.Tag       = "";
     this.label30.Text      = "Rfid";
     this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtRfid
     //
     this.txtRfid.Location = new System.Drawing.Point(574, 31);
     this.txtRfid.Name     = "txtRfid";
     this.txtRfid.Size     = new System.Drawing.Size(134, 20);
     this.txtRfid.TabIndex = 2;
     this.txtRfid.Tag      = "asset.rfid";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cmbAmmortamento);
     this.groupBox1.Controls.Add(this.button10);
     this.groupBox1.Controls.Add(this.textBox3);
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(13, 134);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(770, 74);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Ammortamento";
     //
     // cmbAmmortamento
     //
     this.cmbAmmortamento.DataSource    = this.DS.inventoryamortization;
     this.cmbAmmortamento.DisplayMember = "description";
     this.cmbAmmortamento.Location      = new System.Drawing.Point(132, 18);
     this.cmbAmmortamento.Name          = "cmbAmmortamento";
     this.cmbAmmortamento.Size          = new System.Drawing.Size(286, 21);
     this.cmbAmmortamento.TabIndex      = 29;
     this.cmbAmmortamento.Tag           = "asset.idinventoryamortization";
     this.cmbAmmortamento.ValueMember   = "idinventoryamortization";
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     //
     // button10
     //
     this.button10.Location = new System.Drawing.Point(6, 16);
     this.button10.Name     = "button10";
     this.button10.Size     = new System.Drawing.Size(120, 23);
     this.button10.TabIndex = 28;
     this.button10.Tag      = "manage.inventoryamortization.default";
     this.button10.Text     = "Tipo Ammortamento";
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(328, 44);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(90, 20);
     this.textBox3.TabIndex = 27;
     this.textBox3.Tag      = "asset.amortizationquota.fixed.6..%.100";
     //
     // textBox1
     //
     this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox1.Location  = new System.Drawing.Point(423, 10);
     this.textBox1.Multiline = true;
     this.textBox1.Name      = "textBox1";
     this.textBox1.ReadOnly  = true;
     this.textBox1.Size      = new System.Drawing.Size(341, 58);
     this.textBox1.TabIndex  = 26;
     this.textBox1.TabStop   = false;
     this.textBox1.Text      = resources.GetString("textBox1.Text");
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(174, 49);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(136, 13);
     this.label1.TabIndex = 25;
     this.label1.Text     = "Percentuale ammortamento";
     //
     // gboxUbicazione
     //
     this.gboxUbicazione.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                         | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.gboxUbicazione.Controls.Add(this.dataGrid4);
     this.gboxUbicazione.Controls.Add(this.button7);
     this.gboxUbicazione.Controls.Add(this.button8);
     this.gboxUbicazione.Controls.Add(this.button9);
     this.gboxUbicazione.Location = new System.Drawing.Point(13, 338);
     this.gboxUbicazione.Name     = "gboxUbicazione";
     this.gboxUbicazione.Size     = new System.Drawing.Size(760, 117);
     this.gboxUbicazione.TabIndex = 6;
     this.gboxUbicazione.TabStop  = false;
     this.gboxUbicazione.Text     = "Ubicazione";
     //
     // dataGrid4
     //
     this.dataGrid4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid4.CaptionVisible  = false;
     this.dataGrid4.DataMember      = "";
     this.dataGrid4.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid4.Location        = new System.Drawing.Point(96, 19);
     this.dataGrid4.Name            = "dataGrid4";
     this.dataGrid4.Size            = new System.Drawing.Size(656, 92);
     this.dataGrid4.TabIndex        = 19;
     this.dataGrid4.Tag             = "assetlocation.detail.single";
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(8, 83);
     this.button7.Name     = "button7";
     this.button7.Size     = new System.Drawing.Size(75, 24);
     this.button7.TabIndex = 18;
     this.button7.TabStop  = false;
     this.button7.Tag      = "delete";
     this.button7.Text     = "Elimina";
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(8, 51);
     this.button8.Name     = "button8";
     this.button8.Size     = new System.Drawing.Size(75, 24);
     this.button8.TabIndex = 17;
     this.button8.TabStop  = false;
     this.button8.Tag      = "edit.single";
     this.button8.Text     = "Modifica";
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(8, 19);
     this.button9.Name     = "button9";
     this.button9.Size     = new System.Drawing.Size(75, 24);
     this.button9.TabIndex = 16;
     this.button9.TabStop  = false;
     this.button9.Tag      = "insert.single";
     this.button9.Text     = "Inserisci";
     //
     // gboxResponsabile
     //
     this.gboxResponsabile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.gboxResponsabile.Controls.Add(this.button4);
     this.gboxResponsabile.Controls.Add(this.button5);
     this.gboxResponsabile.Controls.Add(this.button6);
     this.gboxResponsabile.Controls.Add(this.dataGrid3);
     this.gboxResponsabile.Location = new System.Drawing.Point(13, 211);
     this.gboxResponsabile.Name     = "gboxResponsabile";
     this.gboxResponsabile.Size     = new System.Drawing.Size(760, 123);
     this.gboxResponsabile.TabIndex = 5;
     this.gboxResponsabile.TabStop  = false;
     this.gboxResponsabile.Text     = "Responsabile";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(8, 19);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(75, 24);
     this.button4.TabIndex = 7;
     this.button4.TabStop  = false;
     this.button4.Tag      = "insert.single";
     this.button4.Text     = "Inserisci";
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(8, 83);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(75, 24);
     this.button5.TabIndex = 9;
     this.button5.TabStop  = false;
     this.button5.Tag      = "delete";
     this.button5.Text     = "Elimina";
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(8, 51);
     this.button6.Name     = "button6";
     this.button6.Size     = new System.Drawing.Size(75, 24);
     this.button6.TabIndex = 8;
     this.button6.TabStop  = false;
     this.button6.Tag      = "edit.single";
     this.button6.Text     = "Modifica";
     //
     // dataGrid3
     //
     this.dataGrid3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid3.CaptionVisible  = false;
     this.dataGrid3.DataMember      = "";
     this.dataGrid3.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid3.Location        = new System.Drawing.Point(96, 19);
     this.dataGrid3.Name            = "dataGrid3";
     this.dataGrid3.Size            = new System.Drawing.Size(656, 98);
     this.dataGrid3.TabIndex        = 10;
     this.dataGrid3.Tag             = "assetmanager.detail.single";
     //
     // chkTrasmesso
     //
     this.chkTrasmesso.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkTrasmesso.AutoSize = true;
     this.chkTrasmesso.Location = new System.Drawing.Point(13, 464);
     this.chkTrasmesso.Name     = "chkTrasmesso";
     this.chkTrasmesso.Size     = new System.Drawing.Size(77, 17);
     this.chkTrasmesso.TabIndex = 7;
     this.chkTrasmesso.Tag      = "asset.transmitted:S:N";
     this.chkTrasmesso.Text     = "Trasmesso";
     this.chkTrasmesso.UseVisualStyleBackColor = true;
     //
     // textBox2
     //
     this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox2.Location  = new System.Drawing.Point(200, 91);
     this.textBox2.Multiline = true;
     this.textBox2.Name      = "textBox2";
     this.textBox2.ReadOnly  = true;
     this.textBox2.Size      = new System.Drawing.Size(573, 41);
     this.textBox2.TabIndex  = 21;
     this.textBox2.TabStop   = false;
     this.textBox2.Text      = "Indica la data di acquisto del cespite se esso è nuovo altrimenti indica la data " +
                               "da cui si deve calcolare l\'età del cespite ai fini dell\'ammortamento";
     //
     // txtEsistenzaCespite
     //
     this.txtEsistenzaCespite.Location = new System.Drawing.Point(13, 110);
     this.txtEsistenzaCespite.Name     = "txtEsistenzaCespite";
     this.txtEsistenzaCespite.Size     = new System.Drawing.Size(104, 20);
     this.txtEsistenzaCespite.TabIndex = 3;
     this.txtEsistenzaCespite.Tag      = "asset.lifestart";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 91);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(128, 16);
     this.label2.TabIndex = 20;
     this.label2.Text     = "Inizio Esistenza Cespite:";
     //
     // grpBene
     //
     this.grpBene.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grpBene.Controls.Add(this.label30);
     this.grpBene.Controls.Add(this.txtDescrizione);
     this.grpBene.Controls.Add(this.txtRfid);
     this.grpBene.Controls.Add(this.btnSelezBene);
     this.grpBene.Controls.Add(this.txtNumInv);
     this.grpBene.Location = new System.Drawing.Point(8, 16);
     this.grpBene.Name     = "grpBene";
     this.grpBene.Size     = new System.Drawing.Size(761, 72);
     this.grpBene.TabIndex = 1;
     this.grpBene.TabStop  = false;
     this.grpBene.Tag      = "";
     this.grpBene.Text     = "Numero inventario cespite principale";
     //
     // txtDescrizione
     //
     this.txtDescrizione.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDescrizione.Location  = new System.Drawing.Point(192, 16);
     this.txtDescrizione.Multiline = true;
     this.txtDescrizione.Name      = "txtDescrizione";
     this.txtDescrizione.ReadOnly  = true;
     this.txtDescrizione.Size      = new System.Drawing.Size(255, 48);
     this.txtDescrizione.TabIndex  = 5;
     this.txtDescrizione.Tag       = "assetacquire.description";
     //
     // btnSelezBene
     //
     this.btnSelezBene.Location = new System.Drawing.Point(8, 16);
     this.btnSelezBene.Name     = "btnSelezBene";
     this.btnSelezBene.Size     = new System.Drawing.Size(136, 23);
     this.btnSelezBene.TabIndex = 2;
     this.btnSelezBene.Tag      = "choose.asset.default";
     this.btnSelezBene.Text     = "Num.Inventario ";
     //
     // txtNumInv
     //
     this.txtNumInv.Location = new System.Drawing.Point(8, 48);
     this.txtNumInv.Name     = "txtNumInv";
     this.txtNumInv.Size     = new System.Drawing.Size(88, 20);
     this.txtNumInv.TabIndex = 3;
     this.txtNumInv.Tag      = "asset.ninventory";
     //
     // tabPageInfoAgg
     //
     this.tabPageInfoAgg.AutoScroll = true;
     this.tabPageInfoAgg.Location   = new System.Drawing.Point(4, 22);
     this.tabPageInfoAgg.Name       = "tabPageInfoAgg";
     this.tabPageInfoAgg.Padding    = new System.Windows.Forms.Padding(3);
     this.tabPageInfoAgg.Size       = new System.Drawing.Size(786, 485);
     this.tabPageInfoAgg.TabIndex   = 1;
     this.tabPageInfoAgg.Text       = "Informazioni Aggiuntive";
     this.tabPageInfoAgg.UseVisualStyleBackColor = true;
     //
     // tabConsegnatario
     //
     this.tabConsegnatario.Controls.Add(this.gboxConsegnatario);
     this.tabConsegnatario.Location = new System.Drawing.Point(4, 22);
     this.tabConsegnatario.Name     = "tabConsegnatario";
     this.tabConsegnatario.Size     = new System.Drawing.Size(786, 485);
     this.tabConsegnatario.TabIndex = 2;
     this.tabConsegnatario.Text     = "Subconsegnatario";
     this.tabConsegnatario.UseVisualStyleBackColor = true;
     //
     // gboxConsegnatario
     //
     this.gboxConsegnatario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.gboxConsegnatario.Controls.Add(this.button1);
     this.gboxConsegnatario.Controls.Add(this.button2);
     this.gboxConsegnatario.Controls.Add(this.button3);
     this.gboxConsegnatario.Controls.Add(this.dataGrid1);
     this.gboxConsegnatario.Location = new System.Drawing.Point(9, 16);
     this.gboxConsegnatario.Name     = "gboxConsegnatario";
     this.gboxConsegnatario.Size     = new System.Drawing.Size(760, 190);
     this.gboxConsegnatario.TabIndex = 24;
     this.gboxConsegnatario.TabStop  = false;
     this.gboxConsegnatario.Text     = "Subconsegnatario Cespite";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(8, 19);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 24);
     this.button1.TabIndex = 7;
     this.button1.TabStop  = false;
     this.button1.Tag      = "insert.single";
     this.button1.Text     = "Inserisci";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(8, 83);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 24);
     this.button2.TabIndex = 9;
     this.button2.TabStop  = false;
     this.button2.Tag      = "delete";
     this.button2.Text     = "Elimina";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(8, 51);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(75, 24);
     this.button3.TabIndex = 8;
     this.button3.TabStop  = false;
     this.button3.Tag      = "edit.single";
     this.button3.Text     = "Modifica";
     //
     // dataGrid1
     //
     this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid1.CaptionVisible  = false;
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(96, 19);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(656, 165);
     this.dataGrid1.TabIndex        = 10;
     this.dataGrid1.Tag             = "assetsubmanager.detail.single";
     //
     // Frm_asset_dettaglio
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(812, 558);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.btnAnnulla);
     this.Controls.Add(this.btnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "Frm_asset_dettaglio";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.gboxUbicazione.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid4)).EndInit();
     this.gboxResponsabile.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid3)).EndInit();
     this.grpBene.ResumeLayout(false);
     this.grpBene.PerformLayout();
     this.tabConsegnatario.ResumeLayout(false);
     this.gboxConsegnatario.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Example #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
     this.lblText1  = new System.Windows.Forms.Label();
     this.picAbout  = new System.Windows.Forms.PictureBox();
     this.lblTitle  = new System.Windows.Forms.Label();
     this.lblText2  = new System.Windows.Forms.Label();
     this.btnOK     = new System.Windows.Forms.Button();
     this.lblAuthor = new System.Windows.Forms.Label();
     this.picAuthor = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.picAbout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picAuthor)).BeginInit();
     this.SuspendLayout();
     //
     // lblText1
     //
     this.lblText1.Font      = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblText1.Location  = new System.Drawing.Point(32, 64);
     this.lblText1.Name      = "lblText1";
     this.lblText1.Size      = new System.Drawing.Size(248, 40);
     this.lblText1.TabIndex  = 0;
     this.lblText1.Text      = "Copyright (C) Andrew Leong 2009. All rights reserved.";
     this.lblText1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblText1.Click    += new System.EventHandler(this.lblText1_Click);
     //
     // picAbout
     //
     this.picAbout.Image    = ((System.Drawing.Image)(resources.GetObject("picAbout.Image")));
     this.picAbout.Location = new System.Drawing.Point(16, 16);
     this.picAbout.Name     = "picAbout";
     this.picAbout.Size     = new System.Drawing.Size(32, 32);
     this.picAbout.TabIndex = 1;
     this.picAbout.TabStop  = false;
     //
     // lblTitle
     //
     this.lblTitle.Font      = new System.Drawing.Font("Palatino Linotype", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.ForeColor = System.Drawing.Color.Blue;
     this.lblTitle.Location  = new System.Drawing.Point(56, 16);
     this.lblTitle.Name      = "lblTitle";
     this.lblTitle.Size      = new System.Drawing.Size(208, 23);
     this.lblTitle.TabIndex  = 2;
     this.lblTitle.Text      = "Power Point Manager v1.0";
     //
     // lblText2
     //
     this.lblText2.Font     = new System.Drawing.Font("Dotum", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblText2.Location = new System.Drawing.Point(32, 120);
     this.lblText2.Name     = "lblText2";
     this.lblText2.Size     = new System.Drawing.Size(224, 144);
     this.lblText2.TabIndex = 3;
     this.lblText2.Text     = resources.GetString("lblText2.Text");
     //
     // btnOK
     //
     this.btnOK.Font      = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOK.ForeColor = System.Drawing.Color.Black;
     this.btnOK.Location  = new System.Drawing.Point(445, 291);
     this.btnOK.Name      = "btnOK";
     this.btnOK.Size      = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex  = 4;
     this.btnOK.Text      = "&Close";
     this.btnOK.Click    += new System.EventHandler(this.btnOK_Click);
     //
     // lblAuthor
     //
     this.lblAuthor.Font     = new System.Drawing.Font("Dotum", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAuthor.Location = new System.Drawing.Point(312, 128);
     this.lblAuthor.Name     = "lblAuthor";
     this.lblAuthor.Size     = new System.Drawing.Size(208, 136);
     this.lblAuthor.TabIndex = 6;
     this.lblAuthor.Text     = resources.GetString("lblAuthor.Text");
     //
     // picAuthor
     //
     this.picAuthor.Image    = ((System.Drawing.Image)(resources.GetObject("picAuthor.Image")));
     this.picAuthor.Location = new System.Drawing.Point(320, 16);
     this.picAuthor.Name     = "picAuthor";
     this.picAuthor.Size     = new System.Drawing.Size(136, 96);
     this.picAuthor.TabIndex = 8;
     this.picAuthor.TabStop  = false;
     //
     // frmAbout
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(544, 326);
     this.Controls.Add(this.picAuthor);
     this.Controls.Add(this.lblAuthor);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.lblText2);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.picAbout);
     this.Controls.Add(this.lblText1);
     this.Name          = "frmAbout";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "PPManager v1.0";
     this.Load         += new System.EventHandler(this.frmAbout_Load);
     ((System.ComponentModel.ISupportInitialize)(this.picAbout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picAuthor)).EndInit();
     this.ResumeLayout(false);
 }
Example #36
0
 /// -----------------------------------------------------------------------------------
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 /// -----------------------------------------------------------------------------------
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label lblLookup;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LanguageSetup));
     System.Windows.Forms.Label        lblFindPattern;
     System.Windows.Forms.ColumnHeader hdrLanguageName;
     System.Windows.Forms.ColumnHeader hdrCountry;
     System.Windows.Forms.ColumnHeader hdrEthnologueCode;
     System.Windows.Forms.GroupBox     grpCurrentLang;
     System.Windows.Forms.Label        lblCurrentEthCode;
     System.Windows.Forms.Label        lblCurrentLangName;
     System.Windows.Forms.Label        lblOtherNames;
     System.Windows.Forms.Label        lblInstructions1;
     System.Windows.Forms.Label        lblInstructions2;
     System.Windows.Forms.HelpProvider helpProvider1;
     this.txtFindPattern         = new System.Windows.Forms.TextBox();
     this.btnFind                = new System.Windows.Forms.Button();
     this.lvFindResult           = new System.Windows.Forms.ListView();
     this.lblCurrentEthCodeValue = new System.Windows.Forms.Label();
     this.txtCurrentLangName     = new System.Windows.Forms.TextBox();
     this.lblOtherNamesList      = new System.Windows.Forms.Label();
     this.toolTip1               = new System.Windows.Forms.ToolTip(this.components);
     this.cboLookup              = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
     lblLookup          = new System.Windows.Forms.Label();
     lblFindPattern     = new System.Windows.Forms.Label();
     hdrLanguageName    = new System.Windows.Forms.ColumnHeader();
     hdrCountry         = new System.Windows.Forms.ColumnHeader();
     hdrEthnologueCode  = new System.Windows.Forms.ColumnHeader();
     grpCurrentLang     = new System.Windows.Forms.GroupBox();
     lblCurrentEthCode  = new System.Windows.Forms.Label();
     lblCurrentLangName = new System.Windows.Forms.Label();
     lblOtherNames      = new System.Windows.Forms.Label();
     lblInstructions1   = new System.Windows.Forms.Label();
     lblInstructions2   = new System.Windows.Forms.Label();
     helpProvider1      = new HelpProvider();
     grpCurrentLang.SuspendLayout();
     this.SuspendLayout();
     //
     // lblLookup
     //
     resources.ApplyResources(lblLookup, "lblLookup");
     lblLookup.Name = "lblLookup";
     helpProvider1.SetShowHelp(lblLookup, ((bool)(resources.GetObject("lblLookup.ShowHelp"))));
     //
     // txtFindPattern
     //
     this.txtFindPattern.AcceptsReturn = true;
     resources.ApplyResources(this.txtFindPattern, "txtFindPattern");
     helpProvider1.SetHelpString(this.txtFindPattern, resources.GetString("txtFindPattern.HelpString"));
     this.txtFindPattern.Name = "txtFindPattern";
     helpProvider1.SetShowHelp(this.txtFindPattern, ((bool)(resources.GetObject("txtFindPattern.ShowHelp"))));
     this.txtFindPattern.Enter       += new System.EventHandler(this.txtFindPattern_Enter);
     this.txtFindPattern.Leave       += new System.EventHandler(this.txtFindPattern_Leave);
     this.txtFindPattern.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.txtFindPattern_KeyPress);
     this.txtFindPattern.TextChanged += new System.EventHandler(this.txtFindPattern_TextChanged);
     //
     // btnFind
     //
     resources.ApplyResources(this.btnFind, "btnFind");
     helpProvider1.SetHelpString(this.btnFind, resources.GetString("btnFind.HelpString"));
     this.btnFind.Name = "btnFind";
     helpProvider1.SetShowHelp(this.btnFind, ((bool)(resources.GetObject("btnFind.ShowHelp"))));
     this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
     //
     // lblFindPattern
     //
     resources.ApplyResources(lblFindPattern, "lblFindPattern");
     lblFindPattern.Name = "lblFindPattern";
     helpProvider1.SetShowHelp(lblFindPattern, ((bool)(resources.GetObject("lblFindPattern.ShowHelp"))));
     //
     // lvFindResult
     //
     resources.ApplyResources(this.lvFindResult, "lvFindResult");
     this.lvFindResult.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         hdrLanguageName,
         hdrCountry,
         hdrEthnologueCode
     });
     this.lvFindResult.FullRowSelect = true;
     helpProvider1.SetHelpString(this.lvFindResult, resources.GetString("lvFindResult.HelpString"));
     this.lvFindResult.HideSelection = false;
     this.lvFindResult.MultiSelect   = false;
     this.lvFindResult.Name          = "lvFindResult";
     helpProvider1.SetShowHelp(this.lvFindResult, ((bool)(resources.GetObject("lvFindResult.ShowHelp"))));
     this.lvFindResult.UseCompatibleStateImageBehavior = false;
     this.lvFindResult.View   = System.Windows.Forms.View.Details;
     this.lvFindResult.Enter += new System.EventHandler(this.lvFindResult_Enter);
     this.lvFindResult.SelectedIndexChanged += new System.EventHandler(this.lvFindResult_SelectedIndexChanged);
     this.lvFindResult.ColumnClick          += new System.Windows.Forms.ColumnClickEventHandler(this.lvFindResult_ColumnClick);
     //
     // hdrLanguageName
     //
     resources.ApplyResources(hdrLanguageName, "hdrLanguageName");
     //
     // hdrCountry
     //
     resources.ApplyResources(hdrCountry, "hdrCountry");
     //
     // hdrEthnologueCode
     //
     resources.ApplyResources(hdrEthnologueCode, "hdrEthnologueCode");
     //
     // grpCurrentLang
     //
     grpCurrentLang.Controls.Add(lblCurrentEthCode);
     grpCurrentLang.Controls.Add(this.lblCurrentEthCodeValue);
     grpCurrentLang.Controls.Add(lblCurrentLangName);
     grpCurrentLang.Controls.Add(this.txtCurrentLangName);
     grpCurrentLang.Controls.Add(lblOtherNames);
     grpCurrentLang.Controls.Add(this.lblOtherNamesList);
     grpCurrentLang.FlatStyle = System.Windows.Forms.FlatStyle.System;
     resources.ApplyResources(grpCurrentLang, "grpCurrentLang");
     grpCurrentLang.Name = "grpCurrentLang";
     helpProvider1.SetShowHelp(grpCurrentLang, ((bool)(resources.GetObject("grpCurrentLang.ShowHelp"))));
     grpCurrentLang.TabStop = false;
     //
     // lblCurrentEthCode
     //
     resources.ApplyResources(lblCurrentEthCode, "lblCurrentEthCode");
     lblCurrentEthCode.BackColor = System.Drawing.SystemColors.Control;
     lblCurrentEthCode.Name      = "lblCurrentEthCode";
     helpProvider1.SetShowHelp(lblCurrentEthCode, ((bool)(resources.GetObject("lblCurrentEthCode.ShowHelp"))));
     //
     // lblCurrentEthCodeValue
     //
     resources.ApplyResources(this.lblCurrentEthCodeValue, "lblCurrentEthCodeValue");
     helpProvider1.SetHelpString(this.lblCurrentEthCodeValue, resources.GetString("lblCurrentEthCodeValue.HelpString"));
     this.lblCurrentEthCodeValue.Name = "lblCurrentEthCodeValue";
     helpProvider1.SetShowHelp(this.lblCurrentEthCodeValue, ((bool)(resources.GetObject("lblCurrentEthCodeValue.ShowHelp"))));
     this.lblCurrentEthCodeValue.Tag = "(Unknown)";
     //
     // lblCurrentLangName
     //
     resources.ApplyResources(lblCurrentLangName, "lblCurrentLangName");
     lblCurrentLangName.Name = "lblCurrentLangName";
     helpProvider1.SetShowHelp(lblCurrentLangName, ((bool)(resources.GetObject("lblCurrentLangName.ShowHelp"))));
     //
     // txtCurrentLangName
     //
     helpProvider1.SetHelpString(this.txtCurrentLangName, resources.GetString("txtCurrentLangName.HelpString"));
     resources.ApplyResources(this.txtCurrentLangName, "txtCurrentLangName");
     this.txtCurrentLangName.Name = "txtCurrentLangName";
     helpProvider1.SetShowHelp(this.txtCurrentLangName, ((bool)(resources.GetObject("txtCurrentLangName.ShowHelp"))));
     this.txtCurrentLangName.TextChanged += new System.EventHandler(this.txtCurrentLangName_TextChanged);
     //
     // lblOtherNames
     //
     resources.ApplyResources(lblOtherNames, "lblOtherNames");
     lblOtherNames.Name = "lblOtherNames";
     helpProvider1.SetShowHelp(lblOtherNames, ((bool)(resources.GetObject("lblOtherNames.ShowHelp"))));
     //
     // lblOtherNamesList
     //
     resources.ApplyResources(this.lblOtherNamesList, "lblOtherNamesList");
     helpProvider1.SetHelpString(this.lblOtherNamesList, resources.GetString("lblOtherNamesList.HelpString"));
     this.lblOtherNamesList.Name = "lblOtherNamesList";
     helpProvider1.SetShowHelp(this.lblOtherNamesList, ((bool)(resources.GetObject("lblOtherNamesList.ShowHelp"))));
     this.lblOtherNamesList.UseMnemonic = false;
     this.lblOtherNamesList.Paint      += new System.Windows.Forms.PaintEventHandler(this.lblOtherNamesList_Paint);
     //
     // lblInstructions1
     //
     resources.ApplyResources(lblInstructions1, "lblInstructions1");
     lblInstructions1.Name = "lblInstructions1";
     helpProvider1.SetShowHelp(lblInstructions1, ((bool)(resources.GetObject("lblInstructions1.ShowHelp"))));
     //
     // lblInstructions2
     //
     resources.ApplyResources(lblInstructions2, "lblInstructions2");
     lblInstructions2.Name = "lblInstructions2";
     helpProvider1.SetShowHelp(lblInstructions2, ((bool)(resources.GetObject("lblInstructions2.ShowHelp"))));
     //
     // cboLookup
     //
     this.cboLookup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     helpProvider1.SetHelpString(this.cboLookup, resources.GetString("cboLookup.HelpString"));
     resources.ApplyResources(this.cboLookup, "cboLookup");
     this.cboLookup.Items.AddRange(new object[] {
         resources.GetString("cboLookup.Items"),
         resources.GetString("cboLookup.Items1"),
         resources.GetString("cboLookup.Items2")
     });
     this.cboLookup.Name = "cboLookup";
     helpProvider1.SetShowHelp(this.cboLookup, ((bool)(resources.GetObject("cboLookup.ShowHelp"))));
     this.cboLookup.Enter += new System.EventHandler(this.cboLookup_Enter);
     this.cboLookup.SelectedIndexChanged += new System.EventHandler(this.cboLookup_SelectedIndexChanged);
     //
     // LanguageSetup
     //
     this.Controls.Add(this.btnFind);
     this.Controls.Add(this.txtFindPattern);
     this.Controls.Add(this.cboLookup);
     this.Controls.Add(lblInstructions2);
     this.Controls.Add(lblInstructions1);
     this.Controls.Add(grpCurrentLang);
     this.Controls.Add(this.lvFindResult);
     this.Controls.Add(lblFindPattern);
     this.Controls.Add(lblLookup);
     this.Name = "LanguageSetup";
     helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
     resources.ApplyResources(this, "$this");
     grpCurrentLang.ResumeLayout(false);
     grpCurrentLang.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #37
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.TableGroup                   tableGroup1     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup2     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup3     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup4     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup5     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup6     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup7     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup                   tableGroup8     = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.Drawing.FormattingRule       formattingRule1 = new Telerik.Reporting.Drawing.FormattingRule();
     Telerik.Reporting.Drawing.FormattingRule       formattingRule2 = new Telerik.Reporting.Drawing.FormattingRule();
     Telerik.Reporting.Drawing.FormattingRule       formattingRule3 = new Telerik.Reporting.Drawing.FormattingRule();
     Telerik.Reporting.Drawing.FormattingRule       formattingRule4 = new Telerik.Reporting.Drawing.FormattingRule();
     Telerik.Reporting.Drawing.FormattingRule       formattingRule5 = new Telerik.Reporting.Drawing.FormattingRule();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(ProductCatalog));
     Telerik.Reporting.TocLevel tocLevel1 = new Telerik.Reporting.TocLevel();
     Telerik.Reporting.TocLevel tocLevel2 = new Telerik.Reporting.TocLevel();
     Telerik.Reporting.TocLevel tocLevel3 = new Telerik.Reporting.TocLevel();
     Telerik.Reporting.Group    group1    = new Telerik.Reporting.Group();
     Telerik.Reporting.Group    group2    = new Telerik.Reporting.Group();
     Telerik.Reporting.Group    group3    = new Telerik.Reporting.Group();
     Telerik.Reporting.Drawing.TextWatermark      textWatermark1      = new Telerik.Reporting.Drawing.TextWatermark();
     Telerik.Reporting.ReportParameter            reportParameter1    = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.Drawing.StyleRule          styleRule1          = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule          styleRule2          = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule          styleRule3          = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule          styleRule4          = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule          styleRule5          = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.DescendantSelector descendantSelector1 = new Telerik.Reporting.Drawing.DescendantSelector();
     this.textBox5                    = new Telerik.Reporting.TextBox();
     this.textBox14                   = new Telerik.Reporting.TextBox();
     this.textBox15                   = new Telerik.Reporting.TextBox();
     this.textBox7                    = new Telerik.Reporting.TextBox();
     this.textBox9                    = new Telerik.Reporting.TextBox();
     this.textBox19                   = new Telerik.Reporting.TextBox();
     this.textBox21                   = new Telerik.Reporting.TextBox();
     this.groupFooterSection1         = new Telerik.Reporting.GroupFooterSection();
     this.groupHeaderSection1         = new Telerik.Reporting.GroupHeaderSection();
     this.textBoxProductCategoryLabel = new Telerik.Reporting.TextBox();
     this.textBox3                    = new Telerik.Reporting.TextBox();
     this.shape3 = new Telerik.Reporting.Shape();
     this.groupFooterSection2 = new Telerik.Reporting.GroupFooterSection();
     this.groupHeaderSection2 = new Telerik.Reporting.GroupHeaderSection();
     this.textBox4            = new Telerik.Reporting.TextBox();
     this.groupFooterSection3 = new Telerik.Reporting.GroupFooterSection();
     this.groupHeaderSection3 = new Telerik.Reporting.GroupHeaderSection();
     this.panel3             = new Telerik.Reporting.Panel();
     this.pictureBox1        = new Telerik.Reporting.PictureBox();
     this.textBox1           = new Telerik.Reporting.TextBox();
     this.table1             = new Telerik.Reporting.Table();
     this.textBox16          = new Telerik.Reporting.TextBox();
     this.textBox17          = new Telerik.Reporting.TextBox();
     this.textBox8           = new Telerik.Reporting.TextBox();
     this.textBox18          = new Telerik.Reporting.TextBox();
     this.textBox20          = new Telerik.Reporting.TextBox();
     this.textBox22          = new Telerik.Reporting.TextBox();
     this.panel7             = new Telerik.Reporting.Panel();
     this.shape1             = new Telerik.Reporting.Shape();
     this.textBox10          = new Telerik.Reporting.TextBox();
     this.textBox6           = new Telerik.Reporting.TextBox();
     this.sqlDataSource2     = new Telerik.Reporting.SqlDataSource();
     this.detailSection1     = new Telerik.Reporting.DetailSection();
     this.sqlDataSource1     = new Telerik.Reporting.SqlDataSource();
     this.tocSection1        = new Telerik.Reporting.TocSection();
     this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
     this.textBox2           = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox5
     //
     this.textBox5.Name        = "textBox5";
     this.textBox5.Size        = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.954D), Telerik.Reporting.Drawing.Unit.Inch(0.271D));
     this.textBox5.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox5.Value       = "Product No.";
     //
     // textBox14
     //
     this.textBox14.Name        = "textBox14";
     this.textBox14.Size        = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.221D), Telerik.Reporting.Drawing.Unit.Cm(0.688D));
     this.textBox14.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox14.Value       = "Product";
     //
     // textBox15
     //
     this.textBox15.Name        = "textBox15";
     this.textBox15.Size        = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.069D), Telerik.Reporting.Drawing.Unit.Cm(0.688D));
     this.textBox15.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox15.Value       = "Color";
     //
     // textBox7
     //
     this.textBox7.Name            = "textBox7";
     this.textBox7.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.638D), Telerik.Reporting.Drawing.Unit.Cm(0.688D));
     this.textBox7.Style.Color     = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox7.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox7.Value           = "Size";
     //
     // textBox9
     //
     this.textBox9.Name            = "textBox9";
     this.textBox9.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.634D), Telerik.Reporting.Drawing.Unit.Cm(0.688D));
     this.textBox9.Style.Color     = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox9.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox9.Value           = "Weight";
     //
     // textBox19
     //
     this.textBox19.Name            = "textBox19";
     this.textBox19.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.072D), Telerik.Reporting.Drawing.Unit.Cm(0.688D));
     this.textBox19.Style.Color     = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox19.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox19.Value           = "Dealer";
     //
     // textBox21
     //
     this.textBox21.Name = "textBox21";
     this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.101D), Telerik.Reporting.Drawing.Unit.Cm(0.688D));
     this.textBox21.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox21.Style.Color             = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(161)))), ((int)(((byte)(82)))));
     this.textBox21.Style.TextAlign         = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox21.Value = "List Price";
     //
     // groupFooterSection1
     //
     this.groupFooterSection1.Height        = Telerik.Reporting.Drawing.Unit.Inch(0.219D);
     this.groupFooterSection1.Name          = "groupFooterSection1";
     this.groupFooterSection1.Style.Visible = false;
     //
     // groupHeaderSection1
     //
     this.groupHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1.5D);
     this.groupHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBoxProductCategoryLabel,
         this.textBox3,
         this.shape3
     });
     this.groupHeaderSection1.Name             = "groupHeaderSection1";
     this.groupHeaderSection1.PrintOnEveryPage = true;
     this.groupHeaderSection1.ItemDataBound   += new System.EventHandler(this.groupHeaderSection1_ItemDataBound);
     //
     // textBoxProductCategoryLabel
     //
     this.textBoxProductCategoryLabel.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.9D));
     this.textBoxProductCategoryLabel.Name      = "textBoxProductCategoryLabel";
     this.textBoxProductCategoryLabel.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(8.1D), Telerik.Reporting.Drawing.Unit.Inch(0.4D));
     this.textBoxProductCategoryLabel.StyleName = "Category";
     this.textBoxProductCategoryLabel.Value     = "=Fields.ProductCategory";
     //
     // textBox3
     //
     this.textBox3.Culture   = new System.Globalization.CultureInfo("en");
     this.textBox3.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox3.Name      = "textBox3";
     this.textBox3.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(8.1D), Telerik.Reporting.Drawing.Unit.Inch(0.6D));
     this.textBox3.StyleName = "Header";
     this.textBox3.Value     = "Product Catalog";
     //
     // shape3
     //
     this.shape3.Anchoring = ((Telerik.Reporting.AnchoringStyles)((Telerik.Reporting.AnchoringStyles.Left | Telerik.Reporting.AnchoringStyles.Right)));
     this.shape3.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.6D));
     this.shape3.Name      = "shape3";
     this.shape3.ShapeType = new Telerik.Reporting.Drawing.Shapes.LineShape(Telerik.Reporting.Drawing.Shapes.LineDirection.EW);
     this.shape3.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(8.1D), Telerik.Reporting.Drawing.Unit.Point(2D));
     this.shape3.Stretch   = true;
     this.shape3.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.shape3.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Solid;
     this.shape3.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     this.shape3.Style.BorderWidth.Top    = Telerik.Reporting.Drawing.Unit.Point(1.5D);
     this.shape3.Style.Color = System.Drawing.Color.Transparent;
     //
     // groupFooterSection2
     //
     this.groupFooterSection2.Height        = Telerik.Reporting.Drawing.Unit.Inch(0.198D);
     this.groupFooterSection2.Name          = "groupFooterSection2";
     this.groupFooterSection2.Style.Visible = false;
     //
     // groupHeaderSection2
     //
     this.groupHeaderSection2.Height = Telerik.Reporting.Drawing.Unit.Inch(0.4D);
     this.groupHeaderSection2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox4
     });
     this.groupHeaderSection2.KeepTogether     = false;
     this.groupHeaderSection2.Name             = "groupHeaderSection2";
     this.groupHeaderSection2.PrintOnEveryPage = true;
     //
     // textBox4
     //
     this.textBox4.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox4.Name      = "textBox4";
     this.textBox4.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(8.1D), Telerik.Reporting.Drawing.Unit.Inch(0.3D));
     this.textBox4.StyleName = "SubCategory";
     this.textBox4.Value     = "=Fields.ProductSubCategory";
     //
     // groupFooterSection3
     //
     this.groupFooterSection3.Height = Telerik.Reporting.Drawing.Unit.Inch(0.15D);
     this.groupFooterSection3.Name   = "groupFooterSection3";
     //
     // groupHeaderSection3
     //
     this.groupHeaderSection3.Height = Telerik.Reporting.Drawing.Unit.Inch(1.5D);
     this.groupHeaderSection3.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.panel3
     });
     this.groupHeaderSection3.Name             = "groupHeaderSection3";
     this.groupHeaderSection3.PrintOnEveryPage = true;
     //
     // panel3
     //
     this.panel3.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.pictureBox1,
         this.textBox1,
         this.table1,
         this.textBox6
     });
     this.panel3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.2D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.7D), Telerik.Reporting.Drawing.Unit.Inch(1.453D));
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.pictureBox1.MimeType = "";
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.337D), Telerik.Reporting.Drawing.Unit.Inch(0.9D));
     this.pictureBox1.Sizing   = Telerik.Reporting.Drawing.ImageSizeMode.ScaleProportional;
     this.pictureBox1.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.pictureBox1.Style.Color          = System.Drawing.Color.White;
     this.pictureBox1.Style.LineWidth      = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.pictureBox1.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.pictureBox1.Style.Padding.Left   = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.pictureBox1.Style.Padding.Right  = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.pictureBox1.Style.Padding.Top    = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.pictureBox1.Style.TextAlign      = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.pictureBox1.Style.VerticalAlign  = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.pictureBox1.Value = "=Fields.LargePhoto";
     //
     // textBox1
     //
     this.textBox1.Bindings.Add(new Telerik.Reporting.Binding("Style.Font.Name", "= IIf(Parameters.CultureID.Value = \'zh-cht\', \'Microsoft JhengHei\', IIf(Parameters" +
                                                              ".CultureID.Value = \'th\', \'Microsoft Sans Serif\', \'Segoe UI Light\'))"));
     this.textBox1.CanShrink = true;
     this.textBox1.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.245D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3D), Telerik.Reporting.Drawing.Unit.Inch(0.9D));
     this.textBox1.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox1.Style.BorderStyle.Right  = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox1.Style.Font.Name          = "Segoe UI Light";
     this.textBox1.Value = "=Fields.Description";
     //
     // table1
     //
     this.table1.Bindings.Add(new Telerik.Reporting.Binding("DataSource", "=ReportItem.DataObject"));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(0.954D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.221D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.069D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(0.638D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(0.634D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.072D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.101D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Cm(0.717D)));
     this.table1.Body.SetCellContent(0, 0, this.textBox16);
     this.table1.Body.SetCellContent(0, 1, this.textBox17);
     this.table1.Body.SetCellContent(0, 3, this.textBox8);
     this.table1.Body.SetCellContent(0, 4, this.textBox18);
     this.table1.Body.SetCellContent(0, 5, this.textBox20);
     this.table1.Body.SetCellContent(0, 6, this.textBox22);
     this.table1.Body.SetCellContent(0, 2, this.panel7);
     tableGroup1.Name       = "tableGroup1";
     tableGroup1.ReportItem = this.textBox5;
     tableGroup2.Name       = "tableGroup2";
     tableGroup2.ReportItem = this.textBox14;
     tableGroup3.Name       = "tableGroup3";
     tableGroup3.ReportItem = this.textBox15;
     tableGroup4.Name       = "tableGroup4";
     tableGroup4.ReportItem = this.textBox7;
     tableGroup5.Name       = "tableGroup5";
     tableGroup5.ReportItem = this.textBox9;
     tableGroup6.Name       = "tableGroup6";
     tableGroup6.ReportItem = this.textBox19;
     tableGroup7.Name       = "tableGroup7";
     tableGroup7.ReportItem = this.textBox21;
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.ColumnGroups.Add(tableGroup3);
     this.table1.ColumnGroups.Add(tableGroup4);
     this.table1.ColumnGroups.Add(tableGroup5);
     this.table1.ColumnGroups.Add(tableGroup6);
     this.table1.ColumnGroups.Add(tableGroup7);
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox16,
         this.textBox17,
         this.panel7,
         this.textBox8,
         this.textBox18,
         this.textBox20,
         this.textBox22,
         this.textBox5,
         this.textBox14,
         this.textBox15,
         this.textBox7,
         this.textBox9,
         this.textBox19,
         this.textBox21
     });
     this.table1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(0D), Telerik.Reporting.Drawing.Unit.Cm(2.286D));
     this.table1.Name     = "table1";
     tableGroup8.Groupings.Add(new Telerik.Reporting.Grouping(""));
     tableGroup8.Name = "detailGroup";
     this.table1.RowGroups.Add(tableGroup8);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.69D), Telerik.Reporting.Drawing.Unit.Cm(1.405D));
     //
     // textBox16
     //
     this.textBox16.Name  = "textBox16";
     this.textBox16.Size  = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.954D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.textBox16.Value = "=Fields.ProductNumber";
     //
     // textBox17
     //
     this.textBox17.Name  = "textBox17";
     this.textBox17.Size  = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.221D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.textBox17.Value = "=Fields.ProductName";
     //
     // textBox8
     //
     this.textBox8.Name            = "textBox8";
     this.textBox8.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.638D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.textBox8.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox8.Value           = "=IsNull(Fields.Size, \'N/A\')";
     //
     // textBox18
     //
     this.textBox18.Name            = "textBox18";
     this.textBox18.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.634D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.textBox18.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox18.Value           = "=IsNull(Fields.Weight, \'N/A\')";
     //
     // textBox20
     //
     this.textBox20.Format          = "{0:C2}";
     this.textBox20.Name            = "textBox20";
     this.textBox20.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.072D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.textBox20.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox20.Value           = "=ISNULL(Fields.StandardCost, \"Call\")";
     //
     // textBox22
     //
     this.textBox22.Format = "{0:C2}";
     this.textBox22.Name   = "textBox22";
     this.textBox22.Size   = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.101D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.textBox22.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox22.Style.TextAlign         = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox22.Value = "=IsNull(Fields.ListPrice, \'Call\')";
     //
     // panel7
     //
     this.panel7.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.shape1,
         this.textBox10
     });
     this.panel7.Name = "panel7";
     this.panel7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.069D), Telerik.Reporting.Drawing.Unit.Cm(0.717D));
     this.panel7.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.panel7.Style.BorderStyle.Bottom  = Telerik.Reporting.Drawing.BorderType.Solid;
     this.panel7.Style.BorderStyle.Right   = Telerik.Reporting.Drawing.BorderType.Solid;
     this.panel7.Style.TextAlign           = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.panel7.Style.VerticalAlign       = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     //
     // shape1
     //
     formattingRule1.Filters.Add(new Telerik.Reporting.Filter("= ToLower(Fields.Color)", Telerik.Reporting.FilterOperator.Equal, "red"));
     formattingRule1.StopIfTrue            = true;
     formattingRule1.Style.BackgroundColor = System.Drawing.Color.Red;
     formattingRule2.Filters.Add(new Telerik.Reporting.Filter("= ToLower(Fields.Color)", Telerik.Reporting.FilterOperator.Equal, "blue"));
     formattingRule2.StopIfTrue            = true;
     formattingRule2.Style.BackgroundColor = System.Drawing.Color.Blue;
     formattingRule3.Filters.Add(new Telerik.Reporting.Filter("= ToLower(Fields.Color)", Telerik.Reporting.FilterOperator.Equal, "black"));
     formattingRule3.StopIfTrue            = true;
     formattingRule3.Style.BackgroundColor = System.Drawing.Color.Black;
     formattingRule4.Filters.Add(new Telerik.Reporting.Filter("= ToLower(Fields.Color)", Telerik.Reporting.FilterOperator.Equal, "yellow"));
     formattingRule4.StopIfTrue            = true;
     formattingRule4.Style.BackgroundColor = System.Drawing.Color.Yellow;
     formattingRule5.Filters.Add(new Telerik.Reporting.Filter("= ToLower(Fields.Color)", Telerik.Reporting.FilterOperator.Equal, "silver"));
     formattingRule5.StopIfTrue            = true;
     formattingRule5.Style.BackgroundColor = System.Drawing.Color.Silver;
     this.shape1.ConditionalFormatting.AddRange(new Telerik.Reporting.Drawing.FormattingRule[] {
         formattingRule1,
         formattingRule2,
         formattingRule3,
         formattingRule4,
         formattingRule5
     });
     this.shape1.Location    = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(0.079D), Telerik.Reporting.Drawing.Unit.Cm(0.07D));
     this.shape1.Name        = "shape1";
     this.shape1.ShapeType   = new Telerik.Reporting.Drawing.Shapes.EllipseShape(0D);
     this.shape1.Size        = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.26D), Telerik.Reporting.Drawing.Unit.Inch(0.223D));
     this.shape1.Style.Color = System.Drawing.Color.Transparent;
     //
     // textBox10
     //
     this.textBox10.Format   = "{0:C2}";
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(0.82D), Telerik.Reporting.Drawing.Unit.Cm(0.07D));
     this.textBox10.Name     = "textBox10";
     this.textBox10.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(1.68D), Telerik.Reporting.Drawing.Unit.Inch(0.255D));
     this.textBox10.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox10.Style.BorderStyle.Right  = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox10.Value = "= IsNull(Fields.Color, \'N/A\')";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.465D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox6.Name     = "textBox6";
     this.textBox6.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.035D), Telerik.Reporting.Drawing.Unit.Inch(0.3D));
     this.textBox6.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.Style.BorderStyle.Right  = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.StyleName = "SubCategory";
     this.textBox6.Value     = "=Fields.ProductModel";
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionString = "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString";
     this.sqlDataSource2.Name             = "sqlDataSource2";
     this.sqlDataSource2.SelectCommand    = "SELECT RTRIM(CultureID) AS CultureID, Name FROM Production.Culture WHERE (NOT (RT" +
                                            "RIM(CultureID) IN (\'es\', \'\')))";
     //
     // detailSection1
     //
     this.detailSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.132D);
     this.detailSection1.Name   = "detailSection1";
     this.detailSection1.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(137)))), ((int)(((byte)(145)))), ((int)(((byte)(164)))));
     this.detailSection1.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Point(3D);
     this.detailSection1.Style.Font.Size           = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.detailSection1.Style.Visible             = false;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString";
     this.sqlDataSource1.Name             = "sqlDataSource1";
     this.sqlDataSource1.Parameters.Add(new Telerik.Reporting.SqlDataSourceParameter("@cultureID", System.Data.DbType.String, "=Parameters(\'CultureID\').Value"));
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // tocSection1
     //
     this.tocSection1.Height       = Telerik.Reporting.Drawing.Unit.Inch(1.5D);
     this.tocSection1.KeepTogether = false;
     tocLevel1.LeaderSymbol        = '\0';
     tocLevel1.Name                 = "Level1";
     tocLevel1.Style.Font.Bold      = true;
     tocLevel1.Style.Font.Name      = "Segoe UI Light";
     tocLevel1.Style.Font.Size      = Telerik.Reporting.Drawing.Unit.Point(16D);
     tocLevel1.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Point(5D);
     tocLevel1.Style.Padding.Left   = Telerik.Reporting.Drawing.Unit.Point(2D);
     tocLevel1.Style.Padding.Right  = Telerik.Reporting.Drawing.Unit.Point(2D);
     tocLevel1.Style.Padding.Top    = Telerik.Reporting.Drawing.Unit.Point(5D);
     tocLevel2.Name                 = "Level2";
     tocLevel2.Style.Font.Name      = "Segoe UI Light";
     tocLevel2.Style.Font.Size      = Telerik.Reporting.Drawing.Unit.Point(13D);
     tocLevel2.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Point(1D);
     tocLevel2.Style.Padding.Left   = Telerik.Reporting.Drawing.Unit.Point(32D);
     tocLevel2.Style.Padding.Right  = Telerik.Reporting.Drawing.Unit.Point(2D);
     tocLevel2.Style.Padding.Top    = Telerik.Reporting.Drawing.Unit.Point(1D);
     tocLevel3.Name                 = "Level3";
     tocLevel3.Style.Font.Name      = "Segoe UI Light";
     tocLevel3.Style.Font.Size      = Telerik.Reporting.Drawing.Unit.Point(13D);
     tocLevel3.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Point(1D);
     tocLevel3.Style.Padding.Left   = Telerik.Reporting.Drawing.Unit.Point(52D);
     tocLevel3.Style.Padding.Right  = Telerik.Reporting.Drawing.Unit.Point(2D);
     tocLevel3.Style.Padding.Top    = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.tocSection1.Levels.Add(tocLevel1);
     this.tocSection1.Levels.Add(tocLevel2);
     this.tocSection1.Levels.Add(tocLevel3);
     this.tocSection1.Name      = "tocSection1";
     this.tocSection1.PageBreak = Telerik.Reporting.PageBreak.After;
     this.tocSection1.Title     = "Table of Contents";
     this.tocSection1.TitleStyle.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.tocSection1.TitleStyle.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(2D);
     this.tocSection1.TitleStyle.Font.Bold          = true;
     this.tocSection1.TitleStyle.Font.Name          = "Segoe UI Light";
     this.tocSection1.TitleStyle.Font.Size          = Telerik.Reporting.Drawing.Unit.Point(25D);
     this.tocSection1.TitleStyle.Padding.Bottom     = Telerik.Reporting.Drawing.Unit.Point(10D);
     //
     // pageHeaderSection1
     //
     this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.2D);
     this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox2
     });
     this.pageHeaderSection1.Name = "pageHeaderSection1";
     //
     // textBox2
     //
     this.textBox2.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.2D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox2.Name            = "textBox2";
     this.textBox2.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.9D), Telerik.Reporting.Drawing.Unit.Inch(0.2D));
     this.textBox2.Style.Font.Name = "Segoe UI Light";
     this.textBox2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox2.Value           = "= PageExec(\'group1\', Fields.ProductCategory) + \', page \' + PageNumber(\'group1\', F" +
                                     "ields.ProductCategory) + \' of \' + PageCount(\'group1\', Fields.ProductCategory)";
     //
     // ProductCatalog
     //
     this.Bindings.Add(new Telerik.Reporting.Binding("Culture", "=Parameters.CultureID.Value"));
     this.DataSource        = this.sqlDataSource1;
     this.DocumentName      = "=\'ProductCatalog.\' + Parameters.CultureID.Value";
     group1.DocumentMapText = "=Fields.ProductCategory";
     group1.GroupFooter     = this.groupFooterSection1;
     group1.GroupHeader     = this.groupHeaderSection1;
     group1.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.ProductCategory"));
     group1.GroupKeepTogether = Telerik.Reporting.GroupKeepTogether.All;
     group1.Name = "group1";
     group1.Sortings.Add(new Telerik.Reporting.Sorting("=Fields.ProductCategory", Telerik.Reporting.SortDirection.Asc));
     group1.TocText         = "=Fields.ProductCategory";
     group2.DocumentMapText = "=Fields.ProductSubCategory";
     group2.GroupFooter     = this.groupFooterSection2;
     group2.GroupHeader     = this.groupHeaderSection2;
     group2.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.ProductSubCategory"));
     group2.GroupKeepTogether = Telerik.Reporting.GroupKeepTogether.FirstDetail;
     group2.Name = "group2";
     group2.Sortings.Add(new Telerik.Reporting.Sorting("=Fields.ProductSubCategory", Telerik.Reporting.SortDirection.Asc));
     group2.TocText         = "=Fields.ProductSubCategory";
     group3.DocumentMapText = "=Fields.ProductModel";
     group3.GroupFooter     = this.groupFooterSection3;
     group3.GroupHeader     = this.groupHeaderSection3;
     group3.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.ProductModel"));
     group3.GroupKeepTogether = Telerik.Reporting.GroupKeepTogether.FirstDetail;
     group3.Name = "group3";
     group3.Sortings.Add(new Telerik.Reporting.Sorting("=Fields.ProductModel", Telerik.Reporting.SortDirection.Asc));
     this.Groups.AddRange(new Telerik.Reporting.Group[] {
         group1,
         group2,
         group3
     });
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.groupHeaderSection1,
         this.groupFooterSection1,
         this.groupHeaderSection2,
         this.groupFooterSection2,
         this.groupHeaderSection3,
         this.groupFooterSection3,
         this.detailSection1,
         this.tocSection1,
         this.pageHeaderSection1
     });
     this.Name = "ProductCatalog";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins   = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.2D), Telerik.Reporting.Drawing.Unit.Inch(0.2D), Telerik.Reporting.Drawing.Unit.Inch(0.3D), Telerik.Reporting.Drawing.Unit.Inch(0.4D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     textWatermark1.Color        = System.Drawing.Color.FromArgb(((int)(((byte)(137)))), ((int)(((byte)(145)))), ((int)(((byte)(164)))));
     textWatermark1.Font.Name    = "Tahoma";
     textWatermark1.Font.Size    = Telerik.Reporting.Drawing.Unit.Point(100D);
     textWatermark1.Opacity      = 0.06D;
     textWatermark1.Orientation  = Telerik.Reporting.Drawing.WatermarkOrientation.Vertical;
     textWatermark1.Position     = Telerik.Reporting.Drawing.WatermarkPosition.Front;
     textWatermark1.Text         = "=PageExec(\"textBoxProductCategoryLabel\", First(Fields.ProductCategory))";
     this.PageSettings.Watermarks.Add(textWatermark1);
     reportParameter1.AutoRefresh = true;
     reportParameter1.AvailableValues.DataSource    = this.sqlDataSource2;
     reportParameter1.AvailableValues.DisplayMember = "Name";
     reportParameter1.AvailableValues.ValueMember   = "CultureID";
     reportParameter1.Name    = "CultureID";
     reportParameter1.Text    = "Language";
     reportParameter1.Value   = "en";
     reportParameter1.Visible = true;
     this.ReportParameters.Add(reportParameter1);
     styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.TextItemBase)),
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.HtmlTextBox))
     });
     styleRule1.Style.Padding.Left  = Telerik.Reporting.Drawing.Unit.Point(2D);
     styleRule1.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Point(2D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         new Telerik.Reporting.Drawing.StyleSelector("Header")
     });
     styleRule2.Style.Font.Bold    = true;
     styleRule2.Style.Font.Name    = "Segoe UI Light";
     styleRule2.Style.Font.Size    = Telerik.Reporting.Drawing.Unit.Point(25D);
     styleRule2.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0D);
     styleRule3.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         new Telerik.Reporting.Drawing.StyleSelector("Category")
     });
     styleRule3.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(7)))), ((int)(((byte)(5)))));
     styleRule3.Style.BorderStyle.Bottom  = Telerik.Reporting.Drawing.BorderType.Solid;
     styleRule3.Style.BorderWidth.Bottom  = Telerik.Reporting.Drawing.Unit.Point(1D);
     styleRule3.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     styleRule3.Style.Font.Name           = "Segoe UI Light";
     styleRule3.Style.Font.Size           = Telerik.Reporting.Drawing.Unit.Point(16D);
     styleRule3.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0D);
     styleRule4.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         new Telerik.Reporting.Drawing.StyleSelector("SubCategory")
     });
     styleRule4.Style.BorderStyle.Bottom  = Telerik.Reporting.Drawing.BorderType.Solid;
     styleRule4.Style.BorderWidth.Bottom  = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     styleRule4.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     styleRule4.Style.Font.Name           = "Segoe UI Light";
     styleRule4.Style.Font.Size           = Telerik.Reporting.Drawing.Unit.Point(13D);
     styleRule4.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0D);
     descendantSelector1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.GroupHeaderSection)),
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.Panel)),
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.TextBox))
     });
     styleRule5.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         descendantSelector1
     });
     styleRule5.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     styleRule5.Style.BorderStyle.Bottom  = Telerik.Reporting.Drawing.BorderType.Solid;
     styleRule5.Style.BorderStyle.Right   = Telerik.Reporting.Drawing.BorderType.Solid;
     styleRule5.Style.Font.Name           = "Segoe UI";
     styleRule5.Style.Font.Size           = Telerik.Reporting.Drawing.Unit.Point(10D);
     styleRule5.Style.Padding.Bottom      = Telerik.Reporting.Drawing.Unit.Inch(0.04D);
     styleRule5.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0.05D);
     styleRule5.Style.Padding.Right       = Telerik.Reporting.Drawing.Unit.Inch(0.05D);
     styleRule5.Style.VerticalAlign       = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
     this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
         styleRule1,
         styleRule2,
         styleRule3,
         styleRule4,
         styleRule5
     });
     this.TocText = "Product Catalog";
     this.Width   = Telerik.Reporting.Drawing.Unit.Inch(8.1D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutDialog));
     this.groupControl1      = new DevExpress.XtraEditors.GroupControl();
     this.LabelInformation   = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2      = new DevExpress.XtraEditors.GroupControl();
     this.LabelSpecialThanks = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3      = new DevExpress.XtraEditors.GroupControl();
     this.LabelLicense       = new DevExpress.XtraEditors.LabelControl();
     this.groupControl4      = new DevExpress.XtraEditors.GroupControl();
     this.LabelCredits       = new DevExpress.XtraEditors.LabelControl();
     this.ButtonClose        = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.LabelInformation);
     this.groupControl1.Location = new System.Drawing.Point(14, 10);
     this.groupControl1.Margin   = new System.Windows.Forms.Padding(5);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Padding  = new System.Windows.Forms.Padding(3);
     this.groupControl1.Size     = new System.Drawing.Size(585, 102);
     this.groupControl1.TabIndex = 2;
     this.groupControl1.Text     = "INFORMATION";
     //
     // LabelInformation
     //
     this.LabelInformation.AllowHtmlString = true;
     this.LabelInformation.Appearance.Options.UseTextOptions = true;
     this.LabelInformation.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.LabelInformation.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.LabelInformation.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.LabelInformation.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.LabelInformation.Location     = new System.Drawing.Point(5, 26);
     this.LabelInformation.Name         = "LabelInformation";
     this.LabelInformation.Padding      = new System.Windows.Forms.Padding(3);
     this.LabelInformation.Size         = new System.Drawing.Size(575, 71);
     this.LabelInformation.TabIndex     = 19;
     this.LabelInformation.Text         = resources.GetString("LabelInformation.Text");
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.LabelSpecialThanks);
     this.groupControl2.Location = new System.Drawing.Point(310, 122);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Padding  = new System.Windows.Forms.Padding(3);
     this.groupControl2.Size     = new System.Drawing.Size(289, 130);
     this.groupControl2.TabIndex = 4;
     this.groupControl2.Text     = "SPECIAL THANKS";
     //
     // LabelSpecialThanks
     //
     this.LabelSpecialThanks.AllowHtmlString = true;
     this.LabelSpecialThanks.Appearance.Options.UseTextOptions = true;
     this.LabelSpecialThanks.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.LabelSpecialThanks.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.LabelSpecialThanks.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.LabelSpecialThanks.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.LabelSpecialThanks.Location     = new System.Drawing.Point(5, 26);
     this.LabelSpecialThanks.Name         = "LabelSpecialThanks";
     this.LabelSpecialThanks.Padding      = new System.Windows.Forms.Padding(3);
     this.LabelSpecialThanks.Size         = new System.Drawing.Size(279, 99);
     this.LabelSpecialThanks.TabIndex     = 18;
     this.LabelSpecialThanks.Text         = resources.GetString("LabelSpecialThanks.Text");
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.LabelLicense);
     this.groupControl3.Location = new System.Drawing.Point(14, 262);
     this.groupControl3.Margin   = new System.Windows.Forms.Padding(5);
     this.groupControl3.Name     = "groupControl3";
     this.groupControl3.Padding  = new System.Windows.Forms.Padding(3);
     this.groupControl3.Size     = new System.Drawing.Size(585, 171);
     this.groupControl3.TabIndex = 14;
     this.groupControl3.Text     = "LICENSE";
     //
     // LabelLicense
     //
     this.LabelLicense.AllowHtmlString = true;
     this.LabelLicense.Appearance.Options.UseTextOptions = true;
     this.LabelLicense.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.LabelLicense.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.LabelLicense.AutoSizeMode    = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.LabelLicense.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.LabelLicense.Location        = new System.Drawing.Point(5, 26);
     this.LabelLicense.Name            = "LabelLicense";
     this.LabelLicense.Padding         = new System.Windows.Forms.Padding(3);
     this.LabelLicense.Size            = new System.Drawing.Size(575, 140);
     this.LabelLicense.TabIndex        = 18;
     this.LabelLicense.Text            = resources.GetString("LabelLicense.Text");
     this.LabelLicense.HyperlinkClick += new DevExpress.Utils.HyperlinkClickEventHandler(this.LabelLicense_HyperlinkClick);
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.LabelCredits);
     this.groupControl4.Location = new System.Drawing.Point(14, 122);
     this.groupControl4.Margin   = new System.Windows.Forms.Padding(5);
     this.groupControl4.Name     = "groupControl4";
     this.groupControl4.Padding  = new System.Windows.Forms.Padding(3);
     this.groupControl4.Size     = new System.Drawing.Size(286, 130);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text     = "CREDITS";
     //
     // LabelCredits
     //
     this.LabelCredits.AllowHtmlString = true;
     this.LabelCredits.Appearance.Options.UseTextOptions = true;
     this.LabelCredits.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.LabelCredits.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.LabelCredits.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.LabelCredits.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.LabelCredits.Location     = new System.Drawing.Point(5, 26);
     this.LabelCredits.Name         = "LabelCredits";
     this.LabelCredits.Padding      = new System.Windows.Forms.Padding(3);
     this.LabelCredits.Size         = new System.Drawing.Size(276, 99);
     this.LabelCredits.TabIndex     = 17;
     this.LabelCredits.Text         = "Developer: ohhsodead\r\nContributor: KayGart\r\nContributor: TeddyHammer\r\n\r\n\r\nWebsite" +
                                      ":\r\n<href=\\\"https://github.com/ohhsodead/ModioX /\\\">https://github.com/ohhsodead/" +
                                      "ModioX ";
     this.LabelCredits.HyperlinkClick += new DevExpress.Utils.HyperlinkClickEventHandler(this.LabelCredits_HyperlinkClick);
     //
     // ButtonClose
     //
     this.ButtonClose.Anchor             = System.Windows.Forms.AnchorStyles.Bottom;
     this.ButtonClose.DialogResult       = System.Windows.Forms.DialogResult.OK;
     this.ButtonClose.Location           = new System.Drawing.Point(270, 476);
     this.ButtonClose.Name               = "ButtonClose";
     this.ButtonClose.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ButtonClose.Size               = new System.Drawing.Size(74, 24);
     this.ButtonClose.TabIndex           = 15;
     this.ButtonClose.Text               = "OK";
     this.ButtonClose.Click             += new System.EventHandler(this.ButtonClose_Click);
     //
     // AboutDialog
     //
     this.Appearance.ForeColor            = System.Drawing.Color.Gainsboro;
     this.Appearance.Options.UseFont      = true;
     this.Appearance.Options.UseForeColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode  = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize    = new System.Drawing.Size(615, 512);
     this.Controls.Add(this.ButtonClose);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Font             = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle  = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.IconOptions.Icon = ((System.Drawing.Icon)(resources.GetObject("AboutDialog.IconOptions.Icon")));
     this.MaximizeBox      = false;
     this.MinimizeBox      = false;
     this.Name             = "AboutDialog";
     this.SizeGripStyle    = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition    = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text             = "About";
     this.Load            += new System.EventHandler(this.AboutWindow_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PropertyPage_ManyValueMapRenderer));
     this.panel1             = new System.Windows.Forms.Panel();
     this.symbolsListView1   = new gView.Framework.UI.Controls.SymbolsListView();
     this.panel3             = new System.Windows.Forms.Panel();
     this.btnCarography      = new System.Windows.Forms.Button();
     this.btnRotation        = new System.Windows.Forms.Button();
     this.panel2             = new System.Windows.Forms.Panel();
     this.btnInsertAllOthers = new System.Windows.Forms.Button();
     this.groupBox2          = new System.Windows.Forms.GroupBox();
     this.cmbGradient        = new gView.Framework.Symbology.UI.Controls.ColorGradientComboBox();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.cmbField3          = new System.Windows.Forms.ComboBox();
     this.cmbField2          = new System.Windows.Forms.ComboBox();
     this.cmbField1          = new System.Windows.Forms.ComboBox();
     this.btnRemoveAllValues = new System.Windows.Forms.Button();
     this.btnInsertValue     = new System.Windows.Forms.Button();
     this.btnAllValues       = new System.Windows.Forms.Button();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.symbolsListView1);
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Name = "panel1";
     //
     // symbolsListView1
     //
     this.symbolsListView1.AllowDrop = true;
     resources.ApplyResources(this.symbolsListView1, "symbolsListView1");
     this.symbolsListView1.LegendText           = "";
     this.symbolsListView1.Name                 = "symbolsListView1";
     this.symbolsListView1.ValueText            = "";
     this.symbolsListView1.OnSymbolChanged     += new gView.Framework.UI.Controls.SymbolsListView.SymbolChanged(this.symbolsListView1_OnSymbolChanged);
     this.symbolsListView1.OnLabelChanged      += new gView.Framework.UI.Controls.SymbolsListView.LabelChanged(this.symbolsListView1_OnLabelChanged);
     this.symbolsListView1.AfterLegendOrdering += new System.EventHandler(this.symbolsListView1_AfterLegendOrdering);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.btnCarography);
     this.panel3.Controls.Add(this.btnRotation);
     resources.ApplyResources(this.panel3, "panel3");
     this.panel3.Name = "panel3";
     //
     // btnCarography
     //
     resources.ApplyResources(this.btnCarography, "btnCarography");
     this.btnCarography.Name = "btnCarography";
     this.btnCarography.UseVisualStyleBackColor = true;
     this.btnCarography.Click += new System.EventHandler(this.btnCarography_Click);
     //
     // btnRotation
     //
     resources.ApplyResources(this.btnRotation, "btnRotation");
     this.btnRotation.Name = "btnRotation";
     this.btnRotation.UseVisualStyleBackColor = true;
     this.btnRotation.Click += new System.EventHandler(this.btnRotation_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.btnInsertAllOthers);
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Controls.Add(this.btnRemoveAllValues);
     this.panel2.Controls.Add(this.btnInsertValue);
     this.panel2.Controls.Add(this.btnAllValues);
     resources.ApplyResources(this.panel2, "panel2");
     this.panel2.Name = "panel2";
     //
     // btnInsertAllOthers
     //
     resources.ApplyResources(this.btnInsertAllOthers, "btnInsertAllOthers");
     this.btnInsertAllOthers.Name   = "btnInsertAllOthers";
     this.btnInsertAllOthers.Click += new System.EventHandler(this.btnInsertAllOthers_Click);
     //
     // groupBox2
     //
     resources.ApplyResources(this.groupBox2, "groupBox2");
     this.groupBox2.Controls.Add(this.cmbGradient);
     this.groupBox2.Name    = "groupBox2";
     this.groupBox2.TabStop = false;
     //
     // cmbGradient
     //
     this.cmbGradient.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     resources.ApplyResources(this.cmbGradient, "cmbGradient");
     this.cmbGradient.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbGradient.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbGradient.FormattingEnabled = true;
     this.cmbGradient.Items.AddRange(new object[] {
         resources.GetString("cmbGradient.Items"),
         resources.GetString("cmbGradient.Items1")
     });
     this.cmbGradient.Name              = "cmbGradient";
     this.cmbGradient.GradientSelected += new gView.Framework.Symbology.UI.Controls.GradientSelectedEventHandler(this.cmbGradient_GradientSelected);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cmbField3);
     this.groupBox1.Controls.Add(this.cmbField2);
     this.groupBox1.Controls.Add(this.cmbField1);
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     //
     // cmbField3
     //
     this.cmbField3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     resources.ApplyResources(this.cmbField3, "cmbField3");
     this.cmbField3.Name = "cmbField3";
     this.cmbField3.SelectedIndexChanged += new System.EventHandler(this.cmbField3_SelectedIndexChanged);
     //
     // cmbField2
     //
     this.cmbField2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     resources.ApplyResources(this.cmbField2, "cmbField2");
     this.cmbField2.Name = "cmbField2";
     this.cmbField2.SelectedIndexChanged += new System.EventHandler(this.cmbField2_SelectedIndexChanged);
     //
     // cmbField1
     //
     this.cmbField1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     resources.ApplyResources(this.cmbField1, "cmbField1");
     this.cmbField1.Name = "cmbField1";
     this.cmbField1.SelectedIndexChanged += new System.EventHandler(this.cmbField1_SelectedIndexChanged);
     //
     // btnRemoveAllValues
     //
     resources.ApplyResources(this.btnRemoveAllValues, "btnRemoveAllValues");
     this.btnRemoveAllValues.Name   = "btnRemoveAllValues";
     this.btnRemoveAllValues.Click += new System.EventHandler(this.btnRemoveAllValues_Click);
     //
     // btnInsertValue
     //
     resources.ApplyResources(this.btnInsertValue, "btnInsertValue");
     this.btnInsertValue.Name   = "btnInsertValue";
     this.btnInsertValue.Click += new System.EventHandler(this.btnInsertValue_Click);
     //
     // btnAllValues
     //
     resources.ApplyResources(this.btnAllValues, "btnAllValues");
     this.btnAllValues.Name   = "btnAllValues";
     this.btnAllValues.Click += new System.EventHandler(this.btnAllValues_Click);
     //
     // PropertyPage_ManyValueMapRenderer
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.panel1);
     this.Name  = "PropertyPage_ManyValueMapRenderer";
     this.Load += new System.EventHandler(this.PropertyPage_ValueMapRenderer_Load);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ElucidateForm));
     this.statusStrip1                           = new System.Windows.Forms.Panel();
     this.spacer                                 = new System.Windows.Forms.Label();
     this.label3                                 = new System.Windows.Forms.Label();
     this.toolTip1                               = new System.Windows.Forms.ToolTip(this.components);
     this.btnDiff                                = new Elucidate.Shared.CommandLinkButton();
     this.btnScrub                               = new Elucidate.Shared.CommandLinkButton();
     this.btnStatus                              = new Elucidate.Shared.CommandLinkButton();
     this.btnFix                                 = new Elucidate.Shared.CommandLinkButton();
     this.btnDupFinder                           = new Elucidate.Shared.CommandLinkButton();
     this.driveSpace                             = new Elucidate.Controls.DriveSpaceDisplay();
     this.tabCoveragePage                        = new System.Windows.Forms.TabPage();
     this.tabSchedulePage                        = new System.Windows.Forms.TabPage();
     this.SchedulePageScheduleControl            = new Elucidate.Controls.Schedule();
     this.tabCommonOperations                    = new System.Windows.Forms.TabPage();
     this.logPanel                               = new System.Windows.Forms.Panel();
     this.liveRunLogControl1                     = new Elucidate.Controls.LiveRunLogControl();
     this.commandPanel                           = new System.Windows.Forms.FlowLayoutPanel();
     this.btnSync                                = new Elucidate.Shared.CommandLinkButton();
     this.btnCheck                               = new Elucidate.Shared.CommandLinkButton();
     this.btnForceFullSync                       = new Elucidate.Shared.CommandLinkButton();
     this.tabControl                             = new System.Windows.Forms.TabControl();
     this.tabLogs                                = new System.Windows.Forms.TabPage();
     this.logsViewerControl                      = new Elucidate.Controls.LogsViewerControl();
     this.tabRecoverFiles                        = new System.Windows.Forms.TabPage();
     this.recover1                               = new Elucidate.Controls.Recover();
     this.snapRAIDConfigToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.logViewToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.logViewToolStripMenuItem1              = new System.Windows.Forms.ToolStripMenuItem();
     this.changeLogLocationToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     this.VersionIndicator                       = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuItemChangelog                      = new System.Windows.Forms.ToolStripMenuItem();
     this.MenuItemNewVersionAvailable            = new System.Windows.Forms.ToolStripMenuItem();
     this.installNewVersionToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.changeLogOfNewVersionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1                             = new System.Windows.Forms.MenuStrip();
     this.MenuItemNewVersionReadyForInstall      = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1.SuspendLayout();
     this.tabCoveragePage.SuspendLayout();
     this.tabSchedulePage.SuspendLayout();
     this.tabCommonOperations.SuspendLayout();
     this.logPanel.SuspendLayout();
     this.commandPanel.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tabLogs.SuspendLayout();
     this.tabRecoverFiles.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Controls.Add(this.spacer);
     this.statusStrip1.Controls.Add(this.label3);
     this.statusStrip1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.statusStrip1.Location = new System.Drawing.Point(0, 535);
     this.statusStrip1.Margin   = new System.Windows.Forms.Padding(0);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Padding  = new System.Windows.Forms.Padding(3);
     this.statusStrip1.Size     = new System.Drawing.Size(994, 26);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // spacer
     //
     this.spacer.AutoSize = true;
     this.spacer.Dock     = System.Windows.Forms.DockStyle.Left;
     this.spacer.Location = new System.Drawing.Point(14, 3);
     this.spacer.Name     = "spacer";
     this.spacer.Size     = new System.Drawing.Size(11, 14);
     this.spacer.TabIndex = 3;
     this.spacer.Text     = " ";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Dock     = System.Windows.Forms.DockStyle.Left;
     this.label3.Location = new System.Drawing.Point(3, 3);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(11, 14);
     this.label3.TabIndex = 4;
     this.label3.Text     = " ";
     //
     // btnDiff
     //
     this.btnDiff.ButtonDepress            = ((sbyte)(2));
     this.btnDiff.Enabled                  = false;
     this.btnDiff.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.btnDiff.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnDiff.HighlightFillAlpha       = ((byte)(200));
     this.btnDiff.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnDiff.HighlightFillAlphaNormal = ((byte)(50));
     this.btnDiff.HighlightWidth           = 2F;
     this.btnDiff.Image         = global::Elucidate.Properties.Resources.cam_48;
     this.btnDiff.ImageAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnDiff.ImageMargin   = 8F;
     this.btnDiff.Location      = new System.Drawing.Point(3, 3);
     this.btnDiff.MinimumSize   = new System.Drawing.Size(300, 64);
     this.btnDiff.Name          = "btnDiff";
     this.btnDiff.Rounding      = 14F;
     this.btnDiff.Size          = new System.Drawing.Size(300, 64);
     this.btnDiff.Subscript     = "    Lists all the files have been modified\r\n    since the last \"sync\" command.";
     this.btnDiff.SubscriptFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDiff.TabIndex      = 3;
     this.btnDiff.Text          = "&Differences";
     this.btnDiff.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolTip1.SetToolTip(this.btnDiff, "Lists all the files modified since the last \"sync\" command that need to recompute" +
                              " their redundancy data.");
     this.btnDiff.UseVisualStyleBackColor = true;
     this.btnDiff.Click += new System.EventHandler(this.btnDiff_Click);
     //
     // btnScrub
     //
     this.btnScrub.Anchor                   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnScrub.ButtonDepress            = ((sbyte)(2));
     this.btnScrub.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.btnScrub.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnScrub.HighlightFillAlpha       = ((byte)(200));
     this.btnScrub.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnScrub.HighlightFillAlphaNormal = ((byte)(50));
     this.btnScrub.HighlightWidth           = 2F;
     this.btnScrub.Image         = global::Elucidate.Properties.Resources.cam_48;
     this.btnScrub.ImageAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnScrub.ImageMargin   = 8F;
     this.btnScrub.Location      = new System.Drawing.Point(309, 3);
     this.btnScrub.MinimumSize   = new System.Drawing.Size(300, 64);
     this.btnScrub.Name          = "btnScrub";
     this.btnScrub.Rounding      = 14F;
     this.btnScrub.Size          = new System.Drawing.Size(300, 64);
     this.btnScrub.Subscript     = "Scrubs the array, checking for silent\r\nand input/output errors";
     this.btnScrub.SubscriptFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnScrub.TabIndex      = 8;
     this.btnScrub.Text          = "&Scrub";
     this.btnScrub.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolTip1.SetToolTip(this.btnScrub, "Defaults to 100% (-p100) of all of blocks (older than 0 days = -o0).\r\nBlocks alre" +
                              "ady marked as bad are always checked.\r\nUse \"Additional Command\" to override the " +
                              "default of 100% of 0 days");
     this.btnScrub.UseVisualStyleBackColor = true;
     this.btnScrub.Click += new System.EventHandler(this.btnScrub_Click);
     //
     // btnStatus
     //
     this.btnStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.btnStatus.ButtonDepress            = ((sbyte)(2));
     this.btnStatus.Enabled                  = false;
     this.btnStatus.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnStatus.HighlightFillAlpha       = ((byte)(200));
     this.btnStatus.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnStatus.HighlightFillAlphaNormal = ((byte)(50));
     this.btnStatus.HighlightWidth           = 2F;
     this.btnStatus.Image         = global::Elucidate.Properties.Resources.camera_warning_48;
     this.btnStatus.ImageAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnStatus.ImageMargin   = 8F;
     this.btnStatus.Location      = new System.Drawing.Point(615, 3);
     this.btnStatus.MinimumSize   = new System.Drawing.Size(300, 64);
     this.btnStatus.Name          = "btnStatus";
     this.btnStatus.Rounding      = 14F;
     this.btnStatus.Size          = new System.Drawing.Size(300, 64);
     this.btnStatus.Subscript     = "    A summary of the state of the disk\r\n    array, upto the last sync time.";
     this.btnStatus.SubscriptFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnStatus.TabIndex      = 7;
     this.btnStatus.Text          = "S&tatus";
     this.btnStatus.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolTip1.SetToolTip(this.btnStatus, resources.GetString("btnStatus.ToolTip"));
     this.btnStatus.UseVisualStyleBackColor = true;
     this.btnStatus.Click += new System.EventHandler(this.btnStatus_Click);
     //
     // btnFix
     //
     this.btnFix.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFix.ButtonDepress            = ((sbyte)(2));
     this.btnFix.Enabled                  = false;
     this.btnFix.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnFix.HighlightFillAlpha       = ((byte)(200));
     this.btnFix.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnFix.HighlightFillAlphaNormal = ((byte)(50));
     this.btnFix.HighlightWidth           = 2F;
     this.btnFix.Image         = global::Elucidate.Properties.Resources.camera_add_48;
     this.btnFix.ImageAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnFix.ImageMargin   = 8F;
     this.btnFix.Location      = new System.Drawing.Point(615, 73);
     this.btnFix.MinimumSize   = new System.Drawing.Size(300, 64);
     this.btnFix.Name          = "btnFix";
     this.btnFix.Rounding      = 14F;
     this.btnFix.Size          = new System.Drawing.Size(300, 64);
     this.btnFix.Subscript     = "Will default to using \"-e\",\r\nfix errors set by the scrub command. ";
     this.btnFix.SubscriptFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnFix.TabIndex      = 9;
     this.btnFix.Text          = "&Fix";
     this.btnFix.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolTip1.SetToolTip(this.btnFix, "Override with the \"Additional Command\" options, e.g.\r\nRecover all the deleted fil" +
                              "es in all drives with \"-m\" \r\n");
     this.btnFix.UseVisualStyleBackColor = true;
     this.btnFix.Click += new System.EventHandler(this.btnFix_Click);
     //
     // btnDupFinder
     //
     this.btnDupFinder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDupFinder.ButtonDepress            = ((sbyte)(2));
     this.btnDupFinder.Enabled                  = false;
     this.btnDupFinder.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnDupFinder.HighlightFillAlpha       = ((byte)(200));
     this.btnDupFinder.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnDupFinder.HighlightFillAlphaNormal = ((byte)(50));
     this.btnDupFinder.HighlightWidth           = 2F;
     this.btnDupFinder.Image       = global::Elucidate.Properties.Resources.camera_warning_48;
     this.btnDupFinder.ImageAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnDupFinder.ImageMargin = 8F;
     this.btnDupFinder.Location    = new System.Drawing.Point(3, 143);
     this.btnDupFinder.MinimumSize = new System.Drawing.Size(300, 64);
     this.btnDupFinder.Name        = "btnDupFinder";
     this.btnDupFinder.Rounding    = 14F;
     this.btnDupFinder.Size        = new System.Drawing.Size(300, 64);
     this.btnDupFinder.Subscript   = "Lists all the duplicate files. Two files are\r\nassumed equal if their hashes are m" +
                                     "atching. ";
     this.btnDupFinder.SubscriptFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDupFinder.TabIndex      = 10;
     this.btnDupFinder.Text          = "&Duplicate Finder";
     this.btnDupFinder.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolTip1.SetToolTip(this.btnDupFinder, "The file data is not read, but only the precomputed hashes are used.\r\nNothing is " +
                              "modified\r\n");
     this.btnDupFinder.UseVisualStyleBackColor = true;
     this.btnDupFinder.Click += new System.EventHandler(this.btnDupFinder_Click);
     //
     // driveSpace
     //
     this.driveSpace.Cursor   = System.Windows.Forms.Cursors.Default;
     this.driveSpace.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.driveSpace.Location = new System.Drawing.Point(3, 3);
     this.driveSpace.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.driveSpace.Name     = "driveSpace";
     this.driveSpace.Size     = new System.Drawing.Size(980, 473);
     this.driveSpace.TabIndex = 0;
     this.toolTip1.SetToolTip(this.driveSpace, "Not real time, only updates when shown.");
     //
     // tabCoveragePage
     //
     this.tabCoveragePage.Controls.Add(this.driveSpace);
     this.tabCoveragePage.Location = new System.Drawing.Point(4, 28);
     this.tabCoveragePage.Name     = "tabCoveragePage";
     this.tabCoveragePage.Padding  = new System.Windows.Forms.Padding(3);
     this.tabCoveragePage.Size     = new System.Drawing.Size(986, 479);
     this.tabCoveragePage.TabIndex = 4;
     this.tabCoveragePage.Text     = "  Coverage  ";
     this.tabCoveragePage.UseVisualStyleBackColor = true;
     //
     // tabSchedulePage
     //
     this.tabSchedulePage.Controls.Add(this.SchedulePageScheduleControl);
     this.tabSchedulePage.Location = new System.Drawing.Point(4, 28);
     this.tabSchedulePage.Name     = "tabSchedulePage";
     this.tabSchedulePage.Padding  = new System.Windows.Forms.Padding(3);
     this.tabSchedulePage.Size     = new System.Drawing.Size(986, 479);
     this.tabSchedulePage.TabIndex = 5;
     this.tabSchedulePage.Text     = "Schedule";
     this.tabSchedulePage.UseVisualStyleBackColor = true;
     //
     // SchedulePageScheduleControl
     //
     this.SchedulePageScheduleControl.AutoSize     = true;
     this.SchedulePageScheduleControl.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.SchedulePageScheduleControl.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.SchedulePageScheduleControl.Location     = new System.Drawing.Point(3, 3);
     this.SchedulePageScheduleControl.Margin       = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.SchedulePageScheduleControl.Name         = "SchedulePageScheduleControl";
     this.SchedulePageScheduleControl.Size         = new System.Drawing.Size(980, 473);
     this.SchedulePageScheduleControl.TabIndex     = 0;
     //
     // tabCommonOperations
     //
     this.tabCommonOperations.BackColor   = System.Drawing.SystemColors.Control;
     this.tabCommonOperations.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabCommonOperations.Controls.Add(this.logPanel);
     this.tabCommonOperations.Controls.Add(this.commandPanel);
     this.tabCommonOperations.Location = new System.Drawing.Point(4, 28);
     this.tabCommonOperations.Margin   = new System.Windows.Forms.Padding(0);
     this.tabCommonOperations.Name     = "tabCommonOperations";
     this.tabCommonOperations.Size     = new System.Drawing.Size(986, 479);
     this.tabCommonOperations.TabIndex = 0;
     this.tabCommonOperations.Text     = "  Common SnapRaid  ";
     //
     // logPanel
     //
     this.logPanel.Controls.Add(this.liveRunLogControl1);
     this.logPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.logPanel.Location = new System.Drawing.Point(0, 210);
     this.logPanel.Name     = "logPanel";
     this.logPanel.Size     = new System.Drawing.Size(984, 267);
     this.logPanel.TabIndex = 11;
     //
     // liveRunLogControl1
     //
     this.liveRunLogControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.liveRunLogControl1.HighlightDebugEnabled   = true;
     this.liveRunLogControl1.HighlightErrorEnabled   = true;
     this.liveRunLogControl1.HighlightWarningEnabled = true;
     this.liveRunLogControl1.IsRunning = false;
     this.liveRunLogControl1.Location  = new System.Drawing.Point(0, 0);
     this.liveRunLogControl1.Name      = "liveRunLogControl1";
     this.liveRunLogControl1.Size      = new System.Drawing.Size(984, 267);
     this.liveRunLogControl1.TabIndex  = 0;
     //
     // commandPanel
     //
     this.commandPanel.AutoSize     = true;
     this.commandPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.commandPanel.Controls.Add(this.btnDiff);
     this.commandPanel.Controls.Add(this.btnScrub);
     this.commandPanel.Controls.Add(this.btnStatus);
     this.commandPanel.Controls.Add(this.btnSync);
     this.commandPanel.Controls.Add(this.btnCheck);
     this.commandPanel.Controls.Add(this.btnFix);
     this.commandPanel.Controls.Add(this.btnDupFinder);
     this.commandPanel.Controls.Add(this.btnForceFullSync);
     this.commandPanel.Dock     = System.Windows.Forms.DockStyle.Top;
     this.commandPanel.Location = new System.Drawing.Point(0, 0);
     this.commandPanel.Name     = "commandPanel";
     this.commandPanel.Size     = new System.Drawing.Size(984, 210);
     this.commandPanel.TabIndex = 9;
     //
     // btnSync
     //
     this.btnSync.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSync.ButtonDepress            = ((sbyte)(2));
     this.btnSync.Enabled                  = false;
     this.btnSync.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.btnSync.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnSync.HighlightFillAlpha       = ((byte)(200));
     this.btnSync.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnSync.HighlightFillAlphaNormal = ((byte)(50));
     this.btnSync.HighlightWidth           = 2F;
     this.btnSync.Image                   = global::Elucidate.Properties.Resources.camera_add_48;
     this.btnSync.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSync.ImageMargin             = 8F;
     this.btnSync.Location                = new System.Drawing.Point(3, 73);
     this.btnSync.MinimumSize             = new System.Drawing.Size(300, 64);
     this.btnSync.Name                    = "btnSync";
     this.btnSync.Rounding                = 14F;
     this.btnSync.Size                    = new System.Drawing.Size(300, 64);
     this.btnSync.Subscript               = "Synchronise with any changes that may\r\nhave occurred since the last run.";
     this.btnSync.SubscriptFont           = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSync.TabIndex                = 1;
     this.btnSync.Text                    = "&Sync";
     this.btnSync.TextAlign               = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSync.UseVisualStyleBackColor = true;
     this.btnSync.Click                  += new System.EventHandler(this.btnSync_Click);
     //
     // btnCheck
     //
     this.btnCheck.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCheck.ButtonDepress            = ((sbyte)(2));
     this.btnCheck.Enabled                  = false;
     this.btnCheck.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnCheck.HighlightFillAlpha       = ((byte)(200));
     this.btnCheck.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnCheck.HighlightFillAlphaNormal = ((byte)(50));
     this.btnCheck.HighlightWidth           = 2F;
     this.btnCheck.Image                   = global::Elucidate.Properties.Resources.camera_warning_48;
     this.btnCheck.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCheck.ImageMargin             = 8F;
     this.btnCheck.Location                = new System.Drawing.Point(309, 73);
     this.btnCheck.MinimumSize             = new System.Drawing.Size(300, 64);
     this.btnCheck.Name                    = "btnCheck";
     this.btnCheck.Rounding                = 14F;
     this.btnCheck.Size                    = new System.Drawing.Size(300, 64);
     this.btnCheck.Subscript               = "Check the snapshot to confirm\r\nit\'s integrity. (use -a for hash only)";
     this.btnCheck.SubscriptFont           = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCheck.TabIndex                = 2;
     this.btnCheck.Text                    = "&Check";
     this.btnCheck.TextAlign               = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCheck.UseVisualStyleBackColor = true;
     this.btnCheck.Click                  += new System.EventHandler(this.btnCheck_Click);
     //
     // btnForceFullSync
     //
     this.btnForceFullSync.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.btnForceFullSync.ButtonDepress            = ((sbyte)(2));
     this.btnForceFullSync.Enabled                  = false;
     this.btnForceFullSync.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.btnForceFullSync.HighlightColor           = System.Drawing.SystemColors.Highlight;
     this.btnForceFullSync.HighlightFillAlpha       = ((byte)(200));
     this.btnForceFullSync.HighlightFillAlphaMouse  = ((byte)(100));
     this.btnForceFullSync.HighlightFillAlphaNormal = ((byte)(50));
     this.btnForceFullSync.HighlightWidth           = 2F;
     this.btnForceFullSync.Image                   = global::Elucidate.Properties.Resources.camera_add_48;
     this.btnForceFullSync.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnForceFullSync.ImageMargin             = 8F;
     this.btnForceFullSync.Location                = new System.Drawing.Point(309, 143);
     this.btnForceFullSync.MinimumSize             = new System.Drawing.Size(300, 64);
     this.btnForceFullSync.Name                    = "btnForceFullSync";
     this.btnForceFullSync.Rounding                = 14F;
     this.btnForceFullSync.Size                    = new System.Drawing.Size(300, 64);
     this.btnForceFullSync.Subscript               = "Force a full synchronization of all content.";
     this.btnForceFullSync.SubscriptFont           = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnForceFullSync.TabIndex                = 12;
     this.btnForceFullSync.Text                    = "&Force Full Sync";
     this.btnForceFullSync.TextAlign               = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnForceFullSync.UseVisualStyleBackColor = true;
     this.btnForceFullSync.Click                  += new System.EventHandler(this.btnForceFullSync_Click);
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabCommonOperations);
     this.tabControl.Controls.Add(this.tabLogs);
     this.tabControl.Controls.Add(this.tabCoveragePage);
     this.tabControl.Controls.Add(this.tabSchedulePage);
     this.tabControl.Controls.Add(this.tabRecoverFiles);
     this.tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Font          = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl.HotTrack      = true;
     this.tabControl.Location      = new System.Drawing.Point(0, 24);
     this.tabControl.Margin        = new System.Windows.Forms.Padding(0);
     this.tabControl.Name          = "tabControl";
     this.tabControl.Padding       = new System.Drawing.Point(0, 0);
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(994, 511);
     this.tabControl.TabIndex      = 4;
     this.tabControl.Selected     += new System.Windows.Forms.TabControlEventHandler(this.tabControl_Selected);
     this.tabControl.Deselecting  += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl_Deselecting);
     //
     // tabLogs
     //
     this.tabLogs.BackColor = System.Drawing.Color.Transparent;
     this.tabLogs.Controls.Add(this.logsViewerControl);
     this.tabLogs.Location = new System.Drawing.Point(4, 28);
     this.tabLogs.Name     = "tabLogs";
     this.tabLogs.Padding  = new System.Windows.Forms.Padding(3);
     this.tabLogs.Size     = new System.Drawing.Size(986, 479);
     this.tabLogs.TabIndex = 6;
     this.tabLogs.Text     = "Logs";
     //
     // logsViewerControl
     //
     this.logsViewerControl.AutoSize     = true;
     this.logsViewerControl.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.logsViewerControl.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.logsViewerControl.Location     = new System.Drawing.Point(3, 3);
     this.logsViewerControl.Margin       = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.logsViewerControl.Name         = "logsViewerControl";
     this.logsViewerControl.Size         = new System.Drawing.Size(980, 473);
     this.logsViewerControl.TabIndex     = 0;
     //
     // tabRecoverFiles
     //
     this.tabRecoverFiles.Controls.Add(this.recover1);
     this.tabRecoverFiles.Location = new System.Drawing.Point(4, 28);
     this.tabRecoverFiles.Name     = "tabRecoverFiles";
     this.tabRecoverFiles.Padding  = new System.Windows.Forms.Padding(3);
     this.tabRecoverFiles.Size     = new System.Drawing.Size(986, 479);
     this.tabRecoverFiles.TabIndex = 7;
     this.tabRecoverFiles.Text     = "Recover Files";
     this.tabRecoverFiles.UseVisualStyleBackColor = true;
     //
     // recover1
     //
     this.recover1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.recover1.Location = new System.Drawing.Point(3, 3);
     this.recover1.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.recover1.Name     = "recover1";
     this.recover1.Size     = new System.Drawing.Size(980, 473);
     this.recover1.TabIndex = 0;
     //
     // snapRAIDConfigToolStripMenuItem
     //
     this.snapRAIDConfigToolStripMenuItem.Name        = "snapRAIDConfigToolStripMenuItem";
     this.snapRAIDConfigToolStripMenuItem.Size        = new System.Drawing.Size(129, 20);
     this.snapRAIDConfigToolStripMenuItem.Text        = "Snap&RAID Config...";
     this.snapRAIDConfigToolStripMenuItem.ToolTipText = "Change the location of SnapRAID and config it\'s settings.";
     this.snapRAIDConfigToolStripMenuItem.Click      += new System.EventHandler(this.settingsToolStripMenuItem_Click);
     //
     // logViewToolStripMenuItem
     //
     this.logViewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.logViewToolStripMenuItem1,
         this.changeLogLocationToolStripMenuItem
     });
     this.logViewToolStripMenuItem.Font        = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logViewToolStripMenuItem.Name        = "logViewToolStripMenuItem";
     this.logViewToolStripMenuItem.Size        = new System.Drawing.Size(64, 20);
     this.logViewToolStripMenuItem.Text        = "&Logging";
     this.logViewToolStripMenuItem.ToolTipText = "Open a View of Elucidates log file.";
     //
     // logViewToolStripMenuItem1
     //
     this.logViewToolStripMenuItem1.Name   = "logViewToolStripMenuItem1";
     this.logViewToolStripMenuItem1.Size   = new System.Drawing.Size(180, 22);
     this.logViewToolStripMenuItem1.Text   = "&View...";
     this.logViewToolStripMenuItem1.Click += new System.EventHandler(this.logViewToolStripMenuItem_Click);
     //
     // changeLogLocationToolStripMenuItem
     //
     this.changeLogLocationToolStripMenuItem.Name   = "changeLogLocationToolStripMenuItem";
     this.changeLogLocationToolStripMenuItem.Size   = new System.Drawing.Size(180, 22);
     this.changeLogLocationToolStripMenuItem.Text   = "&Location...";
     this.changeLogLocationToolStripMenuItem.Click += new System.EventHandler(this.changeLogLocationToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.Alignment    = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.helpToolStripMenuItem.Font         = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.helpToolStripMenuItem.Name         = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
     this.helpToolStripMenuItem.Size         = new System.Drawing.Size(45, 20);
     this.helpToolStripMenuItem.Text         = "Help";
     this.helpToolStripMenuItem.ToolTipText  = "Goto the Help page.";
     this.helpToolStripMenuItem.Click       += new System.EventHandler(this.helpToolStripMenuItem_Click);
     //
     // VersionIndicator
     //
     this.VersionIndicator.Alignment        = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.VersionIndicator.Enabled          = false;
     this.VersionIndicator.Font             = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.VersionIndicator.Name             = "VersionIndicator";
     this.VersionIndicator.ShowShortcutKeys = false;
     this.VersionIndicator.Size             = new System.Drawing.Size(107, 20);
     this.VersionIndicator.Text             = "VersionIndicator";
     this.VersionIndicator.ToolTipText      = "The build number of this application.";
     this.VersionIndicator.Click           += new System.EventHandler(this.helpToolStripMenuItem_Click);
     //
     // MenuItemChangelog
     //
     this.MenuItemChangelog.Alignment    = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.MenuItemChangelog.Font         = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MenuItemChangelog.Name         = "MenuItemChangelog";
     this.MenuItemChangelog.ShortcutKeys = System.Windows.Forms.Keys.F1;
     this.MenuItemChangelog.Size         = new System.Drawing.Size(83, 20);
     this.MenuItemChangelog.Text         = "C&hangeLog";
     this.MenuItemChangelog.Click       += new System.EventHandler(this.changeToolStripMenuItem_Click);
     //
     // MenuItemNewVersionAvailable
     //
     this.MenuItemNewVersionAvailable.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.MenuItemNewVersionAvailable.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.installNewVersionToolStripMenuItem,
         this.changeLogOfNewVersionToolStripMenuItem
     });
     this.MenuItemNewVersionAvailable.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.MenuItemNewVersionAvailable.Name      = "MenuItemNewVersionAvailable";
     this.MenuItemNewVersionAvailable.Size      = new System.Drawing.Size(161, 20);
     this.MenuItemNewVersionAvailable.Text      = "New Version Is Available";
     this.MenuItemNewVersionAvailable.Visible   = false;
     //
     // installNewVersionToolStripMenuItem
     //
     this.installNewVersionToolStripMenuItem.Name   = "installNewVersionToolStripMenuItem";
     this.installNewVersionToolStripMenuItem.Size   = new System.Drawing.Size(230, 22);
     this.installNewVersionToolStripMenuItem.Text   = "Install New Version";
     this.installNewVersionToolStripMenuItem.Click += new System.EventHandler(this.installNewVersionToolStripMenuItem_Click);
     //
     // changeLogOfNewVersionToolStripMenuItem
     //
     this.changeLogOfNewVersionToolStripMenuItem.Name   = "changeLogOfNewVersionToolStripMenuItem";
     this.changeLogOfNewVersionToolStripMenuItem.Size   = new System.Drawing.Size(230, 22);
     this.changeLogOfNewVersionToolStripMenuItem.Text   = "ChangeLog of New Version";
     this.changeLogOfNewVersionToolStripMenuItem.Click += new System.EventHandler(this.changeLogOfNewVersionToolStripMenuItem_Click);
     //
     // menuStrip1
     //
     this.menuStrip1.Font             = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.snapRAIDConfigToolStripMenuItem,
         this.logViewToolStripMenuItem,
         this.helpToolStripMenuItem,
         this.VersionIndicator,
         this.MenuItemChangelog,
         this.MenuItemNewVersionAvailable,
         this.MenuItemNewVersionReadyForInstall
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Padding  = new System.Windows.Forms.Padding(7, 2, 0, 2);
     this.menuStrip1.Size     = new System.Drawing.Size(994, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // MenuItemNewVersionReadyForInstall
     //
     this.MenuItemNewVersionReadyForInstall.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.MenuItemNewVersionReadyForInstall.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.MenuItemNewVersionReadyForInstall.Name      = "MenuItemNewVersionReadyForInstall";
     this.MenuItemNewVersionReadyForInstall.Size      = new System.Drawing.Size(192, 20);
     this.MenuItemNewVersionReadyForInstall.Text      = "New Version Ready For Install";
     this.MenuItemNewVersionReadyForInstall.Visible   = false;
     this.MenuItemNewVersionReadyForInstall.Click    += new System.EventHandler(this.MenuItemNewVersionReadyForInstall_Click);
     //
     // ElucidateForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(994, 561);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.DoubleBuffered = true;
     this.Font           = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview     = true;
     this.MainMenuStrip  = this.menuStrip1;
     this.MinimumSize    = new System.Drawing.Size(750, 598);
     this.Name           = "ElucidateForm";
     this.SizeGripStyle  = System.Windows.Forms.SizeGripStyle.Show;
     this.Text           = "Elucidate: A SnapRAID Command Line Driver";
     this.Load          += new System.EventHandler(this.ElucidateForm_Load);
     this.Shown         += new System.EventHandler(this.ElucidateForm_Shown);
     this.ResizeEnd     += new System.EventHandler(this.ElucidateForm_ResizeEnd);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.tabCoveragePage.ResumeLayout(false);
     this.tabSchedulePage.ResumeLayout(false);
     this.tabSchedulePage.PerformLayout();
     this.tabCommonOperations.ResumeLayout(false);
     this.tabCommonOperations.PerformLayout();
     this.logPanel.ResumeLayout(false);
     this.commandPanel.ResumeLayout(false);
     this.tabControl.ResumeLayout(false);
     this.tabLogs.ResumeLayout(false);
     this.tabLogs.PerformLayout();
     this.tabRecoverFiles.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #41
0
        private void InitializeComponent()
        {
            ListViewItem item = new ListViewItem("54:3:25");

            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFastSelSpatial));
            ListViewItem item2  = new ListViewItem("54:3:26");
            ListViewItem item3  = new ListViewItem("54:3:27");
            ListViewItem item4  = new ListViewItem("54:3:28");
            ListViewItem item5  = new ListViewItem("54:3:29");
            ListViewItem item6  = new ListViewItem("54:3:30");
            ListViewItem item7  = new ListViewItem("54:3:31");
            ListViewItem item8  = new ListViewItem("54:3:32");
            ListViewItem item9  = new ListViewItem("54:3:33");
            ListViewItem item10 = new ListViewItem("54:3:34");
            ListViewItem item11 = new ListViewItem("54:3:35");
            ListViewItem item12 = new ListViewItem("54:3:36");
            ListViewItem item13 = new ListViewItem("54:3:37");
            ListViewItem item14 = new ListViewItem("54:3:38");
            ListViewItem item15 = new ListViewItem("54:3:39");
            ListViewItem item16 = new ListViewItem(new string[] { "54:3:40", "" }, -1);
            ListViewItem item17 = new ListViewItem("54:3:41");
            ListViewItem item18 = new ListViewItem("54:3:42");
            ListViewItem item19 = new ListViewItem("54:3:43");
            ListViewItem item20 = new ListViewItem("54:3:44");
            ListViewItem item21 = new ListViewItem("54:3:45");
            ListViewItem item22 = new ListViewItem("54:6:13");
            ListViewItem item23 = new ListViewItem("54:6:14");
            ListViewItem item24 = new ListViewItem("54:6:15");
            ListViewItem item25 = new ListViewItem("54:6:16");
            ListViewItem item26 = new ListViewItem("54:6:17");
            ListViewItem item27 = new ListViewItem("54:6:18");
            ListViewItem item28 = new ListViewItem("54:6:19");
            ListViewItem item29 = new ListViewItem("54:6:20");
            ListViewItem item30 = new ListViewItem("54:6:21");
            ListViewItem item31 = new ListViewItem("54:6:22");
            ListViewItem item32 = new ListViewItem("54:6:23");
            ListViewItem item33 = new ListViewItem("80:3:25");
            ListViewItem item34 = new ListViewItem("80:3:26");
            ListViewItem item35 = new ListViewItem("80:3:27");
            ListViewItem item36 = new ListViewItem("80:3:28");
            ListViewItem item37 = new ListViewItem("80:3:29");
            ListViewItem item38 = new ListViewItem("80:3:30");
            ListViewItem item39 = new ListViewItem("80:3:31");
            ListViewItem item40 = new ListViewItem("80:3:32");
            ListViewItem item41 = new ListViewItem("80:3:33");
            ListViewItem item42 = new ListViewItem("80:3:34");
            ListViewItem item43 = new ListViewItem("80:3:35");
            ListViewItem item44 = new ListViewItem("80:3:36");
            ListViewItem item45 = new ListViewItem("80:3:37");
            ListViewItem item46 = new ListViewItem("80:3:38");
            ListViewItem item47 = new ListViewItem("80:3:39");
            ListViewItem item48 = new ListViewItem("80:3:40");
            ListViewItem item49 = new ListViewItem("80:3:41");
            ListViewItem item50 = new ListViewItem("80:3:42");
            ListViewItem item51 = new ListViewItem("80:3:43");
            ListViewItem item52 = new ListViewItem("80:3:44");
            ListViewItem item53 = new ListViewItem("80:3:45");
            ListViewItem item54 = new ListViewItem("80:6:13");
            ListViewItem item55 = new ListViewItem("80:6:14");
            ListViewItem item56 = new ListViewItem("80:6:15");
            ListViewItem item57 = new ListViewItem("80:6:16");
            ListViewItem item58 = new ListViewItem("80:6:17");
            ListViewItem item59 = new ListViewItem("80:6:18");
            ListViewItem item60 = new ListViewItem("80:6:19");
            ListViewItem item61 = new ListViewItem("80:6:20");
            ListViewItem item62 = new ListViewItem("80:6:21");
            ListViewItem item63 = new ListViewItem("80:6:22");
            ListViewItem item64 = new ListViewItem("80:6:23");
            ListViewItem item65 = new ListViewItem("1954");
            ListViewItem item66 = new ListViewItem("1980");

            this.groupBox1      = new GroupBox();
            this.rdPrj          = new RadioButton();
            this.rdGeo          = new RadioButton();
            this.groupBox2      = new GroupBox();
            this.cmbBandNum     = new ComboBox();
            this.rdBand6        = new RadioButton();
            this.rdBand3        = new RadioButton();
            this.groupBox3      = new GroupBox();
            this.rdBj80         = new RadioButton();
            this.rdBj54         = new RadioButton();
            this.btnOK          = new Button();
            this.btnCancle      = new Button();
            this.lstProjected   = new ListView();
            this.columnHeader_0 = new ColumnHeader();
            this.columnHeader_1 = new ColumnHeader();
            this.lstGeographic  = new ListView();
            this.columnHeader_2 = new ColumnHeader();
            this.columnHeader_3 = new ColumnHeader();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            base.SuspendLayout();
            this.groupBox1.Controls.Add(this.rdPrj);
            this.groupBox1.Controls.Add(this.rdGeo);
            this.groupBox1.Location            = new System.Drawing.Point(12, 12);
            this.groupBox1.Name                = "groupBox1";
            this.groupBox1.Size                = new Size(278, 48);
            this.groupBox1.TabIndex            = 0;
            this.groupBox1.TabStop             = false;
            this.groupBox1.Text                = "坐标系统";
            this.rdPrj.AutoSize                = true;
            this.rdPrj.Checked                 = true;
            this.rdPrj.Location                = new System.Drawing.Point(146, 20);
            this.rdPrj.Name                    = "rdPrj";
            this.rdPrj.Size                    = new Size(71, 16);
            this.rdPrj.TabIndex                = 1;
            this.rdPrj.TabStop                 = true;
            this.rdPrj.Text                    = "投影坐标";
            this.rdPrj.UseVisualStyleBackColor = true;
            this.rdPrj.Click                  += new EventHandler(this.rdPrj_Click);
            this.rdGeo.AutoSize                = true;
            this.rdGeo.Location                = new System.Drawing.Point(18, 20);
            this.rdGeo.Name                    = "rdGeo";
            this.rdGeo.Size                    = new Size(71, 16);
            this.rdGeo.TabIndex                = 0;
            this.rdGeo.Text                    = "地理坐标";
            this.rdGeo.UseVisualStyleBackColor = true;
            this.rdGeo.Click                  += new EventHandler(this.rdGeo_Click);
            this.groupBox2.Controls.Add(this.cmbBandNum);
            this.groupBox2.Controls.Add(this.rdBand6);
            this.groupBox2.Controls.Add(this.rdBand3);
            this.groupBox2.Location               = new System.Drawing.Point(12, 124);
            this.groupBox2.Name                   = "groupBox2";
            this.groupBox2.Size                   = new Size(284, 57);
            this.groupBox2.TabIndex               = 1;
            this.groupBox2.TabStop                = false;
            this.groupBox2.Text                   = "分带信息";
            this.cmbBandNum.FormattingEnabled     = true;
            this.cmbBandNum.Location              = new System.Drawing.Point(164, 19);
            this.cmbBandNum.Name                  = "cmbBandNum";
            this.cmbBandNum.Size                  = new Size(114, 20);
            this.cmbBandNum.TabIndex              = 2;
            this.cmbBandNum.SelectedIndexChanged += new EventHandler(this.cmbBandNum_SelectedIndexChanged);
            this.rdBand6.AutoSize                 = true;
            this.rdBand6.Location                 = new System.Drawing.Point(98, 20);
            this.rdBand6.Name     = "rdBand6";
            this.rdBand6.Size     = new Size(53, 16);
            this.rdBand6.TabIndex = 1;
            this.rdBand6.Text     = "6度带";
            this.rdBand6.UseVisualStyleBackColor = true;
            this.rdBand6.CheckedChanged         += new EventHandler(this.rdBand6_CheckedChanged);
            this.rdBand3.AutoSize = true;
            this.rdBand3.Checked  = true;
            this.rdBand3.Location = new System.Drawing.Point(29, 20);
            this.rdBand3.Name     = "rdBand3";
            this.rdBand3.Size     = new Size(53, 16);
            this.rdBand3.TabIndex = 0;
            this.rdBand3.TabStop  = true;
            this.rdBand3.Text     = "3度带";
            this.rdBand3.UseVisualStyleBackColor = true;
            this.rdBand3.CheckedChanged         += new EventHandler(this.rdBand3_CheckedChanged);
            this.groupBox3.Controls.Add(this.rdBj80);
            this.groupBox3.Controls.Add(this.rdBj54);
            this.groupBox3.Location             = new System.Drawing.Point(12, 66);
            this.groupBox3.Name                 = "groupBox3";
            this.groupBox3.Size                 = new Size(284, 52);
            this.groupBox3.TabIndex             = 2;
            this.groupBox3.TabStop              = false;
            this.groupBox3.Text                 = "大地基准面";
            this.rdBj80.AutoSize                = true;
            this.rdBj80.Location                = new System.Drawing.Point(156, 29);
            this.rdBj80.Name                    = "rdBj80";
            this.rdBj80.Size                    = new Size(59, 16);
            this.rdBj80.TabIndex                = 1;
            this.rdBj80.Text                    = "西安80";
            this.rdBj80.UseVisualStyleBackColor = true;
            this.rdBj54.AutoSize                = true;
            this.rdBj54.Checked                 = true;
            this.rdBj54.Location                = new System.Drawing.Point(30, 28);
            this.rdBj54.Name                    = "rdBj54";
            this.rdBj54.Size                    = new Size(59, 16);
            this.rdBj54.TabIndex                = 0;
            this.rdBj54.TabStop                 = true;
            this.rdBj54.Text                    = "北京54";
            this.rdBj54.UseVisualStyleBackColor = true;
            this.btnOK.Location                 = new System.Drawing.Point(139, 187);
            this.btnOK.Name     = "btnOK";
            this.btnOK.Size     = new Size(75, 23);
            this.btnOK.TabIndex = 3;
            this.btnOK.Text     = "确定";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click       += new EventHandler(this.btnOK_Click);
            this.btnCancle.Location = new System.Drawing.Point(221, 187);
            this.btnCancle.Name     = "btnCancle";
            this.btnCancle.Size     = new Size(75, 23);
            this.btnCancle.TabIndex = 4;
            this.btnCancle.Text     = "取消";
            this.btnCancle.UseVisualStyleBackColor = true;
            this.btnCancle.Click += new EventHandler(this.btnCancle_Click);
            this.lstProjected.Columns.AddRange(new ColumnHeader[] { this.columnHeader_0, this.columnHeader_1 });
            item.Tag           = resources.GetString("listViewItem1.Tag");
            item.ToolTipText   = "17250718.461:-10002137.4978:33749281.539:10002137.4978";
            item2.Tag          = resources.GetString("listViewItem2.Tag");
            item2.ToolTipText  = "18250718.461:-10002137.4978:34749281.539:10002137.4978";
            item3.Tag          = resources.GetString("listViewItem3.Tag");
            item3.ToolTipText  = "19250718.461:-10002137.4978:35749281.539:10002137.4978";
            item4.Tag          = resources.GetString("listViewItem4.Tag");
            item4.ToolTipText  = "20250718.461:-10002137.4978:36749281.539:10002137.4978";
            item5.Tag          = resources.GetString("listViewItem5.Tag");
            item5.ToolTipText  = "21250718.461:-10002137.4978:37749281.539:10002137.4978";
            item6.Tag          = resources.GetString("listViewItem6.Tag");
            item6.ToolTipText  = "22250718.461:-10002137.4978:38749281.539:10002137.4978";
            item7.Tag          = resources.GetString("listViewItem7.Tag");
            item7.ToolTipText  = "23250718.461:-10002137.4978:39749281.539:10002137.4978";
            item8.Tag          = resources.GetString("listViewItem8.Tag");
            item8.ToolTipText  = "24250718.461:-10002137.4978:40749281.539:10002137.4978";
            item9.Tag          = resources.GetString("listViewItem9.Tag");
            item9.ToolTipText  = "25250718.461:-10002137.4978:41749281.539:10002137.4978";
            item10.Tag         = resources.GetString("listViewItem10.Tag");
            item10.ToolTipText = "26250718.461:-10002137.4978:42749281.539:10002137.4978";
            item11.Tag         = resources.GetString("listViewItem11.Tag");
            item11.ToolTipText = "27250718.461:-10002137.4978:43749281.539:10002137.4978";
            item12.Tag         = resources.GetString("listViewItem12.Tag");
            item12.ToolTipText = "28250718.461:-10002137.4978:44749281.539:10002137.4978";
            item13.Tag         = resources.GetString("listViewItem13.Tag");
            item13.ToolTipText = "29250718.461:-10002137.4978:45749281.539:10002137.4978";
            item14.Tag         = resources.GetString("listViewItem14.Tag");
            item14.ToolTipText = "30250718.461:-10002137.4978:46749281.539:10002137.4978";
            item15.Tag         = resources.GetString("listViewItem15.Tag");
            item15.ToolTipText = "31250718.461:-10002137.4978:47749281.539:10002137.4978";
            item16.Tag         = resources.GetString("listViewItem16.Tag");
            item16.ToolTipText = "32250718.461:-10002137.4978:48749281.539:10002137.4978";
            item17.Tag         = resources.GetString("listViewItem17.Tag");
            item17.ToolTipText = "33250718.461:-10002137.4978:49749281.539:10002137.4978";
            item18.Tag         = resources.GetString("listViewItem18.Tag");
            item18.ToolTipText = "34250718.461:-10002137.4978:50749281.539:10002137.4978";
            item19.Tag         = resources.GetString("listViewItem19.Tag");
            item19.ToolTipText = "35250718.461:-10002137.4978:51749281.539:10002137.4978";
            item20.Tag         = resources.GetString("listViewItem20.Tag");
            item20.ToolTipText = "36250718.461:-10002137.4978:52749281.539:10002137.4978";
            item21.Tag         = resources.GetString("listViewItem21.Tag");
            item21.ToolTipText = "37250718.461:-10002137.4978:53749281.539:10002137.4978";
            item22.Tag         = resources.GetString("listViewItem22.Tag");
            item22.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item23.Tag         = resources.GetString("listViewItem23.Tag");
            item23.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item24.Tag         = resources.GetString("listViewItem24.Tag");
            item24.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item25.Tag         = resources.GetString("listViewItem25.Tag");
            item25.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item26.Tag         = resources.GetString("listViewItem26.Tag");
            item26.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item27.Tag         = resources.GetString("listViewItem27.Tag");
            item27.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item28.Tag         = resources.GetString("listViewItem28.Tag");
            item28.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item29.Tag         = resources.GetString("listViewItem29.Tag");
            item29.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item30.Tag         = resources.GetString("listViewItem30.Tag");
            item30.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item31.Tag         = resources.GetString("listViewItem31.Tag");
            item31.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item32.Tag         = resources.GetString("listViewItem32.Tag");
            item32.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item33.Tag         = resources.GetString("listViewItem33.Tag");
            item33.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item34.Tag         = resources.GetString("listViewItem34.Tag");
            item34.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item35.Tag         = resources.GetString("listViewItem35.Tag");
            item35.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item36.Tag         = resources.GetString("listViewItem36.Tag");
            item36.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item37.Tag         = resources.GetString("listViewItem37.Tag");
            item37.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item38.Tag         = resources.GetString("listViewItem38.Tag");
            item38.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item39.Tag         = resources.GetString("listViewItem39.Tag");
            item39.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item40.Tag         = resources.GetString("listViewItem40.Tag");
            item40.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item41.Tag         = resources.GetString("listViewItem41.Tag");
            item41.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item42.Tag         = resources.GetString("listViewItem42.Tag");
            item42.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item43.Tag         = resources.GetString("listViewItem43.Tag");
            item43.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item44.Tag         = resources.GetString("listViewItem44.Tag");
            item44.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item45.Tag         = resources.GetString("listViewItem45.Tag");
            item45.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item46.Tag         = resources.GetString("listViewItem46.Tag");
            item46.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item47.Tag         = resources.GetString("listViewItem47.Tag");
            item47.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item48.Tag         = resources.GetString("listViewItem48.Tag");
            item48.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item49.Tag         = resources.GetString("listViewItem49.Tag");
            item49.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item50.Tag         = resources.GetString("listViewItem50.Tag");
            item50.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item51.Tag         = resources.GetString("listViewItem51.Tag");
            item51.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item52.Tag         = resources.GetString("listViewItem52.Tag");
            item52.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item53.Tag         = resources.GetString("listViewItem53.Tag");
            item53.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item54.Tag         = resources.GetString("listViewItem54.Tag");
            item54.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item55.Tag         = resources.GetString("listViewItem55.Tag");
            item55.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item56.Tag         = resources.GetString("listViewItem56.Tag");
            item56.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item57.Tag         = resources.GetString("listViewItem57.Tag");
            item57.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item58.Tag         = resources.GetString("listViewItem58.Tag");
            item58.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item59.Tag         = resources.GetString("listViewItem59.Tag");
            item59.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item60.Tag         = resources.GetString("listViewItem60.Tag");
            item60.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item61.Tag         = resources.GetString("listViewItem61.Tag");
            item61.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item62.Tag         = resources.GetString("listViewItem62.Tag");
            item62.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item63.Tag         = resources.GetString("listViewItem63.Tag");
            item63.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            item64.Tag         = resources.GetString("listViewItem64.Tag");
            item64.ToolTipText = "17250718.461:-10002137.4978:53749281.539:10002137.4978";
            this.lstProjected.Items.AddRange(new ListViewItem[] {
                item, item2, item3, item4, item5, item6, item7, item8, item9, item10, item11, item12, item13, item14, item15, item16,
                item17, item18, item19, item20, item21, item22, item23, item24, item25, item26, item27, item28, item29, item30, item31, item32,
                item33, item34, item35, item36, item37, item38, item39, item40, item41, item42, item43, item44, item45, item46, item47, item48,
                item49, item50, item51, item52, item53, item54, item55, item56, item57, item58, item59, item60, item61, item62, item63, item64
            });
            this.lstProjected.Location = new System.Drawing.Point(12, 373);
            this.lstProjected.Name     = "lstProjected";
            this.lstProjected.Size     = new Size(284, 114);
            this.lstProjected.TabIndex = 5;
            this.lstProjected.UseCompatibleStateImageBehavior = false;
            this.lstProjected.View    = View.Details;
            this.columnHeader_0.Text  = "坐标系";
            this.columnHeader_0.Width = 232;
            this.lstGeographic.Columns.AddRange(new ColumnHeader[] { this.columnHeader_2, this.columnHeader_3 });
            item65.Tag = "GEOGCS[\"GCS_Beijing_1954\",DATUM[\"D_Beijing_1954\",SPHEROID[\"Krasovsky_1940\",6378245,298.3]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.017453292519943295]]";
            item66.Tag = "GEOGCS[\"GCS_Xian_1980\",DATUM[\"D_Xian_1980\",SPHEROID[\"Xian_1980\",6378140.0,298.257]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]]";
            this.lstGeographic.Items.AddRange(new ListViewItem[] { item65, item66 });
            this.lstGeographic.Location = new System.Drawing.Point(12, 242);
            this.lstGeographic.Name     = "lstGeographic";
            this.lstGeographic.Size     = new Size(284, 125);
            this.lstGeographic.TabIndex = 6;
            this.lstGeographic.UseCompatibleStateImageBehavior = false;
            this.lstGeographic.View   = View.Details;
            this.columnHeader_2.Text  = "坐标系";
            this.columnHeader_2.Width = 232;
            base.AutoScaleDimensions  = new SizeF(6f, 12f);
            base.AutoScaleMode        = System.Windows.Forms.AutoScaleMode.Font;
            base.ClientSize           = new Size(305, 226);
            base.Controls.Add(this.lstGeographic);
            base.Controls.Add(this.lstProjected);
            base.Controls.Add(this.btnCancle);
            base.Controls.Add(this.btnOK);
            base.Controls.Add(this.groupBox3);
            base.Controls.Add(this.groupBox2);
            base.Controls.Add(this.groupBox1);
            base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            base.MaximizeBox     = false;
            base.MinimizeBox     = false;
            base.Name            = "FrmFastSelSpatial";
            base.StartPosition   = FormStartPosition.CenterScreen;
            this.Text            = "选择投影参考";
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            base.ResumeLayout(false);
        }
Example #42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(f110_dm_cau_hoi));
     this.ImageList               = new System.Windows.Forms.ImageList(this.components);
     this.m_pnl_out_place_dm      = new System.Windows.Forms.Panel();
     this.m_cmd_them_cau_tra_loi  = new SIS.Controls.Button.SiSButton();
     this.m_cmd_duyet_cau_tra_loi = new SIS.Controls.Button.SiSButton();
     this.m_cmd_insert            = new SIS.Controls.Button.SiSButton();
     this.m_cmd_update            = new SIS.Controls.Button.SiSButton();
     this.m_cmd_view              = new SIS.Controls.Button.SiSButton();
     this.m_cmd_delete            = new SIS.Controls.Button.SiSButton();
     this.m_cmd_exit              = new SIS.Controls.Button.SiSButton();
     this.m_fg               = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.m_lbl_header       = new System.Windows.Forms.Label();
     this.m_pnl_search_area  = new System.Windows.Forms.Panel();
     this.m_cbo_nhom_cau_hoi = new System.Windows.Forms.ComboBox();
     this.m_cbo_don_vi       = new System.Windows.Forms.ComboBox();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.m_grb_dm_cau_hoi   = new System.Windows.Forms.GroupBox();
     this.groupBox2          = new System.Windows.Forms.GroupBox();
     this.m_fg_cau_tra_loi   = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.m_pnl_out_place_dm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_fg)).BeginInit();
     this.m_pnl_search_area.SuspendLayout();
     this.m_grb_dm_cau_hoi.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_fg_cau_tra_loi)).BeginInit();
     this.SuspendLayout();
     //
     // ImageList
     //
     this.ImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
     this.ImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList.Images.SetKeyName(0, "");
     this.ImageList.Images.SetKeyName(1, "");
     this.ImageList.Images.SetKeyName(2, "");
     this.ImageList.Images.SetKeyName(3, "");
     this.ImageList.Images.SetKeyName(4, "");
     this.ImageList.Images.SetKeyName(5, "");
     this.ImageList.Images.SetKeyName(6, "");
     this.ImageList.Images.SetKeyName(7, "");
     this.ImageList.Images.SetKeyName(8, "");
     this.ImageList.Images.SetKeyName(9, "");
     this.ImageList.Images.SetKeyName(10, "");
     this.ImageList.Images.SetKeyName(11, "");
     this.ImageList.Images.SetKeyName(12, "");
     this.ImageList.Images.SetKeyName(13, "");
     this.ImageList.Images.SetKeyName(14, "");
     this.ImageList.Images.SetKeyName(15, "");
     this.ImageList.Images.SetKeyName(16, "");
     this.ImageList.Images.SetKeyName(17, "");
     this.ImageList.Images.SetKeyName(18, "");
     this.ImageList.Images.SetKeyName(19, "");
     this.ImageList.Images.SetKeyName(20, "");
     this.ImageList.Images.SetKeyName(21, "");
     //
     // m_pnl_out_place_dm
     //
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_them_cau_tra_loi);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_duyet_cau_tra_loi);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_insert);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_update);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_view);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_delete);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_exit);
     this.m_pnl_out_place_dm.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.m_pnl_out_place_dm.Location = new System.Drawing.Point(0, 456);
     this.m_pnl_out_place_dm.Name     = "m_pnl_out_place_dm";
     this.m_pnl_out_place_dm.Padding  = new System.Windows.Forms.Padding(4);
     this.m_pnl_out_place_dm.Size     = new System.Drawing.Size(915, 36);
     this.m_pnl_out_place_dm.TabIndex = 1;
     //
     // m_cmd_them_cau_tra_loi
     //
     this.m_cmd_them_cau_tra_loi.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_them_cau_tra_loi.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_them_cau_tra_loi.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_them_cau_tra_loi.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_them_cau_tra_loi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_them_cau_tra_loi.ImageIndex = 0;
     this.m_cmd_them_cau_tra_loi.ImageList  = this.ImageList;
     this.m_cmd_them_cau_tra_loi.Location   = new System.Drawing.Point(604, 4);
     this.m_cmd_them_cau_tra_loi.Name       = "m_cmd_them_cau_tra_loi";
     this.m_cmd_them_cau_tra_loi.Size       = new System.Drawing.Size(109, 28);
     this.m_cmd_them_cau_tra_loi.TabIndex   = 2;
     this.m_cmd_them_cau_tra_loi.Text       = "&Thêm câu trả lời";
     //
     // m_cmd_duyet_cau_tra_loi
     //
     this.m_cmd_duyet_cau_tra_loi.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_duyet_cau_tra_loi.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_duyet_cau_tra_loi.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_duyet_cau_tra_loi.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_duyet_cau_tra_loi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_duyet_cau_tra_loi.ImageIndex = 13;
     this.m_cmd_duyet_cau_tra_loi.ImageList  = this.ImageList;
     this.m_cmd_duyet_cau_tra_loi.Location   = new System.Drawing.Point(713, 4);
     this.m_cmd_duyet_cau_tra_loi.Name       = "m_cmd_duyet_cau_tra_loi";
     this.m_cmd_duyet_cau_tra_loi.Size       = new System.Drawing.Size(110, 28);
     this.m_cmd_duyet_cau_tra_loi.TabIndex   = 3;
     this.m_cmd_duyet_cau_tra_loi.Text       = "Duyệt câu trả lời";
     //
     // m_cmd_insert
     //
     this.m_cmd_insert.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_insert.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_insert.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_insert.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_insert.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_insert.ImageIndex = 2;
     this.m_cmd_insert.ImageList  = this.ImageList;
     this.m_cmd_insert.Location   = new System.Drawing.Point(268, 4);
     this.m_cmd_insert.Name       = "m_cmd_insert";
     this.m_cmd_insert.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_insert.TabIndex   = 0;
     this.m_cmd_insert.Text       = "&Thêm";
     //
     // m_cmd_update
     //
     this.m_cmd_update.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_update.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_update.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_update.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_update.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_update.ImageIndex = 3;
     this.m_cmd_update.ImageList  = this.ImageList;
     this.m_cmd_update.Location   = new System.Drawing.Point(180, 4);
     this.m_cmd_update.Name       = "m_cmd_update";
     this.m_cmd_update.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_update.TabIndex   = 1;
     this.m_cmd_update.Text       = "&Sửa";
     //
     // m_cmd_view
     //
     this.m_cmd_view.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_view.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_view.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_view.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_view.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_view.ImageIndex = 18;
     this.m_cmd_view.ImageList  = this.ImageList;
     this.m_cmd_view.Location   = new System.Drawing.Point(92, 4);
     this.m_cmd_view.Name       = "m_cmd_view";
     this.m_cmd_view.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_view.TabIndex   = 21;
     this.m_cmd_view.Text       = "Xem";
     //
     // m_cmd_delete
     //
     this.m_cmd_delete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_delete.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_delete.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_delete.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_delete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_delete.ImageIndex = 4;
     this.m_cmd_delete.ImageList  = this.ImageList;
     this.m_cmd_delete.Location   = new System.Drawing.Point(4, 4);
     this.m_cmd_delete.Name       = "m_cmd_delete";
     this.m_cmd_delete.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_delete.TabIndex   = 14;
     this.m_cmd_delete.Text       = "&Xoá";
     //
     // m_cmd_exit
     //
     this.m_cmd_exit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_exit.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_exit.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_exit.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_exit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_exit.ImageIndex = 12;
     this.m_cmd_exit.ImageList  = this.ImageList;
     this.m_cmd_exit.Location   = new System.Drawing.Point(823, 4);
     this.m_cmd_exit.Name       = "m_cmd_exit";
     this.m_cmd_exit.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_exit.TabIndex   = 4;
     this.m_cmd_exit.Text       = "Thoát (Esc)";
     //
     // m_fg
     //
     this.m_fg.ColumnInfo = resources.GetString("m_fg.ColumnInfo");
     this.m_fg.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.m_fg.Location   = new System.Drawing.Point(3, 16);
     this.m_fg.Name       = "m_fg";
     this.m_fg.Size       = new System.Drawing.Size(464, 346);
     this.m_fg.Styles     = new C1.Win.C1FlexGrid.CellStyleCollection(resources.GetString("m_fg.Styles"));
     this.m_fg.TabIndex   = 20;
     //
     // m_lbl_header
     //
     this.m_lbl_header.Dock      = System.Windows.Forms.DockStyle.Top;
     this.m_lbl_header.Font      = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_lbl_header.ForeColor = System.Drawing.Color.Maroon;
     this.m_lbl_header.Location  = new System.Drawing.Point(0, 0);
     this.m_lbl_header.Name      = "m_lbl_header";
     this.m_lbl_header.Size      = new System.Drawing.Size(915, 40);
     this.m_lbl_header.TabIndex  = 24;
     this.m_lbl_header.Text      = "F100 - Danh mục câu hỏi";
     this.m_lbl_header.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // m_pnl_search_area
     //
     this.m_pnl_search_area.Controls.Add(this.m_cbo_nhom_cau_hoi);
     this.m_pnl_search_area.Controls.Add(this.m_cbo_don_vi);
     this.m_pnl_search_area.Controls.Add(this.label2);
     this.m_pnl_search_area.Controls.Add(this.label1);
     this.m_pnl_search_area.Dock     = System.Windows.Forms.DockStyle.Top;
     this.m_pnl_search_area.Location = new System.Drawing.Point(0, 40);
     this.m_pnl_search_area.Name     = "m_pnl_search_area";
     this.m_pnl_search_area.Size     = new System.Drawing.Size(915, 51);
     this.m_pnl_search_area.TabIndex = 0;
     //
     // m_cbo_nhom_cau_hoi
     //
     this.m_cbo_nhom_cau_hoi.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_nhom_cau_hoi.FormattingEnabled = true;
     this.m_cbo_nhom_cau_hoi.Location          = new System.Drawing.Point(520, 15);
     this.m_cbo_nhom_cau_hoi.Name     = "m_cbo_nhom_cau_hoi";
     this.m_cbo_nhom_cau_hoi.Size     = new System.Drawing.Size(227, 21);
     this.m_cbo_nhom_cau_hoi.TabIndex = 1;
     //
     // m_cbo_don_vi
     //
     this.m_cbo_don_vi.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_don_vi.FormattingEnabled = true;
     this.m_cbo_don_vi.Location          = new System.Drawing.Point(82, 15);
     this.m_cbo_don_vi.Name     = "m_cbo_don_vi";
     this.m_cbo_don_vi.Size     = new System.Drawing.Size(220, 21);
     this.m_cbo_don_vi.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(429, 19);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(73, 13);
     this.label2.TabIndex = 14;
     this.label2.Text     = "Nhóm câu hỏi";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(35, 19);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(38, 13);
     this.label1.TabIndex = 14;
     this.label1.Text     = "Đơn vị";
     //
     // m_grb_dm_cau_hoi
     //
     this.m_grb_dm_cau_hoi.Controls.Add(this.m_fg);
     this.m_grb_dm_cau_hoi.Dock     = System.Windows.Forms.DockStyle.Left;
     this.m_grb_dm_cau_hoi.Location = new System.Drawing.Point(0, 91);
     this.m_grb_dm_cau_hoi.Name     = "m_grb_dm_cau_hoi";
     this.m_grb_dm_cau_hoi.Size     = new System.Drawing.Size(470, 365);
     this.m_grb_dm_cau_hoi.TabIndex = 26;
     this.m_grb_dm_cau_hoi.TabStop  = false;
     this.m_grb_dm_cau_hoi.Text     = "Danh sách câu hỏi";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.m_fg_cau_tra_loi);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(470, 91);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(445, 365);
     this.groupBox2.TabIndex = 27;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Phần câu trả lời";
     //
     // m_fg_cau_tra_loi
     //
     this.m_fg_cau_tra_loi.ColumnInfo = resources.GetString("m_fg_cau_tra_loi.ColumnInfo");
     this.m_fg_cau_tra_loi.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.m_fg_cau_tra_loi.Location   = new System.Drawing.Point(3, 16);
     this.m_fg_cau_tra_loi.Name       = "m_fg_cau_tra_loi";
     this.m_fg_cau_tra_loi.Size       = new System.Drawing.Size(439, 346);
     this.m_fg_cau_tra_loi.Styles     = new C1.Win.C1FlexGrid.CellStyleCollection(resources.GetString("m_fg_cau_tra_loi.Styles"));
     this.m_fg_cau_tra_loi.TabIndex   = 21;
     //
     // f110_dm_cau_hoi
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(915, 492);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.m_grb_dm_cau_hoi);
     this.Controls.Add(this.m_pnl_search_area);
     this.Controls.Add(this.m_lbl_header);
     this.Controls.Add(this.m_pnl_out_place_dm);
     this.Name  = "f110_dm_cau_hoi";
     this.Text  = "F100 - Danh mục câu hỏi";
     this.Load += new System.EventHandler(this.f110_dm_cau_hoi_Load);
     this.m_pnl_out_place_dm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_fg)).EndInit();
     this.m_pnl_search_area.ResumeLayout(false);
     this.m_pnl_search_area.PerformLayout();
     this.m_grb_dm_cau_hoi.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_fg_cau_tra_loi)).EndInit();
     this.ResumeLayout(false);
 }
Example #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor gridColumnDescriptor1 = new Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor();
     Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor gridColumnDescriptor2 = new Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor();
     Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor gridColumnDescriptor3 = new Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor();
     Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor gridColumnDescriptor4 = new Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor();
     this.dataSet11            = new XMLSerialization.DataSet1();
     this.sqlSelectCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlConnection1       = new System.Data.SqlClient.SqlConnection();
     this.sqlInsertCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlUpdateCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlDeleteCommand1    = new System.Data.SqlClient.SqlCommand();
     this.sqlDataAdapter1      = new System.Data.SqlClient.SqlDataAdapter();
     this.reset                = new Syncfusion.Windows.Forms.ButtonAdv();
     this.btnLoadXmlSchema     = new Syncfusion.Windows.Forms.ButtonAdv();
     this.btnSaveXmlSchema     = new Syncfusion.Windows.Forms.ButtonAdv();
     this.gridGroupingControl1 = new Syncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl();
     this.propertyGrid1        = new System.Windows.Forms.PropertyGrid();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridGroupingControl1)).BeginInit();
     this.SuspendLayout();
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = "SELECT CategoryID, CategoryName, Description, Picture FROM Categories";
     this.sqlSelectCommand1.Connection  = this.sqlConnection1;
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "data source=(local)\\NETSDK;initial catalog=Northwind;integrated security=SSPI;per" +
                                            "sist security info=True;workstation id=localhost;packet size=4096";
     this.sqlConnection1.FireInfoMessageEventOnUserErrors = false;
     //
     // sqlInsertCommand1
     //
     this.sqlInsertCommand1.CommandText = resources.GetString("sqlInsertCommand1.CommandText");
     this.sqlInsertCommand1.Connection  = this.sqlConnection1;
     this.sqlInsertCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@CategoryName", System.Data.SqlDbType.NVarChar, 15, "CategoryName"),
         new System.Data.SqlClient.SqlParameter("@Description", System.Data.SqlDbType.NVarChar, 1073741823, "Description"),
         new System.Data.SqlClient.SqlParameter("@Picture", System.Data.SqlDbType.VarBinary, 2147483647, "Picture")
     });
     //
     // sqlUpdateCommand1
     //
     this.sqlUpdateCommand1.CommandText = resources.GetString("sqlUpdateCommand1.CommandText");
     this.sqlUpdateCommand1.Connection  = this.sqlConnection1;
     this.sqlUpdateCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@CategoryName", System.Data.SqlDbType.NVarChar, 15, "CategoryName"),
         new System.Data.SqlClient.SqlParameter("@Description", System.Data.SqlDbType.NVarChar, 1073741823, "Description"),
         new System.Data.SqlClient.SqlParameter("@Picture", System.Data.SqlDbType.VarBinary, 2147483647, "Picture"),
         new System.Data.SqlClient.SqlParameter("@Original_CategoryID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "CategoryID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_CategoryName", System.Data.SqlDbType.NVarChar, 15, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "CategoryName", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@CategoryID", System.Data.SqlDbType.Int, 4, "CategoryID")
     });
     //
     // sqlDeleteCommand1
     //
     this.sqlDeleteCommand1.CommandText = "DELETE FROM Categories WHERE (CategoryID = @Original_CategoryID) AND (CategoryNam" +
                                          "e = @Original_CategoryName)";
     this.sqlDeleteCommand1.Connection = this.sqlConnection1;
     this.sqlDeleteCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@Original_CategoryID", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "CategoryID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_CategoryName", System.Data.SqlDbType.NVarChar, 15, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "CategoryName", System.Data.DataRowVersion.Original, null)
     });
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.DeleteCommand = this.sqlDeleteCommand1;
     this.sqlDataAdapter1.InsertCommand = this.sqlInsertCommand1;
     this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
     this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Categories", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("CategoryID", "CategoryID"),
             new System.Data.Common.DataColumnMapping("CategoryName", "CategoryName"),
             new System.Data.Common.DataColumnMapping("Description", "Description"),
             new System.Data.Common.DataColumnMapping("Picture", "Picture")
         })
     });
     this.sqlDataAdapter1.UpdateCommand = this.sqlUpdateCommand1;
     //
     // reset
     //
     this.reset.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.reset.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.reset.FlatStyle         = FlatStyle.Flat;
     this.reset.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.reset.BeforeTouchSize   = new System.Drawing.Size(130, 28);
     this.reset.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.reset.Font              = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.reset.ForeColor         = System.Drawing.Color.White;
     this.reset.IsBackStageButton = false;
     this.reset.Location          = new System.Drawing.Point(340, 615);
     this.reset.Name              = "reset";
     this.reset.Size              = new System.Drawing.Size(130, 28);
     this.reset.TabIndex          = 12;
     this.reset.Text              = "Reset Schema";
     this.reset.Click            += new System.EventHandler(this.reset_Click);
     //
     // btnLoadXmlSchema
     //
     this.btnLoadXmlSchema.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnLoadXmlSchema.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.btnLoadXmlSchema.FlatStyle         = FlatStyle.Flat;
     this.btnLoadXmlSchema.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.btnLoadXmlSchema.BeforeTouchSize   = new System.Drawing.Size(130, 28);
     this.btnLoadXmlSchema.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.btnLoadXmlSchema.Font              = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLoadXmlSchema.ForeColor         = System.Drawing.Color.White;
     this.btnLoadXmlSchema.IsBackStageButton = false;
     this.btnLoadXmlSchema.Location          = new System.Drawing.Point(199, 615);
     this.btnLoadXmlSchema.Name              = "btnLoadXmlSchema";
     this.btnLoadXmlSchema.Size              = new System.Drawing.Size(130, 28);
     this.btnLoadXmlSchema.TabIndex          = 11;
     this.btnLoadXmlSchema.Text              = "Load Xml Schema";
     this.btnLoadXmlSchema.Click            += new System.EventHandler(this.btnLoadXmlSchema_Click);
     //
     // btnSaveXmlSchema
     //
     this.btnSaveXmlSchema.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSaveXmlSchema.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.btnSaveXmlSchema.FlatStyle         = FlatStyle.Flat;
     this.btnSaveXmlSchema.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.btnSaveXmlSchema.BeforeTouchSize   = new System.Drawing.Size(130, 28);
     this.btnSaveXmlSchema.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.btnSaveXmlSchema.Font              = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSaveXmlSchema.ForeColor         = System.Drawing.Color.White;
     this.btnSaveXmlSchema.IsBackStageButton = false;
     this.btnSaveXmlSchema.Location          = new System.Drawing.Point(60, 615);
     this.btnSaveXmlSchema.Name              = "btnSaveXmlSchema";
     this.btnSaveXmlSchema.Size              = new System.Drawing.Size(130, 28);
     this.btnSaveXmlSchema.TabIndex          = 10;
     this.btnSaveXmlSchema.Text              = "Save Xml Schema";
     this.btnSaveXmlSchema.Click            += new System.EventHandler(this.btnSaveXmlSchema_Click);
     //
     // gridGroupingControl1
     //
     this.gridGroupingControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.gridGroupingControl1.BackColor        = System.Drawing.SystemColors.Window;
     this.gridGroupingControl1.DataSource       = this.dataSet11.Categories;
     this.gridGroupingControl1.Font             = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridGroupingControl1.FreezeCaption    = false;
     this.gridGroupingControl1.Location         = new System.Drawing.Point(15, 16);
     this.gridGroupingControl1.Name             = "gridGroupingControl1";
     this.gridGroupingControl1.Size             = new System.Drawing.Size(697, 589);
     this.gridGroupingControl1.TabIndex         = 9;
     gridColumnDescriptor1.HeaderImage          = null;
     gridColumnDescriptor1.HeaderImageAlignment = Syncfusion.Windows.Forms.Grid.Grouping.HeaderImageAlignment.Left;
     gridColumnDescriptor1.MappingName          = "CategoryID";
     gridColumnDescriptor1.SerializedImageArray = "";
     gridColumnDescriptor1.Width                = 80;
     gridColumnDescriptor2.HeaderImage          = null;
     gridColumnDescriptor2.HeaderImageAlignment = Syncfusion.Windows.Forms.Grid.Grouping.HeaderImageAlignment.Left;
     gridColumnDescriptor2.MappingName          = "CategoryName";
     gridColumnDescriptor2.SerializedImageArray = "";
     gridColumnDescriptor3.HeaderImage          = null;
     gridColumnDescriptor3.HeaderImageAlignment = Syncfusion.Windows.Forms.Grid.Grouping.HeaderImageAlignment.Left;
     gridColumnDescriptor3.MappingName          = "Description";
     gridColumnDescriptor3.SerializedImageArray = "";
     gridColumnDescriptor3.Width                = 250;
     gridColumnDescriptor4.HeaderImage          = null;
     gridColumnDescriptor4.HeaderImageAlignment = Syncfusion.Windows.Forms.Grid.Grouping.HeaderImageAlignment.Left;
     gridColumnDescriptor4.MappingName          = "Picture";
     gridColumnDescriptor4.SerializedImageArray = "";
     this.gridGroupingControl1.TableDescriptor.Columns.AddRange(new Syncfusion.Windows.Forms.Grid.Grouping.GridColumnDescriptor[] {
         gridColumnDescriptor1,
         gridColumnDescriptor2,
         gridColumnDescriptor3,
         gridColumnDescriptor4
     });
     this.gridGroupingControl1.TableOptions.RecordRowHeight = 57;
     this.gridGroupingControl1.Text = "gridGroupingControl1";
     //
     // propertyGrid1
     //
     this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.propertyGrid1.BackColor                 = System.Drawing.Color.White;
     this.propertyGrid1.CommandsBackColor         = System.Drawing.Color.White;
     this.propertyGrid1.CommandsDisabledLinkColor = System.Drawing.Color.White;
     this.propertyGrid1.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.propertyGrid1.HelpBackColor = System.Drawing.Color.White;
     this.propertyGrid1.LineColor     = System.Drawing.Color.White;
     this.propertyGrid1.Location      = new System.Drawing.Point(720, 16);
     this.propertyGrid1.Name          = "propertyGrid1";
     this.propertyGrid1.Size          = new System.Drawing.Size(276, 589);
     this.propertyGrid1.TabIndex      = 13;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(1012, 653);
     this.Controls.Add(this.propertyGrid1);
     this.Controls.Add(this.reset);
     this.Controls.Add(this.btnLoadXmlSchema);
     this.Controls.Add(this.btnSaveXmlSchema);
     this.Controls.Add(this.gridGroupingControl1);
     this.MinimumSize = new System.Drawing.Size(800, 400);
     this.Name        = "Form1";
     this.Text        = "XML Serialization";
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridGroupingControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #44
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SoldaMdor));
     System.Configuration.AppSettingsReader         configurationAppSettings = new System.Configuration.AppSettingsReader();
     this.sqlDASoldaMdor     = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlDeleteCommand1  = new System.Data.SqlClient.SqlCommand();
     this.sqlConn            = new System.Data.SqlClient.SqlConnection();
     this.sqlInsertCommand1  = new System.Data.SqlClient.SqlCommand();
     this.sqlSelectCommand1  = new System.Data.SqlClient.SqlCommand();
     this.sqlUpdateCommand1  = new System.Data.SqlClient.SqlCommand();
     this.dsSoldaMdor1       = new LancNeo.dsSoldaMdor();
     this.panel2             = new System.Windows.Forms.Panel();
     this.buscaBtn1          = new Soluciones2000.Tools.WinLib.BuscaBtn();
     this.txtObserva         = new System.Windows.Forms.TextBox();
     this.txtMuestreadasen   = new System.Windows.Forms.TextBox();
     this.txtSemana          = new System.Windows.Forms.TextBox();
     this.cmbNoeco           = new System.Windows.Forms.ComboBox();
     this.dsLaboratorista1   = new LancNeo.dsLaboratorista();
     this.dtpFinforme        = new System.Windows.Forms.DateTimePicker();
     this.dtpFensaye         = new System.Windows.Forms.DateTimePicker();
     this.dtpFmuestreo       = new System.Windows.Forms.DateTimePicker();
     this.txtConsecutivo     = new System.Windows.Forms.TextBox();
     this.cmbIdObra          = new System.Windows.Forms.ComboBox();
     this.dsBusObra1         = new LancNeo.dsBusObra();
     this.txtFolio           = new System.Windows.Forms.TextBox();
     this.label10            = new System.Windows.Forms.Label();
     this.label9             = new System.Windows.Forms.Label();
     this.label8             = new System.Windows.Forms.Label();
     this.label7             = new System.Windows.Forms.Label();
     this.label6             = new System.Windows.Forms.Label();
     this.label5             = new System.Windows.Forms.Label();
     this.label4             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.sqlDABusObra       = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlCommand1        = new System.Data.SqlClient.SqlCommand();
     this.sqlDALaboratorista = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlSelectCommand5  = new System.Data.SqlClient.SqlCommand();
     this.txtUsrMov          = new System.Windows.Forms.TextBox();
     this.label11            = new System.Windows.Forms.Label();
     this.panelToolBar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsSoldaMdor1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsLaboratorista1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBusObra1)).BeginInit();
     this.SuspendLayout();
     //
     // statusBar1
     //
     this.statusBar1.Location   = new System.Drawing.Point(0, 431);
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(584, 22);
     //
     // panelToolBar
     //
     this.panelToolBar.Size = new System.Drawing.Size(584, 64);
     //
     // sqlDASoldaMdor
     //
     this.sqlDASoldaMdor.DeleteCommand = this.sqlDeleteCommand1;
     this.sqlDASoldaMdor.InsertCommand = this.sqlInsertCommand1;
     this.sqlDASoldaMdor.SelectCommand = this.sqlSelectCommand1;
     this.sqlDASoldaMdor.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "SoldaMdor", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("FOLIO", "FOLIO"),
             new System.Data.Common.DataColumnMapping("IdObra", "IdObra"),
             new System.Data.Common.DataColumnMapping("ConsObra", "ConsObra"),
             new System.Data.Common.DataColumnMapping("FMuestreo", "FMuestreo"),
             new System.Data.Common.DataColumnMapping("FEnsaye", "FEnsaye"),
             new System.Data.Common.DataColumnMapping("FInforme", "FInforme"),
             new System.Data.Common.DataColumnMapping("NoEco", "NoEco"),
             new System.Data.Common.DataColumnMapping("Semana", "Semana"),
             new System.Data.Common.DataColumnMapping("MuestreadasEn", "MuestreadasEn"),
             new System.Data.Common.DataColumnMapping("Observaciones", "Observaciones"),
             new System.Data.Common.DataColumnMapping("IdUsuario", "IdUsuario")
         })
     });
     this.sqlDASoldaMdor.UpdateCommand = this.sqlUpdateCommand1;
     //
     // sqlDeleteCommand1
     //
     this.sqlDeleteCommand1.CommandText = resources.GetString("sqlDeleteCommand1.CommandText");
     this.sqlDeleteCommand1.Connection  = this.sqlConn;
     this.sqlDeleteCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@Original_FOLIO", System.Data.SqlDbType.Char, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FOLIO", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_IdObra", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "IdObra", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_IdObra", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdObra", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_ConsObra", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "ConsObra", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_ConsObra", System.Data.SqlDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "ConsObra", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_FMuestreo", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "FMuestreo", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_FMuestreo", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FMuestreo", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_FEnsaye", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "FEnsaye", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_FEnsaye", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FEnsaye", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_FInforme", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "FInforme", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_FInforme", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FInforme", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_NoEco", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "NoEco", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_NoEco", System.Data.SqlDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "NoEco", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_Semana", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Semana", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_Semana", System.Data.SqlDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Semana", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_MuestreadasEn", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "MuestreadasEn", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_MuestreadasEn", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "MuestreadasEn", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_Observaciones", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Observaciones", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_Observaciones", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Observaciones", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_IdUsuario", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "IdUsuario", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_IdUsuario", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdUsuario", System.Data.DataRowVersion.Original, null)
     });
     //
     // sqlConn
     //
     this.sqlConn.ConnectionString = ((string)(configurationAppSettings.GetValue("sqlConn.ConnectionString", typeof(string))));
     this.sqlConn.FireInfoMessageEventOnUserErrors = false;
     //
     // sqlInsertCommand1
     //
     this.sqlInsertCommand1.CommandText = resources.GetString("sqlInsertCommand1.CommandText");
     this.sqlInsertCommand1.Connection  = this.sqlConn;
     this.sqlInsertCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@FOLIO", System.Data.SqlDbType.Char, 0, "FOLIO"),
         new System.Data.SqlClient.SqlParameter("@IdObra", System.Data.SqlDbType.NVarChar, 0, "IdObra"),
         new System.Data.SqlClient.SqlParameter("@ConsObra", System.Data.SqlDbType.SmallInt, 0, "ConsObra"),
         new System.Data.SqlClient.SqlParameter("@FMuestreo", System.Data.SqlDbType.SmallDateTime, 0, "FMuestreo"),
         new System.Data.SqlClient.SqlParameter("@FEnsaye", System.Data.SqlDbType.SmallDateTime, 0, "FEnsaye"),
         new System.Data.SqlClient.SqlParameter("@FInforme", System.Data.SqlDbType.SmallDateTime, 0, "FInforme"),
         new System.Data.SqlClient.SqlParameter("@NoEco", System.Data.SqlDbType.SmallInt, 0, "NoEco"),
         new System.Data.SqlClient.SqlParameter("@Semana", System.Data.SqlDbType.SmallInt, 0, "Semana"),
         new System.Data.SqlClient.SqlParameter("@MuestreadasEn", System.Data.SqlDbType.NVarChar, 0, "MuestreadasEn"),
         new System.Data.SqlClient.SqlParameter("@Observaciones", System.Data.SqlDbType.NVarChar, 0, "Observaciones"),
         new System.Data.SqlClient.SqlParameter("@IdUsuario", System.Data.SqlDbType.VarChar, 0, "IdUsuario")
     });
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = resources.GetString("sqlSelectCommand1.CommandText");
     this.sqlSelectCommand1.Connection  = this.sqlConn;
     //
     // sqlUpdateCommand1
     //
     this.sqlUpdateCommand1.CommandText = resources.GetString("sqlUpdateCommand1.CommandText");
     this.sqlUpdateCommand1.Connection  = this.sqlConn;
     this.sqlUpdateCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@FOLIO", System.Data.SqlDbType.Char, 0, "FOLIO"),
         new System.Data.SqlClient.SqlParameter("@IdObra", System.Data.SqlDbType.NVarChar, 0, "IdObra"),
         new System.Data.SqlClient.SqlParameter("@ConsObra", System.Data.SqlDbType.SmallInt, 0, "ConsObra"),
         new System.Data.SqlClient.SqlParameter("@FMuestreo", System.Data.SqlDbType.SmallDateTime, 0, "FMuestreo"),
         new System.Data.SqlClient.SqlParameter("@FEnsaye", System.Data.SqlDbType.SmallDateTime, 0, "FEnsaye"),
         new System.Data.SqlClient.SqlParameter("@FInforme", System.Data.SqlDbType.SmallDateTime, 0, "FInforme"),
         new System.Data.SqlClient.SqlParameter("@NoEco", System.Data.SqlDbType.SmallInt, 0, "NoEco"),
         new System.Data.SqlClient.SqlParameter("@Semana", System.Data.SqlDbType.SmallInt, 0, "Semana"),
         new System.Data.SqlClient.SqlParameter("@MuestreadasEn", System.Data.SqlDbType.NVarChar, 0, "MuestreadasEn"),
         new System.Data.SqlClient.SqlParameter("@Observaciones", System.Data.SqlDbType.NVarChar, 0, "Observaciones"),
         new System.Data.SqlClient.SqlParameter("@IdUsuario", System.Data.SqlDbType.VarChar, 0, "IdUsuario"),
         new System.Data.SqlClient.SqlParameter("@Original_FOLIO", System.Data.SqlDbType.Char, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FOLIO", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_IdObra", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "IdObra", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_IdObra", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdObra", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_ConsObra", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "ConsObra", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_ConsObra", System.Data.SqlDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "ConsObra", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_FMuestreo", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "FMuestreo", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_FMuestreo", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FMuestreo", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_FEnsaye", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "FEnsaye", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_FEnsaye", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FEnsaye", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_FInforme", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "FInforme", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_FInforme", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "FInforme", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_NoEco", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "NoEco", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_NoEco", System.Data.SqlDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "NoEco", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_Semana", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Semana", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_Semana", System.Data.SqlDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Semana", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_MuestreadasEn", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "MuestreadasEn", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_MuestreadasEn", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "MuestreadasEn", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_Observaciones", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Observaciones", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_Observaciones", System.Data.SqlDbType.NVarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Observaciones", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@IsNull_IdUsuario", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "IdUsuario", System.Data.DataRowVersion.Original, true, null, "", "", ""),
         new System.Data.SqlClient.SqlParameter("@Original_IdUsuario", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "IdUsuario", System.Data.DataRowVersion.Original, null)
     });
     //
     // dsSoldaMdor1
     //
     this.dsSoldaMdor1.DataSetName             = "dsSoldaMdor";
     this.dsSoldaMdor1.Locale                  = new System.Globalization.CultureInfo("es-MX");
     this.dsSoldaMdor1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Controls.Add(this.buscaBtn1);
     this.panel2.Controls.Add(this.txtUsrMov);
     this.panel2.Controls.Add(this.label11);
     this.panel2.Controls.Add(this.txtObserva);
     this.panel2.Controls.Add(this.txtMuestreadasen);
     this.panel2.Controls.Add(this.txtSemana);
     this.panel2.Controls.Add(this.cmbNoeco);
     this.panel2.Controls.Add(this.dtpFinforme);
     this.panel2.Controls.Add(this.dtpFensaye);
     this.panel2.Controls.Add(this.dtpFmuestreo);
     this.panel2.Controls.Add(this.txtConsecutivo);
     this.panel2.Controls.Add(this.cmbIdObra);
     this.panel2.Controls.Add(this.txtFolio);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.label8);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.label6);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Location = new System.Drawing.Point(24, 96);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(536, 320);
     this.panel2.TabIndex = 4;
     //
     // buscaBtn1
     //
     this.buscaBtn1.AnchoColTit  = true;
     this.buscaBtn1.AnchoDlgBusq = 675;
     this.buscaBtn1.BackColor    = System.Drawing.Color.Transparent;
     this.buscaBtn1.Datos        = this.dsSoldaMdor1.SoldaMdor;
     this.buscaBtn1.Icon         = ((System.Drawing.Icon)(resources.GetObject("buscaBtn1.Icon")));
     this.buscaBtn1.Location     = new System.Drawing.Point(202, 6);
     this.buscaBtn1.Name         = "buscaBtn1";
     this.buscaBtn1.Size         = new System.Drawing.Size(64, 64);
     this.buscaBtn1.TabIndex     = 20;
     //
     // txtObserva
     //
     this.txtObserva.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.Observaciones", true));
     this.txtObserva.Location   = new System.Drawing.Point(126, 238);
     this.txtObserva.MaxLength  = 512;
     this.txtObserva.Multiline  = true;
     this.txtObserva.Name       = "txtObserva";
     this.txtObserva.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtObserva.Size       = new System.Drawing.Size(394, 68);
     this.txtObserva.TabIndex   = 19;
     this.txtObserva.Text       = "textBox5";
     //
     // txtMuestreadasen
     //
     this.txtMuestreadasen.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.MuestreadasEn", true));
     this.txtMuestreadasen.Location = new System.Drawing.Point(126, 214);
     this.txtMuestreadasen.Name     = "txtMuestreadasen";
     this.txtMuestreadasen.Size     = new System.Drawing.Size(100, 20);
     this.txtMuestreadasen.TabIndex = 18;
     this.txtMuestreadasen.Text     = "textBox4";
     //
     // txtSemana
     //
     this.txtSemana.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.Semana", true));
     this.txtSemana.Location  = new System.Drawing.Point(126, 190);
     this.txtSemana.MaxLength = 2;
     this.txtSemana.Name      = "txtSemana";
     this.txtSemana.Size      = new System.Drawing.Size(66, 20);
     this.txtSemana.TabIndex  = 17;
     this.txtSemana.Text      = "textBox3";
     //
     // cmbNoeco
     //
     this.cmbNoeco.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.dsSoldaMdor1, "SoldaMdor.NoEco", true));
     this.cmbNoeco.DataSource    = this.dsLaboratorista1.Laboratorista;
     this.cmbNoeco.DisplayMember = "Laboratorista";
     this.cmbNoeco.Location      = new System.Drawing.Point(126, 166);
     this.cmbNoeco.Name          = "cmbNoeco";
     this.cmbNoeco.Size          = new System.Drawing.Size(392, 21);
     this.cmbNoeco.TabIndex      = 16;
     this.cmbNoeco.ValueMember   = "NoEco";
     //
     // dsLaboratorista1
     //
     this.dsLaboratorista1.DataSetName             = "dsLaboratorista";
     this.dsLaboratorista1.Locale                  = new System.Globalization.CultureInfo("es-MX");
     this.dsLaboratorista1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // dtpFinforme
     //
     this.dtpFinforme.CustomFormat = "dd/MM/yyyy";
     this.dtpFinforme.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.FInforme", true));
     this.dtpFinforme.Format   = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFinforme.Location = new System.Drawing.Point(126, 142);
     this.dtpFinforme.Name     = "dtpFinforme";
     this.dtpFinforme.Size     = new System.Drawing.Size(84, 20);
     this.dtpFinforme.TabIndex = 15;
     //
     // dtpFensaye
     //
     this.dtpFensaye.CustomFormat = "dd/MM/yyyy";
     this.dtpFensaye.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.FEnsaye", true));
     this.dtpFensaye.Format   = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFensaye.Location = new System.Drawing.Point(126, 118);
     this.dtpFensaye.Name     = "dtpFensaye";
     this.dtpFensaye.Size     = new System.Drawing.Size(84, 20);
     this.dtpFensaye.TabIndex = 14;
     //
     // dtpFmuestreo
     //
     this.dtpFmuestreo.CustomFormat = "dd/MM/yyyy";
     this.dtpFmuestreo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.FMuestreo", true));
     this.dtpFmuestreo.Format   = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFmuestreo.Location = new System.Drawing.Point(126, 94);
     this.dtpFmuestreo.Name     = "dtpFmuestreo";
     this.dtpFmuestreo.Size     = new System.Drawing.Size(84, 20);
     this.dtpFmuestreo.TabIndex = 13;
     //
     // txtConsecutivo
     //
     this.txtConsecutivo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.ConsObra", true));
     this.txtConsecutivo.Location  = new System.Drawing.Point(126, 70);
     this.txtConsecutivo.MaxLength = 4;
     this.txtConsecutivo.Name      = "txtConsecutivo";
     this.txtConsecutivo.Size      = new System.Drawing.Size(66, 20);
     this.txtConsecutivo.TabIndex  = 12;
     this.txtConsecutivo.Text      = "textBox2";
     //
     // cmbIdObra
     //
     this.cmbIdObra.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.dsSoldaMdor1, "SoldaMdor.IdObra", true));
     this.cmbIdObra.DataSource    = this.dsBusObra1;
     this.cmbIdObra.DisplayMember = "Obra.Idobra";
     this.cmbIdObra.Location      = new System.Drawing.Point(126, 46);
     this.cmbIdObra.Name          = "cmbIdObra";
     this.cmbIdObra.Size          = new System.Drawing.Size(66, 21);
     this.cmbIdObra.TabIndex      = 11;
     this.cmbIdObra.ValueMember   = "Obra.Idobra";
     //
     // dsBusObra1
     //
     this.dsBusObra1.DataSetName             = "dsBusObra";
     this.dsBusObra1.Locale                  = new System.Globalization.CultureInfo("es-MX");
     this.dsBusObra1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtFolio
     //
     this.txtFolio.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.FOLIO", true));
     this.txtFolio.Location  = new System.Drawing.Point(126, 22);
     this.txtFolio.MaxLength = 10;
     this.txtFolio.Name      = "txtFolio";
     this.txtFolio.Size      = new System.Drawing.Size(64, 20);
     this.txtFolio.TabIndex  = 10;
     this.txtFolio.Text      = "textBox1";
     //
     // label10
     //
     this.label10.AutoSize  = true;
     this.label10.Location  = new System.Drawing.Point(30, 240);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(81, 13);
     this.label10.TabIndex  = 9;
     this.label10.Text      = "Observaciones:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.Location  = new System.Drawing.Point(25, 216);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(86, 13);
     this.label9.TabIndex  = 8;
     this.label9.Text      = "Muestreadas en:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Location  = new System.Drawing.Point(63, 192);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(49, 13);
     this.label8.TabIndex  = 7;
     this.label8.Text      = "Semana:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Location  = new System.Drawing.Point(36, 168);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(75, 13);
     this.label7.TabIndex  = 6;
     this.label7.Text      = "Ensayado por:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Location  = new System.Drawing.Point(33, 144);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(77, 13);
     this.label6.TabIndex  = 5;
     this.label6.Text      = "Fecha informe:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Location  = new System.Drawing.Point(19, 120);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(92, 13);
     this.label5.TabIndex  = 4;
     this.label5.Text      = "Fecha de ensaye:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Location  = new System.Drawing.Point(8, 96);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(101, 13);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "Fecha de muestreo:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(43, 72);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(69, 13);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Consecutivo:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(81, 48);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(33, 13);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Obra:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(72, 24);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(41, 13);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "FOLIO:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // sqlDABusObra
     //
     this.sqlDABusObra.SelectCommand = this.sqlCommand1;
     this.sqlDABusObra.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Obra", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("Idobra", "Idobra"),
             new System.Data.Common.DataColumnMapping("Ubicacion", "Ubicacion"),
             new System.Data.Common.DataColumnMapping("RFC", "RFC"),
             new System.Data.Common.DataColumnMapping("Facturar", "Facturar")
         })
     });
     //
     // sqlCommand1
     //
     this.sqlCommand1.CommandText = "SELECT Obra.Idobra, Obra.Ubicacion, Obra.RFC, Razonsocial.Facturar FROM Obra LEFT" +
                                    " OUTER JOIN Razonsocial ON Obra.IdCliente = Razonsocial.IdCliente AND Obra.RFC =" +
                                    " Razonsocial.RFC ORDER BY Obra.Idobra";
     this.sqlCommand1.Connection = this.sqlConn;
     //
     // sqlDALaboratorista
     //
     this.sqlDALaboratorista.SelectCommand = this.sqlSelectCommand5;
     this.sqlDALaboratorista.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Laboratorista", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("NoEco", "NoEco"),
             new System.Data.Common.DataColumnMapping("Laboratorista", "Laboratorista"),
             new System.Data.Common.DataColumnMapping("IdZona", "IdZona"),
             new System.Data.Common.DataColumnMapping("IdNivel", "IdNivel"),
             new System.Data.Common.DataColumnMapping("Fechai", "Fechai")
         })
     });
     //
     // sqlSelectCommand5
     //
     this.sqlSelectCommand5.CommandText = "SELECT NoEco, LTRIM(STR(NoEco)) + \' \' + Laboratorista AS Laboratorista, IdZona, I" +
                                          "dNivel, Fechai FROM Laboratorista ORDER BY NoEco";
     this.sqlSelectCommand5.Connection = this.sqlConn;
     //
     // txtUsrMov
     //
     this.txtUsrMov.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsSoldaMdor1, "SoldaMdor.IdUsuario", true));
     this.txtUsrMov.Location = new System.Drawing.Point(410, 24);
     this.txtUsrMov.Name     = "txtUsrMov";
     this.txtUsrMov.ReadOnly = true;
     this.txtUsrMov.Size     = new System.Drawing.Size(68, 20);
     this.txtUsrMov.TabIndex = 24;
     //
     // label11
     //
     this.label11.AutoSize  = true;
     this.label11.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Red;
     this.label11.Location  = new System.Drawing.Point(349, 28);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(54, 13);
     this.label11.TabIndex  = 23;
     this.label11.Text      = "Usuario:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // SoldaMdor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(584, 453);
     this.Controls.Add(this.panel2);
     this.DAGeneral   = this.sqlDASoldaMdor;
     this.dsGeneral   = this.dsSoldaMdor1;
     this.Name        = "SoldaMdor";
     this.NombreTabla = "SoldaMdor";
     this.Text        = "Muestreador de acero";
     this.Load       += new System.EventHandler(this.SoldaMdor_Load);
     this.Controls.SetChildIndex(this.panel2, 0);
     this.Controls.SetChildIndex(this.statusBar1, 0);
     this.Controls.SetChildIndex(this.panelToolBar, 0);
     this.panelToolBar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsSoldaMdor1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsLaboratorista1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBusObra1)).EndInit();
     this.ResumeLayout(false);
 }
Example #45
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.pnlBottom                  = new System.Windows.Forms.Panel();
     this.btnCustomEntry             = new System.Windows.Forms.Button();
     this.btnUSB                     = new System.Windows.Forms.Button();
     this.gbxTest                    = new System.Windows.Forms.GroupBox();
     this.label1                     = new System.Windows.Forms.Label();
     this.btnGen                     = new System.Windows.Forms.Button();
     this.txImInfo                   = new System.Windows.Forms.TextBox();
     this.panel1                     = new System.Windows.Forms.Panel();
     this.btnCustomCode              = new System.Windows.Forms.Button();
     this.groupBox3                  = new System.Windows.Forms.GroupBox();
     this.cbxRes                     = new GroupedComboBox();
     this.btnAbout                   = new System.Windows.Forms.Button();
     this.btnChecksum                = new wyDay.Controls.SplitButton();
     this.cmsChecksum                = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mD5ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSha1                    = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSha256                  = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSha384                  = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSha512                  = new System.Windows.Forms.ToolStripMenuItem();
     this.gbxBckd                    = new System.Windows.Forms.GroupBox();
     this.cbxBackType                = new System.Windows.Forms.ComboBox();
     this.txtBackFile                = new System.Windows.Forms.TextBox();
     this.btnBackBrowse              = new System.Windows.Forms.Button();
     this.gbxTitle                   = new System.Windows.Forms.GroupBox();
     this.txtTitle                   = new System.Windows.Forms.TextBox();
     this.btnRemISO                  = new System.Windows.Forms.Button();
     this.groupBox1                  = new System.Windows.Forms.GroupBox();
     this.tbxSize                    = new System.Windows.Forms.TextBox();
     this.lvIsos                     = new System.Windows.Forms.DataGridView();
     this.clmnName                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clmnSize                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clmnCate                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clmnDescr                  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clmnFilePath               = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clmnCode                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.menuStrip                  = new System.Windows.Forms.MenuStrip();
     this.sharpBootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2        = new System.Windows.Forms.ToolStripSeparator();
     this.automaticallyAddISOInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1     = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.addISOToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mniUpdate = new System.Windows.Forms.ToolStripMenuItem();
     this.updateAvailableToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.languageToolStripMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     this.addFilesToolStripMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     this.installBootloaderOnUSBKeyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editThemeToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.lblDragHere    = new System.Windows.Forms.Label();
     this.pnlBottom.SuspendLayout();
     this.gbxTest.SuspendLayout();
     this.panel1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.cmsChecksum.SuspendLayout();
     this.gbxBckd.SuspendLayout();
     this.gbxTitle.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lvIsos)).BeginInit();
     this.menuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlBottom
     //
     this.pnlBottom.Controls.Add(this.btnCustomEntry);
     this.pnlBottom.Controls.Add(this.btnUSB);
     this.pnlBottom.Controls.Add(this.gbxTest);
     this.pnlBottom.Controls.Add(this.btnGen);
     this.pnlBottom.Controls.Add(this.txImInfo);
     resources.ApplyResources(this.pnlBottom, "pnlBottom");
     this.pnlBottom.Name = "pnlBottom";
     //
     // btnCustomEntry
     //
     resources.ApplyResources(this.btnCustomEntry, "btnCustomEntry");
     this.btnCustomEntry.Image = global::SharpBoot.Properties.Resources.edit_package;
     this.btnCustomEntry.Name  = "btnCustomEntry";
     this.btnCustomEntry.UseVisualStyleBackColor = true;
     this.btnCustomEntry.Click += new System.EventHandler(this.btnCustomEntry_Click);
     //
     // btnUSB
     //
     resources.ApplyResources(this.btnUSB, "btnUSB");
     this.btnUSB.Image = global::SharpBoot.Properties.Resources.drive_disk;
     this.btnUSB.Name  = "btnUSB";
     this.btnUSB.UseVisualStyleBackColor = true;
     this.btnUSB.Click += new System.EventHandler(this.btnUSB_Click);
     //
     // gbxTest
     //
     this.gbxTest.AllowDrop = true;
     resources.ApplyResources(this.gbxTest, "gbxTest");
     this.gbxTest.Controls.Add(this.label1);
     this.gbxTest.Name       = "gbxTest";
     this.gbxTest.TabStop    = false;
     this.gbxTest.DragDrop  += new System.Windows.Forms.DragEventHandler(this.gbxTest_DragDrop);
     this.gbxTest.DragEnter += new System.Windows.Forms.DragEventHandler(this.gbxTest_DragEnter);
     //
     // label1
     //
     this.label1.AllowDrop = true;
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name       = "label1";
     this.label1.DragDrop  += new System.Windows.Forms.DragEventHandler(this.gbxTest_DragDrop);
     this.label1.DragEnter += new System.Windows.Forms.DragEventHandler(this.gbxTest_DragEnter);
     //
     // btnGen
     //
     resources.ApplyResources(this.btnGen, "btnGen");
     this.btnGen.Image = global::SharpBoot.Properties.Resources.cd;
     this.btnGen.Name  = "btnGen";
     this.btnGen.UseVisualStyleBackColor = true;
     this.btnGen.Click += new System.EventHandler(this.btnGen_Click);
     //
     // txImInfo
     //
     resources.ApplyResources(this.txImInfo, "txImInfo");
     this.txImInfo.BackColor = System.Drawing.SystemColors.Window;
     this.txImInfo.Name      = "txImInfo";
     this.txImInfo.ReadOnly  = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnCustomCode);
     this.panel1.Controls.Add(this.groupBox3);
     this.panel1.Controls.Add(this.btnAbout);
     this.panel1.Controls.Add(this.btnChecksum);
     this.panel1.Controls.Add(this.gbxBckd);
     this.panel1.Controls.Add(this.gbxTitle);
     this.panel1.Controls.Add(this.btnRemISO);
     this.panel1.Controls.Add(this.groupBox1);
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Name = "panel1";
     //
     // btnCustomCode
     //
     resources.ApplyResources(this.btnCustomCode, "btnCustomCode");
     this.btnCustomCode.Image = global::SharpBoot.Properties.Resources.script_edit;
     this.btnCustomCode.Name  = "btnCustomCode";
     this.btnCustomCode.UseVisualStyleBackColor = true;
     this.btnCustomCode.Click += new System.EventHandler(this.btnCustomCode_Click);
     //
     // groupBox3
     //
     resources.ApplyResources(this.groupBox3, "groupBox3");
     this.groupBox3.Controls.Add(this.cbxRes);
     this.groupBox3.Name    = "groupBox3";
     this.groupBox3.TabStop = false;
     //
     // cbxRes
     //
     this.cbxRes.DataSource        = null;
     this.cbxRes.DisplayMember     = "Disp";
     this.cbxRes.DropDownHeight    = 110;
     this.cbxRes.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxRes.FormattingEnabled = true;
     this.cbxRes.GroupMember       = "Ratio";
     resources.ApplyResources(this.cbxRes, "cbxRes");
     this.cbxRes.Name        = "cbxRes";
     this.cbxRes.ValueMember = "Val";
     //
     // btnAbout
     //
     resources.ApplyResources(this.btnAbout, "btnAbout");
     this.btnAbout.Image = global::SharpBoot.Properties.Resources.question;
     this.btnAbout.Name  = "btnAbout";
     this.btnAbout.UseVisualStyleBackColor = true;
     this.btnAbout.Click += new System.EventHandler(this.button1_Click);
     //
     // btnChecksum
     //
     resources.ApplyResources(this.btnChecksum, "btnChecksum");
     this.btnChecksum.ContextMenuStrip        = this.cmsChecksum;
     this.btnChecksum.Image                   = global::SharpBoot.Properties.Resources.gear_in;
     this.btnChecksum.Name                    = "btnChecksum";
     this.btnChecksum.SplitMenuStrip          = this.cmsChecksum;
     this.btnChecksum.UseVisualStyleBackColor = true;
     this.btnChecksum.Click                  += new System.EventHandler(this.btnChecksum_Click);
     //
     // cmsChecksum
     //
     this.cmsChecksum.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mD5ToolStripMenuItem,
         this.btnSha1,
         this.btnSha256,
         this.btnSha384,
         this.btnSha512
     });
     this.cmsChecksum.Name = "cmsChecksum";
     resources.ApplyResources(this.cmsChecksum, "cmsChecksum");
     //
     // mD5ToolStripMenuItem
     //
     this.mD5ToolStripMenuItem.Name = "mD5ToolStripMenuItem";
     resources.ApplyResources(this.mD5ToolStripMenuItem, "mD5ToolStripMenuItem");
     this.mD5ToolStripMenuItem.Click += new System.EventHandler(this.mD5ToolStripMenuItem_Click);
     //
     // btnSha1
     //
     this.btnSha1.Name = "btnSha1";
     resources.ApplyResources(this.btnSha1, "btnSha1");
     this.btnSha1.Click += new System.EventHandler(this.btnSha1_Click);
     //
     // btnSha256
     //
     this.btnSha256.Name = "btnSha256";
     resources.ApplyResources(this.btnSha256, "btnSha256");
     this.btnSha256.Click += new System.EventHandler(this.btnSha256_Click);
     //
     // btnSha384
     //
     this.btnSha384.Name = "btnSha384";
     resources.ApplyResources(this.btnSha384, "btnSha384");
     this.btnSha384.Click += new System.EventHandler(this.btnSha384_Click);
     //
     // btnSha512
     //
     this.btnSha512.Name = "btnSha512";
     resources.ApplyResources(this.btnSha512, "btnSha512");
     this.btnSha512.Click += new System.EventHandler(this.btnSha512_Click);
     //
     // gbxBckd
     //
     resources.ApplyResources(this.gbxBckd, "gbxBckd");
     this.gbxBckd.Controls.Add(this.cbxBackType);
     this.gbxBckd.Controls.Add(this.txtBackFile);
     this.gbxBckd.Controls.Add(this.btnBackBrowse);
     this.gbxBckd.Name    = "gbxBckd";
     this.gbxBckd.TabStop = false;
     //
     // cbxBackType
     //
     this.cbxBackType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxBackType.FormattingEnabled = true;
     this.cbxBackType.Items.AddRange(new object[] {
         resources.GetString("cbxBackType.Items"),
         resources.GetString("cbxBackType.Items1"),
         resources.GetString("cbxBackType.Items2")
     });
     resources.ApplyResources(this.cbxBackType, "cbxBackType");
     this.cbxBackType.Name = "cbxBackType";
     this.cbxBackType.SelectedIndexChanged += new System.EventHandler(this.cbxBackType_SelectedIndexChanged);
     //
     // txtBackFile
     //
     this.txtBackFile.BackColor = System.Drawing.SystemColors.Window;
     resources.ApplyResources(this.txtBackFile, "txtBackFile");
     this.txtBackFile.Name         = "txtBackFile";
     this.txtBackFile.ReadOnly     = true;
     this.txtBackFile.TextChanged += new System.EventHandler(this.txtBackFile_TextChanged);
     //
     // btnBackBrowse
     //
     resources.ApplyResources(this.btnBackBrowse, "btnBackBrowse");
     this.btnBackBrowse.Image = global::SharpBoot.Properties.Resources.folder;
     this.btnBackBrowse.Name  = "btnBackBrowse";
     this.btnBackBrowse.UseVisualStyleBackColor = true;
     this.btnBackBrowse.Click += new System.EventHandler(this.btnBackBrowse_Click);
     //
     // gbxTitle
     //
     resources.ApplyResources(this.gbxTitle, "gbxTitle");
     this.gbxTitle.Controls.Add(this.txtTitle);
     this.gbxTitle.Name    = "gbxTitle";
     this.gbxTitle.TabStop = false;
     //
     // txtTitle
     //
     resources.ApplyResources(this.txtTitle, "txtTitle");
     this.txtTitle.Name         = "txtTitle";
     this.txtTitle.TextChanged += new System.EventHandler(this.txtTitle_TextChanged);
     //
     // btnRemISO
     //
     resources.ApplyResources(this.btnRemISO, "btnRemISO");
     this.btnRemISO.Image = global::SharpBoot.Properties.Resources.cd_delete1;
     this.btnRemISO.Name  = "btnRemISO";
     this.btnRemISO.UseVisualStyleBackColor = true;
     this.btnRemISO.Click += new System.EventHandler(this.btnRemISO_Click);
     //
     // groupBox1
     //
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.Controls.Add(this.tbxSize);
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     //
     // tbxSize
     //
     resources.ApplyResources(this.tbxSize, "tbxSize");
     this.tbxSize.Name     = "tbxSize";
     this.tbxSize.ReadOnly = true;
     //
     // lvIsos
     //
     this.lvIsos.AllowDrop                   = true;
     this.lvIsos.AllowUserToAddRows          = false;
     this.lvIsos.AllowUserToResizeRows       = false;
     this.lvIsos.BackgroundColor             = System.Drawing.SystemColors.Window;
     this.lvIsos.BorderStyle                 = System.Windows.Forms.BorderStyle.None;
     this.lvIsos.CellBorderStyle             = System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical;
     this.lvIsos.ColumnHeadersBorderStyle    = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.lvIsos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.lvIsos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.clmnName,
         this.clmnSize,
         this.clmnCate,
         this.clmnDescr,
         this.clmnFilePath,
         this.clmnCode
     });
     resources.ApplyResources(this.lvIsos, "lvIsos");
     this.lvIsos.GridColor         = System.Drawing.SystemColors.Window;
     this.lvIsos.MultiSelect       = false;
     this.lvIsos.Name              = "lvIsos";
     this.lvIsos.RowHeadersVisible = false;
     this.lvIsos.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.lvIsos.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.lvIsos_CellValueChanged);
     this.lvIsos.RowsAdded        += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.lvIsos_RowsAdded);
     this.lvIsos.RowsRemoved      += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.lvIsos_RowsRemoved);
     this.lvIsos.SelectionChanged += new System.EventHandler(this.lvIsos_SelectionChanged);
     this.lvIsos.UserDeletingRow  += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.lvIsos_UserDeletingRow);
     this.lvIsos.DragDrop         += new System.Windows.Forms.DragEventHandler(this.lvIsos_DragDrop);
     this.lvIsos.DragEnter        += new System.Windows.Forms.DragEventHandler(this.lvIsos_DragEnter);
     //
     // clmnName
     //
     resources.ApplyResources(this.clmnName, "clmnName");
     this.clmnName.Name = "clmnName";
     //
     // clmnSize
     //
     resources.ApplyResources(this.clmnSize, "clmnSize");
     this.clmnSize.Name     = "clmnSize";
     this.clmnSize.ReadOnly = true;
     //
     // clmnCate
     //
     resources.ApplyResources(this.clmnCate, "clmnCate");
     this.clmnCate.Name = "clmnCate";
     //
     // clmnDescr
     //
     resources.ApplyResources(this.clmnDescr, "clmnDescr");
     this.clmnDescr.Name = "clmnDescr";
     //
     // clmnFilePath
     //
     resources.ApplyResources(this.clmnFilePath, "clmnFilePath");
     this.clmnFilePath.Name     = "clmnFilePath";
     this.clmnFilePath.ReadOnly = true;
     //
     // clmnCode
     //
     resources.ApplyResources(this.clmnCode, "clmnCode");
     this.clmnCode.Name = "clmnCode";
     //
     // menuStrip
     //
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.sharpBootToolStripMenuItem,
         this.addISOToolStripMenuItem,
         this.mniUpdate,
         this.updateAvailableToolStripMenuItem,
         this.languageToolStripMenuItem,
         this.addFilesToolStripMenuItem,
         this.installBootloaderOnUSBKeyToolStripMenuItem,
         this.editThemeToolStripMenuItem
     });
     resources.ApplyResources(this.menuStrip, "menuStrip");
     this.menuStrip.Name = "menuStrip";
     //
     // sharpBootToolStripMenuItem
     //
     this.sharpBootToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.openToolStripMenuItem,
         this.saveToolStripMenuItem,
         this.toolStripSeparator2,
         this.automaticallyAddISOInfoToolStripMenuItem,
         this.toolStripSeparator1,
         this.exitToolStripMenuItem
     });
     this.sharpBootToolStripMenuItem.Name = "sharpBootToolStripMenuItem";
     resources.ApplyResources(this.sharpBootToolStripMenuItem, "sharpBootToolStripMenuItem");
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.folder;
     this.openToolStripMenuItem.Name  = "openToolStripMenuItem";
     resources.ApplyResources(this.openToolStripMenuItem, "openToolStripMenuItem");
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.file_save_as;
     this.saveToolStripMenuItem.Name  = "saveToolStripMenuItem";
     resources.ApplyResources(this.saveToolStripMenuItem, "saveToolStripMenuItem");
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
     //
     // automaticallyAddISOInfoToolStripMenuItem
     //
     this.automaticallyAddISOInfoToolStripMenuItem.Checked    = true;
     this.automaticallyAddISOInfoToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.automaticallyAddISOInfoToolStripMenuItem.Name       = "automaticallyAddISOInfoToolStripMenuItem";
     resources.ApplyResources(this.automaticallyAddISOInfoToolStripMenuItem, "automaticallyAddISOInfoToolStripMenuItem");
     this.automaticallyAddISOInfoToolStripMenuItem.Click += new System.EventHandler(this.automaticallyAddISOInfoToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.door_out;
     this.exitToolStripMenuItem.Name  = "exitToolStripMenuItem";
     resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // addISOToolStripMenuItem
     //
     this.addISOToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.cd_add;
     this.addISOToolStripMenuItem.Name  = "addISOToolStripMenuItem";
     resources.ApplyResources(this.addISOToolStripMenuItem, "addISOToolStripMenuItem");
     this.addISOToolStripMenuItem.Click += new System.EventHandler(this.addISOToolStripMenuItem_Click);
     //
     // mniUpdate
     //
     this.mniUpdate.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.mniUpdate.Image     = global::SharpBoot.Properties.Resources.update_anim;
     this.mniUpdate.Name      = "mniUpdate";
     resources.ApplyResources(this.mniUpdate, "mniUpdate");
     //
     // updateAvailableToolStripMenuItem
     //
     this.updateAvailableToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.updateAvailableToolStripMenuItem.Image     = global::SharpBoot.Properties.Resources.package_go;
     this.updateAvailableToolStripMenuItem.Name      = "updateAvailableToolStripMenuItem";
     resources.ApplyResources(this.updateAvailableToolStripMenuItem, "updateAvailableToolStripMenuItem");
     this.updateAvailableToolStripMenuItem.Click += new System.EventHandler(this.updateAvailableToolStripMenuItem_Click);
     //
     // languageToolStripMenuItem
     //
     this.languageToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.languageToolStripMenuItem.Name      = "languageToolStripMenuItem";
     resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem");
     //
     // addFilesToolStripMenuItem
     //
     this.addFilesToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.page_white_add;
     this.addFilesToolStripMenuItem.Name  = "addFilesToolStripMenuItem";
     resources.ApplyResources(this.addFilesToolStripMenuItem, "addFilesToolStripMenuItem");
     this.addFilesToolStripMenuItem.Click += new System.EventHandler(this.addFilesToolStripMenuItem_Click);
     //
     // installBootloaderOnUSBKeyToolStripMenuItem
     //
     this.installBootloaderOnUSBKeyToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.compile1;
     this.installBootloaderOnUSBKeyToolStripMenuItem.Name  = "installBootloaderOnUSBKeyToolStripMenuItem";
     resources.ApplyResources(this.installBootloaderOnUSBKeyToolStripMenuItem, "installBootloaderOnUSBKeyToolStripMenuItem");
     this.installBootloaderOnUSBKeyToolStripMenuItem.Click += new System.EventHandler(this.btnInstBoot_Click);
     //
     // editThemeToolStripMenuItem
     //
     this.editThemeToolStripMenuItem.Image = global::SharpBoot.Properties.Resources.application_form_edit;
     this.editThemeToolStripMenuItem.Name  = "editThemeToolStripMenuItem";
     resources.ApplyResources(this.editThemeToolStripMenuItem, "editThemeToolStripMenuItem");
     this.editThemeToolStripMenuItem.Click += new System.EventHandler(this.editThemeToolStripMenuItem_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.DefaultExt = "sbt";
     resources.ApplyResources(this.openFileDialog, "openFileDialog");
     this.openFileDialog.SupportMultiDottedExtensions = true;
     //
     // saveFileDialog
     //
     this.saveFileDialog.DefaultExt = "sbt";
     resources.ApplyResources(this.saveFileDialog, "saveFileDialog");
     //
     // lblDragHere
     //
     resources.ApplyResources(this.lblDragHere, "lblDragHere");
     this.lblDragHere.BackColor = System.Drawing.Color.White;
     this.lblDragHere.ForeColor = System.Drawing.Color.DarkGray;
     this.lblDragHere.Name      = "lblDragHere";
     //
     // MainWindow
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.lblDragHere);
     this.Controls.Add(this.lvIsos);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.pnlBottom);
     this.Controls.Add(this.menuStrip);
     this.DoubleBuffered = true;
     this.Icon           = global::SharpBoot.Properties.Resources.logo;
     this.MainMenuStrip  = this.menuStrip;
     this.Name           = "MainWindow";
     this.Load          += new System.EventHandler(this.MainWindow_Load);
     this.SizeChanged   += new System.EventHandler(this.MainWindow_SizeChanged);
     this.pnlBottom.ResumeLayout(false);
     this.pnlBottom.PerformLayout();
     this.gbxTest.ResumeLayout(false);
     this.gbxTest.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.cmsChecksum.ResumeLayout(false);
     this.gbxBckd.ResumeLayout(false);
     this.gbxBckd.PerformLayout();
     this.gbxTitle.ResumeLayout(false);
     this.gbxTitle.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lvIsos)).EndInit();
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_discoverydocument));
     this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter    = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1   = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2   = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel2      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrPanel3      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrRichText1   = new DevExpress.XtraReports.UI.XRRichText();
     this.DetailReport  = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1       = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
     this.SubBand1      = new DevExpress.XtraReports.UI.SubBand();
     this.SubBand2      = new DevExpress.XtraReports.UI.SubBand();
     this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine3       = new DevExpress.XtraReports.UI.XRLine();
     this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrPageBreak1  = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine4       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine5       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine6       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel14     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrRichText3   = new DevExpress.XtraReports.UI.XRRichText();
     this.xrRichText4   = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLabel15     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine8       = new DevExpress.XtraReports.UI.XRLine();
     this.xrRichText5   = new DevExpress.XtraReports.UI.XRRichText();
     this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2       = new DevExpress.XtraReports.UI.DetailBand();
     this.SubBand3      = new DevExpress.XtraReports.UI.SubBand();
     this.SubBand4      = new DevExpress.XtraReports.UI.SubBand();
     this.xrRichText2   = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLabel11     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine7       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine9       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine10      = new DevExpress.XtraReports.UI.XRLine();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.Detail.HeightF       = 348.106F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Font    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TopMargin.HeightF = 48F;
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseFont = false;
     this.TopMargin.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPanel1
     //
     this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel3,
         this.xrPanel2,
         this.xrLabel2,
         this.xrLabel1
     });
     this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name                     = "xrPanel1";
     this.xrPanel1.SizeF                    = new System.Drawing.SizeF(650.0001F, 348.106F);
     this.xrPanel1.StylePriority.UseBorders = false;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(10.00009F, 9.999998F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(339.659F, 38.88802F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Project_Name";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI", 12F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(360F, 9.999998F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(280.0001F, 29.23355F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Project Manager Name";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(387.7315F, 10.00002F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(232.2685F, 35.67889F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Project_Name Description";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(383.5183F, 9.999998F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(236.4815F, 32.36149F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Business Area(s) Impacted";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrLabel8,
         this.xrPageInfo2,
         this.xrLabel7,
         this.xrLabel12
     });
     this.PageFooter.HeightF = 100F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(591.1459F, 48.69791F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85419F, 35.50002F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(462.5001F, 48.69791F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(128.6458F, 35.50002F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "page";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel8.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 48.69791F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 36.54169F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 14.7604F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(197.2917F, 33.93752F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Generated by ReadyCert ® for";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(197.2917F, 14.7604F);
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(452.7083F, 33.93752F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "CLIENT NAME";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrLabel4
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 60.4621F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(629.9999F, 75F);
     //
     // xrPanel3
     //
     this.xrPanel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText1,
         this.xrLabel3
     });
     this.xrPanel3.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 147.3345F);
     this.xrPanel3.Name          = "xrPanel3";
     this.xrPanel3.SizeF         = new System.Drawing.SizeF(630F, 184.9845F);
     //
     // xrTable1
     //
     this.xrTable1.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10.00002F, 50.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(609.9999F, 25F);
     this.xrTable1.StylePriority.UseFont    = false;
     this.xrTable1.StylePriority.UsePadding = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "BA Name";
     this.xrTableCell1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Is Active w/ Project";
     this.xrTableCell2.Weight = 1D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.CanShrink = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Text      = "table-cangrow/shrink";
     this.xrTableCell3.Weight    = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "xrTableCell4";
     this.xrTableCell4.Weight = 1D;
     //
     // xrRichText1
     //
     this.xrRichText1.Font                     = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText1.LocationFloat            = new DevExpress.Utils.PointFloat(10.00012F, 48.34136F);
     this.xrRichText1.Name                     = "xrRichText1";
     this.xrRichText1.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 3, 3, 100F);
     this.xrRichText1.SerializableRtfString    = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                    = new System.Drawing.SizeF(609.9999F, 126.6431F);
     this.xrRichText1.StylePriority.UseFont    = false;
     this.xrRichText1.StylePriority.UsePadding = false;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.ReportFooter,
         this.DetailReport1
     });
     this.DetailReport.Level = 0;
     this.DetailReport.Name  = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText5,
         this.xrRichText3,
         this.xrLine1,
         this.xrLabel5
     });
     this.Detail1.HeightF = 164.9306F;
     this.Detail1.Name    = "Detail1";
     this.Detail1.SubBands.AddRange(new DevExpress.XtraReports.UI.SubBand[] {
         this.SubBand1,
         this.SubBand2
     });
     //
     // xrLabel5
     //
     this.xrLabel5.Font                  = new System.Drawing.Font("Segoe UI", 16F);
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(650F, 44.22884F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "BA Name";
     //
     // SubBand1
     //
     this.SubBand1.HeightF = 33.10102F;
     this.SubBand1.Name    = "SubBand1";
     //
     // SubBand2
     //
     this.SubBand2.Font    = new System.Drawing.Font("Segoe UI", 9.75F);
     this.SubBand2.HeightF = 100F;
     this.SubBand2.Name    = "SubBand2";
     this.SubBand2.StylePriority.UseFont = false;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(20.00012F, 0F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(67.37854F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "BP Code";
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(1.766063E-05F, 44.22887F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(650F, 2F);
     //
     // xrLine3
     //
     this.xrLine3.LineDirection = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(17.67545F, 0F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(2.32468F, 23.00001F);
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel14,
         this.xrLine6,
         this.xrLine2,
         this.xrLine5,
         this.xrLabel13,
         this.xrLabel10,
         this.xrLine4,
         this.xrLabel9,
         this.xrPageBreak1
     });
     this.ReportFooter.HeightF = 469.1406F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(466.3543F, 231.125F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(124.7916F, 22.99998F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "Date";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLine4
     //
     this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(72.50004F, 221.7968F);
     this.xrLine4.Name          = "xrLine4";
     this.xrLine4.SizeF         = new System.Drawing.SizeF(314.8958F, 9.328125F);
     //
     // xrLabel10
     //
     this.xrLabel10.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(72.50004F, 231.125F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(124.7916F, 22.99998F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "Name";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                  = new System.Drawing.Font("Segoe UI", 14F);
     this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(72.50004F, 120.026F);
     this.xrLabel13.Name                  = "xrLabel13";
     this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                 = new System.Drawing.SizeF(124.7916F, 31.46352F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.Text                  = "Approved by:";
     //
     // xrLine5
     //
     this.xrLine5.LocationFloat = new DevExpress.Utils.PointFloat(72.50004F, 151.4896F);
     this.xrLine5.Name          = "xrLine5";
     this.xrLine5.SizeF         = new System.Drawing.SizeF(518.6458F, 9.328125F);
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(466.3543F, 221.7968F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(124.7916F, 9.328125F);
     //
     // xrLine6
     //
     this.xrLine6.LocationFloat = new DevExpress.Utils.PointFloat(72.50004F, 301.875F);
     this.xrLine6.Name          = "xrLine6";
     this.xrLine6.SizeF         = new System.Drawing.SizeF(314.8958F, 9.328125F);
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(72.50008F, 311.2031F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(124.7916F, 22.99998F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Title";
     //
     // xrRichText3
     //
     this.xrRichText3.Font                     = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText3.LocationFloat            = new DevExpress.Utils.PointFloat(28.6708F, 46.22887F);
     this.xrRichText3.Name                     = "xrRichText3";
     this.xrRichText3.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 3, 3, 100F);
     this.xrRichText3.SerializableRtfString    = resources.GetString("xrRichText3.SerializableRtfString");
     this.xrRichText3.SizeF                    = new System.Drawing.SizeF(296.3292F, 110.5717F);
     this.xrRichText3.StylePriority.UseFont    = false;
     this.xrRichText3.StylePriority.UsePadding = false;
     //
     // xrRichText4
     //
     this.xrRichText4.Font                     = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText4.LocationFloat            = new DevExpress.Utils.PointFloat(17.67545F, 0F);
     this.xrRichText4.Name                     = "xrRichText4";
     this.xrRichText4.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 3, 3, 100F);
     this.xrRichText4.SerializableRtfString    = resources.GetString("xrRichText4.SerializableRtfString");
     this.xrRichText4.SizeF                    = new System.Drawing.SizeF(296.3292F, 100F);
     this.xrRichText4.StylePriority.UseFont    = false;
     this.xrRichText4.StylePriority.UsePadding = false;
     //
     // xrLabel15
     //
     this.xrLabel15.Font                           = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(326.9955F, 2.288818E-05F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(303.0045F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "Business Process Description ";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLine8
     //
     this.xrLine8.LocationFloat = new DevExpress.Utils.PointFloat(20.00012F, 23.00002F);
     this.xrLine8.Name          = "xrLine8";
     this.xrLine8.SizeF         = new System.Drawing.SizeF(609.9999F, 2.03252F);
     //
     // xrRichText5
     //
     this.xrRichText5.Font                     = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText5.LocationFloat            = new DevExpress.Utils.PointFloat(336.9955F, 46.22887F);
     this.xrRichText5.Name                     = "xrRichText5";
     this.xrRichText5.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 3, 3, 100F);
     this.xrRichText5.SerializableRtfString    = resources.GetString("xrRichText5.SerializableRtfString");
     this.xrRichText5.SizeF                    = new System.Drawing.SizeF(296.3292F, 110.5717F);
     this.xrRichText5.StylePriority.UseFont    = false;
     this.xrRichText5.StylePriority.UsePadding = false;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.Level = 0;
     this.DetailReport1.Name  = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine7,
         this.xrLabel17,
         this.xrLabel15,
         this.xrLine8,
         this.xrLine3,
         this.xrLabel6
     });
     this.Detail2.HeightF = 25.03254F;
     this.Detail2.Name    = "Detail2";
     this.Detail2.SubBands.AddRange(new DevExpress.XtraReports.UI.SubBand[] {
         this.SubBand3,
         this.SubBand4
     });
     //
     // SubBand3
     //
     this.SubBand3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine10,
         this.xrLine9,
         this.xrLabel16,
         this.xrLabel11
     });
     this.SubBand3.HeightF = 23.00001F;
     this.SubBand3.Name    = "SubBand3";
     //
     // SubBand4
     //
     this.SubBand4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText4,
         this.xrRichText2
     });
     this.SubBand4.HeightF = 100F;
     this.SubBand4.Name    = "SubBand4";
     //
     // xrRichText2
     //
     this.xrRichText2.Font                     = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText2.LocationFloat            = new DevExpress.Utils.PointFloat(326.9955F, 0F);
     this.xrRichText2.Name                     = "xrRichText2";
     this.xrRichText2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 3, 3, 100F);
     this.xrRichText2.SerializableRtfString    = resources.GetString("xrRichText2.SerializableRtfString");
     this.xrRichText2.SizeF                    = new System.Drawing.SizeF(301.0067F, 100F);
     this.xrRichText2.StylePriority.UseFont    = false;
     this.xrRichText2.StylePriority.UsePadding = false;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(20.00012F, 0F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(294.0046F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "As-Is";
     //
     // xrLabel16
     //
     this.xrLabel16.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(326.9955F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(303.0044F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "To-Be";
     //
     // xrLabel17
     //
     this.xrLabel17.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat         = new DevExpress.Utils.PointFloat(87.37866F, 0F);
     this.xrLabel17.Name                  = "xrLabel17";
     this.xrLabel17.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                 = new System.Drawing.SizeF(226.6259F, 23F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.Text                  = "BP Name";
     //
     // xrLine7
     //
     this.xrLine7.LineDirection = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine7.LocationFloat = new DevExpress.Utils.PointFloat(629.9999F, 0F);
     this.xrLine7.Name          = "xrLine7";
     this.xrLine7.SizeF         = new System.Drawing.SizeF(2.32468F, 23.00001F);
     //
     // xrLine9
     //
     this.xrLine9.LineDirection = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine9.LocationFloat = new DevExpress.Utils.PointFloat(17.67545F, 0F);
     this.xrLine9.Name          = "xrLine9";
     this.xrLine9.SizeF         = new System.Drawing.SizeF(2.32468F, 23.00001F);
     //
     // xrLine10
     //
     this.xrLine10.LineDirection = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine10.LocationFloat = new DevExpress.Utils.PointFloat(629.9999F, 0F);
     this.xrLine10.Name          = "xrLine10";
     this.xrLine10.SizeF         = new System.Drawing.SizeF(2.32468F, 23.00001F);
     //
     // rep_pro_discoverydocument
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageFooter,
         this.DetailReport
     });
     this.Margins = new System.Drawing.Printing.Margins(100, 100, 48, 0);
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #47
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NieRExplorer.OptionsForm));
     groupBox1         = new System.Windows.Forms.GroupBox();
     patchingMethodRB1 = new System.Windows.Forms.RadioButton();
     patchingMethodRB2 = new System.Windows.Forms.RadioButton();
     infoIcon          = new System.Windows.Forms.PictureBox();
     patchingDescLabel = new System.Windows.Forms.Label();
     saveBtn           = new System.Windows.Forms.Button();
     groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)infoIcon).BeginInit();
     SuspendLayout();
     groupBox1.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right);
     groupBox1.Controls.Add(patchingDescLabel);
     groupBox1.Controls.Add(infoIcon);
     groupBox1.Controls.Add(patchingMethodRB2);
     groupBox1.Controls.Add(patchingMethodRB1);
     groupBox1.Location         = new System.Drawing.Point(12, 12);
     groupBox1.Name             = "groupBox1";
     groupBox1.Size             = new System.Drawing.Size(393, 179);
     groupBox1.TabIndex         = 0;
     groupBox1.TabStop          = false;
     groupBox1.Text             = "Patching Methods";
     patchingMethodRB1.AutoSize = true;
     patchingMethodRB1.Checked  = true;
     patchingMethodRB1.Location = new System.Drawing.Point(6, 19);
     patchingMethodRB1.Name     = "patchingMethodRB1";
     patchingMethodRB1.Size     = new System.Drawing.Size(167, 17);
     patchingMethodRB1.TabIndex = 0;
     patchingMethodRB1.TabStop  = true;
     patchingMethodRB1.Text     = "Write to Disk (Recommended)";
     patchingMethodRB1.UseVisualStyleBackColor = true;
     patchingMethodRB1.CheckedChanged         += new System.EventHandler(patchingMethodRB1_CheckedChanged);
     patchingMethodRB2.AutoSize = true;
     patchingMethodRB2.Location = new System.Drawing.Point(6, 42);
     patchingMethodRB2.Name     = "patchingMethodRB2";
     patchingMethodRB2.Size     = new System.Drawing.Size(102, 17);
     patchingMethodRB2.TabIndex = 0;
     patchingMethodRB2.Text     = "Write to Memory";
     patchingMethodRB2.UseVisualStyleBackColor = true;
     patchingMethodRB2.CheckedChanged         += new System.EventHandler(patchingMethodRB2_CheckedChanged);
     infoIcon.BackgroundImage       = NieRExplorer.Properties.Resources.info;
     infoIcon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     infoIcon.Location          = new System.Drawing.Point(6, 65);
     infoIcon.Name              = "infoIcon";
     infoIcon.Size              = new System.Drawing.Size(32, 32);
     infoIcon.TabIndex          = 1;
     infoIcon.TabStop           = false;
     patchingDescLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     patchingDescLabel.Location = new System.Drawing.Point(44, 65);
     patchingDescLabel.Name     = "patchingDescLabel";
     patchingDescLabel.Size     = new System.Drawing.Size(316, 111);
     patchingDescLabel.TabIndex = 2;
     patchingDescLabel.Text     = resources.GetString("patchingDescLabel.Text");
     saveBtn.Location           = new System.Drawing.Point(330, 268);
     saveBtn.Name     = "saveBtn";
     saveBtn.Size     = new System.Drawing.Size(75, 23);
     saveBtn.TabIndex = 1;
     saveBtn.Text     = "Save";
     saveBtn.UseVisualStyleBackColor = true;
     saveBtn.Click           += new System.EventHandler(saveBtn_Click);
     base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     base.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     base.ClientSize          = new System.Drawing.Size(417, 303);
     base.Controls.Add(saveBtn);
     base.Controls.Add(groupBox1);
     base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     base.Icon            = (System.Drawing.Icon)resources.GetObject("$this.Icon");
     base.MaximizeBox     = false;
     base.MinimizeBox     = false;
     base.Name            = "OptionsForm";
     base.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     Text         = "Options";
     base.TopMost = true;
     base.Load   += new System.EventHandler(OptionsForm_Load);
     groupBox1.ResumeLayout(false);
     groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)infoIcon).EndInit();
     ResumeLayout(false);
 }
Example #48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(Rep_Recibo));
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery2 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.ID_RECIBO      = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLine4        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrRichText1    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrPageInfo1    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 10F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 10F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "BD_JSYSEntities (JSYS_WEB)";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name = "RECIBOS";
     customSqlQuery1.Sql  = resources.GetString("customSqlQuery1.Sql");
     customSqlQuery2.Name = "EMPRESA";
     customSqlQuery2.Sql  = "SELECT * FROM EMPRESA";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1,
         customSqlQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine4,
         this.xrLabel13,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLine2,
         this.xrLabel3,
         this.xrLine1,
         this.xrLabel1,
         this.xrRichText1,
         this.xrPageInfo1,
         this.xrLabel14,
         this.xrLabel15,
         this.xrLabel16,
         this.xrLabel17,
         this.xrLabel18,
         this.xrLabel19,
         this.xrLabel20,
         this.xrLabel22,
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel6,
         this.xrLabel5
     });
     this.PageHeader.HeightF = 403.1536F;
     this.PageHeader.Name    = "PageHeader";
     //
     // ID_RECIBO
     //
     this.ID_RECIBO.Description = "ID_RECIBO";
     this.ID_RECIBO.Name        = "ID_RECIBO";
     this.ID_RECIBO.Type        = typeof(int);
     this.ID_RECIBO.ValueInfo   = "0";
     this.ID_RECIBO.Visible     = false;
     //
     // xrLine4
     //
     this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 289.7109F);
     this.xrLine4.Name          = "xrLine4";
     this.xrLine4.SizeF         = new System.Drawing.SizeF(242.2738F, 7.779083F);
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 297.705F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(242.2738F, 12F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Cobrador";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                           = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 231.491F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(95.08735F, 11.99997F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "Balance Pendiente:";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[MONTO_PENDIENTE]")
     });
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(96.80904F, 231.491F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(110.5216F, 11.99997F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Pend.:";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel11.TextFormatString               = "{0:n2}";
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 76.13405F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(242.2738F, 7.779091F);
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(2.267551F, 202.0054F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(239.4141F, 14.99998F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Pago de Cuota: [CUOTA_COBRADA] de [CANTIDAD_CUOTAS]";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 221.7117F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(242.2738F, 7.779129F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0.305748F, 86.06431F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(33F, 15F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Fecha:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrRichText1
     //
     this.xrRichText1.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrRichText1.Name                  = "xrRichText1";
     this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                 = new System.Drawing.SizeF(242.2738F, 32.35495F);
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(33.30577F, 86.06431F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(86.94418F, 15F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrPageInfo1.TextFormatString               = "{0:dd/MM/yyyy hh:mm ss}";
     //
     // xrLabel14
     //
     this.xrLabel14.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(0.5456924F, 39.35494F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(242.7814F, 15F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "Articulo Entregado:[ENTREGADO]            En Fecha: [FECHA_ENTREGA]";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(0.5456607F, 61.13405F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(242.7814F, 14.99999F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "RECIBO DE INGRESO: NO. [ID_RECIBO]";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel16
     //
     this.xrLabel16.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(130.809F, 86.06431F);
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(66.60431F, 15F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "Contrato NO.:";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel17
     //
     this.xrLabel17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ID_FACTURA]")
     });
     this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(197.4133F, 86.06431F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(45.9137F, 15F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "xrLabel17";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 108.2506F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(130.2634F, 15F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "Hemos Recibido De:";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NOMBRE]")
     });
     this.xrLabel19.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(3.738499F, 123.4098F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(238.6245F, 15F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "xrLabel17";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 148.0421F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(66.36201F, 15F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Le Suma De:";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel22
     //
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 186.7118F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(69.72524F, 15.00002F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Por Concepto:";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 313.2587F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(241.2286F, 11.99997F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Cuota(s) Atrasada(s): [CUOTAS_ATRASADAS]";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 325.6096F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(241.2287F, 12F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Monto En Atraso:       [MONTO_PENDIENTE_ATRASO!N2]";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(2.267551F, 163.095F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(240.4091F, 15.00002F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "[VALOR_PAGADO]   -   [MONTO_LETRAS]";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 352.7766F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(241.2287F, 11.99997F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Concursa Con El Número: [NUMERO_LOTERIA]";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Rep_Recibo
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "RECIBOS";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(4, 4, 10, 10);
     this.PageHeight = 430;
     this.PageWidth  = 260;
     this.PaperKind  = System.Drawing.Printing.PaperKind.Custom;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.ID_RECIBO
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_projectmanagement));
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery2 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.StaticListLookUpSettings  staticListLookUpSettings1  = new DevExpress.XtraReports.Parameters.StaticListLookUpSettings();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPageBreak1   = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel20      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel19      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.pm_type        = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectID      = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectName    = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectColor   = new DevExpress.XtraReports.Parameters.Parameter();
     this.EnterpriseName = new DevExpress.XtraReports.Parameters.Parameter();
     this.pm_status      = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name = "rc_pm_1";
     customSqlQuery1.Sql  = resources.GetString("customSqlQuery1.Sql");
     customSqlQuery2.Name = "rc_types";
     customSqlQuery2.Sql  = "select \"rc_types\".\"type_id\", \"rc_types\".\"type_home\",\r\n       \"rc_types\".\"type_tit" +
                            "le\", \"rc_types\".\"type_value\"\r\n  from \"dbo\".\"rc_types\" \"rc_types\"\r\nwhere (\"rc_typ" +
                            "es\".\"type_home\" = N\'pm_type\')";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1,
         customSqlQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1,
         this.xrLabel20,
         this.xrLabel21,
         this.xrLabel17,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4
     });
     this.Detail.HeightF       = 346.3333F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 344.3333F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // xrLabel20
     //
     this.xrLabel20.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel20.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(449.0001F, 100F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(102.0002F, 54.00005F);
     this.xrLabel20.StylePriority.UseBackColor     = false;
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text          = "Area";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel21
     //
     this.xrLabel21.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_area]")
     });
     this.xrLabel21.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(551.0002F, 100F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(298.9998F, 54.00005F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Area";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel17
     //
     this.xrLabel17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_desc]")
     });
     this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(0.0002543131F, 294.6667F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(849.9998F, 49.66666F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Description";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel16.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 245F);
     this.xrLabel16.Name          = "xrLabel16";
     this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF         = new System.Drawing.SizeF(849.9998F, 49.66667F);
     this.xrLabel16.StylePriority.UseBackColor     = false;
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text          = "Description";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_solution]")
     });
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 199.5F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(850F, 45.50002F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "Solution";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel14.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 154F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(849.9998F, 45.49998F);
     this.xrLabel14.StylePriority.UseBackColor     = false;
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text          = "Solution";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_createddate]")
     });
     this.xrLabel13.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(100.0002F, 100F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(348.9998F, 54.00002F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Created Date";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel12.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 100F);
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(100F, 54.00002F);
     this.xrLabel12.StylePriority.UseBackColor     = false;
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text          = "Created Date";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_status]")
     });
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(551.0002F, 51.16666F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(298.9998F, 48.83334F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Status";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel10.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(448.3333F, 51.16666F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(100.6666F, 48.83334F);
     this.xrLabel10.StylePriority.UseBackColor     = false;
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "Status";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_createdby]")
     });
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 51.16666F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(348.3332F, 48.83334F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "Created By";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel8.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.16666F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(100F, 48.83334F);
     this.xrLabel8.StylePriority.UseBackColor     = false;
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "Created By";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_priority]")
     });
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(550.3337F, 0F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(299.6663F, 51.16666F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Priority";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.BackColor     = System.Drawing.Color.LemonChiffon;
     this.xrLabel6.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(448.3333F, 0F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(100.6666F, 51.16666F);
     this.xrLabel6.StylePriority.UseBackColor     = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "Priority";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_title]")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(100.0002F, 0F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(348.3332F, 51.16666F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Title";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pm_uniqueID]")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(100F, 51.16666F);
     this.xrLabel4.StylePriority.UseBackColor     = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "UniqueID";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 1F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 44.16668F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[pm_type]")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(600.0416F, 0F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(249.9584F, 44.16668F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "PM_Type";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[ProjectName]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(250.8333F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(349.2083F, 44.16668F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Project Name";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrLabel2.BeforePrint                   += new System.Drawing.Printing.PrintEventHandler(this.xrLabel2_BeforePrint);
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EnterpriseName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0.0002543131F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(250.8331F, 44.16668F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Tribe";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel19,
         this.xrPageInfo1,
         this.xrPageInfo2,
         this.xrLabel18
     });
     this.PageFooter.HeightF = 69.6354F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel19
     //
     this.xrLabel19.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(623.5002F, 34.13537F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(66.97913F, 35.50002F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "page";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel19.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(690.4792F, 34.13537F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85413F, 35.50002F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 33.09371F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 36.54169F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 9.999974F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(197.2917F, 23.09373F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "Generated by ReadyCert® for";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pm_type
     //
     this.pm_type.Description = "Select a type";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "rc_types";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "type_title";
     dynamicListLookUpSettings1.ValueMember   = "type_value";
     this.pm_type.LookUpSettings = dynamicListLookUpSettings1;
     this.pm_type.MultiValue     = true;
     this.pm_type.Name           = "pm_type";
     //
     // ProjectID
     //
     this.ProjectID.Description = "ProjectID";
     this.ProjectID.Name        = "ProjectID";
     this.ProjectID.Type        = typeof(System.Guid);
     this.ProjectID.ValueInfo   = "00000000-0000-0000-0000-000000000000";
     this.ProjectID.Visible     = false;
     //
     // ProjectName
     //
     this.ProjectName.Description = "ProjectName";
     this.ProjectName.Name        = "ProjectName";
     this.ProjectName.Visible     = false;
     //
     // ProjectColor
     //
     this.ProjectColor.Description = "ProjectColor";
     this.ProjectColor.Name        = "ProjectColor";
     this.ProjectColor.Visible     = false;
     //
     // EnterpriseName
     //
     this.EnterpriseName.Description = "EnterpriseName";
     this.EnterpriseName.Name        = "EnterpriseName";
     this.EnterpriseName.Visible     = false;
     //
     // pm_status
     //
     this.pm_status.Description = "Status";
     staticListLookUpSettings1.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("Open", "Open"));
     staticListLookUpSettings1.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("Closed", "Closed"));
     this.pm_status.LookUpSettings = staticListLookUpSettings1;
     this.pm_status.Name           = "pm_status";
     //
     // rep_pro_projectmanagement
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter
     });
     this.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "rc_pm_1";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[pm_type] In (?pm_type) And [pm_projectID] = ?ProjectID And [pm_status] In ([pm_s" +
                         "tatus])";
     this.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 1);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.pm_type,
         this.ProjectID,
         this.ProjectName,
         this.ProjectColor,
         this.EnterpriseName,
         this.pm_status
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #50
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.htmluiControl1       = new Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl();
            this.mainFrameBarManager1 = new Syncfusion.Windows.Forms.Tools.XPMenus.MainFrameBarManager(this);
            this.bar1           = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager1, "HTMLUIScripting");
            this.parentBarItem1 = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
            this.barItem1       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem2       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
            ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
            this.gradientPanel1.SuspendLayout();
            this.SuspendLayout();
            //
            // htmluiControl1
            //
            this.htmluiControl1.AutoRunScripts = true;
            this.htmluiControl1.BackColor      = System.Drawing.Color.White;
            this.htmluiControl1.DefaultFormat.BackgroundColor = System.Drawing.SystemColors.Control;
            this.htmluiControl1.DefaultFormat.ForeColor       = System.Drawing.SystemColors.ControlText;
            this.htmluiControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.htmluiControl1.Location = new System.Drawing.Point(0, 0);
            this.htmluiControl1.Name     = "htmluiControl1";
            this.htmluiControl1.Size     = new System.Drawing.Size(612, 401);
            this.htmluiControl1.TabIndex = 0;
            this.htmluiControl1.Text     = resources.GetString("htmluiControl1.Text");
            //
            // mainFrameBarManager1
            //
#if !NETCORE
            this.mainFrameBarManager1.BarPositionInfo = ((System.IO.MemoryStream)(resources.GetObject("mainFrameBarManager1.BarPositionInfo")));
#endif
            this.mainFrameBarManager1.Bars.Add(this.bar1);
            this.mainFrameBarManager1.Categories.Add("File");
            this.mainFrameBarManager1.CurrentBaseFormType = "Syncfusion.Windows.Forms.MetroForm";
            this.mainFrameBarManager1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.mainFrameBarManager1.Form = this;
            this.mainFrameBarManager1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.parentBarItem1,
                this.barItem1,
                this.barItem2
            });
            this.mainFrameBarManager1.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
            this.mainFrameBarManager1.ResetCustomization = false;
            this.mainFrameBarManager1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro;
            //
            // bar1
            //
            this.bar1.BarName = "HTMLUIScripting";
            this.bar1.Caption = "HTMLUIScripting";
            this.bar1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.parentBarItem1
            });
            this.bar1.Manager = this.mainFrameBarManager1;
            //
            // parentBarItem1
            //
            this.parentBarItem1.BarName       = "parentBarItem1";
            this.parentBarItem1.CategoryIndex = 0;
            this.parentBarItem1.ID            = "File";
            this.parentBarItem1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.barItem1,
                this.barItem2
            });
            this.parentBarItem1.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
            this.parentBarItem1.ShowToolTipInPopUp = false;
            this.parentBarItem1.SizeToFit          = true;
            this.parentBarItem1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro;
            this.parentBarItem1.Text  = "File";
            //
            // barItem1
            //
            this.barItem1.BarName            = "barItem1";
            this.barItem1.CategoryIndex      = 0;
            this.barItem1.ID                 = "ViewScript";
            this.barItem1.ShowToolTipInPopUp = false;
            this.barItem1.SizeToFit          = true;
            this.barItem1.Text               = "ViewScript";
            this.barItem1.Click             += new System.EventHandler(this.menuItem2_Click);
            //
            // barItem2
            //
            this.barItem2.BarName            = "barItem2";
            this.barItem2.CategoryIndex      = 0;
            this.barItem2.ID                 = "Exit";
            this.barItem2.ShowToolTipInPopUp = false;
            this.barItem2.SizeToFit          = true;
            this.barItem2.Text               = "Exit";
            this.barItem2.Click             += new System.EventHandler(this.menuItem3_Click);
            //
            // gradientPanel1
            //
            this.gradientPanel1.BorderColor = System.Drawing.Color.LightGray;
            this.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gradientPanel1.Controls.Add(this.htmluiControl1);
            this.gradientPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.gradientPanel1.Location = new System.Drawing.Point(10, 39);
            this.gradientPanel1.Name     = "gradientPanel1";
            this.gradientPanel1.Size     = new System.Drawing.Size(614, 403);
            this.gradientPanel1.TabIndex = 4;
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
            this.CaptionAlign      = System.Windows.Forms.HorizontalAlignment.Center;
            this.ClientSize        = new System.Drawing.Size(634, 452);
            this.Controls.Add(this.gradientPanel1);
            this.DropShadow       = true;
            this.Font             = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon             = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IconAlign        = System.Windows.Forms.HorizontalAlignment.Left;
            this.IconTextRelation = System.Windows.Forms.LeftRightAlignment.Left;
            this.MetroColor       = System.Drawing.Color.White;
            this.MinimumSize      = new System.Drawing.Size(646, 488);
            this.Name             = "Form1";
            this.Padding          = new System.Windows.Forms.Padding(10);
            this.StartPosition    = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text             = "Scripting";
            this.Load            += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
            this.gradientPanel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Example #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dsComposer1         = new Tutorial_15.DsComposer();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection2    = new System.Data.OleDb.OleDbConnection();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
     this.button1             = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsComposer1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.Caption       = "C1TrueDBGrid.Net";
     this.c1TrueDBGrid1.CaptionHeight = 17;
     this.c1TrueDBGrid1.DataMember    = "Composer";
     this.c1TrueDBGrid1.DataSource    = this.dsComposer1;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 8);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.RowHeight              = 15;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(516, 234);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.FormatText            += new C1.Win.C1TrueDBGrid.FormatTextEventHandler(this.c1TrueDBGrid1_FormatText);
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // dsComposer1
     //
     this.dsComposer1.DataSetName             = "DsComposer";
     this.dsComposer1.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dsComposer1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.DeleteCommand = this.oleDbDeleteCommand1;
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Composer", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("Birth", "Birth"),
             new System.Data.Common.DataColumnMapping("Country", "Country"),
             new System.Data.Common.DataColumnMapping("Death", "Death"),
             new System.Data.Common.DataColumnMapping("First", "First"),
             new System.Data.Common.DataColumnMapping("Last", "Last")
         })
     });
     this.oleDbDataAdapter1.UpdateCommand = this.oleDbUpdateCommand1;
     //
     // oleDbDeleteCommand1
     //
     this.oleDbDeleteCommand1.CommandText = resources.GetString("oleDbDeleteCommand1.CommandText");
     this.oleDbDeleteCommand1.Connection  = this.oleDbConnection2;
     this.oleDbDeleteCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Last", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Birth", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Birth1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Country", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Country1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Death", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Death1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_First", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_First1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null)
     });
     //
     // oleDbConnection2
     //
     this.oleDbConnection2.ConnectionString = resources.GetString("oleDbConnection2.ConnectionString");
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO Composer(Birth, Country, Death, First, Last) VALUES (?, ?, ?, ?, ?)";
     this.oleDbInsertCommand1.Connection  = this.oleDbConnection2;
     this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"),
         new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"),
         new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"),
         new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"),
         new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last")
     });
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Birth, Country, Death, First, Last FROM Composer";
     this.oleDbSelectCommand1.Connection  = this.oleDbConnection2;
     //
     // oleDbUpdateCommand1
     //
     this.oleDbUpdateCommand1.CommandText = resources.GetString("oleDbUpdateCommand1.CommandText");
     this.oleDbUpdateCommand1.Connection  = this.oleDbConnection2;
     this.oleDbUpdateCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"),
         new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"),
         new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"),
         new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"),
         new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"),
         new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Last", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Birth", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Birth1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Country", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Country1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Death", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_Death1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_First", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null),
         new System.Data.OleDb.OleDbParameter("Original_First1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null)
     });
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(16, 248);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(88, 24);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Print Preview";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(536, 278);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Tutorial 15";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsComposer1)).EndInit();
     this.ResumeLayout(false);
 }
Example #52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.colorPickerUIAdv1  = new Syncfusion.Windows.Forms.Tools.ColorPickerUIAdv();
     this.label1             = new System.Windows.Forms.Label();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.splitContainerAdv1 = new Syncfusion.Windows.Forms.Tools.SplitContainerAdv();
     this.panel1             = new System.Windows.Forms.Panel();
     this.radioButton2       = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton1       = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.richTextBox1       = new System.Windows.Forms.RichTextBox();
     this.panel3             = new System.Windows.Forms.Panel();
     this.label2             = new System.Windows.Forms.Label();
     this.flowLayoutPanel1   = new FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).BeginInit();
     this.splitContainerAdv1.Panel1.SuspendLayout();
     this.splitContainerAdv1.Panel2.SuspendLayout();
     this.splitContainerAdv1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // colorPickerUIAdv1.RecentGroup
     //
     this.colorPickerUIAdv1.RecentGroup.HeaderHeight = 19;
     this.colorPickerUIAdv1.RecentGroup.Name         = "Recent Colors";
     this.colorPickerUIAdv1.RecentGroup.Visible      = false;
     //
     // colorPickerUIAdv1.StandardGroup
     //
     this.colorPickerUIAdv1.StandardGroup.HeaderHeight = 19;
     this.colorPickerUIAdv1.StandardGroup.Name         = "Standard Colors";
     //
     // colorPickerUIAdv1.ThemeGroup
     //
     this.colorPickerUIAdv1.ThemeGroup.HeaderHeight      = 19;
     this.colorPickerUIAdv1.ThemeGroup.IsSubItemsVisible = true;
     this.colorPickerUIAdv1.ThemeGroup.Name = "Theme Colors";
     //
     // colorPickerUIAdv1
     //
     this.colorPickerUIAdv1.BeforeTouchSize        = new System.Drawing.Size(13, 13);
     this.colorPickerUIAdv1.BorderStyle            = System.Windows.Forms.BorderStyle.FixedSingle;
     this.colorPickerUIAdv1.ButtonsHeight          = 27;
     this.colorPickerUIAdv1.ColorItemSize          = new System.Drawing.Size(20, 13);
     this.colorPickerUIAdv1.HorizontalItemsSpacing = 2;
     this.colorPickerUIAdv1.Location             = new System.Drawing.Point(56, 66);
     this.colorPickerUIAdv1.MetroColor           = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
     this.colorPickerUIAdv1.MinimumSize          = new System.Drawing.Size(136, 201);
     this.colorPickerUIAdv1.Name                 = "colorPickerUIAdv1";
     this.colorPickerUIAdv1.SelectedColor        = System.Drawing.Color.Empty;
     this.colorPickerUIAdv1.Size                 = new System.Drawing.Size(224, 209);
     this.colorPickerUIAdv1.Style                = Syncfusion.Windows.Forms.Tools.ColorPickerUIAdv.visualstyle.Office2016Colorful;
     this.colorPickerUIAdv1.TabIndex             = 4;
     this.colorPickerUIAdv1.Text                 = "colorPickerUIAdv1";
     this.colorPickerUIAdv1.UseOffice2007Style   = false;
     this.colorPickerUIAdv1.VerticalItemsSpacing = 2;
     this.colorPickerUIAdv1.Picked              += new Syncfusion.Windows.Forms.Tools.ColorPickerUIAdv.ColorPickedEventHandler(this.colorPickerUIAdv1_Picked);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // splitContainerAdv1
     //
     this.splitContainerAdv1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainerAdv1.BeforeTouchSize = 7;
     this.splitContainerAdv1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainerAdv1.IsSplitterFixed = true;
     this.splitContainerAdv1.Location        = new System.Drawing.Point(20, 92);
     this.splitContainerAdv1.Name            = "splitContainerAdv1";
     //
     // splitContainerAdv1.Panel1
     //
     this.splitContainerAdv1.Panel1.Controls.Add(this.panel1);
     //
     // splitContainerAdv1.Panel2
     //
     this.splitContainerAdv1.Panel2.Controls.Add(this.richTextBox1);
     this.splitContainerAdv1.Size             = new System.Drawing.Size(997, 600);
     this.splitContainerAdv1.SplitterDistance = this.colorPickerUIAdv1.Width + (int)DpiAware.LogicalToDeviceUnits(30.0f);;
     this.splitContainerAdv1.TabIndex         = 6;
     this.splitContainerAdv1.Text             = "splitContainerAdv1";
     //
     //FlowLayoutPanel
     //
     this.flowLayoutPanel1.FlowDirection = FlowDirection.TopDown;
     this.flowLayoutPanel1.Controls.Add(this.radioButton1);
     this.flowLayoutPanel1.Controls.Add(this.radioButton2);
     this.flowLayoutPanel1.Controls.Add(this.colorPickerUIAdv1);
     this.flowLayoutPanel1.AutoSize = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Location = new System.Drawing.Point(10, 10);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(278, 336);
     this.panel1.TabIndex = 7;
     this.panel1.AutoSize = true;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize        = true;
     this.radioButton2.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.radioButton2.BeforeTouchSize = new System.Drawing.Size(106, 16);
     this.radioButton2.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.radioButton2.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43)))));
     this.radioButton2.HotBorderColor  = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
     this.radioButton2.Location        = new System.Drawing.Point(144, 19);
     this.radioButton2.MetroColor      = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton2.Name            = "radioButton2";
     this.radioButton2.Size            = new System.Drawing.Size(106, 16);
     this.radioButton2.Style           = Syncfusion.Windows.Forms.Tools.RadioButtonAdvStyle.Office2016Colorful;
     this.radioButton2.TabIndex        = 6;
     this.radioButton2.Text            = "Hightlight Color";
     this.radioButton2.ThemesEnabled   = false;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize        = true;
     this.radioButton1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.radioButton1.BeforeTouchSize = new System.Drawing.Size(73, 16);
     this.radioButton1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.radioButton1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43)))));
     this.radioButton1.HotBorderColor  = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
     this.radioButton1.Location        = new System.Drawing.Point(30, 19);
     this.radioButton1.MetroColor      = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton1.Name            = "radioButton1";
     this.radioButton1.Size            = new System.Drawing.Size(73, 16);
     this.radioButton1.Style           = Syncfusion.Windows.Forms.Tools.RadioButtonAdvStyle.Office2016Colorful;
     this.radioButton1.TabIndex        = 5;
     this.radioButton1.Text            = "ForeColor";
     this.radioButton1.ThemesEnabled   = false;
     //
     // richTextBox1
     //
     this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.richTextBox1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.richTextBox1.Font        = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.richTextBox1.Location    = new System.Drawing.Point(0, 0);
     this.richTextBox1.Name        = "richTextBox1";
     this.richTextBox1.Size        = new System.Drawing.Size(615, 409);
     this.richTextBox1.TabIndex    = 0;
     this.richTextBox1.Text        = "";
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.label2);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(20, 20);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(1000, 65);
     this.panel3.TabIndex = 7;
     //
     // label2
     //
     this.label2.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label2.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(0, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(998, 63);
     this.label2.TabIndex  = 0;
     this.label2.Text      = resources.GetString("label2.Text");
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(1040, 600);
     this.Controls.Add(this.splitContainerAdv1);
     this.Controls.Add(this.panel3);
     this.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MetroColor      = System.Drawing.Color.White;
     this.MinimumSize     = new System.Drawing.Size(1052, 800);
     this.MaximumSize     = new System.Drawing.Size(1052, 800);
     this.Name            = "Form1";
     this.Padding         = new System.Windows.Forms.Padding(20);
     this.ShowMaximizeBox = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "ColorPickerUIAdv";
     this.Load           += new System.EventHandler(this.Form1_Load);
     this.splitContainerAdv1.Panel1.ResumeLayout(false);
     this.splitContainerAdv1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).EndInit();
     this.splitContainerAdv1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.panel1            = new System.Windows.Forms.Panel();
     this.btnMoveOut        = new System.Windows.Forms.Button();
     this.label1            = new System.Windows.Forms.Label();
     this.cmbSelect         = new System.Windows.Forms.ComboBox();
     this.chkDrag           = new System.Windows.Forms.CheckBox();
     this.btnRefresh        = new System.Windows.Forms.Button();
     this.cmbAdd            = new System.Windows.Forms.ComboBox();
     this.label2            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.btnMoveIn         = new System.Windows.Forms.Button();
     this.btnMoveDown       = new System.Windows.Forms.Button();
     this.btnMoveUp         = new System.Windows.Forms.Button();
     this.btnMoveFirst      = new System.Windows.Forms.Button();
     this.btnMoveLast       = new System.Windows.Forms.Button();
     this.btnSortDescending = new System.Windows.Forms.Button();
     this.btnSortAscending  = new System.Windows.Forms.Button();
     this.btnPrint          = new System.Windows.Forms.Button();
     this.btnDelete         = new System.Windows.Forms.Button();
     this.label5            = new System.Windows.Forms.Label();
     this.flex = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.flex)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnMoveOut);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.cmbSelect);
     this.panel1.Controls.Add(this.chkDrag);
     this.panel1.Controls.Add(this.btnRefresh);
     this.panel1.Controls.Add(this.cmbAdd);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.btnMoveIn);
     this.panel1.Controls.Add(this.btnMoveDown);
     this.panel1.Controls.Add(this.btnMoveUp);
     this.panel1.Controls.Add(this.btnMoveFirst);
     this.panel1.Controls.Add(this.btnMoveLast);
     this.panel1.Controls.Add(this.btnSortDescending);
     this.panel1.Controls.Add(this.btnSortAscending);
     this.panel1.Controls.Add(this.btnPrint);
     this.panel1.Controls.Add(this.btnDelete);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(683, 56);
     this.panel1.TabIndex = 0;
     //
     // btnMoveOut
     //
     this.btnMoveOut.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMoveOut.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMoveOut.Location  = new System.Drawing.Point(156, 32);
     this.btnMoveOut.Name      = "btnMoveOut";
     this.btnMoveOut.Size      = new System.Drawing.Size(24, 20);
     this.btnMoveOut.TabIndex  = 4;
     this.btnMoveOut.Text      = "<";
     this.btnMoveOut.Click    += new System.EventHandler(this.btnMove_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(460, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(44, 16);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Add:";
     //
     // cmbSelect
     //
     this.cmbSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSelect.Items.AddRange(new object[] {
         "Root",
         "Parent",
         "FirstChild",
         "LastChild",
         "FirstSibling",
         "LastSibling",
         "NextSibling",
         "PreviousSibling"
     });
     this.cmbSelect.Location = new System.Drawing.Point(152, 10);
     this.cmbSelect.Name     = "cmbSelect";
     this.cmbSelect.Size     = new System.Drawing.Size(164, 21);
     this.cmbSelect.TabIndex = 2;
     this.cmbSelect.SelectionChangeCommitted += new System.EventHandler(this.cmbSelect_SelectionChangeCommitted);
     //
     // chkDrag
     //
     this.chkDrag.Checked    = true;
     this.chkDrag.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkDrag.Location   = new System.Drawing.Point(8, 36);
     this.chkDrag.Name       = "chkDrag";
     this.chkDrag.Size       = new System.Drawing.Size(80, 16);
     this.chkDrag.TabIndex   = 1;
     this.chkDrag.Text       = "&Dragging";
     //
     // btnRefresh
     //
     this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnRefresh.Location  = new System.Drawing.Point(8, 8);
     this.btnRefresh.Name      = "btnRefresh";
     this.btnRefresh.Size      = new System.Drawing.Size(80, 20);
     this.btnRefresh.TabIndex  = 0;
     this.btnRefresh.Text      = "&Refresh";
     this.btnRefresh.Click    += new System.EventHandler(this.btnRefresh_Click);
     //
     // cmbAdd
     //
     this.cmbAdd.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbAdd.Items.AddRange(new object[] {
         "FirstChild",
         "LastChild",
         "FirstSibling",
         "LastSibling",
         "NextSibling",
         "PreviousSibling"
     });
     this.cmbAdd.Location = new System.Drawing.Point(508, 10);
     this.cmbAdd.Name     = "cmbAdd";
     this.cmbAdd.Size     = new System.Drawing.Size(140, 21);
     this.cmbAdd.TabIndex = 2;
     this.cmbAdd.SelectionChangeCommitted += new System.EventHandler(this.cmbAdd_SelectionChangeCommitted);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(104, 12);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(44, 16);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Select:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(104, 36);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(44, 16);
     this.label3.TabIndex = 3;
     this.label3.Text     = "Move";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(460, 36);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(44, 16);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Sort";
     //
     // btnMoveIn
     //
     this.btnMoveIn.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMoveIn.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMoveIn.Location  = new System.Drawing.Point(180, 32);
     this.btnMoveIn.Name      = "btnMoveIn";
     this.btnMoveIn.Size      = new System.Drawing.Size(24, 20);
     this.btnMoveIn.TabIndex  = 4;
     this.btnMoveIn.Text      = ">";
     this.btnMoveIn.Click    += new System.EventHandler(this.btnMove_Click);
     //
     // btnMoveDown
     //
     this.btnMoveDown.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMoveDown.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMoveDown.Location  = new System.Drawing.Point(236, 32);
     this.btnMoveDown.Name      = "btnMoveDown";
     this.btnMoveDown.Size      = new System.Drawing.Size(24, 20);
     this.btnMoveDown.TabIndex  = 4;
     this.btnMoveDown.Text      = "v";
     this.btnMoveDown.Click    += new System.EventHandler(this.btnMove_Click);
     //
     // btnMoveUp
     //
     this.btnMoveUp.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMoveUp.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMoveUp.Location  = new System.Drawing.Point(212, 32);
     this.btnMoveUp.Name      = "btnMoveUp";
     this.btnMoveUp.Size      = new System.Drawing.Size(24, 20);
     this.btnMoveUp.TabIndex  = 4;
     this.btnMoveUp.Text      = "^";
     this.btnMoveUp.Click    += new System.EventHandler(this.btnMove_Click);
     //
     // btnMoveFirst
     //
     this.btnMoveFirst.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMoveFirst.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMoveFirst.Location  = new System.Drawing.Point(264, 32);
     this.btnMoveFirst.Name      = "btnMoveFirst";
     this.btnMoveFirst.Size      = new System.Drawing.Size(24, 20);
     this.btnMoveFirst.TabIndex  = 4;
     this.btnMoveFirst.Text      = "^^";
     this.btnMoveFirst.Click    += new System.EventHandler(this.btnMove_Click);
     //
     // btnMoveLast
     //
     this.btnMoveLast.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMoveLast.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMoveLast.Location  = new System.Drawing.Point(288, 32);
     this.btnMoveLast.Name      = "btnMoveLast";
     this.btnMoveLast.Size      = new System.Drawing.Size(28, 20);
     this.btnMoveLast.TabIndex  = 4;
     this.btnMoveLast.Text      = "vv";
     this.btnMoveLast.Click    += new System.EventHandler(this.btnMove_Click);
     //
     // btnSortDescending
     //
     this.btnSortDescending.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnSortDescending.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSortDescending.Location  = new System.Drawing.Point(536, 32);
     this.btnSortDescending.Name      = "btnSortDescending";
     this.btnSortDescending.Size      = new System.Drawing.Size(24, 20);
     this.btnSortDescending.TabIndex  = 4;
     this.btnSortDescending.Text      = "v";
     this.btnSortDescending.Click    += new System.EventHandler(this.btnSort_Click);
     //
     // btnSortAscending
     //
     this.btnSortAscending.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnSortAscending.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSortAscending.Location  = new System.Drawing.Point(512, 32);
     this.btnSortAscending.Name      = "btnSortAscending";
     this.btnSortAscending.Size      = new System.Drawing.Size(24, 20);
     this.btnSortAscending.TabIndex  = 4;
     this.btnSortAscending.Text      = "^";
     this.btnSortAscending.Click    += new System.EventHandler(this.btnSort_Click);
     //
     // btnPrint
     //
     this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnPrint.Location  = new System.Drawing.Point(568, 32);
     this.btnPrint.Name      = "btnPrint";
     this.btnPrint.Size      = new System.Drawing.Size(80, 20);
     this.btnPrint.TabIndex  = 0;
     this.btnPrint.Text      = "&Print";
     this.btnPrint.Click    += new System.EventHandler(this.btnPrint_Click);
     //
     // btnDelete
     //
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnDelete.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDelete.Location  = new System.Drawing.Point(420, 8);
     this.btnDelete.Name      = "btnDelete";
     this.btnDelete.Size      = new System.Drawing.Size(24, 20);
     this.btnDelete.TabIndex  = 4;
     this.btnDelete.Text      = "x";
     this.btnDelete.Click    += new System.EventHandler(this.btnDelete_Click);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(368, 12);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(44, 16);
     this.label5.TabIndex = 3;
     this.label5.Text     = "Delete:";
     //
     // flex
     //
     this.flex.ColumnInfo              = "10,1,0,0,0,75,Columns:";
     this.flex.Dock                    = System.Windows.Forms.DockStyle.Fill;
     this.flex.Location                = new System.Drawing.Point(0, 56);
     this.flex.Name                    = "flex";
     this.flex.Rows.DefaultSize        = 17;
     this.flex.Size                    = new System.Drawing.Size(683, 304);
     this.flex.StyleInfo               = resources.GetString("flex.StyleInfo");
     this.flex.TabIndex                = 1;
     this.flex.Tree.LineColor          = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.flex.Tree.NodeImageCollapsed = ((System.Drawing.Image)(resources.GetObject("flex.Tree.NodeImageCollapsed")));
     this.flex.Tree.NodeImageExpanded  = ((System.Drawing.Image)(resources.GetObject("flex.Tree.NodeImageExpanded")));
     this.flex.MouseDown              += new System.Windows.Forms.MouseEventHandler(this.flex_MouseDown);
     this.flex.MouseMove              += new System.Windows.Forms.MouseEventHandler(this.flex_MouseMove);
     this.flex.MouseUp                += new System.Windows.Forms.MouseEventHandler(this.flex_MouseUp);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(683, 360);
     this.Controls.Add(this.flex);
     this.Controls.Add(this.panel1);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "C1FlexGrid: Tree Handling with the Node Object";
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.flex)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AttributeCalculator));
     this.lblFieldTitle            = new System.Windows.Forms.Label();
     this.lstViewFields            = new System.Windows.Forms.ListView();
     this.lstBoxFunctions          = new System.Windows.Forms.ListBox();
     this.lblFunctions             = new System.Windows.Forms.Label();
     this.btnClaculate             = new System.Windows.Forms.Button();
     this.btnClose                 = new System.Windows.Forms.Button();
     this.btnPlus                  = new System.Windows.Forms.Button();
     this.btnDivide                = new System.Windows.Forms.Button();
     this.btnMultiply              = new System.Windows.Forms.Button();
     this.btnMinus                 = new System.Windows.Forms.Button();
     this.lblDestinationFieldTitle = new System.Windows.Forms.Label();
     this.comDestFieldComboBox     = new System.Windows.Forms.ComboBox();
     this.lblAssignment            = new System.Windows.Forms.Label();
     this.rtxtComputaion           = new System.Windows.Forms.RichTextBox();
     this.linkLabel1               = new System.Windows.Forms.LinkLabel();
     this.lblComputaion            = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // lblFieldTitle
     //
     resources.ApplyResources(this.lblFieldTitle, "lblFieldTitle");
     this.lblFieldTitle.Name = "lblFieldTitle";
     //
     // lstViewFields
     //
     resources.ApplyResources(this.lstViewFields, "lstViewFields");
     this.lstViewFields.FullRowSelect    = true;
     this.lstViewFields.Name             = "lstViewFields";
     this.lstViewFields.ShowItemToolTips = true;
     this.lstViewFields.TileSize         = new System.Drawing.Size(247, 30);
     this.lstViewFields.UseCompatibleStateImageBehavior = false;
     this.lstViewFields.View         = System.Windows.Forms.View.SmallIcon;
     this.lstViewFields.DoubleClick += new System.EventHandler(this.lstViewFields_DoubleClick);
     //
     // lstBoxFunctions
     //
     this.lstBoxFunctions.FormattingEnabled = true;
     this.lstBoxFunctions.Items.AddRange(new object[] {
         resources.GetString("lstBoxFunctions.Items"),
         resources.GetString("lstBoxFunctions.Items1"),
         resources.GetString("lstBoxFunctions.Items2"),
         resources.GetString("lstBoxFunctions.Items3"),
         resources.GetString("lstBoxFunctions.Items4"),
         resources.GetString("lstBoxFunctions.Items5"),
         resources.GetString("lstBoxFunctions.Items6"),
         resources.GetString("lstBoxFunctions.Items7"),
         resources.GetString("lstBoxFunctions.Items8"),
         resources.GetString("lstBoxFunctions.Items9"),
         resources.GetString("lstBoxFunctions.Items10"),
         resources.GetString("lstBoxFunctions.Items11"),
         resources.GetString("lstBoxFunctions.Items12"),
         resources.GetString("lstBoxFunctions.Items13"),
         resources.GetString("lstBoxFunctions.Items14"),
         resources.GetString("lstBoxFunctions.Items15"),
         resources.GetString("lstBoxFunctions.Items16"),
         resources.GetString("lstBoxFunctions.Items17"),
         resources.GetString("lstBoxFunctions.Items18"),
         resources.GetString("lstBoxFunctions.Items19"),
         resources.GetString("lstBoxFunctions.Items20"),
         resources.GetString("lstBoxFunctions.Items21"),
         resources.GetString("lstBoxFunctions.Items22"),
         resources.GetString("lstBoxFunctions.Items23"),
         resources.GetString("lstBoxFunctions.Items24"),
         resources.GetString("lstBoxFunctions.Items25"),
         resources.GetString("lstBoxFunctions.Items26"),
         resources.GetString("lstBoxFunctions.Items27"),
         resources.GetString("lstBoxFunctions.Items28"),
         resources.GetString("lstBoxFunctions.Items29"),
         resources.GetString("lstBoxFunctions.Items30"),
         resources.GetString("lstBoxFunctions.Items31"),
         resources.GetString("lstBoxFunctions.Items32"),
         resources.GetString("lstBoxFunctions.Items33"),
         resources.GetString("lstBoxFunctions.Items34"),
         resources.GetString("lstBoxFunctions.Items35"),
         resources.GetString("lstBoxFunctions.Items36"),
         resources.GetString("lstBoxFunctions.Items37"),
         resources.GetString("lstBoxFunctions.Items38"),
         resources.GetString("lstBoxFunctions.Items39"),
         resources.GetString("lstBoxFunctions.Items40"),
         resources.GetString("lstBoxFunctions.Items41"),
         resources.GetString("lstBoxFunctions.Items42"),
         resources.GetString("lstBoxFunctions.Items43"),
         resources.GetString("lstBoxFunctions.Items44"),
         resources.GetString("lstBoxFunctions.Items45"),
         resources.GetString("lstBoxFunctions.Items46"),
         resources.GetString("lstBoxFunctions.Items47"),
         resources.GetString("lstBoxFunctions.Items48"),
         resources.GetString("lstBoxFunctions.Items49"),
         resources.GetString("lstBoxFunctions.Items50"),
         resources.GetString("lstBoxFunctions.Items51"),
         resources.GetString("lstBoxFunctions.Items52"),
         resources.GetString("lstBoxFunctions.Items53"),
         resources.GetString("lstBoxFunctions.Items54"),
         resources.GetString("lstBoxFunctions.Items55"),
         resources.GetString("lstBoxFunctions.Items56"),
         resources.GetString("lstBoxFunctions.Items57"),
         resources.GetString("lstBoxFunctions.Items58"),
         resources.GetString("lstBoxFunctions.Items59"),
         resources.GetString("lstBoxFunctions.Items60"),
         resources.GetString("lstBoxFunctions.Items61"),
         resources.GetString("lstBoxFunctions.Items62"),
         resources.GetString("lstBoxFunctions.Items63"),
         resources.GetString("lstBoxFunctions.Items64"),
         resources.GetString("lstBoxFunctions.Items65"),
         resources.GetString("lstBoxFunctions.Items66"),
         resources.GetString("lstBoxFunctions.Items67"),
         resources.GetString("lstBoxFunctions.Items68"),
         resources.GetString("lstBoxFunctions.Items69"),
         resources.GetString("lstBoxFunctions.Items70"),
         resources.GetString("lstBoxFunctions.Items71"),
         resources.GetString("lstBoxFunctions.Items72"),
         resources.GetString("lstBoxFunctions.Items73"),
         resources.GetString("lstBoxFunctions.Items74")
     });
     resources.ApplyResources(this.lstBoxFunctions, "lstBoxFunctions");
     this.lstBoxFunctions.Name         = "lstBoxFunctions";
     this.lstBoxFunctions.DoubleClick += new System.EventHandler(this.lstBoxFunctions_DoubleClick);
     //
     // lblFunctions
     //
     resources.ApplyResources(this.lblFunctions, "lblFunctions");
     this.lblFunctions.Name = "lblFunctions";
     //
     // btnClaculate
     //
     resources.ApplyResources(this.btnClaculate, "btnClaculate");
     this.btnClaculate.Name = "btnClaculate";
     this.btnClaculate.UseVisualStyleBackColor = true;
     this.btnClaculate.Click += new System.EventHandler(this.btnClaculate_Click);
     //
     // btnClose
     //
     resources.ApplyResources(this.btnClose, "btnClose");
     this.btnClose.Name = "btnClose";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnPlus
     //
     resources.ApplyResources(this.btnPlus, "btnPlus");
     this.btnPlus.Name = "btnPlus";
     this.btnPlus.UseVisualStyleBackColor = true;
     this.btnPlus.Click += new System.EventHandler(this.btnPlus_Click);
     //
     // btnDivide
     //
     resources.ApplyResources(this.btnDivide, "btnDivide");
     this.btnDivide.Name = "btnDivide";
     this.btnDivide.UseVisualStyleBackColor = true;
     this.btnDivide.Click += new System.EventHandler(this.btnDivide_Click);
     //
     // btnMultiply
     //
     resources.ApplyResources(this.btnMultiply, "btnMultiply");
     this.btnMultiply.Name = "btnMultiply";
     this.btnMultiply.UseVisualStyleBackColor = true;
     this.btnMultiply.Click += new System.EventHandler(this.btnMultiply_Click);
     //
     // btnMinus
     //
     resources.ApplyResources(this.btnMinus, "btnMinus");
     this.btnMinus.Name = "btnMinus";
     this.btnMinus.UseVisualStyleBackColor = true;
     this.btnMinus.Click += new System.EventHandler(this.btnMinus_Click);
     //
     // lblDestinationFieldTitle
     //
     resources.ApplyResources(this.lblDestinationFieldTitle, "lblDestinationFieldTitle");
     this.lblDestinationFieldTitle.Name = "lblDestinationFieldTitle";
     //
     // comDestFieldComboBox
     //
     this.comDestFieldComboBox.FormattingEnabled = true;
     resources.ApplyResources(this.comDestFieldComboBox, "comDestFieldComboBox");
     this.comDestFieldComboBox.Name = "comDestFieldComboBox";
     //
     // lblAssignment
     //
     resources.ApplyResources(this.lblAssignment, "lblAssignment");
     this.lblAssignment.Name = "lblAssignment";
     //
     // rtxtComputaion
     //
     resources.ApplyResources(this.rtxtComputaion, "rtxtComputaion");
     this.rtxtComputaion.ForeColor = System.Drawing.SystemColors.Highlight;
     this.rtxtComputaion.Name      = "rtxtComputaion";
     //
     // linkLabel1
     //
     resources.ApplyResources(this.linkLabel1, "linkLabel1");
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // lblComputaion
     //
     resources.ApplyResources(this.lblComputaion, "lblComputaion");
     this.lblComputaion.Name = "lblComputaion";
     //
     // AttributeCalculator
     //
     this.AutoScaleMode = this.AutoScaleMode;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.lblComputaion);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.rtxtComputaion);
     this.Controls.Add(this.lblAssignment);
     this.Controls.Add(this.comDestFieldComboBox);
     this.Controls.Add(this.lblDestinationFieldTitle);
     this.Controls.Add(this.btnMinus);
     this.Controls.Add(this.btnMultiply);
     this.Controls.Add(this.btnDivide);
     this.Controls.Add(this.btnPlus);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnClaculate);
     this.Controls.Add(this.lblFunctions);
     this.Controls.Add(this.lstBoxFunctions);
     this.Controls.Add(this.lstViewFields);
     this.Controls.Add(this.lblFieldTitle);
     this.Name = "AttributeCalculator";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetupBoxesForm));
     this.GBBoxes             = new System.Windows.Forms.GroupBox();
     this.LInfo               = new System.Windows.Forms.Label();
     this.btnOkay             = new System.Windows.Forms.Button();
     this.btnDefault          = new System.Windows.Forms.Button();
     this.MainHelp            = new System.Windows.Forms.HelpProvider();
     this.checkBoxAutoBoxSize = new System.Windows.Forms.CheckBox();
     this.GBBoxes.SuspendLayout();
     this.SuspendLayout();
     //
     // GBBoxes
     //
     resources.ApplyResources(this.GBBoxes, "GBBoxes");
     this.GBBoxes.Controls.Add(this.LInfo);
     this.GBBoxes.Name = "GBBoxes";
     this.MainHelp.SetShowHelp(this.GBBoxes, ((bool)(resources.GetObject("GBBoxes.ShowHelp"))));
     this.GBBoxes.TabStop = false;
     //
     // LInfo
     //
     resources.ApplyResources(this.LInfo, "LInfo");
     this.LInfo.Name = "LInfo";
     this.MainHelp.SetShowHelp(this.LInfo, ((bool)(resources.GetObject("LInfo.ShowHelp"))));
     //
     // btnOkay
     //
     resources.ApplyResources(this.btnOkay, "btnOkay");
     this.btnOkay.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnOkay.Name         = "btnOkay";
     this.MainHelp.SetShowHelp(this.btnOkay, ((bool)(resources.GetObject("btnOkay.ShowHelp"))));
     this.btnOkay.Click += new System.EventHandler(this.btnOkay_Click);
     //
     // btnDefault
     //
     resources.ApplyResources(this.btnDefault, "btnDefault");
     this.btnDefault.Name = "btnDefault";
     this.MainHelp.SetShowHelp(this.btnDefault, ((bool)(resources.GetObject("btnDefault.ShowHelp"))));
     this.btnDefault.Click += new System.EventHandler(this.btnDefault_Click);
     //
     // checkBoxAutoBoxSize
     //
     resources.ApplyResources(this.checkBoxAutoBoxSize, "checkBoxAutoBoxSize");
     this.checkBoxAutoBoxSize.Name = "checkBoxAutoBoxSize";
     this.MainHelp.SetShowHelp(this.checkBoxAutoBoxSize, ((bool)(resources.GetObject("checkBoxAutoBoxSize.ShowHelp"))));
     this.checkBoxAutoBoxSize.UseVisualStyleBackColor = true;
     this.checkBoxAutoBoxSize.CheckedChanged         += new System.EventHandler(this.checkBoxAutoBoxSize_CheckedChanged);
     //
     // SetupBoxesForm
     //
     this.AcceptButton = this.btnOkay;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.btnOkay;
     this.Controls.Add(this.btnDefault);
     this.Controls.Add(this.btnOkay);
     this.Controls.Add(this.GBBoxes);
     this.Controls.Add(this.checkBoxAutoBoxSize);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MainHelp.SetHelpKeyword(this, resources.GetString("$this.HelpKeyword"));
     this.MainHelp.SetHelpNavigator(this, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("$this.HelpNavigator"))));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "SetupBoxesForm";
     this.MainHelp.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
     this.ShowInTaskbar = false;
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.SetupBoxesForm_Closing);
     this.GBBoxes.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources =
         new System.ComponentModel.ComponentResourceManager(typeof(frmEasySampleAsync));
     this.txtClass = new System.Windows.Forms.TextBox();
     this.cmdRun   = new System.Windows.Forms.Button();
     this.label2   = new System.Windows.Forms.Label();
     this.label1   = new System.Windows.Forms.Label();
     this.label4   = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.txtOut   = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // pictureBox3
     //
     //
     // txtClass
     //
     this.txtClass.Font = new System.Drawing.Font("Courier New",
                                                  8.25F,
                                                  System.Drawing.FontStyle.Regular,
                                                  System.Drawing.GraphicsUnit.Point,
                                                  ((byte)(0)));
     this.txtClass.Location   = new System.Drawing.Point(8, 288);
     this.txtClass.Multiline  = true;
     this.txtClass.Name       = "txtClass";
     this.txtClass.ReadOnly   = true;
     this.txtClass.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtClass.Size       = new System.Drawing.Size(328, 160);
     this.txtClass.TabIndex   = 0;
     this.txtClass.Text       = resources.GetString("txtClass.Text");
     this.txtClass.WordWrap   = false;
     //
     // cmdRun
     //
     this.cmdRun.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))),
                                                           ((int)(((byte)(0)))),
                                                           ((int)(((byte)(110)))));
     this.cmdRun.Font = new System.Drawing.Font("Tahoma",
                                                9.75F,
                                                System.Drawing.FontStyle.Bold,
                                                System.Drawing.GraphicsUnit.Point,
                                                ((byte)(0)));
     this.cmdRun.ForeColor = System.Drawing.Color.White;
     this.cmdRun.Location  = new System.Drawing.Point(336, 8);
     this.cmdRun.Name      = "cmdRun";
     this.cmdRun.Size      = new System.Drawing.Size(152, 32);
     this.cmdRun.TabIndex  = 0;
     this.cmdRun.Text      = "RUN >>";
     this.cmdRun.UseVisualStyleBackColor = false;
     this.cmdRun.Click += new System.EventHandler(this.cmdRun_Click);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("Tahoma",
                                                     9F,
                                                     System.Drawing.FontStyle.Bold,
                                                     System.Drawing.GraphicsUnit.Point,
                                                     ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location  = new System.Drawing.Point(8, 272);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(216, 16);
     this.label2.TabIndex  = 7;
     this.label2.Text      = "Code of the Mapping Class";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Tahoma",
                                                     9F,
                                                     System.Drawing.FontStyle.Bold,
                                                     System.Drawing.GraphicsUnit.Point,
                                                     ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(344, 272);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(216, 16);
     this.label1.TabIndex  = 8;
     this.label1.Text      = "Console Output";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font      = new System.Drawing.Font("Tahoma",
                                                     9F,
                                                     System.Drawing.FontStyle.Bold,
                                                     System.Drawing.GraphicsUnit.Point,
                                                     ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location  = new System.Drawing.Point(8, 64);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(152, 16);
     this.label4.TabIndex  = 10;
     this.label4.Text      = "Code to Read the File";
     //
     // textBox1
     //
     this.textBox1.Font = new System.Drawing.Font("Courier New",
                                                  8.25F,
                                                  System.Drawing.FontStyle.Regular,
                                                  System.Drawing.GraphicsUnit.Point,
                                                  ((byte)(0)));
     this.textBox1.Location  = new System.Drawing.Point(8, 80);
     this.textBox1.Multiline = true;
     this.textBox1.Name      = "textBox1";
     this.textBox1.ReadOnly  = true;
     this.textBox1.Size      = new System.Drawing.Size(656, 184);
     this.textBox1.TabIndex  = 11;
     this.textBox1.Text      = resources.GetString("textBox1.Text");
     this.textBox1.WordWrap  = false;
     //
     // txtOut
     //
     this.txtOut.Font = new System.Drawing.Font("Courier New",
                                                8.25F,
                                                System.Drawing.FontStyle.Regular,
                                                System.Drawing.GraphicsUnit.Point,
                                                ((byte)(0)));
     this.txtOut.Location   = new System.Drawing.Point(344, 288);
     this.txtOut.Multiline  = true;
     this.txtOut.Name       = "txtOut";
     this.txtOut.ReadOnly   = true;
     this.txtOut.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtOut.Size       = new System.Drawing.Size(328, 160);
     this.txtOut.TabIndex   = 12;
     this.txtOut.WordWrap   = false;
     //
     // frmEasySampleAsync
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(680, 480);
     this.Controls.Add(this.txtOut);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.cmdRun);
     this.Controls.Add(this.txtClass);
     this.Controls.Add(this.textBox1);
     this.Name = "frmEasySampleAsync";
     this.Text = "FileHelpers - Easy Example";
     this.Controls.SetChildIndex(this.textBox1, 0);
     this.Controls.SetChildIndex(this.txtClass, 0);
     this.Controls.SetChildIndex(this.cmdRun, 0);
     this.Controls.SetChildIndex(this.label2, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.Controls.SetChildIndex(this.label4, 0);
     this.Controls.SetChildIndex(this.txtOut, 0);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #57
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpTreatmentFinder));
     this.label1                   = new System.Windows.Forms.Label();
     this.checkIncludeNoIns        = new System.Windows.Forms.CheckBox();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.comboMonthStart          = new System.Windows.Forms.ComboBox();
     this.label8                   = new System.Windows.Forms.Label();
     this.label7                   = new System.Windows.Forms.Label();
     this.label5                   = new System.Windows.Forms.Label();
     this.textCodeRange            = new System.Windows.Forms.TextBox();
     this.label3                   = new System.Windows.Forms.Label();
     this.label6                   = new System.Windows.Forms.Label();
     this.label4                   = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     this.contextRightClick        = new System.Windows.Forms.ContextMenu();
     this.menuItemFamily           = new System.Windows.Forms.MenuItem();
     this.menuItemAccount          = new System.Windows.Forms.MenuItem();
     this.checkIncludePatsWithApts = new System.Windows.Forms.CheckBox();
     this.gridMain                 = new OpenDental.UI.ODGrid();
     this.buttonExport             = new OpenDental.UI.Button();
     this.butLettersPreview        = new OpenDental.UI.Button();
     this.butLabelSingle           = new OpenDental.UI.Button();
     this.butLabelPreview          = new OpenDental.UI.Button();
     this.butGotoAccount           = new OpenDental.UI.Button();
     this.butGotoFamily            = new OpenDental.UI.Button();
     this.butPrint                 = new OpenDental.UI.Button();
     this.comboBoxMultiBilling     = new OpenDental.UI.ComboBoxMulti();
     this.comboBoxMultiProv        = new OpenDental.UI.ComboBoxMulti();
     this.textOverAmount           = new OpenDental.ValidDouble();
     this.textDateStart            = new OpenDental.ValidDate();
     this.butRefresh               = new OpenDental.UI.Button();
     this.butCancel                = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(22, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(872, 29);
     this.label1.TabIndex = 29;
     this.label1.Text     = resources.GetString("label1.Text");
     //
     // checkIncludeNoIns
     //
     this.checkIncludeNoIns.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludeNoIns.Location   = new System.Drawing.Point(31, 14);
     this.checkIncludeNoIns.Name       = "checkIncludeNoIns";
     this.checkIncludeNoIns.Size       = new System.Drawing.Size(214, 18);
     this.checkIncludeNoIns.TabIndex   = 30;
     this.checkIncludeNoIns.Text       = "Include patients without insurance";
     this.checkIncludeNoIns.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludeNoIns.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboBoxMultiBilling);
     this.groupBox1.Controls.Add(this.comboBoxMultiProv);
     this.groupBox1.Controls.Add(this.textOverAmount);
     this.groupBox1.Controls.Add(this.comboMonthStart);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.textCodeRange);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.textDateStart);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.butRefresh);
     this.groupBox1.Controls.Add(this.checkIncludePatsWithApts);
     this.groupBox1.Controls.Add(this.checkIncludeNoIns);
     this.groupBox1.Location = new System.Drawing.Point(3, 41);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(916, 83);
     this.groupBox1.TabIndex = 33;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "View";
     //
     // comboMonthStart
     //
     this.comboMonthStart.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboMonthStart.Items.AddRange(new object[] {
         "Calendar Year",
         "01 - January",
         "02 - February",
         "03 - March",
         "04 - April",
         "05 - May",
         "06 - June",
         "07 - July",
         "08 - August",
         "09 - September",
         "10 - October",
         "11 - November",
         "12 - December"
     });
     this.comboMonthStart.Location         = new System.Drawing.Point(346, 32);
     this.comboMonthStart.MaxDropDownItems = 40;
     this.comboMonthStart.Name             = "comboMonthStart";
     this.comboMonthStart.Size             = new System.Drawing.Size(98, 21);
     this.comboMonthStart.TabIndex         = 47;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(31, 58);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(140, 14);
     this.label8.TabIndex  = 46;
     this.label8.Text      = "Amount remaining over";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(445, 35);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(70, 14);
     this.label7.TabIndex  = 43;
     this.label7.Text      = "Billing Type";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(758, 34);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(150, 13);
     this.label5.TabIndex = 41;
     this.label5.Text     = "Ex: D1050-D1060";
     //
     // textCodeRange
     //
     this.textCodeRange.Location = new System.Drawing.Point(758, 12);
     this.textCodeRange.Name     = "textCodeRange";
     this.textCodeRange.Size     = new System.Drawing.Size(150, 20);
     this.textCodeRange.TabIndex = 39;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(249, 36);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(93, 14);
     this.label3.TabIndex  = 37;
     this.label3.Text      = "Ins Month Start";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(679, 12);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(77, 17);
     this.label6.TabIndex  = 40;
     this.label6.Text      = "Code Range";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(445, 14);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(70, 14);
     this.label4.TabIndex  = 35;
     this.label4.Text      = "Provider";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(246, 14);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(119, 14);
     this.label2.TabIndex  = 33;
     this.label2.Text      = "TP Date Since";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // contextRightClick
     //
     this.contextRightClick.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFamily,
         this.menuItemAccount
     });
     //
     // menuItemFamily
     //
     this.menuItemFamily.Index  = 0;
     this.menuItemFamily.Text   = "See Family";
     this.menuItemFamily.Click += new System.EventHandler(this.menuItemFamily_Click);
     //
     // menuItemAccount
     //
     this.menuItemAccount.Index  = 1;
     this.menuItemAccount.Text   = "See Account";
     this.menuItemAccount.Click += new System.EventHandler(this.menuItemAccount_Click);
     //
     // checkIncludePatsWithApts
     //
     this.checkIncludePatsWithApts.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludePatsWithApts.Location   = new System.Drawing.Point(6, 33);
     this.checkIncludePatsWithApts.Name       = "checkIncludePatsWithApts";
     this.checkIncludePatsWithApts.Size       = new System.Drawing.Size(239, 18);
     this.checkIncludePatsWithApts.TabIndex   = 30;
     this.checkIncludePatsWithApts.Text       = "Include patients with upcoming appointments";
     this.checkIncludePatsWithApts.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludePatsWithApts.UseVisualStyleBackColor = true;
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible   = true;
     this.gridMain.Location         = new System.Drawing.Point(3, 130);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.SelectionMode    = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size             = new System.Drawing.Size(917, 453);
     this.gridMain.TabIndex         = 31;
     this.gridMain.Title            = "Treatment Finder";
     this.gridMain.TranslationName  = "TableTreatmentFinder";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // buttonExport
     //
     this.buttonExport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.buttonExport.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonExport.Autosize     = true;
     this.buttonExport.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.buttonExport.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.buttonExport.CornerRadius = 4F;
     this.buttonExport.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonExport.Location     = new System.Drawing.Point(3, 613);
     this.buttonExport.Name         = "buttonExport";
     this.buttonExport.Size         = new System.Drawing.Size(119, 24);
     this.buttonExport.TabIndex     = 72;
     this.buttonExport.Text         = "Export to File";
     this.buttonExport.Click       += new System.EventHandler(this.buttonExport_Click);
     //
     // butLettersPreview
     //
     this.butLettersPreview.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butLettersPreview.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLettersPreview.Autosize     = true;
     this.butLettersPreview.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLettersPreview.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLettersPreview.CornerRadius = 4F;
     this.butLettersPreview.Image        = global::OpenDental.Properties.Resources.butPreview;
     this.butLettersPreview.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLettersPreview.Location     = new System.Drawing.Point(3, 587);
     this.butLettersPreview.Name         = "butLettersPreview";
     this.butLettersPreview.Size         = new System.Drawing.Size(119, 24);
     this.butLettersPreview.TabIndex     = 71;
     this.butLettersPreview.Text         = "Letters Preview";
     this.butLettersPreview.Click       += new System.EventHandler(this.butLettersPreview_Click);
     //
     // butLabelSingle
     //
     this.butLabelSingle.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butLabelSingle.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLabelSingle.Autosize     = true;
     this.butLabelSingle.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLabelSingle.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLabelSingle.CornerRadius = 4F;
     this.butLabelSingle.Image        = global::OpenDental.Properties.Resources.butLabel;
     this.butLabelSingle.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabelSingle.Location     = new System.Drawing.Point(128, 587);
     this.butLabelSingle.Name         = "butLabelSingle";
     this.butLabelSingle.Size         = new System.Drawing.Size(119, 24);
     this.butLabelSingle.TabIndex     = 70;
     this.butLabelSingle.Text         = "Single Labels";
     this.butLabelSingle.Click       += new System.EventHandler(this.butLabelSingle_Click);
     //
     // butLabelPreview
     //
     this.butLabelPreview.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butLabelPreview.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLabelPreview.Autosize     = true;
     this.butLabelPreview.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLabelPreview.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLabelPreview.CornerRadius = 4F;
     this.butLabelPreview.Image        = global::OpenDental.Properties.Resources.butLabel;
     this.butLabelPreview.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabelPreview.Location     = new System.Drawing.Point(128, 613);
     this.butLabelPreview.Name         = "butLabelPreview";
     this.butLabelPreview.Size         = new System.Drawing.Size(119, 24);
     this.butLabelPreview.TabIndex     = 69;
     this.butLabelPreview.Text         = "Label Preview";
     this.butLabelPreview.Click       += new System.EventHandler(this.butLabelPreview_Click);
     //
     // butGotoAccount
     //
     this.butGotoAccount.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butGotoAccount.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butGotoAccount.Autosize     = true;
     this.butGotoAccount.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butGotoAccount.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butGotoAccount.CornerRadius = 4F;
     this.butGotoAccount.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butGotoAccount.Location     = new System.Drawing.Point(661, 613);
     this.butGotoAccount.Name         = "butGotoAccount";
     this.butGotoAccount.Size         = new System.Drawing.Size(96, 24);
     this.butGotoAccount.TabIndex     = 68;
     this.butGotoAccount.Text         = "Go to Account";
     this.butGotoAccount.Click       += new System.EventHandler(this.butGotoAccount_Click);
     //
     // butGotoFamily
     //
     this.butGotoFamily.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butGotoFamily.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butGotoFamily.Autosize     = true;
     this.butGotoFamily.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butGotoFamily.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butGotoFamily.CornerRadius = 4F;
     this.butGotoFamily.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butGotoFamily.Location     = new System.Drawing.Point(661, 587);
     this.butGotoFamily.Name         = "butGotoFamily";
     this.butGotoFamily.Size         = new System.Drawing.Size(96, 24);
     this.butGotoFamily.TabIndex     = 67;
     this.butGotoFamily.Text         = "Go to Family";
     this.butGotoFamily.Click       += new System.EventHandler(this.butGotoFamily_Click);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(418, 613);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(87, 24);
     this.butPrint.TabIndex     = 34;
     this.butPrint.Text         = "Print List";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // comboBoxMultiBilling
     //
     this.comboBoxMultiBilling.BackColor       = System.Drawing.SystemColors.Window;
     this.comboBoxMultiBilling.DroppedDown     = false;
     this.comboBoxMultiBilling.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiBilling.Items")));
     this.comboBoxMultiBilling.Location        = new System.Drawing.Point(515, 32);
     this.comboBoxMultiBilling.Name            = "comboBoxMultiBilling";
     this.comboBoxMultiBilling.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiBilling.SelectedIndices")));
     this.comboBoxMultiBilling.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiBilling.TabIndex        = 50;
     this.comboBoxMultiBilling.UseCommas       = true;
     this.comboBoxMultiBilling.Leave          += new System.EventHandler(this.comboBoxMultiBilling_Leave);
     //
     // comboBoxMultiProv
     //
     this.comboBoxMultiProv.BackColor       = System.Drawing.SystemColors.Window;
     this.comboBoxMultiProv.DroppedDown     = false;
     this.comboBoxMultiProv.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.Items")));
     this.comboBoxMultiProv.Location        = new System.Drawing.Point(515, 10);
     this.comboBoxMultiProv.Name            = "comboBoxMultiProv";
     this.comboBoxMultiProv.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.SelectedIndices")));
     this.comboBoxMultiProv.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiProv.TabIndex        = 49;
     this.comboBoxMultiProv.UseCommas       = true;
     this.comboBoxMultiProv.Leave          += new System.EventHandler(this.comboBoxMultiProv_Leave);
     //
     // textOverAmount
     //
     this.textOverAmount.Location = new System.Drawing.Point(177, 55);
     this.textOverAmount.Name     = "textOverAmount";
     this.textOverAmount.Size     = new System.Drawing.Size(68, 20);
     this.textOverAmount.TabIndex = 48;
     //
     // textDateStart
     //
     this.textDateStart.Location = new System.Drawing.Point(367, 11);
     this.textDateStart.Name     = "textDateStart";
     this.textDateStart.Size     = new System.Drawing.Size(77, 20);
     this.textDateStart.TabIndex = 34;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize     = true;
     this.butRefresh.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location     = new System.Drawing.Point(346, 55);
     this.butRefresh.Name         = "butRefresh";
     this.butRefresh.Size         = new System.Drawing.Size(98, 24);
     this.butRefresh.TabIndex     = 32;
     this.butRefresh.Text         = "&Refresh List";
     this.butRefresh.Click       += new System.EventHandler(this.butRefresh_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(844, 613);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 4;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // FormRpTreatmentFinder
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(923, 641);
     this.Controls.Add(this.buttonExport);
     this.Controls.Add(this.butLettersPreview);
     this.Controls.Add(this.butLabelSingle);
     this.Controls.Add(this.butLabelPreview);
     this.Controls.Add(this.butGotoAccount);
     this.Controls.Add(this.butGotoFamily);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FormRpTreatmentFinder";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Treatment Finder";
     this.Load         += new System.EventHandler(this.FormRpTreatmentFinder_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.button1     = new System.Windows.Forms.Button();
     this.label1      = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = global::EmbedNoninstalledFonts.Properties.Resources.Word;
     this.pictureBox1.Location = new System.Drawing.Point(12, 12);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(56, 48);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // button1
     //
     this.button1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.BackColor = System.Drawing.Color.Transparent;
     this.button1.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.button1.Image      = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.Location   = new System.Drawing.Point(349, 95);
     this.button1.Name       = "button1";
     this.button1.Size       = new System.Drawing.Size(96, 27);
     this.button1.TabIndex   = 63;
     this.button1.Text       = "Run";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Verdana", 8.25F);
     this.label1.Location = new System.Drawing.Point(85, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(360, 63);
     this.label1.TabIndex = 64;
     this.label1.Text     = resources.GetString("label1.Text");
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.ClientSize          = new System.Drawing.Size(457, 134);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.pictureBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "Form1";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Embed Non-installed Fonts";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Example #59
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.chartControl1  = new Syncfusion.Windows.Forms.Chart.ChartControl();
            this.label2         = new System.Windows.Forms.Label();
            this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
            this.gradientPanel2 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
            this.buttonAdv1     = new System.Windows.Forms.Button();
            this.btnTop3        = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).BeginInit();
            this.gradientPanel2.SuspendLayout();
            this.SuspendLayout();
            //
            // chartControl1
            //
            this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
            this.chartControl1.ChartArea.BackInterior   = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.BackwardDiagonal, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
            this.chartControl1.ChartArea.BorderColor    = System.Drawing.Color.Transparent;
            this.chartControl1.ChartArea.CursorLocation = new System.Drawing.Point(0, 0);
            this.chartControl1.ChartArea.CursorReDraw   = false;
            this.chartControl1.ChartAreaMargins         = new Syncfusion.Windows.Forms.Chart.ChartMargins(1, 4, 5, 1);
            this.chartControl1.ChartInterior            = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.White, System.Drawing.Color.White);
            this.chartControl1.DataSourceName           = "";
            this.chartControl1.ElementsSpacing          = 0;
            this.chartControl1.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.chartControl1.IsWindowLess = false;
            //
            //
            //
            this.chartControl1.Legend.Alignment   = Syncfusion.Windows.Forms.Chart.ChartAlignment.Center;
            this.chartControl1.Legend.ItemsSize   = new System.Drawing.Size(15, 15);
            this.chartControl1.Legend.Location    = new System.Drawing.Point(194, 52);
            this.chartControl1.Legend.Orientation = Syncfusion.Windows.Forms.Chart.ChartOrientation.Horizontal;
            this.chartControl1.Legend.Position    = Syncfusion.Windows.Forms.Chart.ChartDock.Top;
            this.chartControl1.Legend.Spacing     = 3;
            this.chartControl1.Legend.Visible     = false;
            this.chartControl1.Localize           = null;
            this.chartControl1.Location           = new System.Drawing.Point(5, 12);
            this.chartControl1.Name = "chartControl1";
            this.chartControl1.PrimaryXAxis.Crossing  = double.NaN;
            this.chartControl1.PrimaryXAxis.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chartControl1.PrimaryXAxis.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chartControl1.PrimaryXAxis.GridLineType.ForeColor = System.Drawing.Color.LightGray;
            this.chartControl1.PrimaryXAxis.LineType.ForeColor     = System.Drawing.Color.DarkGray;
            this.chartControl1.PrimaryXAxis.Margin    = true;
            this.chartControl1.PrimaryXAxis.TitleFont = new System.Drawing.Font("Segoe UI", 14F);
            this.chartControl1.PrimaryYAxis.Crossing  = double.NaN;
            this.chartControl1.PrimaryYAxis.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chartControl1.PrimaryYAxis.ForceZero = true;
            this.chartControl1.PrimaryYAxis.GridLineType.ForeColor = System.Drawing.Color.LightGray;
            this.chartControl1.PrimaryYAxis.LineType.ForeColor     = System.Drawing.Color.DarkGray;
            this.chartControl1.PrimaryYAxis.Margin    = true;
            this.chartControl1.PrimaryYAxis.TitleFont = new System.Drawing.Font("Segoe UI", 14F);
            this.chartControl1.Size     = new System.Drawing.Size(689, 560);
            this.chartControl1.Skins    = Syncfusion.Windows.Forms.Chart.Skins.Metro;
            this.chartControl1.TabIndex = 0;
            this.chartControl1.Text     = "Binding To Linq Datasource";
            //
            //
            //
            this.chartControl1.Title.Font = new System.Drawing.Font("Segoe UI", 16F);
            this.chartControl1.Title.Name = "Default";
            this.chartControl1.Titles.Add(this.chartControl1.Title);
            //
            // label2
            //
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
            this.label2.Location  = new System.Drawing.Point(15, 57);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(247, 155);
            this.label2.TabIndex  = 4;
            this.label2.Text      = resources.GetString("label2.Text");
            //
            // gradientPanel1
            //
            this.gradientPanel1.BackColor   = System.Drawing.Color.White;
            this.gradientPanel1.BorderColor = System.Drawing.Color.White;
            this.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gradientPanel1.Dock        = System.Windows.Forms.DockStyle.Right;
            this.gradientPanel1.Location    = new System.Drawing.Point(781, 0);
            this.gradientPanel1.Name        = "gradientPanel1";
            this.gradientPanel1.Size        = new System.Drawing.Size(177, 584);
            this.gradientPanel1.TabIndex    = 7;
            //
            // gradientPanel2
            //
            this.gradientPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
            this.gradientPanel2.BackColor    = System.Drawing.Color.WhiteSmoke;
            this.gradientPanel2.BorderColor  = System.Drawing.Color.Transparent;
            this.gradientPanel2.BorderSingle = System.Windows.Forms.ButtonBorderStyle.None;
            this.gradientPanel2.BorderStyle  = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gradientPanel2.Controls.Add(this.buttonAdv1);
            this.gradientPanel2.Controls.Add(this.btnTop3);
            this.gradientPanel2.Controls.Add(this.label2);
            this.gradientPanel2.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.gradientPanel2.Location = new System.Drawing.Point(700, 0);
            this.gradientPanel2.Name     = "gradientPanel2";
            this.gradientPanel2.Size     = new System.Drawing.Size(260, 590);
            this.gradientPanel2.TabIndex = 6;
            this.gradientPanel2.Paint   += new System.Windows.Forms.PaintEventHandler(this.gradientPanel2_Paint);
            //
            // buttonAdv1
            //
            this.buttonAdv1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));

            this.buttonAdv1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.buttonAdv1.ForeColor = System.Drawing.Color.White;
            this.buttonAdv1.Location  = new System.Drawing.Point(76, 208);
            this.buttonAdv1.Name      = "buttonAdv1";
            this.buttonAdv1.Size      = new System.Drawing.Size(116, 31);
            this.buttonAdv1.TabIndex  = 97;
            this.buttonAdv1.Text      = "REFRESH";
            this.buttonAdv1.Visible   = false;
            this.buttonAdv1.Click    += new System.EventHandler(this.buttonAdv1_Click);
            //
            // btnTop3
            //
            this.btnTop3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));

            this.btnTop3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnTop3.ForeColor = System.Drawing.Color.White;
            this.btnTop3.Location  = new System.Drawing.Point(48, 208);
            this.btnTop3.Name      = "btnTop3";
            this.btnTop3.Size      = new System.Drawing.Size(168, 31);
            this.btnTop3.TabIndex  = 7;
            this.btnTop3.Text      = "FILTER TOP 3 CITIES";
            this.btnTop3.Click    += new System.EventHandler(this.btnTop3_Click);
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor           = System.Drawing.Color.White;
            this.ClientSize          = new System.Drawing.Size(958, 584);
            this.Controls.Add(this.gradientPanel2);
            this.Controls.Add(this.gradientPanel1);
            this.Controls.Add(this.chartControl1);
            this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize   = new System.Drawing.Size(701, 359);
            this.Name          = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "LINQ DataSource";
            this.Load         += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).EndInit();
            this.gradientPanel2.ResumeLayout(false);
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1        = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport1));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("CategoryName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Level   = 1;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.Color.Turquoise;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Product Sales for 1997.CategoryName")
     });
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 25F);
     this.xrLabel1.StylePriority.UseBackColor = false;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Product Sales for 1997.ProductName")
     });
     this.xrLabel2.Dpi           = 100F;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(50F, 0F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(333F, 25F);
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor = System.Drawing.Color.Turquoise;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Product Sales for 1997.ProductSales")
     });
     this.xrLabel3.Dpi           = 100F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(400F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(142F, 25F);
     this.xrLabel3.StylePriority.UseBackColor = false;
     xrSummary1.FormatString = "{0:#.00}";
     xrSummary1.Running      = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary   = xrSummary1;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupHeader2.Dpi = 100F;
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ProductName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // topMarginBand1
     //
     this.topMarginBand1.Dpi     = 100F;
     this.topMarginBand1.HeightF = 100F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Dpi     = 100F;
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "E4715.Properties.Settings.NorthwindConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "CategoryName";
     table1.Name                  = "Product Sales for 1997";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "ProductName";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "ProductSales";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Name = "Product Sales for 1997";
     selectQuery1.Tables.Add(table1);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.GroupHeader1,
         this.GroupHeader2,
         this.topMarginBand1,
         this.bottomMarginBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Product Sales for 1997";
     this.DataSource = this.sqlDataSource1;
     this.Version    = "16.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }