/// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Splash));
         this.pictureBox1 = new System.Windows.Forms.PictureBox();
         this.timer1 = new System.Windows.Forms.Timer(this.components);
         this.SuspendLayout();
         //
         // pictureBox1
         //
         this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
         this.pictureBox1.Image = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
         this.pictureBox1.Name = "pictureBox1";
         this.pictureBox1.Size = new System.Drawing.Size(632, 416);
         this.pictureBox1.TabIndex = 0;
         this.pictureBox1.TabStop = false;
         //
         // Splash
         //
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(632, 416);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                       this.pictureBox1});
         this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
         this.Name = "Splash";
         this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
         this.Text = "Splash";
         this.ResumeLayout(false);
 }
Example #2
0
File: tween.cs Project: hebus/Tools
        ///<summary>
        ///this method kicks off the process
        ///</summary>
        public void startTweenEvent(object _objHolder, int _destXpos, int _destYpos, string _animType, int _timeInterval)
        {
            //inits the parameters for the tween process
                counter		= 0;
                timeStart	= counter;
                timeDest	= _timeInterval;
                animType	= _animType;

                this.components			= new System.ComponentModel.Container();
                this.timer1				= new System.Windows.Forms.Timer(this.components);
                this.timer1.Interval	= 1;
                this.timer1.Tick		+= new System.EventHandler(this.timer1_Tick);

                //Manages the object passed in to be tweened.
                //I create a new instance of a control and then force the object to convert to
                //a control. Doing it this way, the method accepts ANY control,
                //rather than hard-coding "Button" or some other specific control.
                objHolder	= new System.Windows.Forms.Control();
                objHolder	= (Control) _objHolder;
                objTimer	= this.timer1;

                //initializes the object's position in the pos Arrays
                Arr_startPos[0]	= objHolder.Location.X;
                Arr_startPos[1]	= objHolder.Location.Y;
                Arr_destPos[0]	= _destXpos;
                Arr_destPos[1]	= _destYpos;

                //resets the timer and finally starts it
                objTimer.Stop();
                objTimer.Enabled = false;
                objTimer.Enabled = true;
        }
Example #3
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(MEImages));
			this.buttonImages = new System.Windows.Forms.ImageList(this.components);
			this.SuspendLayout();
			//
			// buttonImages
			//
			this.buttonImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("buttonImages.ImageStream")));
			this.buttonImages.TransparentColor = System.Drawing.Color.Fuchsia;
			this.buttonImages.Images.SetKeyName(0, "");
			this.buttonImages.Images.SetKeyName(1, "Headed Comp Rule.ico");
			this.buttonImages.Images.SetKeyName(2, "non-Headed Comp Rule.ico");
			this.buttonImages.Images.SetKeyName(3, "Phoneme.ico");
			this.buttonImages.Images.SetKeyName(4, "");
			this.buttonImages.Images.SetKeyName(5, "Natural Class.ico");
			this.buttonImages.Images.SetKeyName(6, "Environment.ico");
			this.buttonImages.Images.SetKeyName(7, "adhoc Morpheme rule.ico");
			this.buttonImages.Images.SetKeyName(8, "adhoc Allomorph rule.ico");
			this.buttonImages.Images.SetKeyName(9, "adhoc Group.ico");
			this.buttonImages.Images.SetKeyName(10, "Insert Cat.ico");
			this.buttonImages.Images.SetKeyName(11, "Insert Feature.ico");
			this.buttonImages.Images.SetKeyName(12, "Insert Complex Feature.ico");
			this.buttonImages.Images.SetKeyName(13, "Exception Feature.ico");
			this.buttonImages.Images.SetKeyName(14, "Metathesis.ico");
			//
			// MEImages
			//
			this.Name = "MEImages";
			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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(PortMapViewer));
			this._treeView = new System.Windows.Forms.TreeView();
			this._imageList = new System.Windows.Forms.ImageList(this.components);
			this.SuspendLayout();
			// 
			// _treeView
			// 
			this._treeView.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._treeView.Dock = System.Windows.Forms.DockStyle.Fill;
			this._treeView.ImageList = this._imageList;
			this._treeView.Location = new System.Drawing.Point(0, 0);
			this._treeView.Name = "_treeView";
			this._treeView.Size = new System.Drawing.Size(150, 150);
			this._treeView.TabIndex = 0;
			// 
			// _imageList
			// 
			this._imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
			this._imageList.ImageSize = new System.Drawing.Size(16, 16);
			this._imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_imageList.ImageStream")));
			this._imageList.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// PortMapViewer
			// 
			this.Controls.Add(this._treeView);
			this.Name = "PortMapViewer";
			this.ResumeLayout(false);

		}
		public void startTweenEvent(object _objHolder,
		 int _destXpos,
		 int _destYpos,
		 string _animType,
		 int _timeInterval)
		{

			counter = 0;
			timeStart = counter;
			timeDest = _timeInterval;
			animType = _animType;

			this.components = new System.ComponentModel.Container();
			this.timer1 = new System.Windows.Forms.Timer(this.components);
			this.timer1.Interval = 5;
			this.timer1.Tick += new System.EventHandler(this.timer1_Tick);

			objHolder = new System.Windows.Forms.Control();
			objHolder = (Control)_objHolder;
			objTimer = this.timer1;

			Arr_startPos[0] = objHolder.Location.X;
			Arr_startPos[1] = objHolder.Location.Y;
			Arr_destPos[0] = _destXpos;
			Arr_destPos[1] = _destYpos;

			objTimer.Stop();
			objTimer.Enabled = false;
			objTimer.Enabled = true;
		}
Example #6
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(LayerTool));
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     //
     // imageList
     //
     this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Magenta;
     //
     // LayerTool
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(234, 166);
     this.ControlBox = false;
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "LayerTool";
     this.ShowInTaskbar = false;
     this.Text = "LayerTool";
     this.TopMost = true;
 }
Example #7
0
 /// <summary>
 /// Required by designer support - do not modify
 /// the following method
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.adxieKeyboardCommand = new AddinExpress.IE.ADXIEKeyboardShortcut(this.components);
     this.adxieAdvancedSearchBarItem = new AddinExpress.IE.ADXIEBarItem(this.components);
     //
     // adxieKeyboardCommand
     //
     this.adxieKeyboardCommand.ShortcutText = "Ctrl+F";
     this.adxieKeyboardCommand.OnAction += new AddinExpress.IE.ADXIEKeyboardShortcut_EventHandler(this.adxieKeyboardCommand_OnAction);
     //
     // adxieAdvancedSearchBarItem
     //
     this.adxieAdvancedSearchBarItem.BarType = "AddinExpress.AdvancedSearch.AdvancedSearchIEBar";
     this.adxieAdvancedSearchBarItem.HelpText = "Add-in Express Advanced search engine";
     this.adxieAdvancedSearchBarItem.LoadAtStartup = true;
     this.adxieAdvancedSearchBarItem.MaxSize = 200;
     this.adxieAdvancedSearchBarItem.MenuText = "Advanced Search";
     this.adxieAdvancedSearchBarItem.MinSize = 200;
     this.adxieAdvancedSearchBarItem.Title = "Advanced Search";
     //
     // IEAdvancedSearch
     //
     this.Bars.Add(this.adxieAdvancedSearchBarItem);
     this.HandleShortcuts = true;
     this.ModuleName = "AdvancedSearchForIE";
     this.OnTabChanged += new AddinExpress.IE.ADXIETabChanged_EventHandler(this.IEAdvancedSearch_OnTabChanged);
     this.OnSendMessage += new AddinExpress.IE.ADXIESendMessage_EventHandler(this.IEAdvancedSearch_OnSendMessage);
     this.OnConnect += new AddinExpress.IE.ADXIEConnect_EventHandler(this.IEAdvancedSearch_OnConnect);
 }
Example #8
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(PicasaExitButton));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(13, 13);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(13, 13);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.MouseEnter += new System.EventHandler(this.pictureBox1_MouseEnter);
     this.pictureBox1.MouseLeave += new System.EventHandler(this.pictureBox1_MouseLeave);
     //
     // PicasaExitButton
     //
     this.Controls.Add(this.pictureBox1);
     this.Name = "PicasaExitButton";
     this.Size = new System.Drawing.Size(13, 13);
     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(FormImageViewer));
			this.imageListTools = new System.Windows.Forms.ImageList(this.components);
			this.PictureBox1 = new System.Windows.Forms.PictureBox();
			this.ToolBarMain = new OpenDental.UI.ODToolBar();
			((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
			this.SuspendLayout();
			// 
			// imageListTools
			// 
			this.imageListTools.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTools.ImageStream")));
			this.imageListTools.TransparentColor = System.Drawing.Color.Transparent;
			this.imageListTools.Images.SetKeyName(0,"");
			this.imageListTools.Images.SetKeyName(1,"");
			// 
			// PictureBox1
			// 
			this.PictureBox1.BackColor = System.Drawing.SystemColors.Window;
			this.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
			this.PictureBox1.Cursor = System.Windows.Forms.Cursors.Arrow;
			this.PictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.PictureBox1.Location = new System.Drawing.Point(0,25);
			this.PictureBox1.Name = "PictureBox1";
			this.PictureBox1.Size = new System.Drawing.Size(903,673);
			this.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
			this.PictureBox1.TabIndex = 12;
			this.PictureBox1.TabStop = false;
			this.PictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PictureBox1_MouseDown);
			this.PictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.PictureBox1_MouseMove);
			this.PictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PictureBox1_MouseUp);
			// 
			// ToolBarMain
			// 
			this.ToolBarMain.Dock = System.Windows.Forms.DockStyle.Top;
			this.ToolBarMain.ImageList = this.imageListTools;
			this.ToolBarMain.Location = new System.Drawing.Point(0,0);
			this.ToolBarMain.Name = "ToolBarMain";
			this.ToolBarMain.Size = new System.Drawing.Size(903,25);
			this.ToolBarMain.TabIndex = 11;
			this.ToolBarMain.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarMain_ButtonClick);
			// 
			// FormImageViewer
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(903,698);
			this.Controls.Add(this.PictureBox1);
			this.Controls.Add(this.ToolBarMain);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "FormImageViewer";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Image Viewer";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.Load += new System.EventHandler(this.FormImageViewer_Load);
			this.Resize += new System.EventHandler(this.FormImageViewer_Resize);
			((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
			this.ResumeLayout(false);

		}
Example #10
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(DoubleBox));
            this.lblCaption = new System.Windows.Forms.Label();
            this.txtValue = new System.Windows.Forms.TextBox();
            this.ttHelp = new System.Windows.Forms.ToolTip(this.components);
            this.SuspendLayout();
            // 
            // lblCaption
            // 
            resources.ApplyResources(this.lblCaption, "lblCaption");
            this.lblCaption.Name = "lblCaption";
            // 
            // txtValue
            // 
            resources.ApplyResources(this.txtValue, "txtValue");
            this.txtValue.Name = "txtValue";
            this.txtValue.TextChanged += new System.EventHandler(this.txtValue_TextChanged);
            // 
            // DoubleBox
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.txtValue);
            this.Controls.Add(this.lblCaption);
            this.Name = "DoubleBox";
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #11
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();
     this._tvProcess = new System.Windows.Forms.TreeView();
     this._ilState = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // _tvProcess
     //
     this._tvProcess.Dock = System.Windows.Forms.DockStyle.Fill;
     this._tvProcess.HideSelection = false;
     this._tvProcess.ImageList = this._ilState;
     this._tvProcess.Location = new System.Drawing.Point(0, 0);
     this._tvProcess.Name = "_tvProcess";
     this._tvProcess.Size = new System.Drawing.Size(150, 150);
     this._tvProcess.TabIndex = 0;
     this._tvProcess.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this._tvProcess_AfterSelect);
     this._tvProcess.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this._tvProcess_BeforeSelect);
     //
     // _ilState
     //
     this._ilState.ImageSize = new System.Drawing.Size(16, 16);
     this._ilState.TransparentColor = System.Drawing.Color.Transparent;
     //
     // ProcessTree
     //
     this.Controls.Add(this._tvProcess);
     this.Name = "ProcessTree";
     this.Load += new System.EventHandler(this.ProcessTree_Load);
     this.ResumeLayout(false);
 }
Example #12
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(RegistryBrowser));
			this.tvRegistry = new System.Windows.Forms.TreeView();
			this.ilTreeImages = new System.Windows.Forms.ImageList(this.components);
			this.SuspendLayout();
			// 
			// tvRegistry
			// 
			this.tvRegistry.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tvRegistry.ImageList = this.ilTreeImages;
			this.tvRegistry.Name = "tvRegistry";
			this.tvRegistry.Size = new System.Drawing.Size(392, 333);
			this.tvRegistry.TabIndex = 0;
			this.tvRegistry.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistry_BeforeExpand);
			// 
			// ilTreeImages
			// 
			this.ilTreeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			this.ilTreeImages.ImageSize = new System.Drawing.Size(13, 13);
			this.ilTreeImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilTreeImages.ImageStream")));
			this.ilTreeImages.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// RegistryBrowser
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(392, 333);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.tvRegistry});
			this.Name = "RegistryBrowser";
			this.Text = "Registry Browser";
			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();
            this.zedGraphControl1 = new ZedGraph.ZedGraphControl();
            this.SuspendLayout();
            // 
            // zedGraphControl1
            // 
            this.zedGraphControl1.Location = new System.Drawing.Point(36, 29);
            this.zedGraphControl1.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
            this.zedGraphControl1.Name = "zedGraphControl1";
            this.zedGraphControl1.ScrollGrace = 0D;
            this.zedGraphControl1.ScrollMaxX = 0D;
            this.zedGraphControl1.ScrollMaxY = 0D;
            this.zedGraphControl1.ScrollMaxY2 = 0D;
            this.zedGraphControl1.ScrollMinX = 0D;
            this.zedGraphControl1.ScrollMinY = 0D;
            this.zedGraphControl1.ScrollMinY2 = 0D;
            this.zedGraphControl1.Size = new System.Drawing.Size(919, 641);
            this.zedGraphControl1.TabIndex = 0;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1050, 792);
            this.Controls.Add(this.zedGraphControl1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.ResumeLayout(false);

        }
Example #14
0
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            ServiceName = "SensorMonitor(ASTP)";

            _core = new Core();
        }
Example #15
0
		//-------------------------------------------------------------------------------------
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.SuspendLayout();
			this.ResumeLayout(false);
		}
Example #16
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(PopUpForm));
			this.imgList = new System.Windows.Forms.ImageList(this.components);
			// 
			// imgList
			// 
			this.imgList.ImageSize = new System.Drawing.Size(13, 13);
			this.imgList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
			this.imgList.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// PopUpForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.BackColor = System.Drawing.Color.AliceBlue;
			this.ClientSize = new System.Drawing.Size(264, 144);
			this.ControlBox = false;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
			this.Name = "PopUpForm";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
			this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PopUpForm_MouseDown);
			this.Load += new System.EventHandler(this.PopUpForm_Load);
			this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PopUpForm_MouseUp);
			this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.PopUpForm_MouseMove);
			this.MouseLeave += new System.EventHandler(this.PopUpForm_MouseLeave);

		}
Example #17
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSplash));
     this.tmrClose = new System.Windows.Forms.Timer(this.components);
     this.picSplash = new System.Windows.Forms.PictureBox();
     this.lblCopyright = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // tmrClose
     //
     this.tmrClose.Enabled = true;
     this.tmrClose.Interval = 2500;
     this.tmrClose.Tick += new System.EventHandler(this.tmrClose_Tick);
     //
     // picSplash
     //
     this.picSplash.Image = ((System.Drawing.Image)(resources.GetObject("picSplash.Image")));
     this.picSplash.Location = new System.Drawing.Point(0, 0);
     this.picSplash.Name = "picSplash";
     this.picSplash.Size = new System.Drawing.Size(448, 200);
     this.picSplash.TabIndex = 0;
     this.picSplash.TabStop = false;
     //
     // lblCopyright
     //
     this.lblCopyright.BackColor = System.Drawing.SystemColors.Window;
     this.lblCopyright.Location = new System.Drawing.Point(232, 168);
     this.lblCopyright.Name = "lblCopyright";
     this.lblCopyright.Size = new System.Drawing.Size(208, 24);
     this.lblCopyright.TabIndex = 2;
     this.lblCopyright.Text = "Kostas Stroggylos 2003-2004";
     this.lblCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(161)));
     this.label1.Location = new System.Drawing.Point(144, 96);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(296, 23);
     this.label1.TabIndex = 6;
     this.label1.Text = "A.U.E.B. Distributed Web Crawling Project";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // frmSplash
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(448, 200);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lblCopyright);
     this.Controls.Add(this.picSplash);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSplash";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmSplash";
     this.ResumeLayout(false);
 }
Example #18
0
 public ItopVectorControl()
 {
     //int num1;
     this.components = null;
     this.pageSetting=new PageSettings();
     this.svgDocument = new SvgDocument();
     this.mainIcon = null;
     this.roots = new Hashtable(0x10);
     this.unnamed = string.Empty;
     this.InitializeComponent();
     this.mainIcon = this.GetIconFromResource(base.GetType(), "ItopVector.ItopVectorControl.Resource.main.ico");
     this.CreateMenu();
     this.drawArea1.OperationChanged += new EventHandler(this.ChangeOperation);
     this.drawArea1.ScaleChanged += new EventHandler(this.ChangeScale);
     this.drawArea1.OnTrackPopup += new TrackPopupEventHandler(this.TrackPopup);
     this.drawArea1.OnTipEvent += new OnTipEventHandler(this.ToolTip);
     this.drawArea1.PostBrushEvent += new PostBrushEventHandler(this.PostBrush);
     this.drawArea1.LeftClick +=new SvgElementEventHandler(drawArea1_LeftClick);
     this.drawArea1.DoubleLeftClick+=new SvgElementEventHandler(drawArea1_DoubleLeftClick);
     this.drawArea1.RightClick+=new SvgElementEventHandler(drawArea1_RightClick);
     this.drawArea1.MoveOver+=new SvgElementEventHandler(drawArea1_MoveOver);
     this.drawArea1.MoveIn+=new SvgElementEventHandler(drawArea1_MoveIn);
     this.drawArea1.MoveOut+=new SvgElementEventHandler(drawArea1_MoveOut);
     this.drawArea1.DragAndDrop+=new DragEventHandler(drawArea1_DragDrop);
     this.drawArea1.PaintMap+=new PaintMapEventHandler(drawArea1_PaintMap);
     this.drawArea1.AfterPaintPage+=new PaintMapEventHandler(drawArea1_AfterPaintPage);
     this.Disposed+=new EventHandler(DocumentControl_Disposed);
     this.UpdateProperty();
     this.unnamed = ItopVector.Resource.LayoutManager.GetLabelForName("unnamedelement").Trim();
     this.drawArea1.OnMouseUp += new MouseEventHandler(drawArea1_OnMouseUp);
 }
Example #19
0
		/// <summary>
		/// This method is required for Windows Forms designer support.
		/// Do not change the method contents inside the source code editor. The Forms designer might
		/// not be able to load this method if it was changed manually.
		/// </summary>
		private void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
			this.statusBar = new System.Windows.Forms.StatusBar();
			this.splitter3 = new System.Windows.Forms.Splitter();
			this.dockPanel1 = new WeifenLuo.WinFormsUI.DockPanel();
			this.timerExternallyModifiedFiles = new System.Windows.Forms.Timer(this.components);
			this.SuspendLayout();
			// 
			// statusBar
			// 
			this.statusBar.Location = new System.Drawing.Point(0, 459);
			this.statusBar.Name = "statusBar";
			this.statusBar.Size = new System.Drawing.Size(758, 21);
			this.statusBar.TabIndex = 6;
			// 
			// splitter3
			// 
			this.splitter3.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.splitter3.Location = new System.Drawing.Point(0, 456);
			this.splitter3.Name = "splitter3";
			this.splitter3.Size = new System.Drawing.Size(758, 3);
			this.splitter3.TabIndex = 21;
			this.splitter3.TabStop = false;
			// 
			// dockPanel1
			// 
			this.dockPanel1.ActiveAutoHideContent = null;
			this.dockPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.dockPanel1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
			this.dockPanel1.Location = new System.Drawing.Point(0, 0);
			this.dockPanel1.Name = "dockPanel1";
			this.dockPanel1.Size = new System.Drawing.Size(758, 456);
			this.dockPanel1.TabIndex = 23;
			// 
			// timerExternallyModifiedFiles
			// 
			this.timerExternallyModifiedFiles.Interval = 200;
			this.timerExternallyModifiedFiles.Tick += new System.EventHandler(this.timerExternallyModifiedFiles_Tick);
			// 
			// MainForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(758, 480);
			this.Controls.Add(this.dockPanel1);
			this.Controls.Add(this.splitter3);
			this.Controls.Add(this.statusBar);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.IsMdiContainer = true;
			this.Name = "MainForm";
			this.Text = "CH3ETAH";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.Closing += new System.ComponentModel.CancelEventHandler(this.Form_Closing);
			this.Load += new System.EventHandler(this.MainForm_Load);
			this.Activated += new System.EventHandler(this.MainForm_Activated);
			this.Deactivate += new System.EventHandler(this.MainForm_Deactivate);
			this.ResumeLayout(false);

		}
 private void InitializeComponent()
 {
     this.components = new Container();
     this.CheckPosTimer = new Timer(this.components);
     this.CheckPosTimer.Enabled = true;
     this.CheckPosTimer.Interval = 300;
     this.CheckPosTimer.Tick += new EventHandler(this.CheckPosTimer_Tick);
 }
		/// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(LoginBalãoUsuárioInválido));
			this.timer = new System.Windows.Forms.Timer(this.components);
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.SuspendLayout();
			// 
			// timer
			// 
			this.timer.Enabled = true;
			this.timer.Interval = 5000;
			this.timer.Tick += new System.EventHandler(this.timer_Tick);
			// 
			// label2
			// 
			this.label2.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.label2.Location = new System.Drawing.Point(8, 32);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(196, 36);
			this.label2.TabIndex = 5;
			this.label2.Text = "O nome de usuário não pode conter espaços.";
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.label1.Location = new System.Drawing.Point(32, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(150, 17);
			this.label1.TabIndex = 4;
			this.label1.Text = "Nome de usuário inválido";
			// 
			// pictureBox1
			// 
			this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
			this.pictureBox1.Location = new System.Drawing.Point(8, 8);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(16, 16);
			this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
			this.pictureBox1.TabIndex = 3;
			this.pictureBox1.TabStop = false;
			// 
			// LoginBalãoUsuárioInválido
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(208, 70);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.pictureBox1);
			this.Controls.Add(this.label2);
			this.Name = "LoginBalãoUsuárioInválido";
			this.ResumeLayout(false);

		}
Example #22
0
        public Form1()
        {
            InitializeComponent();

            this.FormClosing += Form1_FormClosing;

            this.components1 = new System.ComponentModel.Container();
            this.contextMenu1 = new System.Windows.Forms.ContextMenu();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.menuItemPause = new System.Windows.Forms.MenuItem();
            this.menuItemOptions = new System.Windows.Forms.MenuItem();
            this.menuItemLogin = new System.Windows.Forms.MenuItem();

            // Initialize contextMenu1
            this.contextMenu1.MenuItems.AddRange(
                        new System.Windows.Forms.MenuItem[] { this.menuItemLogin, this.menuItemOptions, this.menuItemPause, this.menuItem1 });

            this.menuItemLogin.Index = 0;
            this.menuItemLogin.Text = "L&ogin";
            this.menuItemLogin.Click += new System.EventHandler(this.menuItemLogin_Click);

            this.menuItemPause.Index = 1;
            this.menuItemPause.Text = "P&ause";
            this.menuItemPause.Click += new System.EventHandler(this.menuItemPause_Click);

            this.menuItemOptions.Index = 2;
            this.menuItemOptions.Text = "O&ptions";
            this.menuItemOptions.Click += new System.EventHandler(this.menuItemOptions_Click);

            // Initialize menuItem1
            this.menuItem1.Index = 3;
            this.menuItem1.Text = "E&xit";
            this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);

            // Set up how the form should be displayed.
            this.ClientSize = new System.Drawing.Size(292, 266);
            this.Text = "Clippy Sync";

            // Create the NotifyIcon.
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components1);
            CredentialsStorage.notifyIcon = notifyIcon1;

            // The Icon property sets the icon that will appear
            // in the systray for this application.
            notifyIcon1.Icon = new Icon("sync-image.ico");

            // The ContextMenu property sets the menu that will
            // appear when the systray icon is right clicked.
            notifyIcon1.ContextMenu = this.contextMenu1;

            // The Text property sets the text that will be displayed,
            // in a tooltip, when the mouse hovers over the systray icon.
            notifyIcon1.Text = "Keeps in Sync your clipboard between devices";
            notifyIcon1.Visible = true;

            // Handle the DoubleClick event to activate the form.
            notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
        }
		/// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(BalãoReferênciaNãoEncontrada));
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.timer = new System.Windows.Forms.Timer(this.components);
			this.SuspendLayout();
			// 
			// pictureBox1
			// 
			this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
			this.pictureBox1.Location = new System.Drawing.Point(8, 8);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(16, 16);
			this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
			this.pictureBox1.TabIndex = 0;
			this.pictureBox1.TabStop = false;
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.label1.Location = new System.Drawing.Point(32, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(163, 17);
			this.label1.TabIndex = 1;
			this.label1.Text = "Referência não encontrada!";
			// 
			// label2
			// 
			this.label2.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.label2.Location = new System.Drawing.Point(8, 32);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(196, 36);
			this.label2.TabIndex = 2;
			this.label2.Text = "A referência fornecida não consta no banco de dados do sistema.";
			// 
			// timer
			// 
			this.timer.Enabled = true;
			this.timer.Interval = 5000;
			this.timer.Tick += new System.EventHandler(this.timer_Tick);
			// 
			// BalãoReferênciaNãoEncontrada
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(208, 70);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.pictureBox1);
			this.Name = "BalãoReferênciaNãoEncontrada";
			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(FormLogoffWarning));
			this.timer = new System.Windows.Forms.Timer(this.components);
			this.butCancel = new OpenDental.UI.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// timer
			// 
			this.timer.Enabled = true;
			this.timer.Interval = 10000;
			this.timer.Tick += new System.EventHandler(this.timer1_Tick);
			// 
			// 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(293, 73);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75, 24);
			this.butCancel.TabIndex = 2;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(12, 34);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(385, 23);
			this.label1.TabIndex = 3;
			this.label1.Text = "Open Dental will log off from this workstation in 10 seconds due to inactivity.";
			// 
			// FormLogoffWarning
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.butCancel;
			this.ClientSize = new System.Drawing.Size(397, 115);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormLogoffWarning";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Logoff Warning";
			this.TopMost = true;
			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();
            this.listViewGlossary = new OpenLiveWriter.HtmlEditor.Linking.GlossaryListView(this.components, 347 - 20);
            this.btnSelect = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.SuspendLayout();
            //
            // listViewGlossary
            //
            this.listViewGlossary.AutoArrange = false;
            this.listViewGlossary.FullRowSelect = true;
            this.listViewGlossary.HideSelection = false;
            this.listViewGlossary.LabelWrap = false;
            this.listViewGlossary.Location = new System.Drawing.Point(4, 5);
            this.listViewGlossary.MultiSelect = false;
            this.listViewGlossary.Name = "listViewGlossary";
            this.listViewGlossary.Size = new System.Drawing.Size(347, 282);
            this.listViewGlossary.TabIndex = 0;
            this.listViewGlossary.View = System.Windows.Forms.View.Details;
            this.listViewGlossary.DoubleClick += new System.EventHandler(this.listViewGlossary_DoubleClick);
            //
            // btnSelect
            //
            this.btnSelect.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnSelect.Location = new System.Drawing.Point(191, 295);
            this.btnSelect.Name = "btnSelect";
            this.btnSelect.TabIndex = 1;
            this.btnSelect.Text = "OK";
            this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
            //
            // btnCancel
            //
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnCancel.Location = new System.Drawing.Point(274, 295);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.TabIndex = 2;
            this.btnCancel.Text = "Cancel";
            //
            // SelectGlossaryLinkForm
            //
            this.AcceptButton = this.btnSelect;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(354, 325);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnSelect);
            this.Controls.Add(this.listViewGlossary);
            this.Location = new System.Drawing.Point(0, 0);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "SelectGlossaryLinkForm";
            this.Text = "Select Link from Glossary";
            this.ResumeLayout(false);

        }
Example #26
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();
            this.blipMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.objectInfo = new System.Windows.Forms.ToolStripMenuItem();
            this.headerSep = new System.Windows.Forms.ToolStripSeparator();
            this.trackName = new System.Windows.Forms.ToolStripMenuItem();
            this._trackingMenu = new System.Windows.Forms.ToolStripMenuItem();
            this.blipMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // blipMenu
            // 
            this.blipMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.objectInfo,
            this.headerSep,
            this.trackName,
            this._trackingMenu});
            this.blipMenu.Name = "Tracking Menu";
            this.blipMenu.ShowImageMargin = false;
            this.blipMenu.Size = new System.Drawing.Size(134, 76);
            // 
            // objectInfo
            // 
            this.objectInfo.Enabled = false;
            this.objectInfo.Name = "objectInfo";
            this.objectInfo.Size = new System.Drawing.Size(133, 22);
            // 
            // headerSep
            // 
            this.headerSep.Name = "headerSep";
            this.headerSep.Size = new System.Drawing.Size(130, 6);
            // 
            // trackName
            // 
            this.trackName.Name = "trackName";
            this.trackName.Size = new System.Drawing.Size(133, 22);
            this.trackName.Text = "Track this name";
            this.trackName.Click += new System.EventHandler(this.SelectTracking);
            // 
            // _trackingMenu
            // 
            this._trackingMenu.Name = "_trackingMenu";
            this._trackingMenu.Size = new System.Drawing.Size(133, 22);
            this._trackingMenu.Text = "Tracking Menu";
            this._trackingMenu.Click += new System.EventHandler(OpenTrackingMenu);
            // 
            // WowBlip
            // 
            this.ContextMenuStrip = this.blipMenu;
            this.Size = new System.Drawing.Size(18, 18);
            this.DoubleClick += new System.EventHandler(this.ShowDetails);
            this.blipMenu.ResumeLayout(false);
            this.ResumeLayout(false);

		}
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()
 {
     this.components = new System.ComponentModel.Container();
     System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader();
     this.spellButton = new System.Windows.Forms.Button();
     this.demoRichText = new System.Windows.Forms.RichTextBox();
     this.spelling = new NetSpell.SpellChecker.Spelling(this.components);
     this.wordDictionary = new NetSpell.SpellChecker.Dictionary.WordDictionary(this.components);
     this.SuspendLayout();
     //
     // spellButton
     //
     this.spellButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.spellButton.Location = new System.Drawing.Point(344, 368);
     this.spellButton.Name = "spellButton";
     this.spellButton.Size = new System.Drawing.Size(80, 23);
     this.spellButton.TabIndex = 3;
     this.spellButton.Text = "Spell Check";
     this.spellButton.Click += new System.EventHandler(this.spellButton_Click);
     //
     // demoRichText
     //
     this.demoRichText.AcceptsTab = true;
     this.demoRichText.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.demoRichText.AutoWordSelection = true;
     this.demoRichText.Location = new System.Drawing.Point(16, 16);
     this.demoRichText.Name = "demoRichText";
     this.demoRichText.ShowSelectionMargin = true;
     this.demoRichText.Size = new System.Drawing.Size(408, 344);
     this.demoRichText.TabIndex = 2;
     this.demoRichText.Text = "Becuase people are realy bad spelers, ths produc was desinged to prevent speling " +
         "erors in a text area like ths.";
     //
     // spelling
     //
     this.spelling.Dictionary = this.wordDictionary;
     this.spelling.ReplacedWord += new NetSpell.SpellChecker.Spelling.ReplacedWordEventHandler(this.spelling_ReplacedWord);
     this.spelling.EndOfText += new NetSpell.SpellChecker.Spelling.EndOfTextEventHandler(this.spelling_EndOfText);
     this.spelling.DeletedWord += new NetSpell.SpellChecker.Spelling.DeletedWordEventHandler(this.spelling_DeletedWord);
     //
     // wordDictionary
     //
     this.wordDictionary.DictionaryFolder = ((string)(configurationAppSettings.GetValue("wordDictionary.DictionaryFolder", typeof(string))));
     //
     // DemoForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(440, 406);
     this.Controls.Add(this.spellButton);
     this.Controls.Add(this.demoRichText);
     this.Name = "DemoForm";
     this.Text = "NetSpell Demo";
     this.ResumeLayout(false);
 }
Example #28
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();
			this.m_toolTip = new System.Windows.Forms.ToolTip(this.components);
			//
			// m_toolTip
			//
			this.m_toolTip.ShowAlways = true;
			//
		}
Example #29
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ImageMenuItem));
            // 
            // ImageMenuItem
            // 
            this.OwnerDraw = true;

        }
		/// <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(BandejaHistóricoRelacionamento));
            this.colPreço = new System.Windows.Forms.ColumnHeader();
            this.colFuncionário = new System.Windows.Forms.ColumnHeader();
            this.colData = new System.Windows.Forms.ColumnHeader();
            this.colAção = new System.Windows.Forms.ColumnHeader();
            this.icones = new System.Windows.Forms.ImageList(this.components);
            this.SuspendLayout();
            // 
            // lista
            // 
            this.lista.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colAção,
            this.colPreço,
            this.colFuncionário,
            this.colData});
            this.lista.Location = new System.Drawing.Point(0, 0);
            this.lista.Size = new System.Drawing.Size(704, 368);
            // 
            // colPreço
            // 
            this.colPreço.Text = "Preço";
            // 
            // colFuncionário
            // 
            this.colFuncionário.Text = "Funcionário";
            this.colFuncionário.Width = 81;
            // 
            // colData
            // 
            this.colData.Text = "Data";
            // 
            // colAção
            // 
            this.colAção.Text = "Ação";
            // 
            // icones
            // 
            this.icones.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("icones.ImageStream")));
            this.icones.TransparentColor = System.Drawing.Color.Transparent;
            this.icones.Images.SetKeyName(0, "");
            this.icones.Images.SetKeyName(1, "");
            // 
            // BandejaHistóricoRelacionamento
            // 
            this.MostrarStatus = false;
            this.Name = "BandejaHistóricoRelacionamento";
            this.PermitirExclusão = false;
            this.Size = new System.Drawing.Size(704, 352);
            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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmIntoa));
     this.label1     = new System.Windows.Forms.Label();
     this.butIn      = new System.Windows.Forms.Button();
     this.butKetthuc = new System.Windows.Forms.Button();
     this.dataGrid1  = new System.Windows.Forms.DataGrid();
     this.ngay       = new System.Windows.Forms.DateTimePicker();
     this.makp       = new System.Windows.Forms.ComboBox();
     this.label2     = new System.Windows.Forms.Label();
     this.tim        = new System.Windows.Forms.TextBox();
     this.butTim     = new System.Windows.Forms.Button();
     this.chkAll     = new System.Windows.Forms.CheckBox();
     this.toolTip1   = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(-16, 5);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(59, 19);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Ngày :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butIn
     //
     this.butIn.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butIn.Image      = ((System.Drawing.Image)(resources.GetObject("butIn.Image")));
     this.butIn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butIn.Location   = new System.Drawing.Point(371, 496);
     this.butIn.Name       = "butIn";
     this.butIn.Size       = new System.Drawing.Size(70, 25);
     this.butIn.TabIndex   = 4;
     this.butIn.Text       = "     &Hủy";
     this.butIn.Click     += new System.EventHandler(this.butIn_Click);
     //
     // butKetthuc
     //
     this.butKetthuc.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butKetthuc.Image      = ((System.Drawing.Image)(resources.GetObject("butKetthuc.Image")));
     this.butKetthuc.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butKetthuc.Location   = new System.Drawing.Point(441, 496);
     this.butKetthuc.Name       = "butKetthuc";
     this.butKetthuc.Size       = new System.Drawing.Size(70, 25);
     this.butKetthuc.TabIndex   = 5;
     this.butKetthuc.Text       = "&Kết thúc";
     this.butKetthuc.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.butKetthuc.Click     += new System.EventHandler(this.butKetthuc_Click);
     //
     // 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.BackgroundColor     = System.Drawing.SystemColors.Control;
     this.dataGrid1.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.dataGrid1.CaptionBackColor    = System.Drawing.SystemColors.Control;
     this.dataGrid1.DataMember          = "";
     this.dataGrid1.FlatMode            = true;
     this.dataGrid1.Font                = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.HeaderForeColor     = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location            = new System.Drawing.Point(10, 8);
     this.dataGrid1.Name                = "dataGrid1";
     this.dataGrid1.RowHeaderWidth      = 5;
     this.dataGrid1.Size                = new System.Drawing.Size(774, 480);
     this.dataGrid1.TabIndex            = 8;
     this.dataGrid1.CurrentCellChanged += new System.EventHandler(this.dataGrid1_CurrentCellChanged);
     this.dataGrid1.Click              += new System.EventHandler(this.dataGrid1_Click);
     //
     // ngay
     //
     this.ngay.CustomFormat = "dd/MM/yyyy";
     this.ngay.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ngay.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.ngay.Location     = new System.Drawing.Point(48, 3);
     this.ngay.Name         = "ngay";
     this.ngay.Size         = new System.Drawing.Size(80, 21);
     this.ngay.TabIndex     = 0;
     this.ngay.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.ngay_KeyDown);
     //
     // makp
     //
     this.makp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.makp.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.makp.Location = new System.Drawing.Point(205, 3);
     this.makp.Name     = "makp";
     this.makp.Size     = new System.Drawing.Size(171, 21);
     this.makp.TabIndex = 1;
     this.makp.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ngay_KeyDown);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(112, 5);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 19);
     this.label2.TabIndex  = 9;
     this.label2.Text      = "Phòng khám :";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tim
     //
     this.tim.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.tim.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tim.ForeColor    = System.Drawing.Color.Red;
     this.tim.Location     = new System.Drawing.Point(379, 3);
     this.tim.Name         = "tim";
     this.tim.Size         = new System.Drawing.Size(405, 21);
     this.tim.TabIndex     = 7;
     this.tim.Text         = "Tìm kiếm";
     this.tim.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.tim.Enter       += new System.EventHandler(this.tim_Enter);
     this.tim.TextChanged += new System.EventHandler(this.tim_TextChanged);
     this.tim.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.tim_KeyDown);
     //
     // butTim
     //
     this.butTim.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butTim.Image      = ((System.Drawing.Image)(resources.GetObject("butTim.Image")));
     this.butTim.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butTim.Location   = new System.Drawing.Point(301, 496);
     this.butTim.Name       = "butTim";
     this.butTim.Size       = new System.Drawing.Size(70, 25);
     this.butTim.TabIndex   = 3;
     this.butTim.Text       = "     &Tìm";
     this.butTim.Click     += new System.EventHandler(this.butTim_Click);
     //
     // chkAll
     //
     this.chkAll.Appearance = System.Windows.Forms.Appearance.Button;
     this.chkAll.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAll.Location   = new System.Drawing.Point(10, 26);
     this.chkAll.Name       = "chkAll";
     this.chkAll.Size       = new System.Drawing.Size(23, 21);
     this.chkAll.TabIndex   = 11;
     this.chkAll.Text       = "...";
     this.chkAll.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.chkAll, "Chọn in tất cả");
     this.chkAll.CheckedChanged += new System.EventHandler(this.chkAll_CheckedChanged);
     //
     // frmIntoa
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(794, 575);
     this.Controls.Add(this.chkAll);
     this.Controls.Add(this.makp);
     this.Controls.Add(this.butTim);
     this.Controls.Add(this.tim);
     this.Controls.Add(this.ngay);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dataGrid1);
     this.Controls.Add(this.butKetthuc);
     this.Controls.Add(this.butIn);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmIntoa";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Danh sách đã in chi phí";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.MouseMove      += new System.Windows.Forms.MouseEventHandler(this.frmIntoa_MouseMove);
     this.Load           += new System.EventHandler(this.frmIntoa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #32
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Waiting));
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.pbWaiting   = new System.Windows.Forms.ProgressBar();
     this.tmrAuto     = new System.Windows.Forms.Timer(this.components);
     this.lblPrompt   = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.topLogo2    = new RMS.UserControls.topLogo();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor          = System.Windows.Forms.AnchorStyles.Left;
     this.pictureBox1.BackColor       = System.Drawing.Color.Black;
     this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage")));
     this.pictureBox1.Location        = new System.Drawing.Point(100, 78);
     this.pictureBox1.Name            = "pictureBox1";
     this.pictureBox1.Size            = new System.Drawing.Size(32, 32);
     this.pictureBox1.SizeMode        = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex        = 29;
     this.pictureBox1.TabStop         = false;
     //
     // pbWaiting
     //
     this.pbWaiting.Location = new System.Drawing.Point(28, 151);
     this.pbWaiting.Name     = "pbWaiting";
     this.pbWaiting.Size     = new System.Drawing.Size(380, 23);
     this.pbWaiting.TabIndex = 96;
     //
     // tmrAuto
     //
     this.tmrAuto.Interval = 1000000000;
     //
     // lblPrompt
     //
     this.lblPrompt.AutoSize  = true;
     this.lblPrompt.BackColor = System.Drawing.SystemColors.Info;
     this.lblPrompt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.lblPrompt.Location  = new System.Drawing.Point(148, 95);
     this.lblPrompt.Name      = "lblPrompt";
     this.lblPrompt.Size      = new System.Drawing.Size(0, 17);
     this.lblPrompt.TabIndex  = 97;
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(84, 80);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(47, 48);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox2.TabIndex = 99;
     this.pictureBox2.TabStop  = false;
     //
     // topLogo2
     //
     this.topLogo2.Dock           = System.Windows.Forms.DockStyle.Top;
     this.topLogo2.Font           = new System.Drawing.Font("Verdana", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.topLogo2.gradientColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(109)))), ((int)(((byte)(158)))));
     this.topLogo2.gradientColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(179)))), ((int)(((byte)(228)))));
     this.topLogo2.Location       = new System.Drawing.Point(0, 0);
     this.topLogo2.Name           = "topLogo2";
     this.topLogo2.Size           = new System.Drawing.Size(444, 55);
     this.topLogo2.TabIndex       = 98;
     this.topLogo2.TabStop        = false;
     this.topLogo2.Text           = "topLogo2";
     //
     // Waiting
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 17F);
     this.AutoSize            = true;
     this.BackColor           = System.Drawing.Color.Silver;
     this.ClientSize          = new System.Drawing.Size(444, 258);
     this.ControlBox          = false;
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.topLogo2);
     this.Controls.Add(this.lblPrompt);
     this.Controls.Add(this.pbWaiting);
     this.Font            = new System.Drawing.Font("Verdana", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "Waiting";
     this.ShowInTaskbar   = false;
     this.Text            = "请稍候.....";
     this.Controls.SetChildIndex(this.pbWaiting, 0);
     this.Controls.SetChildIndex(this.lblPrompt, 0);
     this.Controls.SetChildIndex(this.topLogo2, 0);
     this.Controls.SetChildIndex(this.pictureBox2, 0);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmImportar));
     this.imageList1          = new System.Windows.Forms.ImageList(this.components);
     this.tlbOpcionesQueja    = new System.Windows.Forms.ToolBar();
     this.btnSeleccion        = new System.Windows.Forms.ToolBarButton();
     this.btnTodas            = new System.Windows.Forms.ToolBarButton();
     this.btnSeparador1       = new System.Windows.Forms.ToolBarButton();
     this.btnRefrescar        = new System.Windows.Forms.ToolBarButton();
     this.btnSeparador2       = new System.Windows.Forms.ToolBarButton();
     this.btnCerrar           = new System.Windows.Forms.ToolBarButton();
     this.btnSeparador3       = new System.Windows.Forms.ToolBarButton();
     this.grdQuejaPortal      = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
     this.col1                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col2                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col3                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col4                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col5                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col6                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.col7                   = new System.Windows.Forms.DataGridTextBoxColumn();
     this.tmrActualizacion       = new System.Windows.Forms.Timer(this.components);
     this.lblTiempoActualizacion = new System.Windows.Forms.Label();
     this.lblEtiqueta            = new System.Windows.Forms.Label();
     this.txtQueja               = new System.Windows.Forms.TextBox();
     this.label3                 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.grdQuejaPortal)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tlbOpcionesQueja
     //
     this.tlbOpcionesQueja.Appearance  = System.Windows.Forms.ToolBarAppearance.Flat;
     this.tlbOpcionesQueja.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tlbOpcionesQueja.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.btnSeleccion,
         this.btnTodas,
         this.btnSeparador1,
         this.btnRefrescar,
         this.btnSeparador2,
         this.btnCerrar,
         this.btnSeparador3
     });
     this.tlbOpcionesQueja.ButtonSize     = new System.Drawing.Size(70, 52);
     this.tlbOpcionesQueja.DropDownArrows = true;
     this.tlbOpcionesQueja.ImageList      = this.imageList1;
     this.tlbOpcionesQueja.Name           = "tlbOpcionesQueja";
     this.tlbOpcionesQueja.ShowToolTips   = true;
     this.tlbOpcionesQueja.Size           = new System.Drawing.Size(732, 40);
     this.tlbOpcionesQueja.TabIndex       = 1;
     this.tlbOpcionesQueja.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbOpcionesQueja_ButtonClick);
     //
     // btnSeleccion
     //
     this.btnSeleccion.ImageIndex  = 1;
     this.btnSeleccion.Tag         = "Seleccion";
     this.btnSeleccion.Text        = "Selección";
     this.btnSeleccion.ToolTipText = "Importar la queja seleccionada";
     //
     // btnTodas
     //
     this.btnTodas.ImageIndex  = 0;
     this.btnTodas.Tag         = "Todas";
     this.btnTodas.Text        = "Todas";
     this.btnTodas.ToolTipText = "Importar todas las quejas del portal de internet";
     //
     // btnSeparador1
     //
     this.btnSeparador1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // btnRefrescar
     //
     this.btnRefrescar.ImageIndex  = 3;
     this.btnRefrescar.Tag         = "Refrescar";
     this.btnRefrescar.Text        = "Refrescar";
     this.btnRefrescar.ToolTipText = "Actualizar la información";
     //
     // btnSeparador2
     //
     this.btnSeparador2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.btnSeparador2.Tag   = "Separador2";
     //
     // btnCerrar
     //
     this.btnCerrar.ImageIndex  = 2;
     this.btnCerrar.Tag         = "Cerrar";
     this.btnCerrar.Text        = "Cerrar";
     this.btnCerrar.ToolTipText = "Cerrar la ventana";
     //
     // btnSeparador3
     //
     this.btnSeparador3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.btnSeparador3.Tag   = "Separador3";
     //
     // grdQuejaPortal
     //
     this.grdQuejaPortal.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                   | System.Windows.Forms.AnchorStyles.Right);
     this.grdQuejaPortal.BackgroundColor    = System.Drawing.SystemColors.ControlLight;
     this.grdQuejaPortal.CaptionBackColor   = System.Drawing.Color.SteelBlue;
     this.grdQuejaPortal.CaptionText        = "Quejas registradas en el portal de internet";
     this.grdQuejaPortal.DataMember         = "";
     this.grdQuejaPortal.HeaderForeColor    = System.Drawing.SystemColors.ControlText;
     this.grdQuejaPortal.Location           = new System.Drawing.Point(0, 40);
     this.grdQuejaPortal.Name               = "grdQuejaPortal";
     this.grdQuejaPortal.ReadOnly           = true;
     this.grdQuejaPortal.SelectionBackColor = System.Drawing.Color.SteelBlue;
     this.grdQuejaPortal.Size               = new System.Drawing.Size(733, 384);
     this.grdQuejaPortal.TabIndex           = 7;
     this.grdQuejaPortal.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     this.grdQuejaPortal.CurrentCellChanged += new System.EventHandler(this.grdQuejaPortal_CurrentCellChanged);
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.AllowSorting         = false;
     this.dataGridTableStyle1.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.dataGridTableStyle1.DataGrid             = this.grdQuejaPortal;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.col1,
         this.col2,
         this.col3,
         this.col4,
         this.col5,
         this.col6,
         this.col7
     });
     this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName     = "";
     //
     // col1
     //
     this.col1.Format      = "";
     this.col1.FormatInfo  = null;
     this.col1.HeaderText  = "Cliente";
     this.col1.MappingName = "Cliente";
     this.col1.Width       = 75;
     //
     // col2
     //
     this.col2.Format      = "";
     this.col2.FormatInfo  = null;
     this.col2.HeaderText  = "Nombre";
     this.col2.MappingName = "Nombre";
     this.col2.Width       = 140;
     //
     // col3
     //
     this.col3.Format      = "";
     this.col3.FormatInfo  = null;
     this.col3.HeaderText  = "Teléfono";
     this.col3.MappingName = "Telefono";
     this.col3.NullText    = "";
     this.col3.Width       = 85;
     //
     // col4
     //
     this.col4.Format      = "";
     this.col4.FormatInfo  = null;
     this.col4.HeaderText  = "Teléf. contrato";
     this.col4.MappingName = "TelefonoCasa";
     this.col4.NullText    = "";
     this.col4.Width       = 85;
     //
     // col5
     //
     this.col5.Format      = "";
     this.col5.FormatInfo  = null;
     this.col5.HeaderText  = "Queja";
     this.col5.MappingName = "NumeroQueja";
     this.col5.Width       = 75;
     //
     // col6
     //
     this.col6.Alignment   = System.Windows.Forms.HorizontalAlignment.Center;
     this.col6.Format      = "dd/MM/yyyy";
     this.col6.FormatInfo  = null;
     this.col6.HeaderText  = "F. queja";
     this.col6.MappingName = "FQueja";
     this.col6.Width       = 70;
     //
     // col7
     //
     this.col7.Format      = "";
     this.col7.FormatInfo  = null;
     this.col7.HeaderText  = "Descripción";
     this.col7.MappingName = "QuejaDescripcion";
     this.col7.Width       = 140;
     //
     // tmrActualizacion
     //
     this.tmrActualizacion.Interval = 1000;
     this.tmrActualizacion.Tick    += new System.EventHandler(this.tmrActualizacion_Tick);
     //
     // lblTiempoActualizacion
     //
     this.lblTiempoActualizacion.Anchor   = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lblTiempoActualizacion.AutoSize = true;
     this.lblTiempoActualizacion.Font     = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblTiempoActualizacion.Location = new System.Drawing.Point(678, 12);
     this.lblTiempoActualizacion.Name     = "lblTiempoActualizacion";
     this.lblTiempoActualizacion.Size     = new System.Drawing.Size(45, 17);
     this.lblTiempoActualizacion.TabIndex = 8;
     this.lblTiempoActualizacion.Text     = "05:00";
     //
     // lblEtiqueta
     //
     this.lblEtiqueta.Anchor   = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lblEtiqueta.AutoSize = true;
     this.lblEtiqueta.Font     = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.lblEtiqueta.Location = new System.Drawing.Point(481, 12);
     this.lblEtiqueta.Name     = "lblEtiqueta";
     this.lblEtiqueta.Size     = new System.Drawing.Size(206, 17);
     this.lblEtiqueta.TabIndex = 9;
     this.lblEtiqueta.Text     = "La pantalla se actualizará en:";
     //
     // txtQueja
     //
     this.txtQueja.Anchor      = (System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right);
     this.txtQueja.BackColor   = System.Drawing.Color.Silver;
     this.txtQueja.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtQueja.Font        = new System.Drawing.Font("Tahoma", 8.25F);
     this.txtQueja.ForeColor   = System.Drawing.Color.Blue;
     this.txtQueja.Location    = new System.Drawing.Point(58, 431);
     this.txtQueja.Multiline   = true;
     this.txtQueja.Name        = "txtQueja";
     this.txtQueja.ReadOnly    = true;
     this.txtQueja.Size        = new System.Drawing.Size(664, 81);
     this.txtQueja.TabIndex    = 14;
     this.txtQueja.Text        = "";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.ForeColor = System.Drawing.Color.DarkBlue;
     this.label3.Location  = new System.Drawing.Point(9, 431);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(42, 14);
     this.label3.TabIndex  = 13;
     this.label3.Text      = "Queja:";
     //
     // frmImportar
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.BackColor         = System.Drawing.Color.Silver;
     this.ClientSize        = new System.Drawing.Size(732, 518);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.txtQueja,
         this.label3,
         this.lblTiempoActualizacion,
         this.lblEtiqueta,
         this.grdQuejaPortal,
         this.tlbOpcionesQueja
     });
     this.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmImportar";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Importar quejas de portal de internet";
     this.Load         += new System.EventHandler(this.frmImportar_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdQuejaPortal)).EndInit();
     this.ResumeLayout(false);
 }
Example #34
0
 public SystemHotkey(System.ComponentModel.IContainer container)
 {
     container.Add(this);
     InitializeComponent();
     m_Window.ProcessMessage += new MessageEventHandler(MessageEvent);
 }
 /// <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(ATM2));
     this.WelcomeTimer          = new System.Windows.Forms.Timer(this.components);
     this.metroProgressSpinner1 = new MetroFramework.Controls.MetroProgressSpinner();
     this.metroProgressBar1     = new MetroFramework.Controls.MetroProgressBar();
     this.label1  = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // WelcomeTimer
     //
     this.WelcomeTimer.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // metroProgressSpinner1
     //
     this.metroProgressSpinner1.Location      = new System.Drawing.Point(458, 10);
     this.metroProgressSpinner1.Maximum       = 100;
     this.metroProgressSpinner1.Name          = "metroProgressSpinner1";
     this.metroProgressSpinner1.Size          = new System.Drawing.Size(16, 16);
     this.metroProgressSpinner1.TabIndex      = 0;
     this.metroProgressSpinner1.UseSelectable = true;
     //
     // metroProgressBar1
     //
     this.metroProgressBar1.Location = new System.Drawing.Point(523, 41);
     this.metroProgressBar1.Name     = "metroProgressBar1";
     this.metroProgressBar1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft JhengHei UI", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(34, 34);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(455, 50);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Insert your card please.";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(190, 471);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(137, 40);
     this.button1.TabIndex = 5;
     this.button1.Text     = "CardInserted";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click_1);
     //
     // ATM2
     //
     this.AutoScaleDimensions   = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor             = System.Drawing.SystemColors.ControlDarkDark;
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ClientSize            = new System.Drawing.Size(516, 544);
     this.ControlBox            = false;
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label1);
     this.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "ATM2";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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();

            this.com1             = new SerialPort(this.components);
            this.label2           = new Label();
            this.label4           = new Label();
            this.label7           = new Label();
            this.textBox2         = new TextBox();
            this.timer1           = new System.Windows.Forms.Timer(this.components);
            this.comboBox3        = new ComboBoxEx();
            this.comboBox2        = new ComboBoxEx();
            this.btnBeginDownLoad = new ButtonX();
            this.button2          = new ButtonX();
            this.checkBox3        = new CheckBox();
            base.SuspendLayout();
            this.com1.WriteBufferSize              = 204800;
            this.label2.AutoSize                   = true;
            this.label2.BackColor                  = Color.Transparent;
            this.label2.Location                   = new Point(12, 63);
            this.label2.Name                       = "label2";
            this.label2.Size                       = new Size(41, 12);
            this.label2.TabIndex                   = 2;
            this.label2.Text                       = "label2";
            this.label4.Location                   = new Point(15, 31);
            this.label4.Name                       = "label4";
            this.label4.Size                       = new Size(66, 12);
            this.label4.TabIndex                   = 165;
            this.label4.Text                       = "串口号:";
            this.label4.TextAlign                  = ContentAlignment.MiddleRight;
            this.label7.Location                   = new Point(217, 31);
            this.label7.Name                       = "label7";
            this.label7.Size                       = new Size(149, 12);
            this.label7.TabIndex                   = 167;
            this.label7.Text                       = "下载使用的波特率:";
            this.label7.TextAlign                  = ContentAlignment.MiddleRight;
            this.textBox2.BackColor                = Color.White;
            this.textBox2.BorderStyle              = BorderStyle.FixedSingle;
            this.textBox2.Location                 = new Point(10, 78);
            this.textBox2.Multiline                = true;
            this.textBox2.Name                     = "textBox2";
            this.textBox2.ReadOnly                 = true;
            this.textBox2.ScrollBars               = ScrollBars.Vertical;
            this.textBox2.Size                     = new Size(567, 152);
            this.textBox2.TabIndex                 = 168;
            this.timer1.Interval                   = 1000;
            this.timer1.Tick                      += new EventHandler(this.timer1_Tick);
            this.comboBox3.DisplayMember           = "Text";
            this.comboBox3.DrawMode                = DrawMode.OwnerDrawFixed;
            this.comboBox3.DropDownStyle           = ComboBoxStyle.DropDownList;
            this.comboBox3.FormattingEnabled       = true;
            this.comboBox3.ItemHeight              = 15;
            this.comboBox3.Location                = new Point(84, 22);
            this.comboBox3.Name                    = "comboBox3";
            this.comboBox3.Size                    = new Size(127, 21);
            this.comboBox3.Style                   = eDotNetBarStyle.StyleManagerControlled;
            this.comboBox3.TabIndex                = 171;
            this.comboBox2.DisplayMember           = "Text";
            this.comboBox2.DrawMode                = DrawMode.OwnerDrawFixed;
            this.comboBox2.DropDownStyle           = ComboBoxStyle.DropDownList;
            this.comboBox2.FormattingEnabled       = true;
            this.comboBox2.ItemHeight              = 15;
            this.comboBox2.Location                = new Point(372, 22);
            this.comboBox2.Name                    = "comboBox2";
            this.comboBox2.Size                    = new Size(127, 21);
            this.comboBox2.Style                   = eDotNetBarStyle.StyleManagerControlled;
            this.comboBox2.TabIndex                = 172;
            this.comboBox2.SelectedIndexChanged   += new EventHandler(this.comboBox2_SelectedIndexChanged);
            this.btnBeginDownLoad.AccessibleRole   = AccessibleRole.PushButton;
            this.btnBeginDownLoad.ColorTable       = eButtonColor.OrangeWithBackground;
            this.btnBeginDownLoad.Location         = new Point(367, 237);
            this.btnBeginDownLoad.Name             = "button3";
            this.btnBeginDownLoad.Size             = new Size(131, 32);
            this.btnBeginDownLoad.Style            = eDotNetBarStyle.Office2003;
            this.btnBeginDownLoad.TabIndex         = 173;
            this.btnBeginDownLoad.Text             = "联机并开始下载";
            this.btnBeginDownLoad.Click           += new EventHandler(this.btnBeginDownLoad_Click);
            this.button2.AccessibleRole            = AccessibleRole.PushButton;
            this.button2.ColorTable                = eButtonColor.OrangeWithBackground;
            this.button2.Location                  = new Point(504, 237);
            this.button2.Name                      = "button2";
            this.button2.Size                      = new Size(73, 32);
            this.button2.Style                     = eDotNetBarStyle.Office2003;
            this.button2.TabIndex                  = 174;
            this.button2.Text                      = "退出";
            this.button2.Click                    += new EventHandler(this.button2_Click);
            this.checkBox3.Anchor                  = (AnchorStyles.Bottom | AnchorStyles.Left);
            this.checkBox3.AutoSize                = true;
            this.checkBox3.Location                = new Point(372, 56);
            this.checkBox3.Name                    = "checkBox3";
            this.checkBox3.Size                    = new Size(90, 16);
            this.checkBox3.TabIndex                = 191;
            this.checkBox3.Text                    = "自动加入CRC";
            this.checkBox3.UseVisualStyleBackColor = true;
            this.checkBox3.Visible                 = false;
            base.AutoScaleDimensions               = new SizeF(6f, 12f);
            base.AutoScaleMode                     = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor  = Color.FromArgb(194, 217, 247);
            base.ClientSize = new Size(583, 273);
            base.Controls.Add(this.checkBox3);
            base.Controls.Add(this.button2);
            base.Controls.Add(this.btnBeginDownLoad);
            base.Controls.Add(this.comboBox2);
            base.Controls.Add(this.comboBox3);
            base.Controls.Add(this.textBox2);
            base.Controls.Add(this.label4);
            base.Controls.Add(this.label7);
            base.Controls.Add(this.label2);
            this.DoubleBuffered  = true;
            base.FormBorderStyle = FormBorderStyle.FixedSingle;
            base.MaximizeBox     = false;
            base.Name            = "USARTUP";
            base.StartPosition   = FormStartPosition.CenterScreen;
            this.Text            = "串口下载";
            base.Load           += new EventHandler(this.USARTUP_Load);
            base.FormClosing    += new FormClosingEventHandler(this.USARTUP_FormClosing);
            base.ResumeLayout(false);
            base.PerformLayout();
        }
 /// <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();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.dataList               = new System.Windows.Forms.ListView();
     this.yColumnHeader          = new System.Windows.Forms.ColumnHeader();
     this.estimatedYColumnHeader = new System.Windows.Forms.ColumnHeader();
     this.loadDataButton         = new System.Windows.Forms.Button();
     this.openFileDialog         = new System.Windows.Forms.OpenFileDialog();
     this.groupBox2              = new System.Windows.Forms.GroupBox();
     this.chart                     = new Accord.Controls.Chart();
     this.groupBox3                 = new System.Windows.Forms.GroupBox();
     this.moreSettingsButton        = new System.Windows.Forms.Button();
     this.label10                   = new System.Windows.Forms.Label();
     this.iterationsBox             = new System.Windows.Forms.TextBox();
     this.label9                    = new System.Windows.Forms.Label();
     this.label8                    = new System.Windows.Forms.Label();
     this.predictionSizeBox         = new System.Windows.Forms.TextBox();
     this.label7                    = new System.Windows.Forms.Label();
     this.windowSizeBox             = new System.Windows.Forms.TextBox();
     this.label6                    = new System.Windows.Forms.Label();
     this.label5                    = new System.Windows.Forms.Label();
     this.geneticMethodBox          = new System.Windows.Forms.ComboBox();
     this.label4                    = new System.Windows.Forms.Label();
     this.functionsSetBox           = new System.Windows.Forms.ComboBox();
     this.label3                    = new System.Windows.Forms.Label();
     this.selectionBox              = new System.Windows.Forms.ComboBox();
     this.label2                    = new System.Windows.Forms.Label();
     this.populationSizeBox         = new System.Windows.Forms.TextBox();
     this.label1                    = new System.Windows.Forms.Label();
     this.startButton               = new System.Windows.Forms.Button();
     this.stopButton                = new System.Windows.Forms.Button();
     this.groupBox4                 = new System.Windows.Forms.GroupBox();
     this.currentPredictionErrorBox = new System.Windows.Forms.TextBox();
     this.label13                   = new System.Windows.Forms.Label();
     this.currentLearningErrorBox   = new System.Windows.Forms.TextBox();
     this.label12                   = new System.Windows.Forms.Label();
     this.currentIterationBox       = new System.Windows.Forms.TextBox();
     this.label11                   = new System.Windows.Forms.Label();
     this.groupBox5                 = new System.Windows.Forms.GroupBox();
     this.solutionBox               = new System.Windows.Forms.TextBox();
     this.toolTip                   = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dataList);
     this.groupBox1.Controls.Add(this.loadDataButton);
     this.groupBox1.Location = new System.Drawing.Point(10, 10);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(180, 380);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Data";
     //
     // dataList
     //
     this.dataList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.yColumnHeader,
         this.estimatedYColumnHeader
     });
     this.dataList.FullRowSelect = true;
     this.dataList.GridLines     = true;
     this.dataList.Location      = new System.Drawing.Point(10, 20);
     this.dataList.Name          = "dataList";
     this.dataList.Size          = new System.Drawing.Size(160, 315);
     this.dataList.TabIndex      = 1;
     this.dataList.View          = System.Windows.Forms.View.Details;
     //
     // yColumnHeader
     //
     this.yColumnHeader.Text  = "Y:Real";
     this.yColumnHeader.Width = 70;
     //
     // estimatedYColumnHeader
     //
     this.estimatedYColumnHeader.Text  = "Y:Estimated";
     this.estimatedYColumnHeader.Width = 70;
     //
     // loadDataButton
     //
     this.loadDataButton.Location = new System.Drawing.Point(10, 345);
     this.loadDataButton.Name     = "loadDataButton";
     this.loadDataButton.TabIndex = 1;
     this.loadDataButton.Text     = "&Load";
     this.loadDataButton.Click   += new System.EventHandler(this.loadDataButton_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.Filter = "CSV (Comma delimited) (*.csv)|*.csv";
     this.openFileDialog.Title  = "Select data file";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.chart);
     this.groupBox2.Location = new System.Drawing.Point(200, 10);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(300, 380);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Function";
     //
     // chart
     //
     this.chart.Location = new System.Drawing.Point(10, 20);
     this.chart.Name     = "chart";
     this.chart.Size     = new System.Drawing.Size(280, 350);
     this.chart.TabIndex = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.moreSettingsButton);
     this.groupBox3.Controls.Add(this.label10);
     this.groupBox3.Controls.Add(this.iterationsBox);
     this.groupBox3.Controls.Add(this.label9);
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.predictionSizeBox);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.windowSizeBox);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.geneticMethodBox);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.functionsSetBox);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.selectionBox);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.populationSizeBox);
     this.groupBox3.Controls.Add(this.label1);
     this.groupBox3.Location = new System.Drawing.Point(510, 10);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(185, 240);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Settings";
     //
     // moreSettingsButton
     //
     this.moreSettingsButton.Font      = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.moreSettingsButton.ForeColor = System.Drawing.SystemColors.ControlText;
     this.moreSettingsButton.Location  = new System.Drawing.Point(10, 220);
     this.moreSettingsButton.Name      = "moreSettingsButton";
     this.moreSettingsButton.Size      = new System.Drawing.Size(25, 15);
     this.moreSettingsButton.TabIndex  = 17;
     this.moreSettingsButton.Text      = ">>";
     this.toolTip.SetToolTip(this.moreSettingsButton, "More settings");
     this.moreSettingsButton.Click += new System.EventHandler(this.moreSettingsButton_Click);
     //
     // label10
     //
     this.label10.Font     = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label10.Location = new System.Drawing.Point(125, 220);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(58, 14);
     this.label10.TabIndex = 16;
     this.label10.Text     = "( 0 - inifinity )";
     //
     // iterationsBox
     //
     this.iterationsBox.Location = new System.Drawing.Point(125, 200);
     this.iterationsBox.Name     = "iterationsBox";
     this.iterationsBox.Size     = new System.Drawing.Size(50, 20);
     this.iterationsBox.TabIndex = 15;
     this.iterationsBox.Text     = "";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(10, 202);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(70, 16);
     this.label9.TabIndex = 14;
     this.label9.Text     = "Iterations:";
     //
     // label8
     //
     this.label8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label8.Location    = new System.Drawing.Point(10, 190);
     this.label8.Name        = "label8";
     this.label8.Size        = new System.Drawing.Size(165, 2);
     this.label8.TabIndex    = 13;
     //
     // predictionSizeBox
     //
     this.predictionSizeBox.Location     = new System.Drawing.Point(125, 160);
     this.predictionSizeBox.Name         = "predictionSizeBox";
     this.predictionSizeBox.Size         = new System.Drawing.Size(50, 20);
     this.predictionSizeBox.TabIndex     = 12;
     this.predictionSizeBox.Text         = "";
     this.predictionSizeBox.TextChanged += new System.EventHandler(this.predictionSizeBox_TextChanged);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(10, 162);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(90, 16);
     this.label7.TabIndex = 11;
     this.label7.Text     = "Prediction size:";
     //
     // windowSizeBox
     //
     this.windowSizeBox.Location     = new System.Drawing.Point(125, 135);
     this.windowSizeBox.Name         = "windowSizeBox";
     this.windowSizeBox.Size         = new System.Drawing.Size(50, 20);
     this.windowSizeBox.TabIndex     = 10;
     this.windowSizeBox.Text         = "";
     this.windowSizeBox.TextChanged += new System.EventHandler(this.windowSizeBox_TextChanged);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 137);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(80, 16);
     this.label6.TabIndex = 9;
     this.label6.Text     = "Window size:";
     //
     // label5
     //
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label5.Location    = new System.Drawing.Point(10, 125);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(165, 2);
     this.label5.TabIndex    = 8;
     //
     // geneticMethodBox
     //
     this.geneticMethodBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.geneticMethodBox.Items.AddRange(new object[] {
         "GP",
         "GEP"
     });
     this.geneticMethodBox.Location = new System.Drawing.Point(110, 95);
     this.geneticMethodBox.Name     = "geneticMethodBox";
     this.geneticMethodBox.Size     = new System.Drawing.Size(65, 21);
     this.geneticMethodBox.TabIndex = 7;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 97);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 16);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Genetic method:";
     //
     // functionsSetBox
     //
     this.functionsSetBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.functionsSetBox.Items.AddRange(new object[] {
         "Simple",
         "Extended"
     });
     this.functionsSetBox.Location = new System.Drawing.Point(110, 70);
     this.functionsSetBox.Name     = "functionsSetBox";
     this.functionsSetBox.Size     = new System.Drawing.Size(65, 21);
     this.functionsSetBox.TabIndex = 5;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 72);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 16);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Function set:";
     //
     // selectionBox
     //
     this.selectionBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.selectionBox.Items.AddRange(new object[] {
         "Elite",
         "Rank",
         "Roulette"
     });
     this.selectionBox.Location = new System.Drawing.Point(110, 45);
     this.selectionBox.Name     = "selectionBox";
     this.selectionBox.Size     = new System.Drawing.Size(65, 21);
     this.selectionBox.TabIndex = 3;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 47);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Selection method:";
     //
     // populationSizeBox
     //
     this.populationSizeBox.Location = new System.Drawing.Point(125, 20);
     this.populationSizeBox.Name     = "populationSizeBox";
     this.populationSizeBox.Size     = new System.Drawing.Size(50, 20);
     this.populationSizeBox.TabIndex = 1;
     this.populationSizeBox.Text     = "";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 22);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Population size:";
     //
     // startButton
     //
     this.startButton.Enabled  = false;
     this.startButton.Location = new System.Drawing.Point(535, 364);
     this.startButton.Name     = "startButton";
     this.startButton.TabIndex = 3;
     this.startButton.Text     = "&Start";
     this.startButton.Click   += new System.EventHandler(this.startButton_Click);
     //
     // stopButton
     //
     this.stopButton.Enabled  = false;
     this.stopButton.Location = new System.Drawing.Point(620, 364);
     this.stopButton.Name     = "stopButton";
     this.stopButton.TabIndex = 4;
     this.stopButton.Text     = "S&top";
     this.stopButton.Click   += new System.EventHandler(this.stopButton_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.currentPredictionErrorBox);
     this.groupBox4.Controls.Add(this.label13);
     this.groupBox4.Controls.Add(this.currentLearningErrorBox);
     this.groupBox4.Controls.Add(this.label12);
     this.groupBox4.Controls.Add(this.currentIterationBox);
     this.groupBox4.Controls.Add(this.label11);
     this.groupBox4.Location = new System.Drawing.Point(510, 255);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(185, 100);
     this.groupBox4.TabIndex = 5;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "Current iteration:";
     //
     // currentPredictionErrorBox
     //
     this.currentPredictionErrorBox.Location = new System.Drawing.Point(125, 70);
     this.currentPredictionErrorBox.Name     = "currentPredictionErrorBox";
     this.currentPredictionErrorBox.ReadOnly = true;
     this.currentPredictionErrorBox.Size     = new System.Drawing.Size(50, 20);
     this.currentPredictionErrorBox.TabIndex = 5;
     this.currentPredictionErrorBox.Text     = "";
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(10, 72);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(100, 16);
     this.label13.TabIndex = 4;
     this.label13.Text     = "Prediction error:";
     //
     // currentLearningErrorBox
     //
     this.currentLearningErrorBox.Location = new System.Drawing.Point(125, 45);
     this.currentLearningErrorBox.Name     = "currentLearningErrorBox";
     this.currentLearningErrorBox.ReadOnly = true;
     this.currentLearningErrorBox.Size     = new System.Drawing.Size(50, 20);
     this.currentLearningErrorBox.TabIndex = 3;
     this.currentLearningErrorBox.Text     = "";
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(10, 47);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(80, 16);
     this.label12.TabIndex = 2;
     this.label12.Text     = "Learning error:";
     //
     // currentIterationBox
     //
     this.currentIterationBox.Location = new System.Drawing.Point(125, 20);
     this.currentIterationBox.Name     = "currentIterationBox";
     this.currentIterationBox.ReadOnly = true;
     this.currentIterationBox.Size     = new System.Drawing.Size(50, 20);
     this.currentIterationBox.TabIndex = 1;
     this.currentIterationBox.Text     = "";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(10, 22);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(70, 16);
     this.label11.TabIndex = 0;
     this.label11.Text     = "Iteration:";
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.solutionBox);
     this.groupBox5.Location = new System.Drawing.Point(10, 395);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(685, 50);
     this.groupBox5.TabIndex = 6;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Solution";
     //
     // solutionBox
     //
     this.solutionBox.Location = new System.Drawing.Point(10, 20);
     this.solutionBox.Name     = "solutionBox";
     this.solutionBox.ReadOnly = true;
     this.solutionBox.Size     = new System.Drawing.Size(665, 20);
     this.solutionBox.TabIndex = 0;
     this.solutionBox.Text     = "";
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(704, 455);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.stopButton);
     this.Controls.Add(this.startButton);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Text            = "Time Series Prediction using Genetic Programming and Gene Expression Programming";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
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()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFPDF));
     this.m_gbPrincipal          = new System.Windows.Forms.GroupBox();
     this.m_gbDocumentosExportar = new System.Windows.Forms.GroupBox();
     this.m_tvPDF                   = new System.Windows.Forms.TreeView();
     this.m_ilDocumentos            = new System.Windows.Forms.ImageList(this.components);
     this.m_btDocumentoAcima        = new System.Windows.Forms.Button();
     this.m_btDocumentoAbaixo       = new System.Windows.Forms.Button();
     this.m_gbDocumentosDisponiveis = new System.Windows.Forms.GroupBox();
     this.m_tvDocumentos            = new System.Windows.Forms.TreeView();
     this.m_btRetira                = new System.Windows.Forms.Button();
     this.m_btInsere                = new System.Windows.Forms.Button();
     this.m_btOk       = new System.Windows.Forms.Button();
     this.m_btCancelar = new System.Windows.Forms.Button();
     this.m_ttDicas    = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbPrincipal.SuspendLayout();
     this.m_gbDocumentosExportar.SuspendLayout();
     this.m_gbDocumentosDisponiveis.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbPrincipal
     //
     this.m_gbPrincipal.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.m_gbPrincipal.Controls.Add(this.m_gbDocumentosExportar);
     this.m_gbPrincipal.Controls.Add(this.m_gbDocumentosDisponiveis);
     this.m_gbPrincipal.Controls.Add(this.m_btRetira);
     this.m_gbPrincipal.Controls.Add(this.m_btInsere);
     this.m_gbPrincipal.Controls.Add(this.m_btOk);
     this.m_gbPrincipal.Controls.Add(this.m_btCancelar);
     this.m_gbPrincipal.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbPrincipal.Location = new System.Drawing.Point(4, -2);
     this.m_gbPrincipal.Name     = "m_gbPrincipal";
     this.m_gbPrincipal.Size     = new System.Drawing.Size(428, 536);
     this.m_gbPrincipal.TabIndex = 0;
     this.m_gbPrincipal.TabStop  = false;
     //
     // m_gbDocumentosExportar
     //
     this.m_gbDocumentosExportar.Controls.Add(this.m_tvPDF);
     this.m_gbDocumentosExportar.Controls.Add(this.m_btDocumentoAcima);
     this.m_gbDocumentosExportar.Controls.Add(this.m_btDocumentoAbaixo);
     this.m_gbDocumentosExportar.Location = new System.Drawing.Point(6, 277);
     this.m_gbDocumentosExportar.Name     = "m_gbDocumentosExportar";
     this.m_gbDocumentosExportar.Size     = new System.Drawing.Size(418, 230);
     this.m_gbDocumentosExportar.TabIndex = 65;
     this.m_gbDocumentosExportar.TabStop  = false;
     this.m_gbDocumentosExportar.Text     = "Documentos Exportar";
     //
     // m_tvPDF
     //
     this.m_tvPDF.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.m_tvPDF.HideSelection      = false;
     this.m_tvPDF.ImageList          = this.m_ilDocumentos;
     this.m_tvPDF.Location           = new System.Drawing.Point(40, 13);
     this.m_tvPDF.Name               = "m_tvPDF";
     this.m_tvPDF.SelectedImageIndex = 10;
     this.m_tvPDF.Size               = new System.Drawing.Size(370, 211);
     this.m_tvPDF.TabIndex           = 64;
     //
     // m_ilDocumentos
     //
     this.m_ilDocumentos.ImageSize        = new System.Drawing.Size(16, 16);
     this.m_ilDocumentos.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_ilDocumentos.ImageStream")));
     this.m_ilDocumentos.TransparentColor = System.Drawing.Color.Transparent;
     //
     // m_btDocumentoAcima
     //
     this.m_btDocumentoAcima.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btDocumentoAcima.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btDocumentoAcima.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btDocumentoAcima.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btDocumentoAcima.Image       = ((System.Drawing.Image)(resources.GetObject("m_btDocumentoAcima.Image")));
     this.m_btDocumentoAcima.Location    = new System.Drawing.Point(7, 91);
     this.m_btDocumentoAcima.Name        = "m_btDocumentoAcima";
     this.m_btDocumentoAcima.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btDocumentoAcima.Size        = new System.Drawing.Size(25, 25);
     this.m_btDocumentoAcima.TabIndex    = 62;
     this.m_ttDicas.SetToolTip(this.m_btDocumentoAcima, "Move documento para cima");
     this.m_btDocumentoAcima.Click += new System.EventHandler(this.m_btDocumentoAcima_Click);
     //
     // m_btDocumentoAbaixo
     //
     this.m_btDocumentoAbaixo.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btDocumentoAbaixo.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btDocumentoAbaixo.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btDocumentoAbaixo.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btDocumentoAbaixo.Image       = ((System.Drawing.Image)(resources.GetObject("m_btDocumentoAbaixo.Image")));
     this.m_btDocumentoAbaixo.Location    = new System.Drawing.Point(7, 123);
     this.m_btDocumentoAbaixo.Name        = "m_btDocumentoAbaixo";
     this.m_btDocumentoAbaixo.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btDocumentoAbaixo.Size        = new System.Drawing.Size(25, 25);
     this.m_btDocumentoAbaixo.TabIndex    = 63;
     this.m_ttDicas.SetToolTip(this.m_btDocumentoAbaixo, "Mover documento para baixo");
     this.m_btDocumentoAbaixo.Click += new System.EventHandler(this.m_btDocumentoAbaixo_Click);
     //
     // m_gbDocumentosDisponiveis
     //
     this.m_gbDocumentosDisponiveis.Controls.Add(this.m_tvDocumentos);
     this.m_gbDocumentosDisponiveis.Location = new System.Drawing.Point(6, 7);
     this.m_gbDocumentosDisponiveis.Name     = "m_gbDocumentosDisponiveis";
     this.m_gbDocumentosDisponiveis.Size     = new System.Drawing.Size(417, 233);
     this.m_gbDocumentosDisponiveis.TabIndex = 64;
     this.m_gbDocumentosDisponiveis.TabStop  = false;
     this.m_gbDocumentosDisponiveis.Text     = "Documentos Disponíveis";
     //
     // m_tvDocumentos
     //
     this.m_tvDocumentos.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.m_tvDocumentos.HideSelection      = false;
     this.m_tvDocumentos.ImageList          = this.m_ilDocumentos;
     this.m_tvDocumentos.Location           = new System.Drawing.Point(5, 13);
     this.m_tvDocumentos.Name               = "m_tvDocumentos";
     this.m_tvDocumentos.SelectedImageIndex = 10;
     this.m_tvDocumentos.Size               = new System.Drawing.Size(405, 215);
     this.m_tvDocumentos.TabIndex           = 17;
     //
     // m_btRetira
     //
     this.m_btRetira.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btRetira.Image    = ((System.Drawing.Image)(resources.GetObject("m_btRetira.Image")));
     this.m_btRetira.Location = new System.Drawing.Point(218, 242);
     this.m_btRetira.Name     = "m_btRetira";
     this.m_btRetira.Size     = new System.Drawing.Size(40, 35);
     this.m_btRetira.TabIndex = 40;
     this.m_ttDicas.SetToolTip(this.m_btRetira, "Remover documento");
     this.m_btRetira.Click += new System.EventHandler(this.m_btRetira_Click);
     //
     // m_btInsere
     //
     this.m_btInsere.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btInsere.Image    = ((System.Drawing.Image)(resources.GetObject("m_btInsere.Image")));
     this.m_btInsere.Location = new System.Drawing.Point(170, 242);
     this.m_btInsere.Name     = "m_btInsere";
     this.m_btInsere.Size     = new System.Drawing.Size(40, 35);
     this.m_btInsere.TabIndex = 14;
     this.m_ttDicas.SetToolTip(this.m_btInsere, "Inserir documento");
     this.m_btInsere.Click += new System.EventHandler(this.m_btInsere_Click);
     //
     // m_btOk
     //
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(154, 508);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 25);
     this.m_btOk.TabIndex    = 10;
     this.m_ttDicas.SetToolTip(this.m_btOk, "Criar documento");
     this.m_btOk.Click += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(218, 508);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 25);
     this.m_btCancelar.TabIndex    = 11;
     this.m_ttDicas.SetToolTip(this.m_btCancelar, "Cancelar");
     this.m_btCancelar.Click += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_ttDicas
     //
     this.m_ttDicas.AutomaticDelay = 100;
     this.m_ttDicas.AutoPopDelay   = 5000;
     this.m_ttDicas.InitialDelay   = 100;
     this.m_ttDicas.ReshowDelay    = 20;
     //
     // frmFPDF
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(434, 535);
     this.Controls.Add(this.m_gbPrincipal);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFPDF";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Exportar Documento";
     this.Load           += new System.EventHandler(this.frmFPDF_Load);
     this.m_gbPrincipal.ResumeLayout(false);
     this.m_gbDocumentosExportar.ResumeLayout(false);
     this.m_gbDocumentosDisponiveis.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #39
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(frmTkviemphoi));
     this.label1     = new System.Windows.Forms.Label();
     this.label2     = new System.Windows.Forms.Label();
     this.label7     = new System.Windows.Forms.Label();
     this.madantoc   = new System.Windows.Forms.ComboBox();
     this.mann       = new System.Windows.Forms.ComboBox();
     this.maqu       = new System.Windows.Forms.ComboBox();
     this.matt       = new System.Windows.Forms.ComboBox();
     this.maphuongxa = new System.Windows.Forms.ComboBox();
     this.label18    = new System.Windows.Forms.Label();
     this.label17    = new System.Windows.Forms.Label();
     this.label16    = new System.Windows.Forms.Label();
     this.label10    = new System.Windows.Forms.Label();
     this.label11    = new System.Windows.Forms.Label();
     this.label12    = new System.Windows.Forms.Label();
     this.makp       = new System.Windows.Forms.ComboBox();
     this.label15    = new System.Windows.Forms.Label();
     this.label19    = new System.Windows.Forms.Label();
     this.phai       = new System.Windows.Forms.ComboBox();
     this.dotuoi     = new System.Windows.Forms.ComboBox();
     this.solieu     = new System.Windows.Forms.ComboBox();
     this.dataGrid1  = new System.Windows.Forms.DataGrid();
     this.butTim     = new System.Windows.Forms.Button();
     this.butIn      = new System.Windows.Forms.Button();
     this.butKetthuc = new System.Windows.Forms.Button();
     this.lbl        = new System.Windows.Forms.Label();
     this.toolTip1   = new System.Windows.Forms.ToolTip(this.components);
     this.den        = new MaskedBox.MaskedBox();
     this.tu         = new MaskedBox.MaskedBox();
     this.ttlucrv    = new System.Windows.Forms.ComboBox();
     this.label3     = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label1.Location  = new System.Drawing.Point(15, 11);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 23);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Từ ngày :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label1.Click    += new System.EventHandler(this.label1_Click);
     //
     // label2
     //
     this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label2.Location  = new System.Drawing.Point(123, 11);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 23);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "đến ngày :";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label7.Location  = new System.Drawing.Point(493, 11);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(64, 23);
     this.label7.TabIndex  = 6;
     this.label7.Text      = "Giới tính :";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // madantoc
     //
     this.madantoc.BackColor = System.Drawing.SystemColors.HighlightText;
     this.madantoc.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.madantoc.Location  = new System.Drawing.Point(696, 36);
     this.madantoc.Name      = "madantoc";
     this.madantoc.Size      = new System.Drawing.Size(88, 21);
     this.madantoc.TabIndex  = 8;
     this.madantoc.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.madantoc_KeyDown);
     //
     // mann
     //
     this.mann.BackColor = System.Drawing.SystemColors.HighlightText;
     this.mann.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mann.Location  = new System.Drawing.Point(332, 36);
     this.mann.Name      = "mann";
     this.mann.Size      = new System.Drawing.Size(164, 21);
     this.mann.TabIndex  = 6;
     this.mann.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.mann_KeyDown);
     //
     // maqu
     //
     this.maqu.BackColor             = System.Drawing.SystemColors.HighlightText;
     this.maqu.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.maqu.Location              = new System.Drawing.Point(332, 60);
     this.maqu.Name                  = "maqu";
     this.maqu.Size                  = new System.Drawing.Size(164, 21);
     this.maqu.TabIndex              = 10;
     this.maqu.SelectedIndexChanged += new System.EventHandler(this.maqu_SelectedIndexChanged);
     this.maqu.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.maqu_KeyDown);
     //
     // matt
     //
     this.matt.BackColor             = System.Drawing.SystemColors.HighlightText;
     this.matt.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.matt.Location              = new System.Drawing.Point(71, 60);
     this.matt.Name                  = "matt";
     this.matt.Size                  = new System.Drawing.Size(185, 21);
     this.matt.TabIndex              = 9;
     this.matt.SelectedIndexChanged += new System.EventHandler(this.matt_SelectedIndexChanged);
     this.matt.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.matt_KeyDown);
     //
     // maphuongxa
     //
     this.maphuongxa.BackColor = System.Drawing.SystemColors.HighlightText;
     this.maphuongxa.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.maphuongxa.Location  = new System.Drawing.Point(556, 60);
     this.maphuongxa.Name      = "maphuongxa";
     this.maphuongxa.Size      = new System.Drawing.Size(228, 21);
     this.maphuongxa.TabIndex  = 11;
     this.maphuongxa.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.maphuongxa_KeyDown);
     //
     // label18
     //
     this.label18.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label18.Location  = new System.Drawing.Point(472, 60);
     this.label18.Name      = "label18";
     this.label18.Size      = new System.Drawing.Size(78, 23);
     this.label18.TabIndex  = 55;
     this.label18.Text      = "Ph./Xã :";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label17
     //
     this.label17.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label17.Location  = new System.Drawing.Point(255, 60);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(80, 23);
     this.label17.TabIndex  = 54;
     this.label17.Text      = "Quận/Huyện :";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label16
     //
     this.label16.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label16.Location  = new System.Drawing.Point(15, 60);
     this.label16.Name      = "label16";
     this.label16.Size      = new System.Drawing.Size(56, 23);
     this.label16.TabIndex  = 53;
     this.label16.Text      = "Tỉnh/TP :";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label10
     //
     this.label10.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label10.Location  = new System.Drawing.Point(255, 36);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(80, 23);
     this.label10.TabIndex  = 49;
     this.label10.Text      = "Nghề nghiệp :";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label11
     //
     this.label11.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label11.Location  = new System.Drawing.Point(642, 36);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(56, 23);
     this.label11.TabIndex  = 56;
     this.label11.Text      = "Dân tộc :";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label12
     //
     this.label12.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label12.Location  = new System.Drawing.Point(-7, 36);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(80, 23);
     this.label12.TabIndex  = 57;
     this.label12.Text      = "Khoa/Phòng :";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label12.Click    += new System.EventHandler(this.label12_Click);
     //
     // makp
     //
     this.makp.BackColor = System.Drawing.SystemColors.HighlightText;
     this.makp.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.makp.Location  = new System.Drawing.Point(71, 36);
     this.makp.Name      = "makp";
     this.makp.Size      = new System.Drawing.Size(185, 21);
     this.makp.TabIndex  = 5;
     this.makp.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.makp_KeyDown);
     //
     // label15
     //
     this.label15.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label15.Location  = new System.Drawing.Point(624, 11);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(74, 23);
     this.label15.TabIndex  = 61;
     this.label15.Text      = "Độ tuổi :";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label19
     //
     this.label19.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label19.Location  = new System.Drawing.Point(271, 11);
     this.label19.Name      = "label19";
     this.label19.Size      = new System.Drawing.Size(64, 23);
     this.label19.TabIndex  = 62;
     this.label19.Text      = "Số liệu :";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // phai
     //
     this.phai.BackColor = System.Drawing.SystemColors.HighlightText;
     this.phai.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.phai.Items.AddRange(new object[] {
         "Nam",
         "Nữ"
     });
     this.phai.Location = new System.Drawing.Point(555, 12);
     this.phai.Name     = "phai";
     this.phai.Size     = new System.Drawing.Size(88, 21);
     this.phai.TabIndex = 3;
     this.phai.KeyDown += new System.Windows.Forms.KeyEventHandler(this.phai_KeyDown);
     //
     // dotuoi
     //
     this.dotuoi.BackColor = System.Drawing.SystemColors.HighlightText;
     this.dotuoi.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dotuoi.Location  = new System.Drawing.Point(696, 12);
     this.dotuoi.Name      = "dotuoi";
     this.dotuoi.Size      = new System.Drawing.Size(88, 21);
     this.dotuoi.TabIndex  = 4;
     this.dotuoi.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.dotuoi_KeyDown);
     //
     // solieu
     //
     this.solieu.BackColor             = System.Drawing.SystemColors.HighlightText;
     this.solieu.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.solieu.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.solieu.Location              = new System.Drawing.Point(332, 12);
     this.solieu.Name                  = "solieu";
     this.solieu.Size                  = new System.Drawing.Size(164, 21);
     this.solieu.TabIndex              = 2;
     this.solieu.SelectedIndexChanged += new System.EventHandler(this.solieu_SelectedIndexChanged);
     this.solieu.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.solieu_KeyDown);
     //
     // dataGrid1
     //
     this.dataGrid1.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.dataGrid1.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.BackgroundColor      = System.Drawing.SystemColors.Control;
     this.dataGrid1.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.dataGrid1.CaptionBackColor     = System.Drawing.SystemColors.Control;
     this.dataGrid1.CaptionFont          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.CaptionForeColor     = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.DataMember           = "";
     this.dataGrid1.FlatMode             = true;
     this.dataGrid1.Font                = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.GridLineColor       = System.Drawing.Color.Gainsboro;
     this.dataGrid1.GridLineStyle       = System.Windows.Forms.DataGridLineStyle.None;
     this.dataGrid1.HeaderFont          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dataGrid1.HeaderForeColor     = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.LinkColor           = System.Drawing.Color.Teal;
     this.dataGrid1.Location            = new System.Drawing.Point(8, 72);
     this.dataGrid1.Name                = "dataGrid1";
     this.dataGrid1.ParentRowsBackColor = System.Drawing.Color.Gainsboro;
     this.dataGrid1.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.ReadOnly            = true;
     this.dataGrid1.RowHeaderWidth      = 10;
     this.dataGrid1.SelectionBackColor  = System.Drawing.Color.CadetBlue;
     this.dataGrid1.SelectionForeColor  = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.Size                = new System.Drawing.Size(776, 408);
     this.dataGrid1.TabIndex            = 23;
     //
     // butTim
     //
     this.butTim.BackColor  = System.Drawing.Color.Transparent;
     this.butTim.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.butTim.ForeColor  = System.Drawing.SystemColors.WindowText;
     this.butTim.Image      = ((System.Drawing.Image)(resources.GetObject("butTim.Image")));
     this.butTim.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butTim.Location   = new System.Drawing.Point(274, 488);
     this.butTim.Name       = "butTim";
     this.butTim.Size       = new System.Drawing.Size(90, 25);
     this.butTim.TabIndex   = 12;
     this.butTim.Text       = " &Tìm";
     this.butTim.UseVisualStyleBackColor = false;
     this.butTim.Click += new System.EventHandler(this.butTim_Click);
     //
     // butIn
     //
     this.butIn.BackColor  = System.Drawing.Color.Transparent;
     this.butIn.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.butIn.ForeColor  = System.Drawing.SystemColors.WindowText;
     this.butIn.Image      = ((System.Drawing.Image)(resources.GetObject("butIn.Image")));
     this.butIn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butIn.Location   = new System.Drawing.Point(364, 488);
     this.butIn.Name       = "butIn";
     this.butIn.Size       = new System.Drawing.Size(90, 25);
     this.butIn.TabIndex   = 13;
     this.butIn.Text       = " &In";
     this.butIn.UseVisualStyleBackColor = false;
     this.butIn.Click += new System.EventHandler(this.butIn_Click);
     //
     // butKetthuc
     //
     this.butKetthuc.BackColor  = System.Drawing.Color.Transparent;
     this.butKetthuc.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.butKetthuc.ForeColor  = System.Drawing.SystemColors.WindowText;
     this.butKetthuc.Image      = global::Medisoft.Properties.Resources.exit1;
     this.butKetthuc.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butKetthuc.Location   = new System.Drawing.Point(454, 488);
     this.butKetthuc.Name       = "butKetthuc";
     this.butKetthuc.Size       = new System.Drawing.Size(90, 25);
     this.butKetthuc.TabIndex   = 15;
     this.butKetthuc.Text       = "&Kết thúc";
     this.butKetthuc.UseVisualStyleBackColor = false;
     this.butKetthuc.Click += new System.EventHandler(this.butKetthuc_Click);
     //
     // lbl
     //
     this.lbl.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl.ForeColor = System.Drawing.Color.Red;
     this.lbl.Location  = new System.Drawing.Point(8, 488);
     this.lbl.Name      = "lbl";
     this.lbl.Size      = new System.Drawing.Size(216, 23);
     this.lbl.TabIndex  = 64;
     this.lbl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // den
     //
     this.den.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.den.Location   = new System.Drawing.Point(193, 12);
     this.den.Mask       = "##/##/####";
     this.den.Name       = "den";
     this.den.Size       = new System.Drawing.Size(64, 21);
     this.den.TabIndex   = 1;
     this.den.Text       = "  /  /    ";
     this.den.Validated += new System.EventHandler(this.den_Validated);
     //
     // tu
     //
     this.tu.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tu.Location   = new System.Drawing.Point(71, 12);
     this.tu.Mask       = "##/##/####";
     this.tu.Name       = "tu";
     this.tu.Size       = new System.Drawing.Size(64, 21);
     this.tu.TabIndex   = 0;
     this.tu.Text       = "  /  /    ";
     this.tu.Validated += new System.EventHandler(this.tu_Validated);
     //
     // ttlucrv
     //
     this.ttlucrv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.ttlucrv.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ttlucrv.Location  = new System.Drawing.Point(555, 36);
     this.ttlucrv.Name      = "ttlucrv";
     this.ttlucrv.Size      = new System.Drawing.Size(88, 21);
     this.ttlucrv.TabIndex  = 7;
     //
     // label3
     //
     this.label3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label3.Location  = new System.Drawing.Point(478, 36);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(80, 23);
     this.label3.TabIndex  = 66;
     this.label3.Text      = "Tình trạng :";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // frmTkviemphoi
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(792, 573);
     this.Controls.Add(this.phai);
     this.Controls.Add(this.madantoc);
     this.Controls.Add(this.mann);
     this.Controls.Add(this.ttlucrv);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.matt);
     this.Controls.Add(this.den);
     this.Controls.Add(this.makp);
     this.Controls.Add(this.maqu);
     this.Controls.Add(this.maphuongxa);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.tu);
     this.Controls.Add(this.lbl);
     this.Controls.Add(this.butKetthuc);
     this.Controls.Add(this.butIn);
     this.Controls.Add(this.butTim);
     this.Controls.Add(this.dotuoi);
     this.Controls.Add(this.solieu);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.dataGrid1);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "frmTkviemphoi";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Danh sách bệnh viêm phổi";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.frmTkviemphoi_Load);
     this.MouseMove    += new System.Windows.Forms.MouseEventHandler(this.frmTkravien_MouseMove);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frmTkviemphoi_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #40
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GXDLMSAutoConnectView));
     this.groupBox1               = new System.Windows.Forms.GroupBox();
     this.ConnectBtn              = new Gurux.DLMS.UI.GXButton();
     this.DestinationLv           = new System.Windows.Forms.ListView();
     this.DestinationHeader       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.DestinationMenu         = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3      = new System.Windows.Forms.ToolStripMenuItem();
     this.DestinationRemoveBtn    = new System.Windows.Forms.Button();
     this.DestinationEditBtn      = new System.Windows.Forms.Button();
     this.DestinationAddBtn       = new System.Windows.Forms.Button();
     this.TimeRemoveBtn           = new System.Windows.Forms.Button();
     this.TimeEditBtn             = new System.Windows.Forms.Button();
     this.TimeAddBtn              = new System.Windows.Forms.Button();
     this.CallingWindowLV         = new System.Windows.Forms.ListView();
     this.StartTimeHeader         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.EndTimeHeader           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.TimeMenu                = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.CallingWindowLbl        = new System.Windows.Forms.Label();
     this.RepetitionDelayTB       = new Gurux.DLMS.UI.GXValueField();
     this.RepetitionDelayLbl      = new System.Windows.Forms.Label();
     this.RepetitionsTB           = new Gurux.DLMS.UI.GXValueField();
     this.RepetitionsLbl          = new System.Windows.Forms.Label();
     this.ModeTB = new Gurux.DLMS.UI.GXValueField();
     this.CommunicationSpeedLbl = new System.Windows.Forms.Label();
     this.LogicalNameTB         = new Gurux.DLMS.UI.GXValueField();
     this.LogicalNameLbl        = new System.Windows.Forms.Label();
     this.errorProvider1        = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     this.DestinationMenu.SuspendLayout();
     this.TimeMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.ConnectBtn);
     this.groupBox1.Controls.Add(this.DestinationLv);
     this.groupBox1.Controls.Add(this.DestinationRemoveBtn);
     this.groupBox1.Controls.Add(this.DestinationEditBtn);
     this.groupBox1.Controls.Add(this.DestinationAddBtn);
     this.groupBox1.Controls.Add(this.TimeRemoveBtn);
     this.groupBox1.Controls.Add(this.TimeEditBtn);
     this.groupBox1.Controls.Add(this.TimeAddBtn);
     this.groupBox1.Controls.Add(this.CallingWindowLV);
     this.groupBox1.Controls.Add(this.CallingWindowLbl);
     this.groupBox1.Controls.Add(this.RepetitionDelayTB);
     this.groupBox1.Controls.Add(this.RepetitionDelayLbl);
     this.groupBox1.Controls.Add(this.RepetitionsTB);
     this.groupBox1.Controls.Add(this.RepetitionsLbl);
     this.groupBox1.Controls.Add(this.ModeTB);
     this.groupBox1.Controls.Add(this.CommunicationSpeedLbl);
     this.groupBox1.Controls.Add(this.LogicalNameTB);
     this.groupBox1.Controls.Add(this.LogicalNameLbl);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(482, 397);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Auto Connect Object";
     this.groupBox1.UseCompatibleTextRendering = true;
     //
     // ConnectBtn
     //
     this.ConnectBtn.Index    = 1;
     this.ConnectBtn.Location = new System.Drawing.Point(14, 261);
     this.ConnectBtn.Name     = "ConnectBtn";
     this.ConnectBtn.Size     = new System.Drawing.Size(75, 23);
     this.ConnectBtn.TabIndex = 24;
     this.ConnectBtn.Text     = "Connect";
     this.ConnectBtn.UseVisualStyleBackColor = true;
     //
     // DestinationLv
     //
     this.DestinationLv.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.DestinationLv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.DestinationHeader
     });
     this.DestinationLv.ContextMenuStrip = this.DestinationMenu;
     this.DestinationLv.FullRowSelect    = true;
     this.DestinationLv.HeaderStyle      = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.DestinationLv.HideSelection    = false;
     this.DestinationLv.Location         = new System.Drawing.Point(102, 261);
     this.DestinationLv.Name             = "DestinationLv";
     this.DestinationLv.Size             = new System.Drawing.Size(352, 92);
     this.DestinationLv.TabIndex         = 18;
     this.DestinationLv.UseCompatibleStateImageBehavior = false;
     this.DestinationLv.View         = System.Windows.Forms.View.Details;
     this.DestinationLv.DoubleClick += new System.EventHandler(this.DestinationEditBtn_Click);
     //
     // DestinationHeader
     //
     this.DestinationHeader.Text  = "Destination:";
     this.DestinationHeader.Width = 334;
     //
     // DestinationMenu
     //
     this.DestinationMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem1,
         this.toolStripMenuItem2,
         this.toolStripMenuItem3
     });
     this.DestinationMenu.Name = "contextMenuStrip1";
     this.DestinationMenu.Size = new System.Drawing.Size(118, 70);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name   = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size   = new System.Drawing.Size(117, 22);
     this.toolStripMenuItem1.Text   = "Add";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.DestinationAddBtn_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name   = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size   = new System.Drawing.Size(117, 22);
     this.toolStripMenuItem2.Text   = "Edit";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.DestinationEditBtn_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name   = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size   = new System.Drawing.Size(117, 22);
     this.toolStripMenuItem3.Text   = "Remove";
     this.toolStripMenuItem3.Click += new System.EventHandler(this.DestinationRemoveBtn_Click);
     //
     // DestinationRemoveBtn
     //
     this.DestinationRemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.DestinationRemoveBtn.Location = new System.Drawing.Point(379, 368);
     this.DestinationRemoveBtn.Name     = "DestinationRemoveBtn";
     this.DestinationRemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.DestinationRemoveBtn.TabIndex = 17;
     this.DestinationRemoveBtn.Text     = "Remove";
     this.DestinationRemoveBtn.UseVisualStyleBackColor = true;
     this.DestinationRemoveBtn.Click += new System.EventHandler(this.DestinationRemoveBtn_Click);
     //
     // DestinationEditBtn
     //
     this.DestinationEditBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.DestinationEditBtn.Location = new System.Drawing.Point(298, 368);
     this.DestinationEditBtn.Name     = "DestinationEditBtn";
     this.DestinationEditBtn.Size     = new System.Drawing.Size(75, 23);
     this.DestinationEditBtn.TabIndex = 16;
     this.DestinationEditBtn.Text     = "Edit...";
     this.DestinationEditBtn.UseVisualStyleBackColor = true;
     this.DestinationEditBtn.Click += new System.EventHandler(this.DestinationEditBtn_Click);
     //
     // DestinationAddBtn
     //
     this.DestinationAddBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.DestinationAddBtn.Location = new System.Drawing.Point(217, 368);
     this.DestinationAddBtn.Name     = "DestinationAddBtn";
     this.DestinationAddBtn.Size     = new System.Drawing.Size(75, 23);
     this.DestinationAddBtn.TabIndex = 15;
     this.DestinationAddBtn.Text     = "Add...";
     this.DestinationAddBtn.UseVisualStyleBackColor = true;
     this.DestinationAddBtn.Click += new System.EventHandler(this.DestinationAddBtn_Click);
     //
     // TimeRemoveBtn
     //
     this.TimeRemoveBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeRemoveBtn.Location = new System.Drawing.Point(379, 223);
     this.TimeRemoveBtn.Name     = "TimeRemoveBtn";
     this.TimeRemoveBtn.Size     = new System.Drawing.Size(75, 23);
     this.TimeRemoveBtn.TabIndex = 14;
     this.TimeRemoveBtn.Text     = "Remove";
     this.TimeRemoveBtn.UseVisualStyleBackColor = true;
     this.TimeRemoveBtn.Click += new System.EventHandler(this.TimeRemoveBtn_Click);
     //
     // TimeEditBtn
     //
     this.TimeEditBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeEditBtn.Location = new System.Drawing.Point(298, 223);
     this.TimeEditBtn.Name     = "TimeEditBtn";
     this.TimeEditBtn.Size     = new System.Drawing.Size(75, 23);
     this.TimeEditBtn.TabIndex = 13;
     this.TimeEditBtn.Text     = "Edit...";
     this.TimeEditBtn.UseVisualStyleBackColor = true;
     this.TimeEditBtn.Click += new System.EventHandler(this.TimeEditBtn_Click);
     //
     // TimeAddBtn
     //
     this.TimeAddBtn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.TimeAddBtn.Location = new System.Drawing.Point(217, 223);
     this.TimeAddBtn.Name     = "TimeAddBtn";
     this.TimeAddBtn.Size     = new System.Drawing.Size(75, 23);
     this.TimeAddBtn.TabIndex = 12;
     this.TimeAddBtn.Text     = "Add...";
     this.TimeAddBtn.UseVisualStyleBackColor = true;
     this.TimeAddBtn.Click += new System.EventHandler(this.TimeAddBtn_Click);
     //
     // CallingWindowLV
     //
     this.CallingWindowLV.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.CallingWindowLV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.StartTimeHeader,
         this.EndTimeHeader
     });
     this.CallingWindowLV.ContextMenuStrip = this.TimeMenu;
     this.CallingWindowLV.FullRowSelect    = true;
     this.CallingWindowLV.HeaderStyle      = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.CallingWindowLV.HideSelection    = false;
     this.CallingWindowLV.Location         = new System.Drawing.Point(102, 125);
     this.CallingWindowLV.Name             = "CallingWindowLV";
     this.CallingWindowLV.Size             = new System.Drawing.Size(352, 92);
     this.CallingWindowLV.TabIndex         = 8;
     this.CallingWindowLV.UseCompatibleStateImageBehavior = false;
     this.CallingWindowLV.View         = System.Windows.Forms.View.Details;
     this.CallingWindowLV.DoubleClick += new System.EventHandler(this.TimeEditBtn_Click);
     //
     // StartTimeHeader
     //
     this.StartTimeHeader.Text  = "Start Time:";
     this.StartTimeHeader.Width = 143;
     //
     // EndTimeHeader
     //
     this.EndTimeHeader.Text  = "End Time:";
     this.EndTimeHeader.Width = 185;
     //
     // TimeMenu
     //
     this.TimeMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.addToolStripMenuItem,
         this.editToolStripMenuItem,
         this.removeToolStripMenuItem
     });
     this.TimeMenu.Name = "contextMenuStrip1";
     this.TimeMenu.Size = new System.Drawing.Size(118, 70);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name   = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.addToolStripMenuItem.Text   = "Add";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.TimeAddBtn_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.editToolStripMenuItem.Text   = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.TimeEditBtn_Click);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Name   = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.Size   = new System.Drawing.Size(117, 22);
     this.removeToolStripMenuItem.Text   = "Remove";
     this.removeToolStripMenuItem.Click += new System.EventHandler(this.TimeRemoveBtn_Click);
     //
     // CallingWindowLbl
     //
     this.CallingWindowLbl.AutoSize = true;
     this.CallingWindowLbl.Location = new System.Drawing.Point(6, 138);
     this.CallingWindowLbl.Name     = "CallingWindowLbl";
     this.CallingWindowLbl.Size     = new System.Drawing.Size(83, 13);
     this.CallingWindowLbl.TabIndex = 7;
     this.CallingWindowLbl.Text     = "Calling Window:";
     //
     // RepetitionDelayTB
     //
     this.RepetitionDelayTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.RepetitionDelayTB.Index         = 4;
     this.RepetitionDelayTB.Location      = new System.Drawing.Point(102, 99);
     this.RepetitionDelayTB.Name          = "RepetitionDelayTB";
     this.RepetitionDelayTB.NotifyChanges = false;
     this.RepetitionDelayTB.ReadOnly      = true;
     this.RepetitionDelayTB.Size          = new System.Drawing.Size(352, 20);
     this.RepetitionDelayTB.TabIndex      = 5;
     this.RepetitionDelayTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // RepetitionDelayLbl
     //
     this.RepetitionDelayLbl.AutoSize = true;
     this.RepetitionDelayLbl.Location = new System.Drawing.Point(6, 102);
     this.RepetitionDelayLbl.Name     = "RepetitionDelayLbl";
     this.RepetitionDelayLbl.Size     = new System.Drawing.Size(88, 13);
     this.RepetitionDelayLbl.TabIndex = 6;
     this.RepetitionDelayLbl.Text     = "Repetition Delay:";
     //
     // RepetitionsTB
     //
     this.RepetitionsTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.RepetitionsTB.Index         = 3;
     this.RepetitionsTB.Location      = new System.Drawing.Point(102, 73);
     this.RepetitionsTB.Name          = "RepetitionsTB";
     this.RepetitionsTB.NotifyChanges = false;
     this.RepetitionsTB.ReadOnly      = true;
     this.RepetitionsTB.Size          = new System.Drawing.Size(352, 20);
     this.RepetitionsTB.TabIndex      = 3;
     this.RepetitionsTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // RepetitionsLbl
     //
     this.RepetitionsLbl.AutoSize = true;
     this.RepetitionsLbl.Location = new System.Drawing.Point(6, 76);
     this.RepetitionsLbl.Name     = "RepetitionsLbl";
     this.RepetitionsLbl.Size     = new System.Drawing.Size(63, 13);
     this.RepetitionsLbl.TabIndex = 4;
     this.RepetitionsLbl.Text     = "Repetitions:";
     //
     // ModeTB
     //
     this.ModeTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.ModeTB.Index         = 2;
     this.ModeTB.Location      = new System.Drawing.Point(102, 47);
     this.ModeTB.Name          = "ModeTB";
     this.ModeTB.NotifyChanges = false;
     this.ModeTB.ReadOnly      = true;
     this.ModeTB.Size          = new System.Drawing.Size(352, 72);
     this.ModeTB.TabIndex      = 0;
     this.ModeTB.Type          = Gurux.DLMS.Enums.ValueFieldType.CompoBox;
     //
     // CommunicationSpeedLbl
     //
     this.CommunicationSpeedLbl.AutoSize = true;
     this.CommunicationSpeedLbl.Location = new System.Drawing.Point(6, 50);
     this.CommunicationSpeedLbl.Name     = "CommunicationSpeedLbl";
     this.CommunicationSpeedLbl.Size     = new System.Drawing.Size(37, 13);
     this.CommunicationSpeedLbl.TabIndex = 2;
     this.CommunicationSpeedLbl.Text     = "Mode:";
     //
     // LogicalNameTB
     //
     this.LogicalNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.LogicalNameTB.Index         = 1;
     this.LogicalNameTB.Location      = new System.Drawing.Point(102, 21);
     this.LogicalNameTB.Name          = "LogicalNameTB";
     this.LogicalNameTB.NotifyChanges = false;
     this.LogicalNameTB.ReadOnly      = true;
     this.LogicalNameTB.Size          = new System.Drawing.Size(352, 20);
     this.LogicalNameTB.TabIndex      = 1;
     this.LogicalNameTB.Type          = Gurux.DLMS.Enums.ValueFieldType.TextBox;
     //
     // LogicalNameLbl
     //
     this.LogicalNameLbl.AutoSize = true;
     this.LogicalNameLbl.Location = new System.Drawing.Point(6, 24);
     this.LogicalNameLbl.Name     = "LogicalNameLbl";
     this.LogicalNameLbl.Size     = new System.Drawing.Size(75, 13);
     this.LogicalNameLbl.TabIndex = 0;
     this.LogicalNameLbl.Text     = "Logical Name:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon             = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // GXDLMSAutoConnectView
     //
     this.ClientSize = new System.Drawing.Size(506, 421);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "GXDLMSAutoConnectView";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.DestinationMenu.ResumeLayout(false);
     this.TimeMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Example #41
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(TeResourceHelper));
     this.m_teSideBarLargeImages = new System.Windows.Forms.ImageList(this.components);
     this.m_teSideBarSmallImages = new System.Windows.Forms.ImageList(this.components);
     this.teMenuToolBarImages    = new System.Windows.Forms.ImageList(this.components);
     this.m_teSideBarTabImages   = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // m_teSideBarLargeImages
     //
     this.m_teSideBarLargeImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_teSideBarLargeImages.ImageStream")));
     this.m_teSideBarLargeImages.TransparentColor = System.Drawing.Color.Fuchsia;
     this.m_teSideBarLargeImages.Images.SetKeyName(0, "Scripture Draft");
     this.m_teSideBarLargeImages.Images.SetKeyName(1, "Print Layout");
     this.m_teSideBarLargeImages.Images.SetKeyName(2, "Trial Publication");
     this.m_teSideBarLargeImages.Images.SetKeyName(3, "BT Draft");
     this.m_teSideBarLargeImages.Images.SetKeyName(4, "BT Print Layout");
     this.m_teSideBarLargeImages.Images.SetKeyName(5, "Key Terms");
     this.m_teSideBarLargeImages.Images.SetKeyName(6, "Publication");
     this.m_teSideBarLargeImages.Images.SetKeyName(7, "Data Entry");
     this.m_teSideBarLargeImages.Images.SetKeyName(8, "No Filter");
     this.m_teSideBarLargeImages.Images.SetKeyName(9, "Basic Filter");
     this.m_teSideBarLargeImages.Images.SetKeyName(10, "Advanced Filter");
     this.m_teSideBarLargeImages.Images.SetKeyName(11, "Sort Method");
     this.m_teSideBarLargeImages.Images.SetKeyName(12, "Correction Printout");
     this.m_teSideBarLargeImages.Images.SetKeyName(13, "BT Consultant Check");
     this.m_teSideBarLargeImages.Images.SetKeyName(14, "BT Simple Print Layout");
     this.m_teSideBarLargeImages.Images.SetKeyName(15, "Editorial Checks-Large.png");
     //
     // m_teSideBarSmallImages
     //
     this.m_teSideBarSmallImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_teSideBarSmallImages.ImageStream")));
     this.m_teSideBarSmallImages.TransparentColor = System.Drawing.Color.Fuchsia;
     this.m_teSideBarSmallImages.Images.SetKeyName(0, "Scripture Draft");
     this.m_teSideBarSmallImages.Images.SetKeyName(1, "Print Layout");
     this.m_teSideBarSmallImages.Images.SetKeyName(2, "Trial Publication");
     this.m_teSideBarSmallImages.Images.SetKeyName(3, "BT Draft");
     this.m_teSideBarSmallImages.Images.SetKeyName(4, "BT Print Layout");
     this.m_teSideBarSmallImages.Images.SetKeyName(5, "Key Terms");
     this.m_teSideBarSmallImages.Images.SetKeyName(6, "Publication");
     this.m_teSideBarSmallImages.Images.SetKeyName(7, "Data Entry");
     this.m_teSideBarSmallImages.Images.SetKeyName(8, "No Filter");
     this.m_teSideBarSmallImages.Images.SetKeyName(9, "Basic Filter");
     this.m_teSideBarSmallImages.Images.SetKeyName(10, "Advanced Filter");
     this.m_teSideBarSmallImages.Images.SetKeyName(11, "Sort Method");
     this.m_teSideBarSmallImages.Images.SetKeyName(12, "Correction Printout");
     this.m_teSideBarSmallImages.Images.SetKeyName(13, "BT Consultant Check");
     this.m_teSideBarSmallImages.Images.SetKeyName(14, "BT Simple Print Layout");
     this.m_teSideBarSmallImages.Images.SetKeyName(15, "Editorial Checks-Small.png");
     //
     // teMenuToolBarImages
     //
     this.teMenuToolBarImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("teMenuToolBarImages.ImageStream")));
     this.teMenuToolBarImages.TransparentColor = System.Drawing.Color.Magenta;
     this.teMenuToolBarImages.Images.SetKeyName(0, "");
     this.teMenuToolBarImages.Images.SetKeyName(1, "");
     this.teMenuToolBarImages.Images.SetKeyName(2, "");
     this.teMenuToolBarImages.Images.SetKeyName(3, "");
     this.teMenuToolBarImages.Images.SetKeyName(4, "");
     this.teMenuToolBarImages.Images.SetKeyName(5, "");
     this.teMenuToolBarImages.Images.SetKeyName(6, "");
     this.teMenuToolBarImages.Images.SetKeyName(7, "");
     this.teMenuToolBarImages.Images.SetKeyName(8, "");
     this.teMenuToolBarImages.Images.SetKeyName(9, "");
     this.teMenuToolBarImages.Images.SetKeyName(10, "");
     this.teMenuToolBarImages.Images.SetKeyName(11, "");
     this.teMenuToolBarImages.Images.SetKeyName(12, "");
     this.teMenuToolBarImages.Images.SetKeyName(13, "");
     this.teMenuToolBarImages.Images.SetKeyName(14, "");
     this.teMenuToolBarImages.Images.SetKeyName(15, "");
     this.teMenuToolBarImages.Images.SetKeyName(16, "");
     this.teMenuToolBarImages.Images.SetKeyName(17, "");
     this.teMenuToolBarImages.Images.SetKeyName(18, "");
     this.teMenuToolBarImages.Images.SetKeyName(19, "");
     this.teMenuToolBarImages.Images.SetKeyName(20, "");
     this.teMenuToolBarImages.Images.SetKeyName(21, "");
     this.teMenuToolBarImages.Images.SetKeyName(22, "");
     this.teMenuToolBarImages.Images.SetKeyName(23, "");
     this.teMenuToolBarImages.Images.SetKeyName(24, "");
     this.teMenuToolBarImages.Images.SetKeyName(25, "");
     this.teMenuToolBarImages.Images.SetKeyName(26, "");
     this.teMenuToolBarImages.Images.SetKeyName(27, "");
     this.teMenuToolBarImages.Images.SetKeyName(28, "");
     this.teMenuToolBarImages.Images.SetKeyName(29, "");
     this.teMenuToolBarImages.Images.SetKeyName(30, "");
     this.teMenuToolBarImages.Images.SetKeyName(31, "");
     this.teMenuToolBarImages.Images.SetKeyName(32, "");
     this.teMenuToolBarImages.Images.SetKeyName(33, "");
     this.teMenuToolBarImages.Images.SetKeyName(34, "");
     this.teMenuToolBarImages.Images.SetKeyName(35, "");
     this.teMenuToolBarImages.Images.SetKeyName(36, "Keyterm-Filtered.bmp");
     this.teMenuToolBarImages.Images.SetKeyName(37, "Insert_Response.png");
     this.teMenuToolBarImages.Images.SetKeyName(38, "");
     this.teMenuToolBarImages.Images.SetKeyName(39, "");
     this.teMenuToolBarImages.Images.SetKeyName(40, "");
     this.teMenuToolBarImages.Images.SetKeyName(41, "IgnoredInconsistency");
     this.teMenuToolBarImages.Images.SetKeyName(42, "UnignoredInconsistency");
     this.teMenuToolBarImages.Images.SetKeyName(43, "");
     this.teMenuToolBarImages.Images.SetKeyName(44, "");
     this.teMenuToolBarImages.Images.SetKeyName(45, "UpdateKeyTermEquivalentsImage");
     this.teMenuToolBarImages.Images.SetKeyName(46, "KeyTermMissingRenderedImage");
     this.teMenuToolBarImages.Images.SetKeyName(47, "Find Dictionary.png");
     this.teMenuToolBarImages.Images.SetKeyName(48, "CheckErrorIsIrrelevant-gray.bmp");
     //
     // m_teSideBarTabImages
     //
     this.m_teSideBarTabImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_teSideBarTabImages.ImageStream")));
     this.m_teSideBarTabImages.TransparentColor = System.Drawing.Color.Magenta;
     this.m_teSideBarTabImages.Images.SetKeyName(0, "");
     this.m_teSideBarTabImages.Images.SetKeyName(1, "");
     this.m_teSideBarTabImages.Images.SetKeyName(2, "");
     this.m_teSideBarTabImages.Images.SetKeyName(3, "");
     this.m_teSideBarTabImages.Images.SetKeyName(4, "");
     this.m_teSideBarTabImages.Images.SetKeyName(5, "");
     this.m_teSideBarTabImages.Images.SetKeyName(6, "");
     this.m_teSideBarTabImages.Images.SetKeyName(7, "");
     //
     // TeResourceHelper
     //
     resources.ApplyResources(this, "$this");
     this.Name = "TeResourceHelper";
     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(FSSetupPage));
     this.niServer            = new System.Windows.Forms.NotifyIcon(this.components);
     this.cmsServerMenu       = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.smiClientConnect    = new System.Windows.Forms.ToolStripMenuItem();
     this.smiFSConnect        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.smiSetup            = new System.Windows.Forms.ToolStripMenuItem();
     this.smiAbout            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.smiExit             = new System.Windows.Forms.ToolStripMenuItem();
     this.btnClose            = new System.Windows.Forms.Button();
     this.label1              = new System.Windows.Forms.Label();
     this.label2              = new System.Windows.Forms.Label();
     this.tbPortNum           = new System.Windows.Forms.MaskedTextBox();
     this.tbIPAddress         = new System.Windows.Forms.MaskedTextBox();
     this.btnSetPort          = new System.Windows.Forms.Button();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuP3D              = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuFSX              = new System.Windows.Forms.ToolStripMenuItem();
     this.cmsServerMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // niServer
     //
     this.niServer.ContextMenuStrip = this.cmsServerMenu;
     this.niServer.Icon             = ((System.Drawing.Icon)(resources.GetObject("niServer.Icon")));
     this.niServer.Text             = "Remote Server";
     //
     // cmsServerMenu
     //
     this.cmsServerMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.smiClientConnect,
         this.smiFSConnect,
         this.toolStripSeparator1,
         this.smiSetup,
         this.smiAbout,
         this.toolStripSeparator2,
         this.mnuFSX,
         this.mnuP3D,
         this.toolStripSeparator3,
         this.smiExit
     });
     this.cmsServerMenu.Name = "cmsServerMenu";
     this.cmsServerMenu.Size = new System.Drawing.Size(227, 198);
     //
     // smiClientConnect
     //
     this.smiClientConnect.Image = global::FSRemoteServerNotify.Properties.Resources.disconnected;
     this.smiClientConnect.Name  = "smiClientConnect";
     this.smiClientConnect.Size  = new System.Drawing.Size(226, 22);
     this.smiClientConnect.Text  = "Client: Not Connected";
     //
     // smiFSConnect
     //
     this.smiFSConnect.Image = global::FSRemoteServerNotify.Properties.Resources.disconnected;
     this.smiFSConnect.Name  = "smiFSConnect";
     this.smiFSConnect.Size  = new System.Drawing.Size(226, 22);
     this.smiFSConnect.Text  = "SimConnect: Not Connected";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(223, 6);
     //
     // smiSetup
     //
     this.smiSetup.Name   = "smiSetup";
     this.smiSetup.Size   = new System.Drawing.Size(226, 22);
     this.smiSetup.Text   = "Setup";
     this.smiSetup.Click += new System.EventHandler(this.smiSetup_Click);
     //
     // smiAbout
     //
     this.smiAbout.Name   = "smiAbout";
     this.smiAbout.Size   = new System.Drawing.Size(226, 22);
     this.smiAbout.Text   = "About";
     this.smiAbout.Click += new System.EventHandler(this.smiAbout_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(223, 6);
     //
     // smiExit
     //
     this.smiExit.Name   = "smiExit";
     this.smiExit.Size   = new System.Drawing.Size(226, 22);
     this.smiExit.Text   = "Exit";
     this.smiExit.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(144, 83);
     this.btnClose.Name     = "btnClose";
     this.btnClose.Size     = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 1;
     this.btnClose.Text     = "Close";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(24, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(89, 13);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Host IP Address: ";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(24, 51);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Host Port#: ";
     //
     // tbPortNum
     //
     this.tbPortNum.Location       = new System.Drawing.Point(119, 48);
     this.tbPortNum.Mask           = "00000";
     this.tbPortNum.Name           = "tbPortNum";
     this.tbPortNum.Size           = new System.Drawing.Size(100, 20);
     this.tbPortNum.TabIndex       = 4;
     this.tbPortNum.Text           = "3333";
     this.tbPortNum.ValidatingType = typeof(int);
     //
     // tbIPAddress
     //
     this.tbIPAddress.Location = new System.Drawing.Point(119, 22);
     this.tbIPAddress.Name     = "tbIPAddress";
     this.tbIPAddress.ReadOnly = true;
     this.tbIPAddress.Size     = new System.Drawing.Size(100, 20);
     this.tbIPAddress.TabIndex = 5;
     this.tbIPAddress.Text     = "192.168.1.7";
     //
     // btnSetPort
     //
     this.btnSetPort.Location = new System.Drawing.Point(27, 83);
     this.btnSetPort.Name     = "btnSetPort";
     this.btnSetPort.Size     = new System.Drawing.Size(75, 23);
     this.btnSetPort.TabIndex = 6;
     this.btnSetPort.Text     = "Set";
     this.btnSetPort.UseVisualStyleBackColor = true;
     this.btnSetPort.Click += new System.EventHandler(this.btnSetPort_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(223, 6);
     //
     // mnuP3D
     //
     this.mnuP3D.Checked    = true;
     this.mnuP3D.CheckState = System.Windows.Forms.CheckState.Checked;
     this.mnuP3D.Name       = "mnuP3D";
     this.mnuP3D.Size       = new System.Drawing.Size(226, 22);
     this.mnuP3D.Text       = "Prepar3D";
     this.mnuP3D.Click     += new System.EventHandler(this.mnuP3D_Click);
     //
     // mnuFSX
     //
     this.mnuFSX.Name   = "mnuFSX";
     this.mnuFSX.Size   = new System.Drawing.Size(226, 22);
     this.mnuFSX.Text   = "Flight Simulator X";
     this.mnuFSX.Click += new System.EventHandler(this.mnuFSX_Click);
     //
     // FSSetupPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(243, 164);
     this.ControlBox          = false;
     this.Controls.Add(this.btnSetPort);
     this.Controls.Add(this.tbIPAddress);
     this.Controls.Add(this.tbPortNum);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnClose);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "FSSetupPage";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Remote Server Setup";
     this.WindowState     = System.Windows.Forms.FormWindowState.Minimized;
     this.Resize         += new System.EventHandler(this.FSSetupPage_Resize);
     this.cmsServerMenu.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HashFile));
     this.kryptonPanel1              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kcbShowLength              = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.kbtnGenerateFileHash       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klblResult                 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ctxResult                  = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.kryptonLabel2              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcbxHashAlgorithimType     = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel1              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnBrowse                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kptxtApplicationExecutable = new ExtendedControls.ExtendedToolkit.Controls.KryptonPromptTextBox();
     this.kryptonLabel3              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnCancel                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnVarify                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnSaveHash               = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ss = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tspbHashProgess       = new System.Windows.Forms.ToolStripProgressBar();
     this.tslHashProgressValue  = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel1       = new System.Windows.Forms.Panel();
     this.bgwMD5       = new System.ComponentModel.BackgroundWorker();
     this.bgwSHA1      = new System.ComponentModel.BackgroundWorker();
     this.bgwSHA256    = new System.ComponentModel.BackgroundWorker();
     this.bgwSHA384    = new System.ComponentModel.BackgroundWorker();
     this.bgwSHA512    = new System.ComponentModel.BackgroundWorker();
     this.bgwRIPEMD160 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.ctxResult.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcbxHashAlgorithimType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.ss.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kcbShowLength);
     this.kryptonPanel1.Controls.Add(this.kbtnGenerateFileHash);
     this.kryptonPanel1.Controls.Add(this.klblResult);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel1.Controls.Add(this.kcbxHashAlgorithimType);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.kbtnBrowse);
     this.kryptonPanel1.Controls.Add(this.kptxtApplicationExecutable);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(853, 427);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kcbShowLength
     //
     this.kcbShowLength.Location = new System.Drawing.Point(572, 109);
     this.kcbShowLength.Name     = "kcbShowLength";
     this.kcbShowLength.Size     = new System.Drawing.Size(119, 26);
     this.kcbShowLength.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbShowLength.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbShowLength.TabIndex    = 9;
     this.kcbShowLength.Values.Text = "Show &Length";
     //
     // kbtnGenerateFileHash
     //
     this.kbtnGenerateFileHash.Enabled  = false;
     this.kbtnGenerateFileHash.Location = new System.Drawing.Point(410, 109);
     this.kbtnGenerateFileHash.Name     = "kbtnGenerateFileHash";
     this.kbtnGenerateFileHash.Size     = new System.Drawing.Size(156, 27);
     this.kbtnGenerateFileHash.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateFileHash.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateFileHash.TabIndex    = 8;
     this.kbtnGenerateFileHash.Values.Text = "&Generate";
     this.kbtnGenerateFileHash.Click      += new System.EventHandler(this.KbtnGenerateFileHash_Click);
     //
     // klblResult
     //
     this.klblResult.AutoSize                    = false;
     this.klblResult.ContextMenuStrip            = this.ctxResult;
     this.klblResult.Location                    = new System.Drawing.Point(24, 217);
     this.klblResult.Name                        = "klblResult";
     this.klblResult.Size                        = new System.Drawing.Size(811, 73);
     this.klblResult.StateCommon.LongText.Font   = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblResult.StateCommon.LongText.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblResult.StateCommon.LongText.TextV  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblResult.StateCommon.ShortText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblResult.StateCommon.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblResult.StateCommon.ShortText.TextV = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblResult.TabIndex                    = 7;
     this.klblResult.Values.Text                 = "";
     //
     // ctxResult
     //
     this.ctxResult.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.ctxResult.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.copyToolStripMenuItem
     });
     this.ctxResult.Name = "ctxResult";
     this.ctxResult.Size = new System.Drawing.Size(103, 26);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name   = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size   = new System.Drawing.Size(102, 22);
     this.copyToolStripMenuItem.Text   = "C&opy";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(24, 170);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(62, 26);
     this.kryptonLabel2.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex    = 6;
     this.kryptonLabel2.Values.Text = "Result:";
     //
     // kcbxHashAlgorithimType
     //
     this.kcbxHashAlgorithimType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcbxHashAlgorithimType.DropDownWidth = 223;
     this.kcbxHashAlgorithimType.Items.AddRange(new object[] {
         "MD5",
         "SHA-1",
         "SHA-256",
         "SHA-384",
         "SHA-512",
         "RIPEMD-160"
     });
     this.kcbxHashAlgorithimType.Location = new System.Drawing.Point(181, 109);
     this.kcbxHashAlgorithimType.Name     = "kcbxHashAlgorithimType";
     this.kcbxHashAlgorithimType.Size     = new System.Drawing.Size(223, 27);
     this.kcbxHashAlgorithimType.StateCommon.ComboBox.Content.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbxHashAlgorithimType.StateCommon.ComboBox.Content.TextH      = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcbxHashAlgorithimType.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbxHashAlgorithimType.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbxHashAlgorithimType.TabIndex              = 5;
     this.kcbxHashAlgorithimType.SelectedIndexChanged += new System.EventHandler(this.KcbxHashAlgorithimType_SelectedIndexChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(24, 110);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(138, 26);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 4;
     this.kryptonLabel1.Values.Text = "Hash Algorithim:";
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.Location = new System.Drawing.Point(800, 44);
     this.kbtnBrowse.Name     = "kbtnBrowse";
     this.kbtnBrowse.Size     = new System.Drawing.Size(35, 29);
     this.kbtnBrowse.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.TabIndex    = 3;
     this.kbtnBrowse.Values.Text = "...";
     this.kbtnBrowse.Click      += new System.EventHandler(this.KbtnBrowse_Click);
     //
     // kptxtApplicationExecutable
     //
     this.kptxtApplicationExecutable.DrawPrompt       = true;
     this.kptxtApplicationExecutable.FocusSelect      = true;
     this.kptxtApplicationExecutable.Font             = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtApplicationExecutable.Location         = new System.Drawing.Point(181, 44);
     this.kptxtApplicationExecutable.Name             = "kptxtApplicationExecutable";
     this.kptxtApplicationExecutable.PromptForeColour = System.Drawing.SystemColors.GrayText;
     this.kptxtApplicationExecutable.PromptText       = "Executable Path";
     this.kptxtApplicationExecutable.PromptTypeface   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtApplicationExecutable.Size             = new System.Drawing.Size(613, 29);
     this.kptxtApplicationExecutable.TabIndex         = 2;
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(24, 45);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(153, 26);
     this.kryptonLabel3.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex    = 1;
     this.kryptonLabel3.Values.Text = "Application Binary:";
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(718, 17);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(117, 29);
     this.kbtnCancel.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 9;
     this.kbtnCancel.Values.Text = "&Cancel";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnVarify);
     this.kryptonPanel2.Controls.Add(this.kbtnSaveHash);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Controls.Add(this.ss);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 343);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(853, 84);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kbtnVarify
     //
     this.kbtnVarify.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnVarify.Location     = new System.Drawing.Point(12, 17);
     this.kbtnVarify.Name         = "kbtnVarify";
     this.kbtnVarify.Size         = new System.Drawing.Size(139, 29);
     this.kbtnVarify.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnVarify.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnVarify.TabIndex    = 11;
     this.kbtnVarify.Values.Text = "V&arify Hash";
     this.kbtnVarify.Click      += new System.EventHandler(this.KbtnVarify_Click);
     //
     // kbtnSaveHash
     //
     this.kbtnSaveHash.Enabled  = false;
     this.kbtnSaveHash.Location = new System.Drawing.Point(595, 17);
     this.kbtnSaveHash.Name     = "kbtnSaveHash";
     this.kbtnSaveHash.Size     = new System.Drawing.Size(117, 29);
     this.kbtnSaveHash.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSaveHash.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSaveHash.TabIndex    = 10;
     this.kbtnSaveHash.Values.Text = "S&ave";
     //
     // ss
     //
     this.ss.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.ss.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.tspbHashProgess,
         this.tslHashProgressValue
     });
     this.ss.Location   = new System.Drawing.Point(0, 62);
     this.ss.Name       = "ss";
     this.ss.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.ss.Size       = new System.Drawing.Size(853, 22);
     this.ss.TabIndex   = 0;
     this.ss.Text       = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(838, 17);
     this.toolStripStatusLabel1.Spring    = true;
     this.toolStripStatusLabel1.Text      = "Ready";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tspbHashProgess
     //
     this.tspbHashProgess.Name    = "tspbHashProgess";
     this.tspbHashProgess.Size    = new System.Drawing.Size(100, 16);
     this.tspbHashProgess.Visible = false;
     //
     // tslHashProgressValue
     //
     this.tslHashProgressValue.Name    = "tslHashProgressValue";
     this.tslHashProgressValue.Size    = new System.Drawing.Size(31, 17);
     this.tslHashProgressValue.Text    = "{0}%";
     this.tslHashProgressValue.Visible = false;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 340);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(853, 3);
     this.panel1.TabIndex  = 3;
     //
     // bgwMD5
     //
     this.bgwMD5.WorkerReportsProgress      = true;
     this.bgwMD5.WorkerSupportsCancellation = true;
     this.bgwMD5.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bgwMD5_DoWork);
     this.bgwMD5.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bgwMD5_ProgressChanged);
     this.bgwMD5.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwMD5_RunWorkerCompleted);
     //
     // bgwSHA1
     //
     this.bgwSHA1.WorkerReportsProgress      = true;
     this.bgwSHA1.WorkerSupportsCancellation = true;
     this.bgwSHA1.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bgwSHA1_DoWork);
     this.bgwSHA1.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bgwSHA1_ProgressChanged);
     this.bgwSHA1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwSHA1_RunWorkerCompleted);
     //
     // bgwSHA256
     //
     this.bgwSHA256.WorkerReportsProgress      = true;
     this.bgwSHA256.WorkerSupportsCancellation = true;
     this.bgwSHA256.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bgwSHA256_DoWork);
     this.bgwSHA256.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bgwSHA256_ProgressChanged);
     this.bgwSHA256.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwSHA256_RunWorkerCompleted);
     //
     // bgwSHA384
     //
     this.bgwSHA384.WorkerReportsProgress      = true;
     this.bgwSHA384.WorkerSupportsCancellation = true;
     this.bgwSHA384.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bgwSHA384_DoWork);
     this.bgwSHA384.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bgwSHA384_ProgressChanged);
     this.bgwSHA384.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwSHA384_RunWorkerCompleted);
     //
     // bgwSHA512
     //
     this.bgwSHA512.WorkerReportsProgress      = true;
     this.bgwSHA512.WorkerSupportsCancellation = true;
     this.bgwSHA512.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bgwSHA512_DoWork);
     this.bgwSHA512.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bgwSHA512_ProgressChanged);
     this.bgwSHA512.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwSHA512_RunWorkerCompleted);
     //
     // bgwRIPEMD160
     //
     this.bgwRIPEMD160.WorkerReportsProgress      = true;
     this.bgwRIPEMD160.WorkerSupportsCancellation = true;
     this.bgwRIPEMD160.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bgwRIPEMD160_DoWork);
     this.bgwRIPEMD160.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bgwRIPEMD160_ProgressChanged);
     this.bgwRIPEMD160.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwRIPEMD160_RunWorkerCompleted);
     //
     // HashFile
     //
     this.CancelButton = this.kbtnCancel;
     this.ClientSize   = new System.Drawing.Size(853, 427);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "HashFile";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Hash File";
     this.Load           += new System.EventHandler(this.HashFile_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.ctxResult.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kcbxHashAlgorithimType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.ss.ResumeLayout(false);
     this.ss.PerformLayout();
     this.ResumeLayout(false);
 }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
 }
Example #45
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(formWmsPreview));
     this.textBoxURL              = new System.Windows.Forms.TextBox();
     this.comboBoxImageFormat     = new System.Windows.Forms.ComboBox();
     this.labelImageFormat        = new System.Windows.Forms.Label();
     this.comboBoxServers         = new System.Windows.Forms.ComboBox();
     this.labelServerURL          = new System.Windows.Forms.Label();
     this.labelWMSServer          = new System.Windows.Forms.Label();
     this.groupBoxCRS             = new System.Windows.Forms.GroupBox();
     this.comboBoxProjection      = new System.Windows.Forms.ComboBox();
     this.textBoxSrsDescription   = new System.Windows.Forms.TextBox();
     this.groupBoxImageBackground = new System.Windows.Forms.GroupBox();
     this.pictureBoxColor         = new System.Windows.Forms.PictureBox();
     this.checkBoxTransparent     = new System.Windows.Forms.CheckBox();
     this.groupBoxWMSLayers       = new System.Windows.Forms.GroupBox();
     this.treeViewServerLayers    = new System.Windows.Forms.TreeView();
     this.textBoxStyle            = new System.Windows.Forms.TextBox();
     this.labelStyle              = new System.Windows.Forms.Label();
     this.comboBoxStyle           = new System.Windows.Forms.ComboBox();
     this.buttonAdd            = new System.Windows.Forms.Button();
     this.listBoxClientLayers  = new System.Windows.Forms.ListBox();
     this.buttonMoveDown       = new System.Windows.Forms.Button();
     this.buttonMoveUp         = new System.Windows.Forms.Button();
     this.buttonRemove         = new System.Windows.Forms.Button();
     this.mapControlWms        = new MapInfo.Windows.Controls.MapControl();
     this.groupBoxWmsClient    = new System.Windows.Forms.GroupBox();
     this.comboBoxLayerStyle   = new System.Windows.Forms.ComboBox();
     this.labelLayerStyle      = new System.Windows.Forms.Label();
     this.textBoxLayerStyle    = new System.Windows.Forms.TextBox();
     this.textBoxVersion       = new System.Windows.Forms.TextBox();
     this.toolBarMap           = new System.Windows.Forms.ToolBar();
     this.toolBarButtonZoomIn  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonZoomOut = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonPan     = new System.Windows.Forms.ToolBarButton();
     this.imageListTools       = new System.Windows.Forms.ImageList(this.components);
     this.buttonViewEntire     = new System.Windows.Forms.Button();
     this.groupBoxCRS.SuspendLayout();
     this.groupBoxImageBackground.SuspendLayout();
     this.groupBoxWMSLayers.SuspendLayout();
     this.groupBoxWmsClient.SuspendLayout();
     this.SuspendLayout();
     //
     // textBoxURL
     //
     this.textBoxURL.Location = new System.Drawing.Point(112, 48);
     this.textBoxURL.Name     = "textBoxURL";
     this.textBoxURL.ReadOnly = true;
     this.textBoxURL.Size     = new System.Drawing.Size(600, 20);
     this.textBoxURL.TabIndex = 23;
     this.textBoxURL.Text     = "";
     //
     // comboBoxImageFormat
     //
     this.comboBoxImageFormat.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxImageFormat.Location              = new System.Drawing.Point(384, 432);
     this.comboBoxImageFormat.Name                  = "comboBoxImageFormat";
     this.comboBoxImageFormat.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxImageFormat.Sorted                = true;
     this.comboBoxImageFormat.TabIndex              = 28;
     this.comboBoxImageFormat.SelectedIndexChanged += new System.EventHandler(this.comboBoxImageFormat_SelectedIndexChanged);
     //
     // labelImageFormat
     //
     this.labelImageFormat.Location = new System.Drawing.Point(296, 432);
     this.labelImageFormat.Name     = "labelImageFormat";
     this.labelImageFormat.Size     = new System.Drawing.Size(88, 23);
     this.labelImageFormat.TabIndex = 27;
     this.labelImageFormat.Text     = "&Image Format:";
     //
     // comboBoxServers
     //
     this.comboBoxServers.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxServers.Location              = new System.Drawing.Point(112, 16);
     this.comboBoxServers.Name                  = "comboBoxServers";
     this.comboBoxServers.Size                  = new System.Drawing.Size(600, 21);
     this.comboBoxServers.Sorted                = true;
     this.comboBoxServers.TabIndex              = 22;
     this.comboBoxServers.SelectedIndexChanged += new System.EventHandler(this.comboBoxServers_SelectedIndexChanged);
     //
     // labelServerURL
     //
     this.labelServerURL.Location = new System.Drawing.Point(16, 48);
     this.labelServerURL.Name     = "labelServerURL";
     this.labelServerURL.Size     = new System.Drawing.Size(88, 23);
     this.labelServerURL.TabIndex = 18;
     this.labelServerURL.Text     = "Ser&ver URL:";
     //
     // labelWMSServer
     //
     this.labelWMSServer.Location = new System.Drawing.Point(16, 16);
     this.labelWMSServer.Name     = "labelWMSServer";
     this.labelWMSServer.Size     = new System.Drawing.Size(88, 23);
     this.labelWMSServer.TabIndex = 17;
     this.labelWMSServer.Text     = "&WMS Server:";
     //
     // groupBoxCRS
     //
     this.groupBoxCRS.Controls.Add(this.comboBoxProjection);
     this.groupBoxCRS.Controls.Add(this.textBoxSrsDescription);
     this.groupBoxCRS.Location = new System.Drawing.Point(286, 536);
     this.groupBoxCRS.Name     = "groupBoxCRS";
     this.groupBoxCRS.Size     = new System.Drawing.Size(300, 96);
     this.groupBoxCRS.TabIndex = 30;
     this.groupBoxCRS.TabStop  = false;
     this.groupBoxCRS.Text     = "Coordinate Reference System:";
     //
     // comboBoxProjection
     //
     this.comboBoxProjection.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxProjection.Location              = new System.Drawing.Point(16, 24);
     this.comboBoxProjection.Name                  = "comboBoxProjection";
     this.comboBoxProjection.Size                  = new System.Drawing.Size(224, 21);
     this.comboBoxProjection.Sorted                = true;
     this.comboBoxProjection.TabIndex              = 0;
     this.comboBoxProjection.SelectedIndexChanged += new System.EventHandler(this.comboBoxProjection_SelectedIndexChanged);
     //
     // textBoxSrsDescription
     //
     this.textBoxSrsDescription.Location = new System.Drawing.Point(8, 64);
     this.textBoxSrsDescription.Name     = "textBoxSrsDescription";
     this.textBoxSrsDescription.ReadOnly = true;
     this.textBoxSrsDescription.Size     = new System.Drawing.Size(280, 20);
     this.textBoxSrsDescription.TabIndex = 3;
     this.textBoxSrsDescription.Text     = "";
     //
     // groupBoxImageBackground
     //
     this.groupBoxImageBackground.Controls.Add(this.pictureBoxColor);
     this.groupBoxImageBackground.Controls.Add(this.checkBoxTransparent);
     this.groupBoxImageBackground.Location = new System.Drawing.Point(288, 464);
     this.groupBoxImageBackground.Name     = "groupBoxImageBackground";
     this.groupBoxImageBackground.Size     = new System.Drawing.Size(168, 64);
     this.groupBoxImageBackground.TabIndex = 29;
     this.groupBoxImageBackground.TabStop  = false;
     this.groupBoxImageBackground.Text     = "Image Background:";
     //
     // pictureBoxColor
     //
     this.pictureBoxColor.Location = new System.Drawing.Point(120, 16);
     this.pictureBoxColor.Name     = "pictureBoxColor";
     this.pictureBoxColor.Size     = new System.Drawing.Size(32, 32);
     this.pictureBoxColor.TabIndex = 2;
     this.pictureBoxColor.TabStop  = false;
     this.pictureBoxColor.Click   += new System.EventHandler(this.pictureBoxColor_Click);
     //
     // checkBoxTransparent
     //
     this.checkBoxTransparent.Checked         = true;
     this.checkBoxTransparent.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBoxTransparent.Location        = new System.Drawing.Point(8, 24);
     this.checkBoxTransparent.Name            = "checkBoxTransparent";
     this.checkBoxTransparent.Size            = new System.Drawing.Size(96, 24);
     this.checkBoxTransparent.TabIndex        = 0;
     this.checkBoxTransparent.Text            = "&Transparent";
     this.checkBoxTransparent.CheckedChanged += new System.EventHandler(this.checkBoxTransparent_CheckedChanged);
     //
     // groupBoxWMSLayers
     //
     this.groupBoxWMSLayers.Controls.Add(this.treeViewServerLayers);
     this.groupBoxWMSLayers.Controls.Add(this.textBoxStyle);
     this.groupBoxWMSLayers.Controls.Add(this.labelStyle);
     this.groupBoxWMSLayers.Controls.Add(this.comboBoxStyle);
     this.groupBoxWMSLayers.Controls.Add(this.buttonAdd);
     this.groupBoxWMSLayers.Location = new System.Drawing.Point(8, 88);
     this.groupBoxWMSLayers.Name     = "groupBoxWMSLayers";
     this.groupBoxWMSLayers.Size     = new System.Drawing.Size(264, 488);
     this.groupBoxWMSLayers.TabIndex = 26;
     this.groupBoxWMSLayers.TabStop  = false;
     this.groupBoxWMSLayers.Text     = "Available WMS Layers";
     //
     // treeViewServerLayers
     //
     this.treeViewServerLayers.HideSelection      = false;
     this.treeViewServerLayers.ImageIndex         = -1;
     this.treeViewServerLayers.Location           = new System.Drawing.Point(8, 24);
     this.treeViewServerLayers.Name               = "treeViewServerLayers";
     this.treeViewServerLayers.SelectedImageIndex = -1;
     this.treeViewServerLayers.Size               = new System.Drawing.Size(250, 336);
     this.treeViewServerLayers.TabIndex           = 20;
     this.treeViewServerLayers.EnabledChanged    += new System.EventHandler(this.treeViewServerLayers_EnabledChanged);
     this.treeViewServerLayers.DoubleClick       += new System.EventHandler(this.treeViewServerLayers_DoubleClick);
     this.treeViewServerLayers.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.treeViewServerLayers_AfterSelect);
     //
     // textBoxStyle
     //
     this.textBoxStyle.Location = new System.Drawing.Point(8, 448);
     this.textBoxStyle.Name     = "textBoxStyle";
     this.textBoxStyle.ReadOnly = true;
     this.textBoxStyle.Size     = new System.Drawing.Size(248, 20);
     this.textBoxStyle.TabIndex = 17;
     this.textBoxStyle.Text     = "";
     //
     // labelStyle
     //
     this.labelStyle.Location = new System.Drawing.Point(16, 408);
     this.labelStyle.Name     = "labelStyle";
     this.labelStyle.Size     = new System.Drawing.Size(48, 23);
     this.labelStyle.TabIndex = 16;
     this.labelStyle.Text     = "St&yle:";
     //
     // comboBoxStyle
     //
     this.comboBoxStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxStyle.Location      = new System.Drawing.Point(72, 408);
     this.comboBoxStyle.Name          = "comboBoxStyle";
     this.comboBoxStyle.Size          = new System.Drawing.Size(176, 21);
     this.comboBoxStyle.TabIndex      = 15;
     //
     // buttonAdd
     //
     this.buttonAdd.Enabled  = false;
     this.buttonAdd.Location = new System.Drawing.Point(72, 376);
     this.buttonAdd.Name     = "buttonAdd";
     this.buttonAdd.TabIndex = 11;
     this.buttonAdd.Text     = "&Add>>";
     this.buttonAdd.Click   += new System.EventHandler(this.buttonAdd_Click);
     //
     // listBoxClientLayers
     //
     this.listBoxClientLayers.AllowDrop             = true;
     this.listBoxClientLayers.Location              = new System.Drawing.Point(608, 112);
     this.listBoxClientLayers.Name                  = "listBoxClientLayers";
     this.listBoxClientLayers.Size                  = new System.Drawing.Size(250, 225);
     this.listBoxClientLayers.TabIndex              = 19;
     this.listBoxClientLayers.EnabledChanged       += new System.EventHandler(this.listBoxTableLayers_EnabledChanged);
     this.listBoxClientLayers.SelectedIndexChanged += new System.EventHandler(this.listBoxTableLayers_SelectedIndexChanged);
     //
     // buttonMoveDown
     //
     this.buttonMoveDown.Enabled  = false;
     this.buttonMoveDown.Location = new System.Drawing.Point(696, 488);
     this.buttonMoveDown.Name     = "buttonMoveDown";
     this.buttonMoveDown.TabIndex = 14;
     this.buttonMoveDown.Text     = "Move &Down";
     this.buttonMoveDown.Click   += new System.EventHandler(this.buttonMoveDown_Click);
     //
     // buttonMoveUp
     //
     this.buttonMoveUp.Enabled  = false;
     this.buttonMoveUp.Location = new System.Drawing.Point(696, 456);
     this.buttonMoveUp.Name     = "buttonMoveUp";
     this.buttonMoveUp.TabIndex = 13;
     this.buttonMoveUp.Text     = "Move &Up";
     this.buttonMoveUp.Click   += new System.EventHandler(this.buttonMoveUp_Click);
     //
     // buttonRemove
     //
     this.buttonRemove.Enabled  = false;
     this.buttonRemove.Location = new System.Drawing.Point(696, 424);
     this.buttonRemove.Name     = "buttonRemove";
     this.buttonRemove.TabIndex = 12;
     this.buttonRemove.Text     = "&Remove<<";
     this.buttonRemove.Click   += new System.EventHandler(this.buttonRemove_Click);
     //
     // mapControlWms
     //
     this.mapControlWms.Location             = new System.Drawing.Point(288, 120);
     this.mapControlWms.Name                 = "mapControlWms";
     this.mapControlWms.Size                 = new System.Drawing.Size(300, 300);
     this.mapControlWms.TabIndex             = 31;
     this.mapControlWms.TabStop              = false;
     this.mapControlWms.Text                 = "mapControlWms";
     this.mapControlWms.Tools.LeftButtonTool = "Arrow";
     //
     // groupBoxWmsClient
     //
     this.groupBoxWmsClient.Controls.Add(this.comboBoxLayerStyle);
     this.groupBoxWmsClient.Controls.Add(this.labelLayerStyle);
     this.groupBoxWmsClient.Controls.Add(this.textBoxLayerStyle);
     this.groupBoxWmsClient.Location = new System.Drawing.Point(600, 88);
     this.groupBoxWmsClient.Name     = "groupBoxWmsClient";
     this.groupBoxWmsClient.Size     = new System.Drawing.Size(264, 448);
     this.groupBoxWmsClient.TabIndex = 32;
     this.groupBoxWmsClient.TabStop  = false;
     this.groupBoxWmsClient.Text     = "Layer Control";
     //
     // comboBoxLayerStyle
     //
     this.comboBoxLayerStyle.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxLayerStyle.Location              = new System.Drawing.Point(80, 264);
     this.comboBoxLayerStyle.Name                  = "comboBoxLayerStyle";
     this.comboBoxLayerStyle.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxLayerStyle.TabIndex              = 33;
     this.comboBoxLayerStyle.SelectedIndexChanged += new System.EventHandler(this.comboBoxLayerStyle_SelectedIndexChanged);
     //
     // labelLayerStyle
     //
     this.labelLayerStyle.Location = new System.Drawing.Point(16, 264);
     this.labelLayerStyle.Name     = "labelLayerStyle";
     this.labelLayerStyle.Size     = new System.Drawing.Size(48, 23);
     this.labelLayerStyle.TabIndex = 33;
     this.labelLayerStyle.Text     = "St&yle:";
     //
     // textBoxLayerStyle
     //
     this.textBoxLayerStyle.Location = new System.Drawing.Point(8, 296);
     this.textBoxLayerStyle.Name     = "textBoxLayerStyle";
     this.textBoxLayerStyle.ReadOnly = true;
     this.textBoxLayerStyle.Size     = new System.Drawing.Size(248, 20);
     this.textBoxLayerStyle.TabIndex = 33;
     this.textBoxLayerStyle.Text     = "";
     //
     // textBoxVersion
     //
     this.textBoxVersion.Location = new System.Drawing.Point(728, 48);
     this.textBoxVersion.Name     = "textBoxVersion";
     this.textBoxVersion.ReadOnly = true;
     this.textBoxVersion.TabIndex = 33;
     this.textBoxVersion.Text     = "";
     //
     // toolBarMap
     //
     this.toolBarMap.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButtonZoomIn,
         this.toolBarButtonZoomOut,
         this.toolBarButtonPan
     });
     this.toolBarMap.Dock           = System.Windows.Forms.DockStyle.None;
     this.toolBarMap.DropDownArrows = true;
     this.toolBarMap.ImageList      = this.imageListTools;
     this.toolBarMap.Location       = new System.Drawing.Point(288, 80);
     this.toolBarMap.Name           = "toolBarMap";
     this.toolBarMap.ShowToolTips   = true;
     this.toolBarMap.Size           = new System.Drawing.Size(296, 28);
     this.toolBarMap.TabIndex       = 34;
     this.toolBarMap.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarMap_ButtonClick);
     //
     // toolBarButtonZoomIn
     //
     this.toolBarButtonZoomIn.Pushed      = true;
     this.toolBarButtonZoomIn.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.toolBarButtonZoomIn.Tag         = "ZoomIn";
     this.toolBarButtonZoomIn.ToolTipText = "Zoom In";
     //
     // toolBarButtonZoomOut
     //
     this.toolBarButtonZoomOut.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.toolBarButtonZoomOut.Tag         = "ZoomOut";
     this.toolBarButtonZoomOut.ToolTipText = "Zoom Out";
     //
     // toolBarButtonPan
     //
     this.toolBarButtonPan.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.toolBarButtonPan.Tag         = "Pan";
     this.toolBarButtonPan.ToolTipText = "Pan";
     //
     // imageListTools
     //
     this.imageListTools.ColorDepth       = System.Windows.Forms.ColorDepth.Depth4Bit;
     this.imageListTools.ImageSize        = new System.Drawing.Size(18, 16);
     this.imageListTools.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTools.ImageStream")));
     this.imageListTools.TransparentColor = System.Drawing.Color.Transparent;
     //
     // buttonViewEntire
     //
     this.buttonViewEntire.Location = new System.Drawing.Point(480, 480);
     this.buttonViewEntire.Name     = "buttonViewEntire";
     this.buttonViewEntire.TabIndex = 34;
     this.buttonViewEntire.Text     = "View Entire";
     this.buttonViewEntire.Click   += new System.EventHandler(this.buttonViewEntire_Click);
     //
     // formWmsPreview
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(872, 646);
     this.Controls.Add(this.toolBarMap);
     this.Controls.Add(this.textBoxVersion);
     this.Controls.Add(this.mapControlWms);
     this.Controls.Add(this.textBoxURL);
     this.Controls.Add(this.comboBoxImageFormat);
     this.Controls.Add(this.labelImageFormat);
     this.Controls.Add(this.comboBoxServers);
     this.Controls.Add(this.labelServerURL);
     this.Controls.Add(this.labelWMSServer);
     this.Controls.Add(this.groupBoxCRS);
     this.Controls.Add(this.groupBoxImageBackground);
     this.Controls.Add(this.groupBoxWMSLayers);
     this.Controls.Add(this.buttonRemove);
     this.Controls.Add(this.buttonMoveUp);
     this.Controls.Add(this.buttonMoveDown);
     this.Controls.Add(this.listBoxClientLayers);
     this.Controls.Add(this.groupBoxWmsClient);
     this.Controls.Add(this.buttonViewEntire);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "formWmsPreview";
     this.Text            = "WMS Preview";
     this.groupBoxCRS.ResumeLayout(false);
     this.groupBoxImageBackground.ResumeLayout(false);
     this.groupBoxWMSLayers.ResumeLayout(false);
     this.groupBoxWmsClient.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #46
0
 //*******************************************************************************************
 /// <summary>
 /// Constructor 7
 /// Required for Windows.Forms Class Composition Designer support
 /// </summary>
 //*******************************************************************************************
 public LineDrawing(System.ComponentModel.IContainer container)
 {
     container.Add(this);
 }
Example #47
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();
     this.buttonCreateWatch   = new System.Windows.Forms.Button();
     this.buttonSetEvent      = new System.Windows.Forms.Button();
     this.buttonModeEvent     = new System.Windows.Forms.Button();
     this.label1              = new System.Windows.Forms.Label();
     this.labelCurrentState   = new System.Windows.Forms.Label();
     this.label2              = new System.Windows.Forms.Label();
     this.labelCurrentDisplay = new System.Windows.Forms.Label();
     this.timer1              = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // buttonCreateWatch
     //
     this.buttonCreateWatch.Location = new System.Drawing.Point(20, 24);
     this.buttonCreateWatch.Name     = "buttonCreateWatch";
     this.buttonCreateWatch.Size     = new System.Drawing.Size(92, 23);
     this.buttonCreateWatch.TabIndex = 0;
     this.buttonCreateWatch.Text     = "Create Watch";
     this.buttonCreateWatch.Click   += new System.EventHandler(this.buttonCreateWatch_Click);
     //
     // buttonSetEvent
     //
     this.buttonSetEvent.Enabled  = false;
     this.buttonSetEvent.Location = new System.Drawing.Point(20, 66);
     this.buttonSetEvent.Name     = "buttonSetEvent";
     this.buttonSetEvent.Size     = new System.Drawing.Size(92, 23);
     this.buttonSetEvent.TabIndex = 1;
     this.buttonSetEvent.Text     = "Set Event";
     this.buttonSetEvent.Click   += new System.EventHandler(this.buttonSetEvent_Click);
     //
     // buttonModeEvent
     //
     this.buttonModeEvent.Enabled  = false;
     this.buttonModeEvent.Location = new System.Drawing.Point(20, 104);
     this.buttonModeEvent.Name     = "buttonModeEvent";
     this.buttonModeEvent.Size     = new System.Drawing.Size(92, 23);
     this.buttonModeEvent.TabIndex = 2;
     this.buttonModeEvent.Text     = "Mode Event";
     this.buttonModeEvent.Click   += new System.EventHandler(this.buttonModeEvent_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(188, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(84, 23);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Current State:";
     //
     // labelCurrentState
     //
     this.labelCurrentState.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.labelCurrentState.Location = new System.Drawing.Point(188, 70);
     this.labelCurrentState.Name     = "labelCurrentState";
     this.labelCurrentState.Size     = new System.Drawing.Size(226, 23);
     this.labelCurrentState.TabIndex = 4;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(188, 118);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 20);
     this.label2.TabIndex = 5;
     this.label2.Text     = "Current Display";
     //
     // labelCurrentDisplay
     //
     this.labelCurrentDisplay.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.labelCurrentDisplay.BackColor = System.Drawing.Color.Lime;
     this.labelCurrentDisplay.Font      = new System.Drawing.Font("Microsoft Sans Serif", 22.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCurrentDisplay.ForeColor = System.Drawing.Color.LimeGreen;
     this.labelCurrentDisplay.Location  = new System.Drawing.Point(188, 154);
     this.labelCurrentDisplay.Name      = "labelCurrentDisplay";
     this.labelCurrentDisplay.Size      = new System.Drawing.Size(226, 40);
     this.labelCurrentDisplay.TabIndex  = 6;
     this.labelCurrentDisplay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // timer1
     //
     this.timer1.Enabled  = true;
     this.timer1.Interval = 500;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(438, 218);
     this.Controls.Add(this.labelCurrentDisplay);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.labelCurrentState);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.buttonModeEvent);
     this.Controls.Add(this.buttonSetEvent);
     this.Controls.Add(this.buttonCreateWatch);
     this.Name  = "Form1";
     this.Text  = "Watch Hsm";
     this.Load += new System.EventHandler(this.Form1_Load);
     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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MogControl_ClassificationTreeView));
     this.tvClassifications   = new CodersLab.Windows.Controls.TreeView();
     this.cmClassifications   = new System.Windows.Forms.ContextMenuStrip();
     this.miAddClassification = new System.Windows.Forms.ToolStripMenuItem();
     this.miRemove            = new System.Windows.Forms.ToolStripMenuItem();
     this.miShowConfiguration = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem1           = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem2           = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem3           = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList           = new System.Windows.Forms.ImageList(this.components);
     this.propertyGrid        = new System.Windows.Forms.PropertyGrid();
     this.splitter1           = new System.Windows.Forms.Splitter();
     this.panel2    = new System.Windows.Forms.Panel();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.panel1    = new System.Windows.Forms.Panel();
     this.panel3    = new System.Windows.Forms.Panel();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // tvClassifications
     //
     this.tvClassifications.ContextMenuStrip   = this.cmClassifications;
     this.tvClassifications.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tvClassifications.HideSelection      = false;
     this.tvClassifications.ImageList          = this.imageList;
     this.tvClassifications.Location           = new System.Drawing.Point(0, 0);
     this.tvClassifications.Name               = "tvClassifications";
     this.tvClassifications.PathSeparator      = "~";
     this.tvClassifications.SelectedImageIndex = 1;
     this.tvClassifications.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     this.tvClassifications.SelectionMode      = CodersLab.Windows.Controls.TreeViewSelectionMode.SingleSelect;
     this.tvClassifications.ShowLines          = false;
     this.tvClassifications.Size               = new System.Drawing.Size(597, 536);
     this.tvClassifications.TabIndex           = 0;
     this.tvClassifications.MouseDown         += new System.Windows.Forms.MouseEventHandler(this.tvClassifications_MouseDown);
     this.tvClassifications.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.tvClassifications_AfterSelect);
     this.tvClassifications.AfterLabelEdit    += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvClassifications_AfterLabelEdit);
     this.tvClassifications.KeyUp             += new System.Windows.Forms.KeyEventHandler(this.tvClassifications_KeyUp);
     //
     // cmClassifications
     //
     this.cmClassifications.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.miAddClassification,
         this.miRemove,
         this.miShowConfiguration,
         this.menuItem1,
         this.menuItem2,
         this.menuItem3
     });
     //
     // miAddClassification
     //
     this.miAddClassification.Text   = "Add Classification";
     this.miAddClassification.Click += new System.EventHandler(this.miAddClassification_Click);
     //
     // miRemove
     //
     this.miRemove.Text   = "Remove";
     this.miRemove.Click += new System.EventHandler(this.miRemove_Click);
     //
     // miShowConfiguration
     //
     this.miShowConfiguration.Checked = true;
     this.miShowConfiguration.Text    = "Show Configuration";
     this.miShowConfiguration.Click  += new System.EventHandler(this.miShowConfiguration_Click);
     //
     // menuItem1
     //
     this.menuItem1.Enabled = false;
     this.menuItem1.Text    = "Load Default";
     this.menuItem1.Click  += new System.EventHandler(this.menuItem1_Click);
     //
     // menuItem2
     //
     this.menuItem2.Enabled = false;
     this.menuItem2.Text    = "Load Project";
     this.menuItem2.Click  += new System.EventHandler(this.menuItem2_Click);
     //
     // menuItem3
     //
     this.menuItem3.Enabled = false;
     this.menuItem3.Text    = "Save";
     this.menuItem3.Click  += new System.EventHandler(this.menuItem3_Click);
     //
     // imageList
     //
     this.imageList.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // propertyGrid
     //
     this.propertyGrid.CommandsVisibleIfAvailable = true;
     this.propertyGrid.Cursor         = System.Windows.Forms.Cursors.HSplit;
     this.propertyGrid.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid.LargeButtons   = false;
     this.propertyGrid.LineColor      = System.Drawing.SystemColors.ScrollBar;
     this.propertyGrid.Location       = new System.Drawing.Point(0, 0);
     this.propertyGrid.Name           = "propertyGrid";
     this.propertyGrid.Size           = new System.Drawing.Size(320, 520);
     this.propertyGrid.TabIndex       = 1;
     this.propertyGrid.Text           = "propertyGrid";
     this.propertyGrid.ToolbarVisible = false;
     this.propertyGrid.ViewBackColor  = System.Drawing.SystemColors.Window;
     this.propertyGrid.ViewForeColor  = System.Drawing.SystemColors.WindowText;
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.splitter1.Location = new System.Drawing.Point(597, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 536);
     this.splitter1.TabIndex = 3;
     this.splitter1.TabStop  = false;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.tvClassifications);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(597, 536);
     this.panel2.TabIndex = 4;
     //
     // splitter2
     //
     this.splitter2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.splitter2.Location = new System.Drawing.Point(0, 533);
     this.splitter2.Name     = "splitter2";
     this.splitter2.Size     = new System.Drawing.Size(336, 3);
     this.splitter2.TabIndex = 3;
     this.splitter2.TabStop  = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.splitter2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(600, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(336, 536);
     this.panel1.TabIndex = 2;
     //
     // panel3
     //
     this.panel3.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.panel3.Controls.Add(this.propertyGrid);
     this.panel3.Location = new System.Drawing.Point(8, 8);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(320, 520);
     this.panel3.TabIndex = 4;
     //
     // MogControl_ClassificationTreeView
     //
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel1);
     this.Name = "MogControl_ClassificationTreeView";
     this.Size = new System.Drawing.Size(936, 536);
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #49
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();
     this.m_button_start = new System.Windows.Forms.Button();
     this.m_button_stop  = new System.Windows.Forms.Button();
     this.m_textbox_from = new System.Windows.Forms.TextBox();
     this.m_textbox_to   = new System.Windows.Forms.TextBox();
     this.label6         = new System.Windows.Forms.Label();
     this.label7         = new System.Windows.Forms.Label();
     this.m_checkbox_include_subfolders = new System.Windows.Forms.CheckBox();
     this.m_richtext_log             = new System.Windows.Forms.RichTextBox();
     this.m_label_log                = new System.Windows.Forms.Label();
     this.label1                     = new System.Windows.Forms.Label();
     this.m_label_current_job_number = new System.Windows.Forms.Label();
     this.m_label_time_elapsed       = new System.Windows.Forms.Label();
     this.m_timer1                   = new System.Windows.Forms.Timer(this.components);
     this.label11                    = new System.Windows.Forms.Label();
     this.linkwebsite                = new System.Windows.Forms.LinkLabel();
     this.groupFormat                = new System.Windows.Forms.GroupBox();
     this.radioPSD                   = new System.Windows.Forms.RadioButton();
     this.radioTIF                   = new System.Windows.Forms.RadioButton();
     this.label2                     = new System.Windows.Forms.Label();
     this.buttonBrowseFrom           = new System.Windows.Forms.Button();
     this.buttonBrowseTo             = new System.Windows.Forms.Button();
     this.label3                     = new System.Windows.Forms.Label();
     this.folderBrowserDialog1       = new System.Windows.Forms.FolderBrowserDialog();
     this.label4                     = new System.Windows.Forms.Label();
     this.linkTraceFile              = new System.Windows.Forms.LinkLabel();
     this.groupFormat.SuspendLayout();
     this.SuspendLayout();
     //
     // m_button_start
     //
     this.m_button_start.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_button_start.Font      = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_button_start.Location  = new System.Drawing.Point(40, 336);
     this.m_button_start.Name      = "m_button_start";
     this.m_button_start.Size      = new System.Drawing.Size(128, 40);
     this.m_button_start.TabIndex  = 1;
     this.m_button_start.Text      = "Start";
     this.m_button_start.Click    += new System.EventHandler(this.m_button_start_Click);
     //
     // m_button_stop
     //
     this.m_button_stop.Location = new System.Drawing.Point(184, 336);
     this.m_button_stop.Name     = "m_button_stop";
     this.m_button_stop.Size     = new System.Drawing.Size(120, 40);
     this.m_button_stop.TabIndex = 2;
     this.m_button_stop.Text     = "Stop";
     this.m_button_stop.Click   += new System.EventHandler(this.m_button_stop_Click);
     //
     // m_textbox_from
     //
     this.m_textbox_from.Location = new System.Drawing.Point(8, 32);
     this.m_textbox_from.Name     = "m_textbox_from";
     this.m_textbox_from.ReadOnly = true;
     this.m_textbox_from.Size     = new System.Drawing.Size(248, 21);
     this.m_textbox_from.TabIndex = 13;
     this.m_textbox_from.Text     = "<Unspecified>";
     //
     // m_textbox_to
     //
     this.m_textbox_to.Location = new System.Drawing.Point(8, 128);
     this.m_textbox_to.Name     = "m_textbox_to";
     this.m_textbox_to.ReadOnly = true;
     this.m_textbox_to.Size     = new System.Drawing.Size(248, 21);
     this.m_textbox_to.TabIndex = 14;
     this.m_textbox_to.Text     = "<Unspecified>";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.DarkGray;
     this.label6.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location  = new System.Drawing.Point(0, 0);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(344, 24);
     this.label6.TabIndex  = 20;
     this.label6.Text      = "Step 1: Where are the RIF files?";
     //
     // label7
     //
     this.label7.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location  = new System.Drawing.Point(0, 416);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(48, 16);
     this.label7.TabIndex  = 21;
     this.label7.Text      = "Status:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // m_checkbox_include_subfolders
     //
     this.m_checkbox_include_subfolders.Location = new System.Drawing.Point(8, 72);
     this.m_checkbox_include_subfolders.Name     = "m_checkbox_include_subfolders";
     this.m_checkbox_include_subfolders.Size     = new System.Drawing.Size(152, 16);
     this.m_checkbox_include_subfolders.TabIndex = 25;
     this.m_checkbox_include_subfolders.Text     = "Include Subfolders";
     //
     // m_richtext_log
     //
     this.m_richtext_log.AcceptsTab       = true;
     this.m_richtext_log.BackColor        = System.Drawing.SystemColors.Control;
     this.m_richtext_log.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_richtext_log.CausesValidation = false;
     this.m_richtext_log.DetectUrls       = false;
     this.m_richtext_log.HideSelection    = false;
     this.m_richtext_log.Location         = new System.Drawing.Point(48, 544);
     this.m_richtext_log.Name             = "m_richtext_log";
     this.m_richtext_log.Size             = new System.Drawing.Size(272, 128);
     this.m_richtext_log.TabIndex         = 33;
     this.m_richtext_log.TabStop          = false;
     this.m_richtext_log.Text             = "";
     //
     // m_label_log
     //
     this.m_label_log.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_label_log.Location  = new System.Drawing.Point(0, 536);
     this.m_label_log.Name      = "m_label_log";
     this.m_label_log.Size      = new System.Drawing.Size(40, 16);
     this.m_label_log.TabIndex  = 34;
     this.m_label_log.Text      = "Log:";
     this.m_label_log.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.DarkGray;
     this.label1.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location  = new System.Drawing.Point(0, 96);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(344, 24);
     this.label1.TabIndex  = 35;
     this.label1.Text      = "Step 2: Where to put the output files?";
     //
     // m_label_current_job_number
     //
     this.m_label_current_job_number.Location = new System.Drawing.Point(48, 416);
     this.m_label_current_job_number.Name     = "m_label_current_job_number";
     this.m_label_current_job_number.Size     = new System.Drawing.Size(280, 72);
     this.m_label_current_job_number.TabIndex = 43;
     this.m_label_current_job_number.Text     = "<Job>";
     //
     // m_label_time_elapsed
     //
     this.m_label_time_elapsed.Location = new System.Drawing.Point(48, 496);
     this.m_label_time_elapsed.Name     = "m_label_time_elapsed";
     this.m_label_time_elapsed.Size     = new System.Drawing.Size(100, 16);
     this.m_label_time_elapsed.TabIndex = 47;
     this.m_label_time_elapsed.Text     = "<time>";
     //
     // m_timer1
     //
     this.m_timer1.Interval = 1000;
     this.m_timer1.Tick    += new System.EventHandler(this.m_timer1_Tick);
     //
     // label11
     //
     this.label11.Location  = new System.Drawing.Point(0, 496);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(48, 16);
     this.label11.TabIndex  = 50;
     this.label11.Text      = "Time:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // linkwebsite
     //
     this.linkwebsite.Location     = new System.Drawing.Point(208, 496);
     this.linkwebsite.Name         = "linkwebsite";
     this.linkwebsite.Size         = new System.Drawing.Size(120, 23);
     this.linkwebsite.TabIndex     = 51;
     this.linkwebsite.TabStop      = true;
     this.linkwebsite.Text         = "RIFConverter website";
     this.linkwebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkwebsite_LinkClicked);
     //
     // groupFormat
     //
     this.groupFormat.Controls.Add(this.radioPSD);
     this.groupFormat.Controls.Add(this.radioTIF);
     this.groupFormat.Location = new System.Drawing.Point(8, 216);
     this.groupFormat.Name     = "groupFormat";
     this.groupFormat.Size     = new System.Drawing.Size(144, 72);
     this.groupFormat.TabIndex = 52;
     this.groupFormat.TabStop  = false;
     this.groupFormat.Text     = "To Format";
     //
     // radioPSD
     //
     this.radioPSD.Location = new System.Drawing.Point(8, 40);
     this.radioPSD.Name     = "radioPSD";
     this.radioPSD.Size     = new System.Drawing.Size(56, 24);
     this.radioPSD.TabIndex = 1;
     this.radioPSD.Text     = "PSD";
     //
     // radioTIF
     //
     this.radioTIF.Location = new System.Drawing.Point(8, 16);
     this.radioTIF.Name     = "radioTIF";
     this.radioTIF.Size     = new System.Drawing.Size(56, 24);
     this.radioTIF.TabIndex = 0;
     this.radioTIF.Text     = "TIF";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.DarkGray;
     this.label2.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location  = new System.Drawing.Point(0, 184);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(344, 24);
     this.label2.TabIndex  = 53;
     this.label2.Text      = "Step 3: What kind of conversion?";
     //
     // buttonBrowseFrom
     //
     this.buttonBrowseFrom.Location = new System.Drawing.Point(264, 32);
     this.buttonBrowseFrom.Name     = "buttonBrowseFrom";
     this.buttonBrowseFrom.Size     = new System.Drawing.Size(64, 23);
     this.buttonBrowseFrom.TabIndex = 54;
     this.buttonBrowseFrom.Text     = "Browse";
     this.buttonBrowseFrom.Click   += new System.EventHandler(this.buttonBrowseFrom_Click);
     //
     // buttonBrowseTo
     //
     this.buttonBrowseTo.Location = new System.Drawing.Point(264, 128);
     this.buttonBrowseTo.Name     = "buttonBrowseTo";
     this.buttonBrowseTo.Size     = new System.Drawing.Size(64, 23);
     this.buttonBrowseTo.TabIndex = 55;
     this.buttonBrowseTo.Text     = "Browse";
     this.buttonBrowseTo.Click   += new System.EventHandler(this.buttonBrowseTo_Click);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.DarkGray;
     this.label3.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location  = new System.Drawing.Point(0, 296);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(344, 24);
     this.label3.TabIndex  = 56;
     this.label3.Text      = "Step 4: Do the conversion";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 160);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(312, 16);
     this.label4.TabIndex = 57;
     this.label4.Text     = "RIFCoverter will not overwrite files that already exist.";
     //
     // linkTraceFile
     //
     this.linkTraceFile.Location     = new System.Drawing.Point(208, 520);
     this.linkTraceFile.Name         = "linkTraceFile";
     this.linkTraceFile.TabIndex     = 58;
     this.linkTraceFile.TabStop      = true;
     this.linkTraceFile.Text         = "Show Debug Trace";
     this.linkTraceFile.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkTraceFile_LinkClicked);
     //
     // RCAppForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(342, 728);
     this.Controls.Add(this.linkTraceFile);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.buttonBrowseTo);
     this.Controls.Add(this.buttonBrowseFrom);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.groupFormat);
     this.Controls.Add(this.linkwebsite);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.m_label_time_elapsed);
     this.Controls.Add(this.m_label_current_job_number);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.m_label_log);
     this.Controls.Add(this.m_richtext_log);
     this.Controls.Add(this.m_button_stop);
     this.Controls.Add(this.m_checkbox_include_subfolders);
     this.Controls.Add(this.m_button_start);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.m_textbox_to);
     this.Controls.Add(this.m_textbox_from);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "RCAppForm";
     this.Text            = "APPTITLE";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.OnClosing);
     this.groupFormat.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(WzPageGeneralSetup));
     this.txtClassname       = new System.Windows.Forms.TextBox();
     this.label2             = new System.Windows.Forms.Label();
     this.errorProvider      = new System.Windows.Forms.ErrorProvider(this.components);
     this.txtNamespace       = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.txtAssemblyKeyFile = new System.Windows.Forms.TextBox();
     this.label3             = new System.Windows.Forms.Label();
     this.cmdSelectKey       = new System.Windows.Forms.Button();
     this.openFileDialog     = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog     = new System.Windows.Forms.SaveFileDialog();
     this.cmdNewKey          = new System.Windows.Forms.Button();
     this.panelHeader.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // panelHeader
     //
     resources.ApplyResources(this.panelHeader, "panelHeader");
     //
     // labelTitle
     //
     resources.ApplyResources(this.labelTitle, "labelTitle");
     //
     // labelSubTitle
     //
     resources.ApplyResources(this.labelSubTitle, "labelSubTitle");
     //
     // txtClassname
     //
     resources.ApplyResources(this.txtClassname, "txtClassname");
     this.txtClassname.Name         = "txtClassname";
     this.txtClassname.TextChanged += new System.EventHandler(this.Element_Changed);
     this.txtClassname.Validating  += new System.ComponentModel.CancelEventHandler(this.txtClassname_Validating);
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     resources.ApplyResources(this.errorProvider, "errorProvider");
     //
     // txtNamespace
     //
     resources.ApplyResources(this.txtNamespace, "txtNamespace");
     this.txtNamespace.Name         = "txtNamespace";
     this.txtNamespace.TextChanged += new System.EventHandler(this.Element_Changed);
     this.txtNamespace.Validating  += new System.ComponentModel.CancelEventHandler(this.txtNamespace_Validating);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // txtAssemblyKeyFile
     //
     resources.ApplyResources(this.txtAssemblyKeyFile, "txtAssemblyKeyFile");
     this.txtAssemblyKeyFile.Name         = "txtAssemblyKeyFile";
     this.txtAssemblyKeyFile.TextChanged += new System.EventHandler(this.Element_Changed);
     this.txtAssemblyKeyFile.Validating  += new System.ComponentModel.CancelEventHandler(this.txtAssemblyKeyFile_Validating);
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // cmdSelectKey
     //
     resources.ApplyResources(this.cmdSelectKey, "cmdSelectKey");
     this.cmdSelectKey.Name   = "cmdSelectKey";
     this.cmdSelectKey.Click += new System.EventHandler(this.cmdSelectKey_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.DefaultExt = "snk";
     resources.ApplyResources(this.openFileDialog, "openFileDialog");
     //
     // saveFileDialog
     //
     this.saveFileDialog.DefaultExt = "snk";
     resources.ApplyResources(this.saveFileDialog, "saveFileDialog");
     //
     // cmdNewKey
     //
     resources.ApplyResources(this.cmdNewKey, "cmdNewKey");
     this.cmdNewKey.Name   = "cmdNewKey";
     this.cmdNewKey.Click += new System.EventHandler(this.cmdNewKey_Click);
     //
     // WzPageGeneralSetup
     //
     this.Controls.Add(this.txtAssemblyKeyFile);
     this.Controls.Add(this.cmdNewKey);
     this.Controls.Add(this.cmdSelectKey);
     this.Controls.Add(this.txtNamespace);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtClassname);
     this.Controls.Add(this.label2);
     this.Name = "WzPageGeneralSetup";
     resources.ApplyResources(this, "$this");
     this.SubTitle = "Specify General Project Properties";
     this.Title    = "General Project Properties";
     this.Leave   += new System.EventHandler(this.WzPageGeneralSetup_Leave);
     this.Controls.SetChildIndex(this.label2, 0);
     this.Controls.SetChildIndex(this.txtClassname, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.Controls.SetChildIndex(this.label3, 0);
     this.Controls.SetChildIndex(this.txtNamespace, 0);
     this.Controls.SetChildIndex(this.cmdSelectKey, 0);
     this.Controls.SetChildIndex(this.cmdNewKey, 0);
     this.Controls.SetChildIndex(this.txtAssemblyKeyFile, 0);
     this.Controls.SetChildIndex(this.panelHeader, 0);
     this.panelHeader.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(CApplyBurst));
     this.toolTipCtrl        = new System.Windows.Forms.ToolTip(this.components);
     this.m_closeioButton    = new System.Windows.Forms.Button();
     this.m_idLabel          = new System.Windows.Forms.Label();
     this.m_gpibAddrTextBox  = new System.Windows.Forms.TextBox();
     this.m_setioButton      = new System.Windows.Forms.Button();
     this.m_configureButton  = new System.Windows.Forms.Button();
     this.m_burstnoComboBox  = new System.Windows.Forms.ComboBox();
     this.m_functionComboBox = new System.Windows.Forms.ComboBox();
     this.m_frequencyTextBox = new System.Windows.Forms.TextBox();
     this.m_initiateButton   = new System.Windows.Forms.Button();
     this.m_errorListBox     = new System.Windows.Forms.TextBox();
     this.m_geterrorButton   = new System.Windows.Forms.Button();
     this.gb2            = new System.Windows.Forms.GroupBox();
     this.burstnoLabel   = new System.Windows.Forms.Label();
     this.functionLabel  = new System.Windows.Forms.Label();
     this.frequencyLabel = new System.Windows.Forms.Label();
     this.gb3            = new System.Windows.Forms.GroupBox();
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.gb2.SuspendLayout();
     this.gb3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_closeioButton
     //
     this.m_closeioButton.Enabled  = false;
     this.m_closeioButton.Location = new System.Drawing.Point(331, 12);
     this.m_closeioButton.Name     = "m_closeioButton";
     this.m_closeioButton.Size     = new System.Drawing.Size(104, 24);
     this.m_closeioButton.TabIndex = 2;
     this.m_closeioButton.Text     = "Close I/O";
     this.toolTipCtrl.SetToolTip(this.m_closeioButton, "Click to close the IO enviornment.");
     this.m_closeioButton.Click += new System.EventHandler(this.closeioButton_Click);
     //
     // m_idLabel
     //
     this.m_idLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.m_idLabel.Location    = new System.Drawing.Point(9, 40);
     this.m_idLabel.Name        = "m_idLabel";
     this.m_idLabel.Size        = new System.Drawing.Size(457, 20);
     this.m_idLabel.TabIndex    = 3;
     this.m_idLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolTipCtrl.SetToolTip(this.m_idLabel, "Displays ID string of the instrument");
     //
     // m_gpibAddrTextBox
     //
     this.m_gpibAddrTextBox.Location = new System.Drawing.Point(6, 13);
     this.m_gpibAddrTextBox.Name     = "m_gpibAddrTextBox";
     this.m_gpibAddrTextBox.Size     = new System.Drawing.Size(211, 21);
     this.m_gpibAddrTextBox.TabIndex = 0;
     this.m_gpibAddrTextBox.Text     = "GPIB0::10";
     this.toolTipCtrl.SetToolTip(this.m_gpibAddrTextBox, "Enter the GPIB board number and the GPIB address of the Instrument");
     //
     // m_setioButton
     //
     this.m_setioButton.Location = new System.Drawing.Point(220, 12);
     this.m_setioButton.Name     = "m_setioButton";
     this.m_setioButton.Size     = new System.Drawing.Size(104, 24);
     this.m_setioButton.TabIndex = 1;
     this.m_setioButton.Text     = "Set I/O";
     this.toolTipCtrl.SetToolTip(this.m_setioButton, "Click to set the IO enviornment and get the ID of the instrument");
     this.m_setioButton.Click += new System.EventHandler(this.m_setioButton_Click);
     //
     // m_configureButton
     //
     this.m_configureButton.Location = new System.Drawing.Point(393, 41);
     this.m_configureButton.Name     = "m_configureButton";
     this.m_configureButton.Size     = new System.Drawing.Size(72, 20);
     this.m_configureButton.TabIndex = 6;
     this.m_configureButton.Text     = "Configure";
     this.toolTipCtrl.SetToolTip(this.m_configureButton, "Press to configure the instrument with selected settings");
     this.m_configureButton.Click += new System.EventHandler(this.configureButton_Click);
     //
     // m_burstnoComboBox
     //
     this.m_burstnoComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_burstnoComboBox.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4",
         "5",
         "10"
     });
     this.m_burstnoComboBox.Location = new System.Drawing.Point(254, 39);
     this.m_burstnoComboBox.Name     = "m_burstnoComboBox";
     this.m_burstnoComboBox.Size     = new System.Drawing.Size(134, 21);
     this.m_burstnoComboBox.TabIndex = 5;
     this.toolTipCtrl.SetToolTip(this.m_burstnoComboBox, "Select the no. of bursts");
     //
     // m_functionComboBox
     //
     this.m_functionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_functionComboBox.Items.AddRange(new object[] {
         "Sine",
         "Square",
         "Triangle",
         "Ramp"
     });
     this.m_functionComboBox.Location = new System.Drawing.Point(151, 39);
     this.m_functionComboBox.Name     = "m_functionComboBox";
     this.m_functionComboBox.Size     = new System.Drawing.Size(99, 21);
     this.m_functionComboBox.TabIndex = 4;
     this.toolTipCtrl.SetToolTip(this.m_functionComboBox, "Select the function type");
     //
     // m_frequencyTextBox
     //
     this.m_frequencyTextBox.Location = new System.Drawing.Point(9, 39);
     this.m_frequencyTextBox.Name     = "m_frequencyTextBox";
     this.m_frequencyTextBox.Size     = new System.Drawing.Size(134, 21);
     this.m_frequencyTextBox.TabIndex = 3;
     this.m_frequencyTextBox.Text     = "5000";
     this.toolTipCtrl.SetToolTip(this.m_frequencyTextBox, "Enter the value of frequency and press \'Enter Key\'");
     this.m_frequencyTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.frequencyTextBox_KeyPress);
     this.m_frequencyTextBox.Leave    += new System.EventHandler(this.frequencyTextBox_Leave);
     //
     // m_initiateButton
     //
     this.m_initiateButton.Location = new System.Drawing.Point(4, 145);
     this.m_initiateButton.Name     = "m_initiateButton";
     this.m_initiateButton.Size     = new System.Drawing.Size(471, 40);
     this.m_initiateButton.TabIndex = 2;
     this.m_initiateButton.Text     = "2. Initiate Burst";
     this.toolTipCtrl.SetToolTip(this.m_initiateButton, "Initiate burst signal by triggering the instrument");
     this.m_initiateButton.Click += new System.EventHandler(this.initiateButton_Click);
     //
     // m_errorListBox
     //
     this.m_errorListBox.AcceptsTab = true;
     this.m_errorListBox.Location   = new System.Drawing.Point(8, 17);
     this.m_errorListBox.Multiline  = true;
     this.m_errorListBox.Name       = "m_errorListBox";
     this.m_errorListBox.ReadOnly   = true;
     this.m_errorListBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.m_errorListBox.Size       = new System.Drawing.Size(341, 108);
     this.m_errorListBox.TabIndex   = 1;
     this.m_errorListBox.Text       = "";
     this.toolTipCtrl.SetToolTip(this.m_errorListBox, "Shows the history of errors");
     //
     // m_geterrorButton
     //
     this.m_geterrorButton.Location = new System.Drawing.Point(354, 51);
     this.m_geterrorButton.Name     = "m_geterrorButton";
     this.m_geterrorButton.Size     = new System.Drawing.Size(112, 37);
     this.m_geterrorButton.TabIndex = 0;
     this.m_geterrorButton.Text     = "Get Instrument Error";
     this.toolTipCtrl.SetToolTip(this.m_geterrorButton, "Click to get the errors if any");
     this.m_geterrorButton.Click += new System.EventHandler(this.geterrorButton_Click);
     //
     // gb2
     //
     this.gb2.Controls.Add(this.m_configureButton);
     this.gb2.Controls.Add(this.burstnoLabel);
     this.gb2.Controls.Add(this.functionLabel);
     this.gb2.Controls.Add(this.frequencyLabel);
     this.gb2.Controls.Add(this.m_burstnoComboBox);
     this.gb2.Controls.Add(this.m_functionComboBox);
     this.gb2.Controls.Add(this.m_frequencyTextBox);
     this.gb2.Location = new System.Drawing.Point(3, 66);
     this.gb2.Name     = "gb2";
     this.gb2.Size     = new System.Drawing.Size(473, 72);
     this.gb2.TabIndex = 1;
     this.gb2.TabStop  = false;
     this.gb2.Text     = "1. Configure ArbFG for Burst";
     //
     // burstnoLabel
     //
     this.burstnoLabel.Location = new System.Drawing.Point(254, 19);
     this.burstnoLabel.Name     = "burstnoLabel";
     this.burstnoLabel.Size     = new System.Drawing.Size(123, 18);
     this.burstnoLabel.TabIndex = 2;
     this.burstnoLabel.Text     = "Select no of Bursts:";
     //
     // functionLabel
     //
     this.functionLabel.Location = new System.Drawing.Point(151, 19);
     this.functionLabel.Name     = "functionLabel";
     this.functionLabel.Size     = new System.Drawing.Size(99, 18);
     this.functionLabel.TabIndex = 1;
     this.functionLabel.Text     = "Select Function:";
     //
     // frequencyLabel
     //
     this.frequencyLabel.Location = new System.Drawing.Point(9, 19);
     this.frequencyLabel.Name     = "frequencyLabel";
     this.frequencyLabel.Size     = new System.Drawing.Size(120, 18);
     this.frequencyLabel.TabIndex = 0;
     this.frequencyLabel.Text     = "Set Frequency(Hz):";
     //
     // gb3
     //
     this.gb3.Controls.Add(this.m_errorListBox);
     this.gb3.Controls.Add(this.m_geterrorButton);
     this.gb3.Location = new System.Drawing.Point(4, 191);
     this.gb3.Name     = "gb3";
     this.gb3.Size     = new System.Drawing.Size(471, 130);
     this.gb3.TabIndex = 3;
     this.gb3.TabStop  = false;
     this.gb3.Text     = "Check Instrument Errors";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.m_closeioButton);
     this.groupBox1.Controls.Add(this.m_idLabel);
     this.groupBox1.Controls.Add(this.m_gpibAddrTextBox);
     this.groupBox1.Controls.Add(this.m_setioButton);
     this.groupBox1.Location = new System.Drawing.Point(2, -4);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(474, 65);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     //
     // CApplyBurst
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(478, 325);
     this.Controls.Add(this.gb3);
     this.Controls.Add(this.m_initiateButton);
     this.Controls.Add(this.gb2);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "CApplyBurst";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Agilent 33120A Burst Example";
     this.Load           += new System.EventHandler(this.CApplyBurst_Load);
     this.gb2.ResumeLayout(false);
     this.gb3.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     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();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle21 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle22 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle23 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle24 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridCellInfo  gridCellInfo6   = new Syncfusion.Windows.Forms.Grid.GridCellInfo();
     this.gridControl1 = new Syncfusion.Windows.Forms.Grid.GridControl();
     this.imageList1   = new System.Windows.Forms.ImageList(this.components);
     this.button1      = new Syncfusion.Windows.Forms.ButtonAdv();
     this.button2      = new Syncfusion.Windows.Forms.ButtonAdv();
     this.button3      = new Syncfusion.Windows.Forms.ButtonAdv();
     this.button4      = new Syncfusion.Windows.Forms.ButtonAdv();
     this.button5      = new Syncfusion.Windows.Forms.ButtonAdv();
     this.panel1       = new System.Windows.Forms.Panel();
     this.groupBox2    = new System.Windows.Forms.GroupBox();
     this.groupBox1    = new System.Windows.Forms.GroupBox();
     this.label1       = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.panel1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.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.gridControl1.BackColor = System.Drawing.Color.White;
     gridBaseStyle21.Name        = "Header";
     gridBaseStyle21.StyleInfo.Borders.Bottom    = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle21.StyleInfo.Borders.Left      = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle21.StyleInfo.Borders.Right     = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle21.StyleInfo.Borders.Top       = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle21.StyleInfo.CellType          = "Header";
     gridBaseStyle21.StyleInfo.Font.Bold         = true;
     gridBaseStyle21.StyleInfo.Interior          = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(199)))), ((int)(((byte)(184))))), System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(234)))), ((int)(((byte)(216))))));
     gridBaseStyle21.StyleInfo.VerticalAlignment = Syncfusion.Windows.Forms.Grid.GridVerticalAlignment.Middle;
     gridBaseStyle22.Name = "Standard";
     gridBaseStyle22.StyleInfo.Font.Facename = "Segoe UI";
     gridBaseStyle22.StyleInfo.Interior      = new Syncfusion.Drawing.BrushInfo(System.Drawing.SystemColors.Window);
     gridBaseStyle23.Name = "Column Header";
     gridBaseStyle23.StyleInfo.BaseStyle           = "Header";
     gridBaseStyle23.StyleInfo.HorizontalAlignment = Syncfusion.Windows.Forms.Grid.GridHorizontalAlignment.Center;
     gridBaseStyle24.Name = "Row Header";
     gridBaseStyle24.StyleInfo.BaseStyle           = "Header";
     gridBaseStyle24.StyleInfo.HorizontalAlignment = Syncfusion.Windows.Forms.Grid.GridHorizontalAlignment.Left;
     gridBaseStyle24.StyleInfo.Interior            = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Horizontal, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(199)))), ((int)(((byte)(184))))), System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(234)))), ((int)(((byte)(216))))));
     this.gridControl1.BaseStylesMap.AddRange(new Syncfusion.Windows.Forms.Grid.GridBaseStyle[] {
         gridBaseStyle21,
         gridBaseStyle22,
         gridBaseStyle23,
         gridBaseStyle24
     });
     this.gridControl1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gridControl1.ColWidthEntries.AddRange(new Syncfusion.Windows.Forms.Grid.GridColWidth[] {
         new Syncfusion.Windows.Forms.Grid.GridColWidth(0, 35)
     });
     this.gridControl1.DefaultGridBorderStyle = Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid;
     this.gridControl1.DefaultRowHeight       = 25;
     this.gridControl1.RowHeights[0]          = 30;
     this.gridControl1.Font                 = new System.Drawing.Font("Segoe UI", 8.5F);
     this.gridControl1.ForeColor            = System.Drawing.Color.MidnightBlue;
     gridCellInfo6.Col                      = -1;
     gridCellInfo6.Row                      = -1;
     gridCellInfo6.StyleInfo.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);
     gridCellInfo6.StyleInfo.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);
     gridCellInfo6.StyleInfo.Font.Bold      = false;
     gridCellInfo6.StyleInfo.Font.Facename  = "Segoe UI";
     gridCellInfo6.StyleInfo.Font.Italic    = false;
     gridCellInfo6.StyleInfo.Font.Size      = 8.5F;
     gridCellInfo6.StyleInfo.Font.Strikeout = false;
     gridCellInfo6.StyleInfo.Font.Underline = false;
     gridCellInfo6.StyleInfo.Font.Unit      = System.Drawing.GraphicsUnit.Point;
     gridCellInfo6.StyleInfo.Interior       = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.White);
     gridCellInfo6.StyleInfo.TextColor      = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
     this.gridControl1.GridCells.AddRange(new Syncfusion.Windows.Forms.Grid.GridCellInfo[] {
         gridCellInfo6
     });
     this.gridControl1.GridOfficeScrollBars = Syncfusion.Windows.Forms.OfficeScrollBars.Metro;
     this.gridControl1.GridVisualStyles     = Syncfusion.Windows.Forms.GridVisualStyles.Metro;
     this.gridControl1.HorizontalThumbTrack = true;
     this.gridControl1.Location             = new System.Drawing.Point(29, 29);
     this.gridControl1.MetroScrollBars      = true;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Properties.BackgroundColor = System.Drawing.Color.White;
     this.gridControl1.Properties.GridLineColor   = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.gridControl1.Properties.MarkColHeader   = false;
     this.gridControl1.Properties.MarkRowHeader   = false;
     this.gridControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridControl1.RowHeightEntries.AddRange(new Syncfusion.Windows.Forms.Grid.GridRowHeight[] {
         new Syncfusion.Windows.Forms.Grid.GridRowHeight(0, 21)
     });
     this.gridControl1.SerializeCellsBehavior = Syncfusion.Windows.Forms.Grid.GridSerializeCellsBehavior.SerializeIntoCode;
     this.gridControl1.Size               = new System.Drawing.Size(500, 361);
     this.gridControl1.SmartSizeBox       = false;
     this.gridControl1.TabIndex           = 0;
     this.gridControl1.ThemesEnabled      = true;
     this.gridControl1.VerticalThumbTrack = true;
     //
     // 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;
     //
     // button1
     //
     this.button1.Anchor         = System.Windows.Forms.AnchorStyles.Top;
     this.button1.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button1.FlatStyle      = FlatStyle.Flat;
     this.button1.BorderStyleAdv = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.button1.Font           = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor      = System.Drawing.Color.White;
     this.button1.Location       = new System.Drawing.Point(25, 31);
     this.button1.Name           = "button1";
     this.button1.Size           = new System.Drawing.Size(113, 26);
     this.button1.TabIndex       = 1;
     this.button1.Text           = "Load DataSource";
     this.button1.Click         += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Anchor         = System.Windows.Forms.AnchorStyles.Top;
     this.button2.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button2.FlatStyle      = FlatStyle.Flat;
     this.button2.BorderStyleAdv = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.button2.Font           = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.ForeColor      = System.Drawing.Color.White;
     this.button2.Location       = new System.Drawing.Point(25, 78);
     this.button2.Name           = "button2";
     this.button2.Size           = new System.Drawing.Size(112, 26);
     this.button2.TabIndex       = 2;
     this.button2.Text           = "Save DataSource";
     this.button2.Click         += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button3.FlatStyle      = FlatStyle.Flat;
     this.button3.BorderStyleAdv = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.button3.Font           = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.ForeColor      = System.Drawing.Color.White;
     this.button3.Location       = new System.Drawing.Point(25, 122);
     this.button3.Name           = "button3";
     this.button3.Size           = new System.Drawing.Size(112, 26);
     this.button3.TabIndex       = 3;
     this.button3.Text           = "Reset";
     this.button3.Click         += new System.EventHandler(this.button3_Click);
     //
     // button4
     //
     this.button4.Anchor         = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button4.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button4.FlatStyle      = FlatStyle.Flat;
     this.button4.BorderStyleAdv = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.button4.Font           = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.ForeColor      = System.Drawing.Color.White;
     this.button4.Location       = new System.Drawing.Point(25, 34);
     this.button4.Name           = "button4";
     this.button4.Size           = new System.Drawing.Size(112, 26);
     this.button4.TabIndex       = 5;
     this.button4.Text           = "Expand All";
     this.button4.Click         += new System.EventHandler(this.button4_Click);
     //
     // button5
     //
     this.button5.Anchor         = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button5.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button5.FlatStyle      = FlatStyle.Flat;
     this.button5.BorderStyleAdv = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.button5.Font           = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button5.ForeColor      = System.Drawing.Color.White;
     this.button5.Location       = new System.Drawing.Point(25, 79);
     this.button5.Name           = "button5";
     this.button5.Size           = new System.Drawing.Size(112, 26);
     this.button5.TabIndex       = 6;
     this.button5.Text           = "Close All";
     this.button5.Click         += new System.EventHandler(this.button5_Click);
     //
     // panel1
     //
     this.panel1.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.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Location = new System.Drawing.Point(-6, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(721, 649);
     this.panel1.TabIndex = 7;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.button5);
     this.groupBox2.Controls.Add(this.button4);
     this.groupBox2.Location = new System.Drawing.Point(547, 231);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(160, 159);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Expand Options";
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.button2);
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Location = new System.Drawing.Point(547, 29);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(160, 177);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Data Source";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.MidnightBlue;
     this.label1.Location  = new System.Drawing.Point(26, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(501, 26);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "Right-Click node in Column A for Positive/Negative indent";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // TreeGridForm
     //
     this.ClientSize = new System.Drawing.Size(727, 402);
     this.Controls.Add(this.panel1);
     this.MinimumSize = new System.Drawing.Size(550, 400);
     this.Name        = "TreeGridForm";
     this.Text        = "Virtual Tree Grid";
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components    = new System.ComponentModel.Container();
     this.radioGroup1   = new DevExpress.XtraEditors.RadioGroup();
     this.Txt_TotalAmt  = new DevExpress.XtraEditors.TextEdit();
     this.btnConfirm    = new DevExpress.XtraEditors.SimpleButton();
     this.Lbl_AccName   = new DevExpress.XtraEditors.LabelControl();
     this.Lbl_AccountId = new DevExpress.XtraEditors.LabelControl();
     this.timer_0       = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Txt_TotalAmt.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // radioGroup1
     //
     this.radioGroup1.Location = new System.Drawing.Point(19, 34);
     this.radioGroup1.Name     = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Ghi nợ"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Thanh toán 1 phần"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Thanh toán hết")
     });
     this.radioGroup1.Size     = new System.Drawing.Size(407, 30);
     this.radioGroup1.TabIndex = 0;
     //
     // Txt_TotalAmt
     //
     this.Txt_TotalAmt.EnterMoveNextControl = true;
     this.Txt_TotalAmt.Location             = new System.Drawing.Point(309, 12);
     this.Txt_TotalAmt.Name = "Txt_TotalAmt";
     this.Txt_TotalAmt.Properties.Appearance.BackColor              = System.Drawing.Color.PapayaWhip;
     this.Txt_TotalAmt.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Txt_TotalAmt.Properties.Appearance.Options.UseBackColor   = true;
     this.Txt_TotalAmt.Properties.Appearance.Options.UseFont        = true;
     this.Txt_TotalAmt.Properties.Appearance.Options.UseTextOptions = true;
     this.Txt_TotalAmt.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.Txt_TotalAmt.Properties.DisplayFormat.FormatString        = "n0";
     this.Txt_TotalAmt.Properties.DisplayFormat.FormatType          = DevExpress.Utils.FormatType.Numeric;
     this.Txt_TotalAmt.Properties.EditFormat.FormatString           = "n0";
     this.Txt_TotalAmt.Properties.EditFormat.FormatType             = DevExpress.Utils.FormatType.Numeric;
     this.Txt_TotalAmt.Properties.Mask.EditMask = "n0";
     this.Txt_TotalAmt.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.Txt_TotalAmt.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.Txt_TotalAmt.Size     = new System.Drawing.Size(117, 20);
     this.Txt_TotalAmt.TabIndex = 406;
     //
     // btnConfirm
     //
     this.btnConfirm.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnConfirm.Appearance.Options.UseFont = true;
     this.btnConfirm.Location = new System.Drawing.Point(168, 82);
     this.btnConfirm.Name     = "btnConfirm";
     this.btnConfirm.Size     = new System.Drawing.Size(117, 23);
     this.btnConfirm.TabIndex = 416;
     this.btnConfirm.Text     = "Xác nhận";
     this.btnConfirm.Click   += new System.EventHandler(this.btnConfirm_Click);
     //
     // Lbl_AccName
     //
     this.Lbl_AccName.Appearance.BackColor            = System.Drawing.Color.PaleTurquoise;
     this.Lbl_AccName.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Lbl_AccName.Appearance.Options.UseBackColor = true;
     this.Lbl_AccName.Appearance.Options.UseFont      = true;
     this.Lbl_AccName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Lbl_AccName.Location     = new System.Drawing.Point(88, 12);
     this.Lbl_AccName.Name         = "Lbl_AccName";
     this.Lbl_AccName.Padding      = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.Lbl_AccName.Size         = new System.Drawing.Size(211, 16);
     this.Lbl_AccName.TabIndex     = 420;
     //
     // Lbl_AccountId
     //
     this.Lbl_AccountId.Appearance.BackColor            = System.Drawing.Color.PaleTurquoise;
     this.Lbl_AccountId.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Lbl_AccountId.Appearance.Options.UseBackColor = true;
     this.Lbl_AccountId.Appearance.Options.UseFont      = true;
     this.Lbl_AccountId.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Lbl_AccountId.Location     = new System.Drawing.Point(19, 12);
     this.Lbl_AccountId.Name         = "Lbl_AccountId";
     this.Lbl_AccountId.Padding      = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.Lbl_AccountId.Size         = new System.Drawing.Size(63, 16);
     this.Lbl_AccountId.TabIndex     = 421;
     //
     // timer_0
     //
     this.timer_0.Enabled = true;
     this.timer_0.Tick   += new System.EventHandler(this.timer_0_Tick);
     //
     // FrmPayment
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(453, 119);
     this.Controls.Add(this.Lbl_AccountId);
     this.Controls.Add(this.Lbl_AccName);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.Txt_TotalAmt);
     this.Controls.Add(this.radioGroup1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.Name            = "FrmPayment";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Hình thức thanh toán";
     this.Load           += new System.EventHandler(this.FrmPayment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Txt_TotalAmt.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #54
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();
     this.listViewFormats                 = new System.Windows.Forms.ListView();
     this.columnHeaderFormat              = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderDescription         = new System.Windows.Forms.ColumnHeader();
     this.imageListFormats                = new System.Windows.Forms.ImageList(this.components);
     this.labelInstalledPlugins           = new System.Windows.Forms.Label();
     this.groupBoxFormatDetails           = new System.Windows.Forms.GroupBox();
     this.panelFormatDetails              = new System.Windows.Forms.Panel();
     this.labelContentType                = new System.Windows.Forms.Label();
     this.labelHandledByCaption           = new System.Windows.Forms.Label();
     this.labelContentSourceName          = new System.Windows.Forms.Label();
     this.buttonChange                    = new System.Windows.Forms.Button();
     this.buttonOptions                   = new System.Windows.Forms.Button();
     this.labelContentTypeCaption         = new System.Windows.Forms.Label();
     this.pictureBoxContentSource         = new System.Windows.Forms.PictureBox();
     this.labelNoFormatSelected           = new System.Windows.Forms.Label();
     this.linkLabelMoreAboutLiveClipboard = new System.Windows.Forms.LinkLabel();
     this.labelCaption                    = new System.Windows.Forms.Label();
     this.toolTip = new OpenLiveWriter.Controls.ToolTip2(this.components);
     this.pictureBoxLiveClipboardIcon = new System.Windows.Forms.PictureBox();
     this.groupBoxFormatDetails.SuspendLayout();
     this.panelFormatDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxContentSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLiveClipboardIcon)).BeginInit();
     this.SuspendLayout();
     //
     // listViewFormats
     //
     this.listViewFormats.AutoArrange = false;
     this.listViewFormats.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeaderFormat,
         this.columnHeaderDescription
     });
     this.listViewFormats.FullRowSelect  = true;
     this.listViewFormats.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewFormats.HideSelection  = false;
     this.listViewFormats.Location       = new System.Drawing.Point(8, 84);
     this.listViewFormats.MultiSelect    = false;
     this.listViewFormats.Name           = "listViewFormats";
     this.listViewFormats.Size           = new System.Drawing.Size(348, 189);
     this.listViewFormats.SmallImageList = this.imageListFormats;
     this.listViewFormats.TabIndex       = 3;
     this.listViewFormats.UseCompatibleStateImageBehavior = false;
     this.listViewFormats.View         = System.Windows.Forms.View.Details;
     this.listViewFormats.DoubleClick += new System.EventHandler(this.listViewFormats_DoubleClick);
     //
     // columnHeaderFormat
     //
     this.columnHeaderFormat.Text  = "Format";
     this.columnHeaderFormat.Width = 100;
     //
     // columnHeaderDescription
     //
     this.columnHeaderDescription.Text  = "Description";
     this.columnHeaderDescription.Width = 223;
     //
     // imageListFormats
     //
     this.imageListFormats.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageListFormats.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageListFormats.TransparentColor = System.Drawing.Color.Transparent;
     //
     // labelInstalledPlugins
     //
     this.labelInstalledPlugins.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelInstalledPlugins.Location  = new System.Drawing.Point(8, 66);
     this.labelInstalledPlugins.Name      = "labelInstalledPlugins";
     this.labelInstalledPlugins.Size      = new System.Drawing.Size(341, 15);
     this.labelInstalledPlugins.TabIndex  = 2;
     this.labelInstalledPlugins.Text      = "&Supported formats:";
     //
     // groupBoxFormatDetails
     //
     this.groupBoxFormatDetails.Controls.Add(this.panelFormatDetails);
     this.groupBoxFormatDetails.Controls.Add(this.labelNoFormatSelected);
     this.groupBoxFormatDetails.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBoxFormatDetails.Location  = new System.Drawing.Point(8, 282);
     this.groupBoxFormatDetails.Name      = "groupBoxFormatDetails";
     this.groupBoxFormatDetails.Size      = new System.Drawing.Size(349, 109);
     this.groupBoxFormatDetails.TabIndex  = 4;
     this.groupBoxFormatDetails.TabStop   = false;
     this.groupBoxFormatDetails.Text      = "Details for \'vCalendar\' format";
     //
     // panelFormatDetails
     //
     this.panelFormatDetails.Controls.Add(this.labelContentType);
     this.panelFormatDetails.Controls.Add(this.labelHandledByCaption);
     this.panelFormatDetails.Controls.Add(this.labelContentSourceName);
     this.panelFormatDetails.Controls.Add(this.buttonChange);
     this.panelFormatDetails.Controls.Add(this.buttonOptions);
     this.panelFormatDetails.Controls.Add(this.labelContentTypeCaption);
     this.panelFormatDetails.Controls.Add(this.pictureBoxContentSource);
     this.panelFormatDetails.Location = new System.Drawing.Point(7, 16);
     this.panelFormatDetails.Name     = "panelFormatDetails";
     this.panelFormatDetails.Size     = new System.Drawing.Size(339, 89);
     this.panelFormatDetails.TabIndex = 0;
     //
     // labelContentType
     //
     this.labelContentType.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelContentType.Location  = new System.Drawing.Point(2, 67);
     this.labelContentType.Name      = "labelContentType";
     this.labelContentType.Size      = new System.Drawing.Size(224, 16);
     this.labelContentType.TabIndex  = 5;
     this.labelContentType.Text      = "vcalendar (application/xhtml+xml)";
     //
     // labelHandledByCaption
     //
     this.labelHandledByCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelHandledByCaption.Location  = new System.Drawing.Point(2, 7);
     this.labelHandledByCaption.Name      = "labelHandledByCaption";
     this.labelHandledByCaption.Size      = new System.Drawing.Size(186, 15);
     this.labelHandledByCaption.TabIndex  = 0;
     this.labelHandledByCaption.Text      = "Handled by:";
     //
     // labelContentSourceName
     //
     this.labelContentSourceName.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelContentSourceName.Location  = new System.Drawing.Point(26, 23);
     this.labelContentSourceName.Name      = "labelContentSourceName";
     this.labelContentSourceName.Size      = new System.Drawing.Size(136, 15);
     this.labelContentSourceName.TabIndex  = 1;
     this.labelContentSourceName.Text      = "Open Live Writer";
     //
     // buttonChange
     //
     this.buttonChange.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.buttonChange.Location  = new System.Drawing.Point(259, 10);
     this.buttonChange.Name      = "buttonChange";
     this.buttonChange.Size      = new System.Drawing.Size(75, 23);
     this.buttonChange.TabIndex  = 2;
     this.buttonChange.Text      = "Change...";
     this.buttonChange.Click    += new System.EventHandler(this.buttonChange_Click);
     //
     // buttonOptions
     //
     this.buttonOptions.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.buttonOptions.Location  = new System.Drawing.Point(259, 40);
     this.buttonOptions.Name      = "buttonOptions";
     this.buttonOptions.Size      = new System.Drawing.Size(75, 23);
     this.buttonOptions.TabIndex  = 4;
     this.buttonOptions.Text      = "Options...";
     this.buttonOptions.Click    += new System.EventHandler(this.buttonOptions_Click);
     //
     // labelContentTypeCaption
     //
     this.labelContentTypeCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelContentTypeCaption.Location  = new System.Drawing.Point(2, 51);
     this.labelContentTypeCaption.Name      = "labelContentTypeCaption";
     this.labelContentTypeCaption.Size      = new System.Drawing.Size(188, 16);
     this.labelContentTypeCaption.TabIndex  = 3;
     this.labelContentTypeCaption.Text      = "Content type:";
     //
     // pictureBoxContentSource
     //
     this.pictureBoxContentSource.Location = new System.Drawing.Point(2, 21);
     this.pictureBoxContentSource.Name     = "pictureBoxContentSource";
     this.pictureBoxContentSource.Size     = new System.Drawing.Size(16, 16);
     this.pictureBoxContentSource.TabIndex = 0;
     this.pictureBoxContentSource.TabStop  = false;
     //
     // labelNoFormatSelected
     //
     this.labelNoFormatSelected.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelNoFormatSelected.Location  = new System.Drawing.Point(8, 41);
     this.labelNoFormatSelected.Name      = "labelNoFormatSelected";
     this.labelNoFormatSelected.Size      = new System.Drawing.Size(332, 23);
     this.labelNoFormatSelected.TabIndex  = 1;
     this.labelNoFormatSelected.Text      = "(No format selected)";
     this.labelNoFormatSelected.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // linkLabelMoreAboutLiveClipboard
     //
     this.linkLabelMoreAboutLiveClipboard.AutoSize     = true;
     this.linkLabelMoreAboutLiveClipboard.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.linkLabelMoreAboutLiveClipboard.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabelMoreAboutLiveClipboard.LinkColor    = System.Drawing.SystemColors.HotTrack;
     this.linkLabelMoreAboutLiveClipboard.Location     = new System.Drawing.Point(34, 422);
     this.linkLabelMoreAboutLiveClipboard.Name         = "linkLabelMoreAboutLiveClipboard";
     this.linkLabelMoreAboutLiveClipboard.Size         = new System.Drawing.Size(144, 13);
     this.linkLabelMoreAboutLiveClipboard.TabIndex     = 5;
     this.linkLabelMoreAboutLiveClipboard.TabStop      = true;
     this.linkLabelMoreAboutLiveClipboard.Text         = "More about Live Clipboard...";
     //
     // labelCaption
     //
     this.labelCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelCaption.Location  = new System.Drawing.Point(8, 32);
     this.labelCaption.Name      = "labelCaption";
     this.labelCaption.Size      = new System.Drawing.Size(341, 32);
     this.labelCaption.TabIndex  = 1;
     this.labelCaption.Text      = "You can paste web content that supports the Live Clipboard format into {0}.";
     //
     // pictureBoxLiveClipboardIcon
     //
     this.pictureBoxLiveClipboardIcon.Location = new System.Drawing.Point(14, 420);
     this.pictureBoxLiveClipboardIcon.Name     = "pictureBoxLiveClipboardIcon";
     this.pictureBoxLiveClipboardIcon.Size     = new System.Drawing.Size(16, 16);
     this.pictureBoxLiveClipboardIcon.TabIndex = 6;
     this.pictureBoxLiveClipboardIcon.TabStop  = false;
     //
     // LiveClipboardPreferencesPanel
     //
     this.AccessibleName = "Live Clipboard";
     this.Controls.Add(this.pictureBoxLiveClipboardIcon);
     this.Controls.Add(this.labelCaption);
     this.Controls.Add(this.linkLabelMoreAboutLiveClipboard);
     this.Controls.Add(this.groupBoxFormatDetails);
     this.Controls.Add(this.labelInstalledPlugins);
     this.Controls.Add(this.listViewFormats);
     this.Name      = "LiveClipboardPreferencesPanel";
     this.PanelName = "Live Clipboard";
     this.Size      = new System.Drawing.Size(370, 449);
     this.Controls.SetChildIndex(this.listViewFormats, 0);
     this.Controls.SetChildIndex(this.labelInstalledPlugins, 0);
     this.Controls.SetChildIndex(this.groupBoxFormatDetails, 0);
     this.Controls.SetChildIndex(this.linkLabelMoreAboutLiveClipboard, 0);
     this.Controls.SetChildIndex(this.labelCaption, 0);
     this.Controls.SetChildIndex(this.pictureBoxLiveClipboardIcon, 0);
     this.groupBoxFormatDetails.ResumeLayout(false);
     this.panelFormatDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxContentSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLiveClipboardIcon)).EndInit();
     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()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMain));
     this.mnuMain          = new System.Windows.Forms.MainMenu();
     this.mnuFile          = new System.Windows.Forms.MenuItem();
     this.mnuFileConnect   = new System.Windows.Forms.MenuItem();
     this.mnuFileSep1      = new System.Windows.Forms.MenuItem();
     this.mnuFileNew       = new System.Windows.Forms.MenuItem();
     this.mnuFileOpen      = new System.Windows.Forms.MenuItem();
     this.mnuFileSave      = new System.Windows.Forms.MenuItem();
     this.mnuFileSep2      = new System.Windows.Forms.MenuItem();
     this.mnuFileExit      = new System.Windows.Forms.MenuItem();
     this.mnuEdit          = new System.Windows.Forms.MenuItem();
     this.mnuEditUndo      = new System.Windows.Forms.MenuItem();
     this.mnuEditRedo      = new System.Windows.Forms.MenuItem();
     this.mnuEditSep1      = new System.Windows.Forms.MenuItem();
     this.mnuEditCut       = new System.Windows.Forms.MenuItem();
     this.mnuEditCopy      = new System.Windows.Forms.MenuItem();
     this.mnuEditPaste     = new System.Windows.Forms.MenuItem();
     this.mnuEditSep2      = new System.Windows.Forms.MenuItem();
     this.mnuEditSelectAll = new System.Windows.Forms.MenuItem();
     this.mnuQuery         = new System.Windows.Forms.MenuItem();
     this.mnuQueryExecute  = new System.Windows.Forms.MenuItem();
     this.mnuQueryCancel   = new System.Windows.Forms.MenuItem();
     this.mnuWindow        = new System.Windows.Forms.MenuItem();
     this.mnuWindowCascade = new System.Windows.Forms.MenuItem();
     this.mnuWindowHoriz   = new System.Windows.Forms.MenuItem();
     this.mnuWindowVert    = new System.Windows.Forms.MenuItem();
     this.mnuHelp          = new System.Windows.Forms.MenuItem();
     this.mnuHelpAbout     = new System.Windows.Forms.MenuItem();
     this.tbMain           = new System.Windows.Forms.ToolBar();
     this.tbbNew           = new System.Windows.Forms.ToolBarButton();
     this.tbbOpen          = new System.Windows.Forms.ToolBarButton();
     this.tbbSave          = new System.Windows.Forms.ToolBarButton();
     this.tbbSep1          = new System.Windows.Forms.ToolBarButton();
     this.tbbCut           = new System.Windows.Forms.ToolBarButton();
     this.tbbCopy          = new System.Windows.Forms.ToolBarButton();
     this.tbbPaste         = new System.Windows.Forms.ToolBarButton();
     this.tbbSep2          = new System.Windows.Forms.ToolBarButton();
     this.tbbFind          = new System.Windows.Forms.ToolBarButton();
     this.tbbSep3          = new System.Windows.Forms.ToolBarButton();
     this.tbbExecute       = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelExecute = new System.Windows.Forms.ToolBarButton();
     this.tbbSep4          = new System.Windows.Forms.ToolBarButton();
     this.ilToolbar        = new System.Windows.Forms.ImageList(this.components);
     this.cboDatabases     = new dbmt.ComboBoxEx();
     this.ilDatabases      = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // mnuMain
     //
     this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFile,
         this.mnuEdit,
         this.mnuQuery,
         this.mnuWindow,
         this.mnuHelp
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFileConnect,
         this.mnuFileSep1,
         this.mnuFileNew,
         this.mnuFileOpen,
         this.mnuFileSave,
         this.mnuFileSep2,
         this.mnuFileExit
     });
     this.mnuFile.Text = "&File";
     //
     // mnuFileConnect
     //
     this.mnuFileConnect.Index  = 0;
     this.mnuFileConnect.Text   = "Connect...";
     this.mnuFileConnect.Click += new System.EventHandler(this.mnuFileConnect_Click);
     //
     // mnuFileSep1
     //
     this.mnuFileSep1.Index = 1;
     this.mnuFileSep1.Text  = "-";
     //
     // mnuFileNew
     //
     this.mnuFileNew.Index    = 2;
     this.mnuFileNew.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     this.mnuFileNew.Text     = "&New...";
     this.mnuFileNew.Click   += new System.EventHandler(this.mnuFileNew_Click);
     //
     // mnuFileOpen
     //
     this.mnuFileOpen.Index    = 3;
     this.mnuFileOpen.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.mnuFileOpen.Text     = "&Open...";
     this.mnuFileOpen.Click   += new System.EventHandler(this.mnuFileOpen_Click);
     //
     // mnuFileSave
     //
     this.mnuFileSave.Index    = 4;
     this.mnuFileSave.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this.mnuFileSave.Text     = "&Save...";
     this.mnuFileSave.Click   += new System.EventHandler(this.mnuFileSave_Click);
     //
     // mnuFileSep2
     //
     this.mnuFileSep2.Index = 5;
     this.mnuFileSep2.Text  = "-";
     //
     // mnuFileExit
     //
     this.mnuFileExit.Index    = 6;
     this.mnuFileExit.Shortcut = System.Windows.Forms.Shortcut.AltF4;
     this.mnuFileExit.Text     = "E&xit";
     this.mnuFileExit.Click   += new System.EventHandler(this.mnuFileExit_Click);
     //
     // mnuEdit
     //
     this.mnuEdit.Index = 1;
     this.mnuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuEditUndo,
         this.mnuEditRedo,
         this.mnuEditSep1,
         this.mnuEditCut,
         this.mnuEditCopy,
         this.mnuEditPaste,
         this.mnuEditSep2,
         this.mnuEditSelectAll
     });
     this.mnuEdit.Text   = "&Edit";
     this.mnuEdit.Click += new System.EventHandler(this.mnuEdit_Click);
     //
     // mnuEditUndo
     //
     this.mnuEditUndo.Index  = 0;
     this.mnuEditUndo.Text   = "Undo\tCtrl+Z";
     this.mnuEditUndo.Click += new System.EventHandler(this.mnuEditUndo_Click);
     //
     // mnuEditRedo
     //
     this.mnuEditRedo.Index  = 1;
     this.mnuEditRedo.Text   = "Redo\tCtrl+Y";
     this.mnuEditRedo.Click += new System.EventHandler(this.mnuEditRedo_Click);
     //
     // mnuEditSep1
     //
     this.mnuEditSep1.Index = 2;
     this.mnuEditSep1.Text  = "-";
     //
     // mnuEditCut
     //
     this.mnuEditCut.Index  = 3;
     this.mnuEditCut.Text   = "Cut\tCtrl+X";
     this.mnuEditCut.Click += new System.EventHandler(this.mnuEditCut_Click);
     //
     // mnuEditCopy
     //
     this.mnuEditCopy.Index  = 4;
     this.mnuEditCopy.Text   = "Copy\tCtrl+Y";
     this.mnuEditCopy.Click += new System.EventHandler(this.mnuEditCopy_Click);
     //
     // mnuEditPaste
     //
     this.mnuEditPaste.Index  = 5;
     this.mnuEditPaste.Text   = "Paste\tCtrl+V";
     this.mnuEditPaste.Click += new System.EventHandler(this.mnuEditPaste_Click);
     //
     // mnuEditSep2
     //
     this.mnuEditSep2.Index = 6;
     this.mnuEditSep2.Text  = "-";
     //
     // mnuEditSelectAll
     //
     this.mnuEditSelectAll.Index  = 7;
     this.mnuEditSelectAll.Text   = "Select All\tCtrl+A";
     this.mnuEditSelectAll.Click += new System.EventHandler(this.mnuEditSelectAll_Click);
     //
     // mnuQuery
     //
     this.mnuQuery.Index = 2;
     this.mnuQuery.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuQueryExecute,
         this.mnuQueryCancel
     });
     this.mnuQuery.Text = "&Query";
     //
     // mnuQueryExecute
     //
     this.mnuQueryExecute.Index    = 0;
     this.mnuQueryExecute.Shortcut = System.Windows.Forms.Shortcut.F5;
     this.mnuQueryExecute.Text     = "&Execute";
     this.mnuQueryExecute.Click   += new System.EventHandler(this.mnuQueryExecute_Click);
     //
     // mnuQueryCancel
     //
     this.mnuQueryCancel.Index  = 1;
     this.mnuQueryCancel.Text   = "&Cancel Executing Query\tAlt+Break";
     this.mnuQueryCancel.Click += new System.EventHandler(this.mnuQueryCancel_Click);
     //
     // mnuWindow
     //
     this.mnuWindow.Index   = 3;
     this.mnuWindow.MdiList = true;
     this.mnuWindow.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuWindowCascade,
         this.mnuWindowHoriz,
         this.mnuWindowVert
     });
     this.mnuWindow.Text = "&Window";
     //
     // mnuWindowCascade
     //
     this.mnuWindowCascade.Index  = 0;
     this.mnuWindowCascade.Text   = "&Cascade";
     this.mnuWindowCascade.Click += new System.EventHandler(this.mnuWindowCascade_Click);
     //
     // mnuWindowHoriz
     //
     this.mnuWindowHoriz.Index  = 1;
     this.mnuWindowHoriz.Text   = "Tile &Horizontally";
     this.mnuWindowHoriz.Click += new System.EventHandler(this.mnuWindowHoriz_Click);
     //
     // mnuWindowVert
     //
     this.mnuWindowVert.Index  = 2;
     this.mnuWindowVert.Text   = "Tile &Vertically";
     this.mnuWindowVert.Click += new System.EventHandler(this.mnuWindowVert_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 4;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuHelpAbout
     });
     this.mnuHelp.Text = "&Help";
     //
     // mnuHelpAbout
     //
     this.mnuHelpAbout.Index  = 0;
     this.mnuHelpAbout.Text   = "&About...";
     this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
     //
     // tbMain
     //
     this.tbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.tbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbNew,
         this.tbbOpen,
         this.tbbSave,
         this.tbbSep1,
         this.tbbCut,
         this.tbbCopy,
         this.tbbPaste,
         this.tbbSep2,
         this.tbbFind,
         this.tbbSep3,
         this.tbbExecute,
         this.tbbCancelExecute,
         this.tbbSep4
     });
     this.tbMain.ButtonSize     = new System.Drawing.Size(18, 22);
     this.tbMain.DropDownArrows = true;
     this.tbMain.ImageList      = this.ilToolbar;
     this.tbMain.Location       = new System.Drawing.Point(0, 0);
     this.tbMain.Name           = "tbMain";
     this.tbMain.ShowToolTips   = true;
     this.tbMain.Size           = new System.Drawing.Size(736, 27);
     this.tbMain.TabIndex       = 1;
     this.tbMain.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbMain_ButtonClick);
     //
     // tbbNew
     //
     this.tbbNew.Enabled     = false;
     this.tbbNew.ImageIndex  = 0;
     this.tbbNew.ToolTipText = "New Query (Ctrl+N)";
     //
     // tbbOpen
     //
     this.tbbOpen.Enabled     = false;
     this.tbbOpen.ImageIndex  = 1;
     this.tbbOpen.ToolTipText = "Load SQL Script (Ctrl+O)";
     //
     // tbbSave
     //
     this.tbbSave.Enabled     = false;
     this.tbbSave.ImageIndex  = 2;
     this.tbbSave.ToolTipText = "Save Query/Result (Ctrl+S)";
     //
     // tbbSep1
     //
     this.tbbSep1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCut
     //
     this.tbbCut.Enabled     = false;
     this.tbbCut.ImageIndex  = 3;
     this.tbbCut.ToolTipText = "Cut (Ctrl+X)";
     //
     // tbbCopy
     //
     this.tbbCopy.Enabled     = false;
     this.tbbCopy.ImageIndex  = 4;
     this.tbbCopy.ToolTipText = "Copy (Ctrl+C)";
     //
     // tbbPaste
     //
     this.tbbPaste.Enabled     = false;
     this.tbbPaste.ImageIndex  = 5;
     this.tbbPaste.ToolTipText = "Paste (Ctrl+V)";
     //
     // tbbSep2
     //
     this.tbbSep2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbFind
     //
     this.tbbFind.Enabled     = false;
     this.tbbFind.ImageIndex  = 6;
     this.tbbFind.ToolTipText = "Find (Ctrl+F)";
     //
     // tbbSep3
     //
     this.tbbSep3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbExecute
     //
     this.tbbExecute.Enabled     = false;
     this.tbbExecute.ImageIndex  = 7;
     this.tbbExecute.ToolTipText = "Execute Query (F5)";
     //
     // tbbCancelExecute
     //
     this.tbbCancelExecute.Enabled     = false;
     this.tbbCancelExecute.ImageIndex  = 8;
     this.tbbCancelExecute.ToolTipText = "Cancel Query Execution (Alt+Break)";
     //
     // tbbSep4
     //
     this.tbbSep4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // ilToolbar
     //
     this.ilToolbar.ImageSize        = new System.Drawing.Size(16, 15);
     this.ilToolbar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilToolbar.ImageStream")));
     this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // cboDatabases
     //
     this.cboDatabases.DrawMode              = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboDatabases.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboDatabases.Enabled               = false;
     this.cboDatabases.ImageList             = null;
     this.cboDatabases.ItemHeight            = 15;
     this.cboDatabases.Location              = new System.Drawing.Point(242, 3);
     this.cboDatabases.Name                  = "cboDatabases";
     this.cboDatabases.Size                  = new System.Drawing.Size(176, 21);
     this.cboDatabases.TabIndex              = 3;
     this.cboDatabases.SelectedIndexChanged += new System.EventHandler(this.cboDatabases_SelectedIndexChanged);
     //
     // ilDatabases
     //
     this.ilDatabases.ImageSize        = new System.Drawing.Size(20, 15);
     this.ilDatabases.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilDatabases.ImageStream")));
     this.ilDatabases.TransparentColor = System.Drawing.Color.Transparent;
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(736, 569);
     this.Controls.Add(this.cboDatabases);
     this.Controls.Add(this.tbMain);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Menu           = this.mnuMain;
     this.Name           = "frmMain";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "Database Maintenance Tool";
     this.Closing       += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     this.Load          += new System.EventHandler(this.frmMain_Load);
     this.ResumeLayout(false);
 }
Example #56
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();
     this.label1         = new System.Windows.Forms.Label();
     this.m_txtLibelle   = new sc2i.win32.common.C2iTextBox();
     this.c2iPanelOmbre4 = new sc2i.win32.common.C2iPanelOmbre();
     this.m_tabControl   = new sc2i.win32.common.C2iTabControl(this.components);
     this.m_pageTranches = new Crownwood.Magic.Controls.TabPage();
     this.m_controlEditElementATrancheHoraire = new timos.CControlEditElementATrancheHoraire();
     this.label4 = new System.Windows.Forms.Label();
     this.c2iPanelOmbre4.SuspendLayout();
     this.m_tabControl.SuspendLayout();
     this.m_pageTranches.SuspendLayout();
     this.SuspendLayout();
     //
     // m_panelMenu
     //
     this.m_panelMenu.Size = new System.Drawing.Size(830, 28);
     this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.m_extLinkField.SetLinkField(this.label1, "");
     this.label1.Location = new System.Drawing.Point(9, 19);
     this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(47, 13);
     this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.label1.TabIndex = 4002;
     this.label1.Text     = "Label|50";
     //
     // m_txtLibelle
     //
     this.m_txtLibelle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.m_extLinkField.SetLinkField(this.m_txtLibelle, "Libelle");
     this.m_txtLibelle.Location    = new System.Drawing.Point(100, 16);
     this.m_txtLibelle.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtLibelle, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_txtLibelle.Name = "m_txtLibelle";
     this.m_txtLibelle.Size = new System.Drawing.Size(420, 20);
     this.m_extStyle.SetStyleBackColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_txtLibelle.TabIndex = 0;
     this.m_txtLibelle.Text     = "[Label]|30324";
     //
     // c2iPanelOmbre4
     //
     this.c2iPanelOmbre4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.c2iPanelOmbre4.Controls.Add(this.label1);
     this.c2iPanelOmbre4.Controls.Add(this.m_txtLibelle);
     this.c2iPanelOmbre4.ForeColor = System.Drawing.Color.Black;
     this.m_extLinkField.SetLinkField(this.c2iPanelOmbre4, "");
     this.c2iPanelOmbre4.Location    = new System.Drawing.Point(8, 52);
     this.c2iPanelOmbre4.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre4, sc2i.win32.common.TypeModeEdition.Autonome);
     this.c2iPanelOmbre4.Name = "c2iPanelOmbre4";
     this.c2iPanelOmbre4.Size = new System.Drawing.Size(584, 78);
     this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel);
     this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel);
     this.c2iPanelOmbre4.TabIndex = 0;
     //
     // m_tabControl
     //
     this.m_tabControl.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.m_tabControl.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.m_tabControl.BoldSelectedPage    = true;
     this.m_tabControl.ControlBottomOffset = 16;
     this.m_tabControl.ControlRightOffset  = 16;
     this.m_tabControl.ForeColor           = System.Drawing.Color.Black;
     this.m_tabControl.HideTabsMode        = Crownwood.Magic.Controls.TabControl.HideTabsModes.HideAlways;
     this.m_tabControl.IDEPixelArea        = false;
     this.m_extLinkField.SetLinkField(this.m_tabControl, "");
     this.m_tabControl.Location = new System.Drawing.Point(8, 136);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabControl, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_tabControl.Name          = "m_tabControl";
     this.m_tabControl.Ombre         = true;
     this.m_tabControl.PositionTop   = true;
     this.m_tabControl.SelectedIndex = 0;
     this.m_tabControl.SelectedTab   = this.m_pageTranches;
     this.m_tabControl.Size          = new System.Drawing.Size(810, 382);
     this.m_extStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel);
     this.m_extStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel);
     this.m_tabControl.TabIndex = 4004;
     this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.m_pageTranches
     });
     this.m_tabControl.TextColor = System.Drawing.Color.Black;
     //
     // m_pageTranches
     //
     this.m_pageTranches.Controls.Add(this.m_controlEditElementATrancheHoraire);
     this.m_pageTranches.Controls.Add(this.label4);
     this.m_extLinkField.SetLinkField(this.m_pageTranches, "");
     this.m_pageTranches.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageTranches, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_pageTranches.Name = "m_pageTranches";
     this.m_pageTranches.Size = new System.Drawing.Size(794, 366);
     this.m_extStyle.SetStyleBackColor(this.m_pageTranches, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_pageTranches, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_pageTranches.TabIndex = 12;
     this.m_pageTranches.Title    = "Time slots definition|398";
     //
     // m_controlEditElementATrancheHoraire
     //
     this.m_controlEditElementATrancheHoraire.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                             | System.Windows.Forms.AnchorStyles.Left)));
     this.m_extLinkField.SetLinkField(this.m_controlEditElementATrancheHoraire, "");
     this.m_controlEditElementATrancheHoraire.Location    = new System.Drawing.Point(12, 44);
     this.m_controlEditElementATrancheHoraire.LockEdition = true;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_controlEditElementATrancheHoraire, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_controlEditElementATrancheHoraire.Name = "m_controlEditElementATrancheHoraire";
     this.m_controlEditElementATrancheHoraire.Size = new System.Drawing.Size(663, 311);
     this.m_extStyle.SetStyleBackColor(this.m_controlEditElementATrancheHoraire, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_controlEditElementATrancheHoraire, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_controlEditElementATrancheHoraire.TabIndex = 17;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.m_extLinkField.SetLinkField(this.label4, "");
     this.label4.Location = new System.Drawing.Point(16, 19);
     this.m_gestionnaireModeEdition.SetModeEdition(this.label4, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(168, 13);
     this.m_extStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.label4.TabIndex = 16;
     this.label4.Text     = "Daily Time Slots management|403";
     //
     // CFormEditionHoraireJournalier
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(830, 530);
     this.Controls.Add(this.m_tabControl);
     this.Controls.Add(this.c2iPanelOmbre4);
     this.m_extLinkField.SetLinkField(this, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome);
     this.Name = "CFormEditionHoraireJournalier";
     this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.Controls.SetChildIndex(this.m_panelMenu, 0);
     this.Controls.SetChildIndex(this.c2iPanelOmbre4, 0);
     this.Controls.SetChildIndex(this.m_tabControl, 0);
     this.c2iPanelOmbre4.ResumeLayout(false);
     this.c2iPanelOmbre4.PerformLayout();
     this.m_tabControl.ResumeLayout(false);
     this.m_tabControl.PerformLayout();
     this.m_pageTranches.ResumeLayout(false);
     this.m_pageTranches.PerformLayout();
     this.ResumeLayout(false);
 }
 //----------------------------------------------------------------------
 #region Code généré par le concepteur
 /// <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();
     this.m_viewer      = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.panel1        = new System.Windows.Forms.Panel();
     this.panel2        = new System.Windows.Forms.Panel();
     this.m_btnFiltrer  = new System.Windows.Forms.Button();
     this.splitter1     = new System.Windows.Forms.Splitter();
     this.m_panelFiltre = new sc2i.formulaire.win32.editor.CPanelFormulaireSurElement();
     this.m_reducteur   = new sc2i.win32.common.CReducteurControle();
     this.m_lblReport   = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // m_viewer
     //
     this.m_viewer.ActiveViewIndex  = -1;
     this.m_viewer.BackColor        = System.Drawing.Color.White;
     this.m_viewer.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_viewer.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.m_viewer.Location         = new System.Drawing.Point(0, 0);
     this.m_viewer.Name             = "m_viewer";
     this.m_viewer.SelectionFormula = "";
     this.m_viewer.Size             = new System.Drawing.Size(706, 327);
     this.m_extStyle.SetStyleBackColor(this.m_viewer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_viewer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_viewer.TabIndex = 0;
     this.m_viewer.ViewTimeSelectionFormula = "";
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.panel2);
     this.panel1.Controls.Add(this.splitter1);
     this.panel1.Controls.Add(this.m_panelFiltre);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(706, 466);
     this.m_extStyle.SetStyleBackColor(this.panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.panel1.TabIndex = 4045;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.m_btnFiltrer);
     this.panel2.Controls.Add(this.m_viewer);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 139);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(706, 327);
     this.m_extStyle.SetStyleBackColor(this.panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.panel2.TabIndex = 4046;
     //
     // m_btnFiltrer
     //
     this.m_btnFiltrer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.m_btnFiltrer.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.m_btnFiltrer.Location  = new System.Drawing.Point(437, 3);
     this.m_btnFiltrer.Name      = "m_btnFiltrer";
     this.m_btnFiltrer.Size      = new System.Drawing.Size(115, 21);
     this.m_extStyle.SetStyleBackColor(this.m_btnFiltrer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnFiltrer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnFiltrer.TabIndex = 4046;
     this.m_btnFiltrer.Text     = "Visualize / Filter|1007";
     this.m_btnFiltrer.UseVisualStyleBackColor = false;
     this.m_btnFiltrer.Click += new System.EventHandler(this.m_btnFiltrer_Click);
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location = new System.Drawing.Point(0, 135);
     this.splitter1.MinExtra = 1;
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(706, 4);
     this.m_extStyle.SetStyleBackColor(this.splitter1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.splitter1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.splitter1.TabIndex = 2;
     this.splitter1.TabStop  = false;
     //
     // m_panelFiltre
     //
     this.m_panelFiltre.BorderStyle  = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_panelFiltre.Dock         = System.Windows.Forms.DockStyle.Top;
     this.m_panelFiltre.ElementEdite = null;
     this.m_panelFiltre.Location     = new System.Drawing.Point(0, 0);
     this.m_panelFiltre.LockEdition  = false;
     this.m_panelFiltre.Name         = "m_panelFiltre";
     this.m_panelFiltre.Size         = new System.Drawing.Size(706, 135);
     this.m_extStyle.SetStyleBackColor(this.m_panelFiltre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelFiltre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelFiltre.TabIndex = 0;
     //
     // m_reducteur
     //
     this.m_reducteur.Anchor             = System.Windows.Forms.AnchorStyles.Top;
     this.m_reducteur.ControleAgrandit   = this.m_viewer;
     this.m_reducteur.ControleReduit     = this.m_panelFiltre;
     this.m_reducteur.Location           = new System.Drawing.Point(349, 28);
     this.m_reducteur.MargeControle      = 0;
     this.m_reducteur.ModePositionnement = sc2i.win32.common.CReducteurControle.EModePositionnement.Haut;
     this.m_reducteur.Name = "m_reducteur";
     this.m_reducteur.Size = new System.Drawing.Size(9, 8);
     this.m_extStyle.SetStyleBackColor(this.m_reducteur, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_reducteur, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_reducteur.TabIndex      = 4047;
     this.m_reducteur.TailleReduite = 32;
     //
     // m_lblReport
     //
     this.m_lblReport.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_lblReport.Location = new System.Drawing.Point(4, 3);
     this.m_lblReport.Name     = "m_lblReport";
     this.m_lblReport.Size     = new System.Drawing.Size(683, 25);
     this.m_extStyle.SetStyleBackColor(this.m_lblReport, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_lblReport, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_lblReport.TabIndex = 4048;
     this.m_lblReport.Text     = "Report name";
     //
     // CFormVisualisationRapport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(706, 498);
     this.Controls.Add(this.m_lblReport);
     this.Controls.Add(this.m_reducteur);
     this.Controls.Add(this.panel1);
     this.Name = "CFormVisualisationRapport";
     this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.Load += new System.EventHandler(this.CFormVisualisationRapport_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #58
0
        /// <summary>
        /// This method is required for Windows Forms designer support.
        /// Do not change the method contents inside the source code editor. The Forms designer might
        /// not be able to load this method if it was changed manually.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new Container();
            this.dataGridViewComprobante = new DataGridView();
            this.bindingSource1          = new BindingSource(this.components);
            this.groupBox1             = new GroupBox();
            this.rbTodos               = new RadioButton();
            this.rbTercero             = new RadioButton();
            this.txtBusqueda           = new TextBox();
            this.btnBuscar             = new Button();
            this.statusStrip1          = new StatusStrip();
            this.toolStripStatusLabel1 = new ToolStripStatusLabel();
            ((ISupportInitialize)this.dataGridViewComprobante).BeginInit();
            ((ISupportInitialize)this.bindingSource1).BeginInit();
            this.groupBox1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            base.SuspendLayout();
            this.dataGridViewComprobante.AllowUserToAddRows          = false;
            this.dataGridViewComprobante.AllowUserToDeleteRows       = false;
            this.dataGridViewComprobante.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewComprobante.Location         = new Point(1, 80);
            this.dataGridViewComprobante.Name             = "dataGridViewComprobante";
            this.dataGridViewComprobante.ReadOnly         = true;
            this.dataGridViewComprobante.SelectionMode    = DataGridViewSelectionMode.FullRowSelect;
            this.dataGridViewComprobante.Size             = new Size(634, 165);
            this.dataGridViewComprobante.TabIndex         = 12;
            this.dataGridViewComprobante.CellDoubleClick += new DataGridViewCellEventHandler(this.dataGridViewComprobante_CellDoubleClick);
            this.dataGridViewComprobante.CellFormatting  += new DataGridViewCellFormattingEventHandler(this.dataGridViewComprobante_CellFormatting);
            this.groupBox1.Controls.Add(this.rbTodos);
            this.groupBox1.Controls.Add(this.rbTercero);
            this.groupBox1.Controls.Add(this.txtBusqueda);
            this.groupBox1.Controls.Add(this.btnBuscar);
            this.groupBox1.Location = new Point(1, 3);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new Size(634, 71);
            this.groupBox1.TabIndex = 14;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "Busqueda de comprobante";
            this.rbTodos.AutoSize   = true;
            this.rbTodos.Location   = new Point(77, 45);
            this.rbTodos.Name       = "rbTodos";
            this.rbTodos.Size       = new Size(132, 17);
            this.rbTodos.TabIndex   = 3;
            this.rbTodos.Text       = "Todos los documentos";
            this.rbTodos.UseVisualStyleBackColor = true;
            this.rbTodos.CheckedChanged         += new EventHandler(this.rbTodos_CheckedChanged);
            this.rbTercero.AutoSize = true;
            this.rbTercero.Checked  = true;
            this.rbTercero.Location = new Point(9, 45);
            this.rbTercero.Name     = "rbTercero";
            this.rbTercero.Size     = new Size(62, 17);
            this.rbTercero.TabIndex = 2;
            this.rbTercero.TabStop  = true;
            this.rbTercero.Text     = "Tercero";
            this.rbTercero.UseVisualStyleBackColor = true;
            this.rbTercero.CheckedChanged         += new EventHandler(this.rbTercero_CheckedChanged);
            this.txtBusqueda.Location = new Point(6, 19);
            this.txtBusqueda.Name     = "txtBusqueda";
            this.txtBusqueda.Size     = new Size(495, 20);
            this.txtBusqueda.TabIndex = 1;
            this.btnBuscar.Location   = new Point(528, 19);
            this.btnBuscar.Name       = "btnBuscar";
            this.btnBuscar.Size       = new Size(75, 23);
            this.btnBuscar.TabIndex   = 0;
            this.btnBuscar.Text       = "Buscar";
            this.btnBuscar.UseVisualStyleBackColor = true;
            this.btnBuscar.Click += new EventHandler(this.btnBuscar_Click);
            this.statusStrip1.Items.AddRange(new ToolStripItem[] {
                this.toolStripStatusLabel1
            });
            this.statusStrip1.Location      = new Point(0, 248);
            this.statusStrip1.Name          = "statusStrip1";
            this.statusStrip1.Size          = new Size(639, 22);
            this.statusStrip1.TabIndex      = 15;
            this.statusStrip1.Text          = "statusStrip1";
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new Size(166, 17);
            this.toolStripStatusLabel1.Text = "Doble click y/o seleccione y cierre";
            base.AutoScaleDimensions        = new SizeF(6f, 13f);
            base.AutoScaleMode = AutoScaleMode.Font;
            base.ClientSize    = new Size(639, 270);
            base.Controls.Add(this.statusStrip1);
            base.Controls.Add(this.groupBox1);
            base.Controls.Add(this.dataGridViewComprobante);
            base.FormBorderStyle = FormBorderStyle.FixedDialog;
            base.MaximizeBox     = false;
            base.MinimizeBox     = false;

            base.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "Buscar comprobante";
            base.Load         += new EventHandler(this.FormBuscarComprobante_Load);

            ((ISupportInitialize)this.dataGridViewComprobante).EndInit();
            ((ISupportInitialize)this.bindingSource1).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            base.ResumeLayout(false);
            base.PerformLayout();
            //
            // FrmBuscarComprobante
            //
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Text          = "FrmBuscarComprobante";
            this.Name          = "FrmBuscarComprobante";
        }
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(Transformer));
     this.tbimages       = new System.Windows.Forms.ImageList(this.components);
     this.toolBar1       = new System.Windows.Forms.ToolBar();
     this.transleftbtn   = new System.Windows.Forms.ToolBarButton();
     this.transrightbtn  = new System.Windows.Forms.ToolBarButton();
     this.transupbtn     = new System.Windows.Forms.ToolBarButton();
     this.transdownbtn   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.scaleupbtn     = new System.Windows.Forms.ToolBarButton();
     this.scaledownbtn   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.rotxby1btn     = new System.Windows.Forms.ToolBarButton();
     this.rotyby1btn     = new System.Windows.Forms.ToolBarButton();
     this.rotzby1btn     = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3 = new System.Windows.Forms.ToolBarButton();
     this.rotxbtn        = new System.Windows.Forms.ToolBarButton();
     this.rotybtn        = new System.Windows.Forms.ToolBarButton();
     this.rotzbtn        = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4 = new System.Windows.Forms.ToolBarButton();
     this.shearrightbtn  = new System.Windows.Forms.ToolBarButton();
     this.shearleftbtn   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5 = new System.Windows.Forms.ToolBarButton();
     this.resetbtn       = new System.Windows.Forms.ToolBarButton();
     this.exitbtn        = new System.Windows.Forms.ToolBarButton();
     this.SuspendLayout();
     //
     // tbimages
     //
     this.tbimages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("tbimages.ImageStream")));
     this.tbimages.TransparentColor = System.Drawing.Color.Transparent;
     this.tbimages.Images.SetKeyName(0, "");
     this.tbimages.Images.SetKeyName(1, "");
     this.tbimages.Images.SetKeyName(2, "");
     this.tbimages.Images.SetKeyName(3, "");
     this.tbimages.Images.SetKeyName(4, "");
     this.tbimages.Images.SetKeyName(5, "");
     this.tbimages.Images.SetKeyName(6, "");
     this.tbimages.Images.SetKeyName(7, "");
     this.tbimages.Images.SetKeyName(8, "");
     this.tbimages.Images.SetKeyName(9, "");
     this.tbimages.Images.SetKeyName(10, "");
     this.tbimages.Images.SetKeyName(11, "");
     this.tbimages.Images.SetKeyName(12, "");
     this.tbimages.Images.SetKeyName(13, "");
     this.tbimages.Images.SetKeyName(14, "");
     this.tbimages.Images.SetKeyName(15, "");
     //
     // toolBar1
     //
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.transleftbtn,
         this.transrightbtn,
         this.transupbtn,
         this.transdownbtn,
         this.toolBarButton1,
         this.scaleupbtn,
         this.scaledownbtn,
         this.toolBarButton2,
         this.rotxby1btn,
         this.rotyby1btn,
         this.rotzby1btn,
         this.toolBarButton3,
         this.rotxbtn,
         this.rotybtn,
         this.rotzbtn,
         this.toolBarButton4,
         this.shearrightbtn,
         this.shearleftbtn,
         this.toolBarButton5,
         this.resetbtn,
         this.exitbtn
     });
     this.toolBar1.Dock           = System.Windows.Forms.DockStyle.Right;
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.tbimages;
     this.toolBar1.Location       = new System.Drawing.Point(484, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(24, 306);
     this.toolBar1.TabIndex       = 0;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // transleftbtn
     //
     this.transleftbtn.ImageIndex  = 1;
     this.transleftbtn.Name        = "transleftbtn";
     this.transleftbtn.ToolTipText = "translate left";
     //
     // transrightbtn
     //
     this.transrightbtn.ImageIndex  = 0;
     this.transrightbtn.Name        = "transrightbtn";
     this.transrightbtn.ToolTipText = "translate right";
     //
     // transupbtn
     //
     this.transupbtn.ImageIndex  = 2;
     this.transupbtn.Name        = "transupbtn";
     this.transupbtn.ToolTipText = "translate up";
     //
     // transdownbtn
     //
     this.transdownbtn.ImageIndex  = 3;
     this.transdownbtn.Name        = "transdownbtn";
     this.transdownbtn.ToolTipText = "translate down";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Name  = "toolBarButton1";
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // scaleupbtn
     //
     this.scaleupbtn.ImageIndex  = 4;
     this.scaleupbtn.Name        = "scaleupbtn";
     this.scaleupbtn.ToolTipText = "scale up";
     //
     // scaledownbtn
     //
     this.scaledownbtn.ImageIndex  = 5;
     this.scaledownbtn.Name        = "scaledownbtn";
     this.scaledownbtn.ToolTipText = "scale down";
     //
     // toolBarButton2
     //
     this.toolBarButton2.Name  = "toolBarButton2";
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // rotxby1btn
     //
     this.rotxby1btn.ImageIndex  = 6;
     this.rotxby1btn.Name        = "rotxby1btn";
     this.rotxby1btn.ToolTipText = "rotate about x by 1";
     //
     // rotyby1btn
     //
     this.rotyby1btn.ImageIndex  = 7;
     this.rotyby1btn.Name        = "rotyby1btn";
     this.rotyby1btn.ToolTipText = "rotate about y by 1";
     //
     // rotzby1btn
     //
     this.rotzby1btn.ImageIndex  = 8;
     this.rotzby1btn.Name        = "rotzby1btn";
     this.rotzby1btn.ToolTipText = "rotate about z by 1";
     //
     // toolBarButton3
     //
     this.toolBarButton3.Name  = "toolBarButton3";
     this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // rotxbtn
     //
     this.rotxbtn.ImageIndex  = 9;
     this.rotxbtn.Name        = "rotxbtn";
     this.rotxbtn.ToolTipText = "rotate about x continuously";
     //
     // rotybtn
     //
     this.rotybtn.ImageIndex  = 10;
     this.rotybtn.Name        = "rotybtn";
     this.rotybtn.ToolTipText = "rotate about y continuously";
     //
     // rotzbtn
     //
     this.rotzbtn.ImageIndex  = 11;
     this.rotzbtn.Name        = "rotzbtn";
     this.rotzbtn.ToolTipText = "rotate about z continuously";
     //
     // toolBarButton4
     //
     this.toolBarButton4.Name  = "toolBarButton4";
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // shearrightbtn
     //
     this.shearrightbtn.ImageIndex  = 12;
     this.shearrightbtn.Name        = "shearrightbtn";
     this.shearrightbtn.ToolTipText = "shear right";
     //
     // shearleftbtn
     //
     this.shearleftbtn.ImageIndex  = 13;
     this.shearleftbtn.Name        = "shearleftbtn";
     this.shearleftbtn.ToolTipText = "shear left";
     //
     // toolBarButton5
     //
     this.toolBarButton5.Name  = "toolBarButton5";
     this.toolBarButton5.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // resetbtn
     //
     this.resetbtn.ImageIndex  = 14;
     this.resetbtn.Name        = "resetbtn";
     this.resetbtn.ToolTipText = "restore the initial image";
     //
     // exitbtn
     //
     this.exitbtn.ImageIndex  = 15;
     this.exitbtn.Name        = "exitbtn";
     this.exitbtn.ToolTipText = "exit the program";
     //
     // Transformer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(10, 24);
     this.ClientSize        = new System.Drawing.Size(508, 306);
     this.Controls.Add(this.toolBar1);
     this.Name        = "Transformer";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.Transformer_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #60
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmComprobante));
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.lbConsecutivo          = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.rbEgreso               = new System.Windows.Forms.RadioButton();
     this.rbIngreso              = new System.Windows.Forms.RadioButton();
     this.statusStrip1           = new System.Windows.Forms.StatusStrip();
     this.gbTercero              = new System.Windows.Forms.GroupBox();
     this.btnBuscarCliente       = new System.Windows.Forms.Button();
     this.label8                 = new System.Windows.Forms.Label();
     this.txtCodigoTercero       = new System.Windows.Forms.TextBox();
     this.txtNombreComercial     = new System.Windows.Forms.TextBox();
     this.label7                 = new System.Windows.Forms.Label();
     this.tabControlDetalle      = new System.Windows.Forms.TabControl();
     this.tabPageConcepto        = new System.Windows.Forms.TabPage();
     this.dataGridViewDetalles   = new System.Windows.Forms.DataGridView();
     this.tabPageDocumentos      = new System.Windows.Forms.TabPage();
     this.dataGridViewDocumentos = new System.Windows.Forms.DataGridView();
     this.groupBox3              = new System.Windows.Forms.GroupBox();
     this.cbCondicion            = new System.Windows.Forms.ComboBox();
     this.label2                 = new System.Windows.Forms.Label();
     this.label22                = new System.Windows.Forms.Label();
     this.dtpFechaCreacion       = new System.Windows.Forms.DateTimePicker();
     this.txtTotal               = new System.Windows.Forms.TextBox();
     this.label18                = new System.Windows.Forms.Label();
     this.tabControl2            = new System.Windows.Forms.TabControl();
     this.tabPage3               = new System.Windows.Forms.TabPage();
     this.txtSucursal            = new System.Windows.Forms.TextBox();
     this.label9                 = new System.Windows.Forms.Label();
     this.cbBanco                = new System.Windows.Forms.ComboBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.label1                 = new System.Windows.Forms.Label();
     this.txtNumeroCheque        = new System.Windows.Forms.TextBox();
     this.tabPage4               = new System.Windows.Forms.TabPage();
     this.txtObservacion         = new System.Windows.Forms.TextBox();
     this.tabPage5               = new System.Windows.Forms.TabPage();
     this.cbImpresionComprobante = new System.Windows.Forms.ComboBox();
     this.label25                = new System.Windows.Forms.Label();
     this.btnRemove              = new System.Windows.Forms.Button();
     this.btnAdd                 = new System.Windows.Forms.Button();
     this.txtRetencion           = new System.Windows.Forms.TextBox();
     this.label5                 = new System.Windows.Forms.Label();
     this.txtDescuento           = new System.Windows.Forms.TextBox();
     this.label6                 = new System.Windows.Forms.Label();
     this.lbMensaje              = new System.Windows.Forms.Label();
     this.bindingSource1         = new System.Windows.Forms.BindingSource(this.components);
     this.bindingSource2         = new System.Windows.Forms.BindingSource(this.components);
     this.btnCerrar              = new System.Windows.Forms.Button();
     this.btnGuardar             = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.gbTercero.SuspendLayout();
     this.tabControlDetalle.SuspendLayout();
     this.tabPageConcepto.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewDetalles)).BeginInit();
     this.tabPageDocumentos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewDocumentos)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lbConsecutivo);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.rbEgreso);
     this.groupBox1.Controls.Add(this.rbIngreso);
     this.groupBox1.Location = new System.Drawing.Point(4, 7);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(700, 44);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Tipo comprobante";
     //
     // lbConsecutivo
     //
     this.lbConsecutivo.AutoSize = true;
     this.lbConsecutivo.Font     = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbConsecutivo.Location = new System.Drawing.Point(539, 18);
     this.lbConsecutivo.Name     = "lbConsecutivo";
     this.lbConsecutivo.Size     = new System.Drawing.Size(53, 18);
     this.lbConsecutivo.TabIndex = 82;
     this.lbConsecutivo.Text     = "00001";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(452, 23);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(81, 13);
     this.label3.TabIndex = 81;
     this.label3.Text     = "Consecutivo:";
     //
     // rbEgreso
     //
     this.rbEgreso.AutoSize = true;
     this.rbEgreso.Location = new System.Drawing.Point(74, 18);
     this.rbEgreso.Name     = "rbEgreso";
     this.rbEgreso.Size     = new System.Drawing.Size(58, 17);
     this.rbEgreso.TabIndex = 1;
     this.rbEgreso.Text     = "Egreso";
     this.rbEgreso.UseVisualStyleBackColor = true;
     this.rbEgreso.CheckedChanged         += new System.EventHandler(this.rbEgreso_CheckedChanged);
     //
     // rbIngreso
     //
     this.rbIngreso.AutoSize = true;
     this.rbIngreso.Location = new System.Drawing.Point(10, 18);
     this.rbIngreso.Name     = "rbIngreso";
     this.rbIngreso.Size     = new System.Drawing.Size(60, 17);
     this.rbIngreso.TabIndex = 0;
     this.rbIngreso.Text     = "Ingreso";
     this.rbIngreso.UseVisualStyleBackColor = true;
     this.rbIngreso.CheckedChanged         += new System.EventHandler(this.rbIngreso_CheckedChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Location = new System.Drawing.Point(0, 464);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(710, 22);
     this.statusStrip1.TabIndex = 4;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // gbTercero
     //
     this.gbTercero.Controls.Add(this.btnBuscarCliente);
     this.gbTercero.Controls.Add(this.label8);
     this.gbTercero.Controls.Add(this.txtCodigoTercero);
     this.gbTercero.Controls.Add(this.txtNombreComercial);
     this.gbTercero.Controls.Add(this.label7);
     this.gbTercero.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbTercero.Location = new System.Drawing.Point(4, 61);
     this.gbTercero.Name     = "gbTercero";
     this.gbTercero.Size     = new System.Drawing.Size(400, 66);
     this.gbTercero.TabIndex = 13;
     this.gbTercero.TabStop  = false;
     this.gbTercero.Text     = "RECIBO DE:";
     //
     // btnBuscarCliente
     //
     this.btnBuscarCliente.Image    = ((System.Drawing.Image)(resources.GetObject("btnBuscarCliente.Image")));
     this.btnBuscarCliente.Location = new System.Drawing.Point(222, 12);
     this.btnBuscarCliente.Name     = "btnBuscarCliente";
     this.btnBuscarCliente.Size     = new System.Drawing.Size(24, 24);
     this.btnBuscarCliente.TabIndex = 54;
     this.btnBuscarCliente.UseVisualStyleBackColor = true;
     this.btnBuscarCliente.Click += new System.EventHandler(this.btnBuscarCliente_Click);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(7, 16);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 50;
     this.label8.Text     = "Codigo:";
     //
     // txtCodigoTercero
     //
     this.txtCodigoTercero.Location = new System.Drawing.Point(81, 16);
     this.txtCodigoTercero.Name     = "txtCodigoTercero";
     this.txtCodigoTercero.Size     = new System.Drawing.Size(135, 20);
     this.txtCodigoTercero.TabIndex = 0;
     //
     // txtNombreComercial
     //
     this.txtNombreComercial.Enabled  = false;
     this.txtNombreComercial.Location = new System.Drawing.Point(81, 39);
     this.txtNombreComercial.Name     = "txtNombreComercial";
     this.txtNombreComercial.ReadOnly = true;
     this.txtNombreComercial.Size     = new System.Drawing.Size(292, 20);
     this.txtNombreComercial.TabIndex = 49;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(7, 42);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(54, 13);
     this.label7.TabIndex = 53;
     this.label7.Text     = "Nombre:";
     //
     // tabControlDetalle
     //
     this.tabControlDetalle.Controls.Add(this.tabPageConcepto);
     this.tabControlDetalle.Controls.Add(this.tabPageDocumentos);
     this.tabControlDetalle.Location              = new System.Drawing.Point(4, 137);
     this.tabControlDetalle.Name                  = "tabControlDetalle";
     this.tabControlDetalle.SelectedIndex         = 0;
     this.tabControlDetalle.Size                  = new System.Drawing.Size(704, 169);
     this.tabControlDetalle.TabIndex              = 14;
     this.tabControlDetalle.SelectedIndexChanged += new System.EventHandler(this.tabControlDetalle_SelectedIndexChanged);
     //
     // tabPageConcepto
     //
     this.tabPageConcepto.Controls.Add(this.dataGridViewDetalles);
     this.tabPageConcepto.Location = new System.Drawing.Point(4, 22);
     this.tabPageConcepto.Name     = "tabPageConcepto";
     this.tabPageConcepto.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPageConcepto.Size     = new System.Drawing.Size(696, 143);
     this.tabPageConcepto.TabIndex = 0;
     this.tabPageConcepto.Text     = "Concepto";
     this.tabPageConcepto.UseVisualStyleBackColor = true;
     //
     // dataGridViewDetalles
     //
     this.dataGridViewDetalles.AllowUserToAddRows          = false;
     this.dataGridViewDetalles.AllowUserToDeleteRows       = false;
     this.dataGridViewDetalles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataGridViewDetalles.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewDetalles.Location         = new System.Drawing.Point(3, 3);
     this.dataGridViewDetalles.MultiSelect      = false;
     this.dataGridViewDetalles.Name             = "dataGridViewDetalles";
     this.dataGridViewDetalles.SelectionMode    = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dataGridViewDetalles.Size             = new System.Drawing.Size(690, 137);
     this.dataGridViewDetalles.TabIndex         = 0;
     this.dataGridViewDetalles.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewDetalles_CellDoubleClick);
     this.dataGridViewDetalles.CellEndEdit     += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewDetalles_CellEndEdit);
     this.dataGridViewDetalles.CellFormatting  += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewDetalles_CellFormatting);
     //
     // tabPageDocumentos
     //
     this.tabPageDocumentos.Controls.Add(this.dataGridViewDocumentos);
     this.tabPageDocumentos.Location = new System.Drawing.Point(4, 22);
     this.tabPageDocumentos.Name     = "tabPageDocumentos";
     this.tabPageDocumentos.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPageDocumentos.Size     = new System.Drawing.Size(696, 143);
     this.tabPageDocumentos.TabIndex = 1;
     this.tabPageDocumentos.Text     = "Documentos";
     this.tabPageDocumentos.UseVisualStyleBackColor = true;
     //
     // dataGridViewDocumentos
     //
     this.dataGridViewDocumentos.AllowUserToAddRows          = false;
     this.dataGridViewDocumentos.AllowUserToDeleteRows       = false;
     this.dataGridViewDocumentos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewDocumentos.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewDocumentos.Location         = new System.Drawing.Point(3, 3);
     this.dataGridViewDocumentos.Name             = "dataGridViewDocumentos";
     this.dataGridViewDocumentos.Size             = new System.Drawing.Size(690, 137);
     this.dataGridViewDocumentos.TabIndex         = 0;
     this.dataGridViewDocumentos.VirtualMode      = true;
     this.dataGridViewDocumentos.CellFormatting  += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewDocumentos_CellFormatting);
     this.dataGridViewDocumentos.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridViewDocumentos_CellValueNeeded);
     this.dataGridViewDocumentos.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridViewDocumentos_CellValuePushed);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.cbCondicion);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.label22);
     this.groupBox3.Controls.Add(this.dtpFechaCreacion);
     this.groupBox3.Location = new System.Drawing.Point(410, 61);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(294, 66);
     this.groupBox3.TabIndex = 78;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Documento";
     //
     // cbCondicion
     //
     this.cbCondicion.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCondicion.FormattingEnabled = true;
     this.cbCondicion.Items.AddRange(new object[] {
         "Efectivo",
         "Cheque"
     });
     this.cbCondicion.Location              = new System.Drawing.Point(146, 31);
     this.cbCondicion.Name                  = "cbCondicion";
     this.cbCondicion.Size                  = new System.Drawing.Size(132, 21);
     this.cbCondicion.TabIndex              = 1;
     this.cbCondicion.SelectedIndexChanged += new System.EventHandler(this.cbCondicion_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(6, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 80;
     this.label2.Text     = "Fecha Creación:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(146, 16);
     this.label22.Name     = "label22";
     this.label22.Size     = new System.Drawing.Size(95, 13);
     this.label22.TabIndex = 84;
     this.label22.Text     = "Forma de pago:";
     //
     // dtpFechaCreacion
     //
     this.dtpFechaCreacion.CustomFormat = "yyyy/MM/dd";
     this.dtpFechaCreacion.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFechaCreacion.Location     = new System.Drawing.Point(9, 32);
     this.dtpFechaCreacion.Name         = "dtpFechaCreacion";
     this.dtpFechaCreacion.Size         = new System.Drawing.Size(131, 20);
     this.dtpFechaCreacion.TabIndex     = 0;
     //
     // txtTotal
     //
     this.txtTotal.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotal.Location = new System.Drawing.Point(568, 394);
     this.txtTotal.Name     = "txtTotal";
     this.txtTotal.ReadOnly = true;
     this.txtTotal.Size     = new System.Drawing.Size(133, 20);
     this.txtTotal.TabIndex = 2;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(490, 401);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(51, 13);
     this.label18.TabIndex = 79;
     this.label18.Text     = "TOTAL:";
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabPage3);
     this.tabControl2.Controls.Add(this.tabPage4);
     this.tabControl2.Controls.Add(this.tabPage5);
     this.tabControl2.Location      = new System.Drawing.Point(4, 343);
     this.tabControl2.Name          = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size          = new System.Drawing.Size(480, 81);
     this.tabControl2.TabIndex      = 81;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.txtSucursal);
     this.tabPage3.Controls.Add(this.label9);
     this.tabPage3.Controls.Add(this.cbBanco);
     this.tabPage3.Controls.Add(this.label4);
     this.tabPage3.Controls.Add(this.label1);
     this.tabPage3.Controls.Add(this.txtNumeroCheque);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(472, 55);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Text     = "Banco";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // txtSucursal
     //
     this.txtSucursal.Location = new System.Drawing.Point(72, 32);
     this.txtSucursal.Name     = "txtSucursal";
     this.txtSucursal.Size     = new System.Drawing.Size(217, 20);
     this.txtSucursal.TabIndex = 1;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(6, 36);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(60, 13);
     this.label9.TabIndex = 87;
     this.label9.Text     = "Sucursal:";
     //
     // cbBanco
     //
     this.cbBanco.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBanco.FormattingEnabled = true;
     this.cbBanco.Location          = new System.Drawing.Point(70, 5);
     this.cbBanco.Name     = "cbBanco";
     this.cbBanco.Size     = new System.Drawing.Size(219, 21);
     this.cbBanco.TabIndex = 0;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(6, 14);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(47, 13);
     this.label4.TabIndex = 2;
     this.label4.Text     = "Banco:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(308, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(74, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Cheque No:";
     //
     // txtNumeroCheque
     //
     this.txtNumeroCheque.Location = new System.Drawing.Point(311, 29);
     this.txtNumeroCheque.Name     = "txtNumeroCheque";
     this.txtNumeroCheque.Size     = new System.Drawing.Size(155, 20);
     this.txtNumeroCheque.TabIndex = 2;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.txtObservacion);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size     = new System.Drawing.Size(472, 55);
     this.tabPage4.TabIndex = 1;
     this.tabPage4.Text     = "Observación";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // txtObservacion
     //
     this.txtObservacion.Location  = new System.Drawing.Point(3, 3);
     this.txtObservacion.Multiline = true;
     this.txtObservacion.Name      = "txtObservacion";
     this.txtObservacion.Size      = new System.Drawing.Size(463, 49);
     this.txtObservacion.TabIndex  = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.cbImpresionComprobante);
     this.tabPage5.Controls.Add(this.label25);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name     = "tabPage5";
     this.tabPage5.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size     = new System.Drawing.Size(472, 55);
     this.tabPage5.TabIndex = 2;
     this.tabPage5.Text     = "Configuración";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // cbImpresionComprobante
     //
     this.cbImpresionComprobante.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbImpresionComprobante.FormattingEnabled = true;
     this.cbImpresionComprobante.Location          = new System.Drawing.Point(77, 11);
     this.cbImpresionComprobante.Name     = "cbImpresionComprobante";
     this.cbImpresionComprobante.Size     = new System.Drawing.Size(389, 21);
     this.cbImpresionComprobante.TabIndex = 92;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(6, 19);
     this.label25.Name     = "label25";
     this.label25.Size     = new System.Drawing.Size(65, 13);
     this.label25.TabIndex = 91;
     this.label25.Text     = "Impresión:";
     //
     // btnRemove
     //
     this.btnRemove.Image    = ((System.Drawing.Image)(resources.GetObject("btnRemove.Image")));
     this.btnRemove.Location = new System.Drawing.Point(33, 318);
     this.btnRemove.Name     = "btnRemove";
     this.btnRemove.Size     = new System.Drawing.Size(23, 23);
     this.btnRemove.TabIndex = 87;
     this.btnRemove.Tag      = "Menos para eliminar el producto o servicio";
     this.btnRemove.UseVisualStyleBackColor = true;
     this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
     //
     // btnAdd
     //
     this.btnAdd.Image    = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.Location = new System.Drawing.Point(4, 318);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(23, 23);
     this.btnAdd.TabIndex = 86;
     this.btnAdd.Tag      = "Mas para agregar un nuevo producto o servicio";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // txtRetencion
     //
     this.txtRetencion.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRetencion.Location = new System.Drawing.Point(568, 368);
     this.txtRetencion.Name     = "txtRetencion";
     this.txtRetencion.ReadOnly = true;
     this.txtRetencion.Size     = new System.Drawing.Size(133, 20);
     this.txtRetencion.TabIndex = 1;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(490, 375);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(69, 13);
     this.label5.TabIndex = 88;
     this.label5.Text     = "Retención:";
     //
     // txtDescuento
     //
     this.txtDescuento.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDescuento.Location = new System.Drawing.Point(568, 342);
     this.txtDescuento.Name     = "txtDescuento";
     this.txtDescuento.ReadOnly = true;
     this.txtDescuento.Size     = new System.Drawing.Size(133, 20);
     this.txtDescuento.TabIndex = 0;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(490, 349);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(72, 13);
     this.label6.TabIndex = 90;
     this.label6.Text     = "Descuento:";
     //
     // lbMensaje
     //
     this.lbMensaje.AutoSize = true;
     this.lbMensaje.Location = new System.Drawing.Point(309, 318);
     this.lbMensaje.Name     = "lbMensaje";
     this.lbMensaje.Size     = new System.Drawing.Size(402, 13);
     this.lbMensaje.TabIndex = 92;
     this.lbMensaje.Text     = "(+) y doble click en la casilla documento o doble click en la casilla concepto -e" +
                               "ditar-.";
     //
     // btnCerrar
     //
     this.btnCerrar.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCerrar.Image                   = ((System.Drawing.Image)(resources.GetObject("btnCerrar.Image")));
     this.btnCerrar.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCerrar.Location                = new System.Drawing.Point(609, 427);
     this.btnCerrar.Name                    = "btnCerrar";
     this.btnCerrar.Size                    = new System.Drawing.Size(92, 28);
     this.btnCerrar.TabIndex                = 101;
     this.btnCerrar.Text                    = "&Cerrar";
     this.btnCerrar.UseVisualStyleBackColor = true;
     //
     // btnGuardar
     //
     this.btnGuardar.Image      = ((System.Drawing.Image)(resources.GetObject("btnGuardar.Image")));
     this.btnGuardar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGuardar.Location   = new System.Drawing.Point(516, 427);
     this.btnGuardar.Name       = "btnGuardar";
     this.btnGuardar.Size       = new System.Drawing.Size(92, 28);
     this.btnGuardar.TabIndex   = 100;
     this.btnGuardar.Text       = "&Guardar";
     this.btnGuardar.UseVisualStyleBackColor = true;
     this.btnGuardar.Click += new System.EventHandler(this.btnGuardar_Click);
     //
     // FrmComprobante
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(710, 486);
     this.Controls.Add(this.btnCerrar);
     this.Controls.Add(this.btnGuardar);
     this.Controls.Add(this.lbMensaje);
     this.Controls.Add(this.txtDescuento);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtRetencion);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.btnRemove);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.tabControlDetalle);
     this.Controls.Add(this.gbTercero);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "FrmComprobante";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load           += new System.EventHandler(this.FormComprobante_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.gbTercero.ResumeLayout(false);
     this.gbTercero.PerformLayout();
     this.tabControlDetalle.ResumeLayout(false);
     this.tabPageConcepto.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewDetalles)).EndInit();
     this.tabPageDocumentos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewDocumentos)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.tabControl2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.tabPage5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }