///<summary>Fires after EmailAuto_Click()</summary>
		private void TextBox_LostFocus(object sender,EventArgs e) {
			ODtextBox textBox=((ODtextBox)sender);
			textBox.LostFocus-=TextBox_LostFocus;//Stops EventHandler from firing multiple times.
			if(textBox.Tag==null || this.ActiveControl==(ODGrid)textBox.Tag) {//The contacts grid handles its own events.
				return;//Prevent from selecting email addresses twice.
			}
			CloseAndSetRecommendedContacts((ODGrid)textBox.Tag,false);
		}
		///<summary>Resets tags to null and hides the given grid.
		///If isSelectionMade is true, will set textBox.Text to selected item.</summary>
		private void CloseAndSetRecommendedContacts(ODGrid grid,bool isSelectionMade=true) {
			ODtextBox textBox=((ODtextBox)grid?.Tag??null);
			if(textBox==null) {
				//Done for a bug from TextBox_LostFocus where textBox was null, could be cuase by the form closing and controls being disposed?
				return;
			}
			textBox.Tag=null;
			grid.Hide();
			if(isSelectionMade) {
				int index=textBox.Text.LastIndexOf(',');//-1 if not found.
				if(index==-1) {//The selected email is the first email being placed in our textbox.
					textBox.Text=string.Join(",",grid.SelectedGridRows.Select(x => ((string)x.Tag)).ToList());
				}
				else{//Adding multiple emails.
					textBox.Text=textBox.Text.Remove(index+1,textBox.Text.Length-index-1);//Remove filter characters
					textBox.Text+=string.Join(",",grid.SelectedGridRows.Select(x => ((string)x.Tag)).ToList());//Replace with selected email
				}
			}
			textBox.Focus();//Ensures that auto complete textbox maintains focus after auto complete.
			textBox.SelectionStart=textBox.Text.Length;//Moves cursor to end of the text in the textbox.
		}
Esempio n. 3
0
        ///<summary>Resets tags to null and hides the given grid.
        ///If isSelectionMade is true, will set textBox.Text to selected item.</summary>
        private void CloseAndSetRecommendedContacts(ODGrid grid, bool isSelectionMade = true)
        {
            ODtextBox textBox = (ODtextBox)grid.Tag;

            textBox.Tag = null;
            grid.Hide();
            if (isSelectionMade)
            {
                int index = textBox.Text.LastIndexOf(','); //-1 if not found.
                if (index == -1)                           //The selected email is the first email being placed in our textbox.
                {
                    textBox.Text = string.Join(",", grid.SelectedGridRows.Select(x => ((string)x.Tag)).ToList());
                }
                else                                                                                               //Adding multiple emails.
                {
                    textBox.Text  = textBox.Text.Remove(index + 1, textBox.Text.Length - index - 1);               //Remove filter characters
                    textBox.Text += string.Join(",", grid.SelectedGridRows.Select(x => ((string)x.Tag)).ToList()); //Replace with selected email
                }
            }
            textBox.Focus();                              //Ensures that auto complete textbox maintains focus after auto complete.
            textBox.SelectionStart = textBox.Text.Length; //Moves cursor to end of the text in the textbox.
        }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProcCodeNoteEdit));
			this.listProv = new System.Windows.Forms.ListBox();
			this.label15 = new System.Windows.Forms.Label();
			this.butSlider = new System.Windows.Forms.Button();
			this.label11 = new System.Windows.Forms.Label();
			this.textTime2 = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.textNote = new OpenDental.ODtextBox();
			this.tbTime = new OpenDental.TableTimeBar();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.butDelete = new OpenDental.UI.Button();
			this.SuspendLayout();
			// 
			// listProv
			// 
			this.listProv.FormattingEnabled = true;
			this.listProv.Location = new System.Drawing.Point(92,51);
			this.listProv.Name = "listProv";
			this.listProv.Size = new System.Drawing.Size(176,199);
			this.listProv.TabIndex = 2;
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(89,30);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(100,18);
			this.label15.TabIndex = 47;
			this.label15.Text = "Provider";
			this.label15.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// butSlider
			// 
			this.butSlider.BackColor = System.Drawing.SystemColors.ControlDark;
			this.butSlider.Location = new System.Drawing.Point(14,56);
			this.butSlider.Name = "butSlider";
			this.butSlider.Size = new System.Drawing.Size(12,15);
			this.butSlider.TabIndex = 50;
			this.butSlider.UseVisualStyleBackColor = false;
			this.butSlider.MouseDown += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseDown);
			this.butSlider.MouseMove += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseMove);
			this.butSlider.MouseUp += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseUp);
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(78,621);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(102,16);
			this.label11.TabIndex = 52;
			this.label11.Text = "Minutes";
			// 
			// textTime2
			// 
			this.textTime2.Location = new System.Drawing.Point(12,617);
			this.textTime2.Name = "textTime2";
			this.textTime2.Size = new System.Drawing.Size(60,20);
			this.textTime2.TabIndex = 51;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(4,1);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(53,39);
			this.label6.TabIndex = 48;
			this.label6.Text = "Time Pattern";
			this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(91,260);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(148,14);
			this.label10.TabIndex = 53;
			this.label10.Text = "Note";
			this.label10.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// textNote
			// 
			this.textNote.Location = new System.Drawing.Point(92,278);
			this.textNote.Multiline = true;
			this.textNote.Name = "textNote";
			this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Procedure;
			this.textNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textNote.Size = new System.Drawing.Size(540,219);
			this.textNote.TabIndex = 54;
			// 
			// tbTime
			// 
			this.tbTime.BackColor = System.Drawing.SystemColors.Window;
			this.tbTime.Location = new System.Drawing.Point(12,51);
			this.tbTime.Name = "tbTime";
			this.tbTime.ScrollValue = 150;
			this.tbTime.SelectedIndices = new int[0];
			this.tbTime.SelectionMode = System.Windows.Forms.SelectionMode.None;
			this.tbTime.Size = new System.Drawing.Size(15,561);
			this.tbTime.TabIndex = 49;
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(602,567);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75,26);
			this.butOK.TabIndex = 1;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.Location = new System.Drawing.Point(602,608);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,26);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(207,608);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(82,26);
			this.butDelete.TabIndex = 55;
			this.butDelete.Text = "Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// FormProcCodeNoteEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(689,646);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.textNote);
			this.Controls.Add(this.label10);
			this.Controls.Add(this.butSlider);
			this.Controls.Add(this.tbTime);
			this.Controls.Add(this.label11);
			this.Controls.Add(this.textTime2);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.label15);
			this.Controls.Add(this.listProv);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormProcCodeNoteEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit ProcedureCode Note";
			this.Load += new System.EventHandler(this.FormProcCodeNoteEdit_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRxEdit));
     this.butCancel         = new OpenDental.UI.Button();
     this.butOK             = new OpenDental.UI.Button();
     this.textSig           = new System.Windows.Forms.TextBox();
     this.textDisp          = new System.Windows.Forms.TextBox();
     this.textRefills       = new System.Windows.Forms.TextBox();
     this.textDrug          = new System.Windows.Forms.TextBox();
     this.label6            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.textDate          = new OpenDental.ValidDate();
     this.butPrint          = new OpenDental.UI.Button();
     this.butDelete         = new OpenDental.UI.Button();
     this.label8            = new System.Windows.Forms.Label();
     this.butPick           = new OpenDental.UI.Button();
     this.textPharmacy      = new System.Windows.Forms.TextBox();
     this.checkControlled   = new System.Windows.Forms.CheckBox();
     this.butView           = new OpenDental.UI.Button();
     this.labelView         = new System.Windows.Forms.Label();
     this.label9            = new System.Windows.Forms.Label();
     this.comboSendStatus   = new System.Windows.Forms.ComboBox();
     this.textDosageCode    = new System.Windows.Forms.TextBox();
     this.labelDosageCode   = new System.Windows.Forms.Label();
     this.comboProvNum      = new System.Windows.Forms.ComboBox();
     this.butPickProv       = new OpenDental.UI.Button();
     this.label7            = new System.Windows.Forms.Label();
     this.textNotes         = new OpenDental.ODtextBox();
     this.labelCPOE         = new System.Windows.Forms.Label();
     this.butAudit          = new OpenDental.UI.Button();
     this.label10           = new System.Windows.Forms.Label();
     this.textPharmInfo     = new OpenDental.ODtextBox();
     this.checkProcRequired = new System.Windows.Forms.CheckBox();
     this.comboProcCode     = new System.Windows.Forms.ComboBox();
     this.labelProcedure    = new System.Windows.Forms.Label();
     this.labelDaysOfSupply = new System.Windows.Forms.Label();
     this.textDaysOfSupply  = new OpenDental.ValidNum();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(545, 547);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 16;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(545, 507);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 15;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // textSig
     //
     this.textSig.AcceptsReturn = true;
     this.textSig.Location      = new System.Drawing.Point(138, 158);
     this.textSig.Multiline     = true;
     this.textSig.Name          = "textSig";
     this.textSig.Size          = new System.Drawing.Size(254, 44);
     this.textSig.TabIndex      = 6;
     //
     // textDisp
     //
     this.textDisp.Location = new System.Drawing.Point(138, 203);
     this.textDisp.Name     = "textDisp";
     this.textDisp.Size     = new System.Drawing.Size(114, 20);
     this.textDisp.TabIndex = 7;
     //
     // textRefills
     //
     this.textRefills.Location = new System.Drawing.Point(138, 224);
     this.textRefills.Name     = "textRefills";
     this.textRefills.Size     = new System.Drawing.Size(114, 20);
     this.textRefills.TabIndex = 8;
     //
     // textDrug
     //
     this.textDrug.Location = new System.Drawing.Point(138, 137);
     this.textDrug.Name     = "textDrug";
     this.textDrug.Size     = new System.Drawing.Size(254, 20);
     this.textDrug.TabIndex = 5;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(49, 162);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(89, 14);
     this.label6.TabIndex  = 0;
     this.label6.Text      = "Sig";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(39, 207);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(99, 14);
     this.label5.TabIndex  = 0;
     this.label5.Text      = "Disp";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(39, 228);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(99, 14);
     this.label4.TabIndex  = 0;
     this.label4.Text      = "Refills";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(31, 289);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(107, 36);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "Notes (will not show on printout)";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(45, 139);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(93, 14);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Drug";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(34, 37);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(105, 14);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "Date";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textDate
     //
     this.textDate.Location = new System.Drawing.Point(138, 33);
     this.textDate.Name     = "textDate";
     this.textDate.Size     = new System.Drawing.Size(100, 20);
     this.textDate.TabIndex = 1;
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrint;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(291, 547);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(81, 24);
     this.butPrint.TabIndex     = 18;
     this.butPrint.Text         = "&Print";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location     = new System.Drawing.Point(20, 547);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(88, 24);
     this.butDelete.TabIndex     = 20;
     this.butDelete.Text         = "&Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(39, 458);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(99, 14);
     this.label8.TabIndex  = 0;
     this.label8.Text      = "Pharmacy";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butPick
     //
     this.butPick.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPick.Autosize            = true;
     this.butPick.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPick.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPick.CornerRadius        = 4F;
     this.butPick.Location            = new System.Drawing.Point(338, 453);
     this.butPick.Name     = "butPick";
     this.butPick.Size     = new System.Drawing.Size(58, 23);
     this.butPick.TabIndex = 13;
     this.butPick.Text     = "Pick";
     this.butPick.Click   += new System.EventHandler(this.butPick_Click);
     //
     // textPharmacy
     //
     this.textPharmacy.AcceptsReturn = true;
     this.textPharmacy.Location      = new System.Drawing.Point(138, 455);
     this.textPharmacy.Name          = "textPharmacy";
     this.textPharmacy.ReadOnly      = true;
     this.textPharmacy.Size          = new System.Drawing.Size(198, 20);
     this.textPharmacy.TabIndex      = 0;
     this.textPharmacy.TabStop       = false;
     //
     // checkControlled
     //
     this.checkControlled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkControlled.Location   = new System.Drawing.Point(7, 54);
     this.checkControlled.Name       = "checkControlled";
     this.checkControlled.Size       = new System.Drawing.Size(145, 20);
     this.checkControlled.TabIndex   = 2;
     this.checkControlled.Text       = "Controlled Substance";
     this.checkControlled.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkControlled.UseVisualStyleBackColor = true;
     //
     // butView
     //
     this.butView.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butView.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butView.Autosize     = true;
     this.butView.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butView.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butView.CornerRadius = 4F;
     this.butView.Image        = global::OpenDental.Properties.Resources.printPreview20;
     this.butView.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butView.Location     = new System.Drawing.Point(378, 547);
     this.butView.Name         = "butView";
     this.butView.Size         = new System.Drawing.Size(81, 24);
     this.butView.TabIndex     = 17;
     this.butView.Text         = "View";
     this.butView.Click       += new System.EventHandler(this.butView_Click);
     //
     // labelView
     //
     this.labelView.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.labelView.Location = new System.Drawing.Point(418, 574);
     this.labelView.Name     = "labelView";
     this.labelView.Size     = new System.Drawing.Size(199, 14);
     this.labelView.TabIndex = 0;
     this.labelView.Text     = "This Rx has already been printed.";
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(39, 481);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(99, 14);
     this.label9.TabIndex  = 0;
     this.label9.Text      = "Send Status";
     this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboSendStatus
     //
     this.comboSendStatus.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSendStatus.FormattingEnabled = true;
     this.comboSendStatus.Location          = new System.Drawing.Point(138, 478);
     this.comboSendStatus.Name     = "comboSendStatus";
     this.comboSendStatus.Size     = new System.Drawing.Size(198, 21);
     this.comboSendStatus.TabIndex = 14;
     //
     // textDosageCode
     //
     this.textDosageCode.Location = new System.Drawing.Point(138, 267);
     this.textDosageCode.Name     = "textDosageCode";
     this.textDosageCode.Size     = new System.Drawing.Size(114, 20);
     this.textDosageCode.TabIndex = 11;
     //
     // labelDosageCode
     //
     this.labelDosageCode.Location  = new System.Drawing.Point(44, 271);
     this.labelDosageCode.Name      = "labelDosageCode";
     this.labelDosageCode.Size      = new System.Drawing.Size(94, 14);
     this.labelDosageCode.TabIndex  = 0;
     this.labelDosageCode.Text      = "Dosage Code";
     this.labelDosageCode.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboProvNum
     //
     this.comboProvNum.Location                  = new System.Drawing.Point(138, 245);
     this.comboProvNum.MaxDropDownItems          = 30;
     this.comboProvNum.Name                      = "comboProvNum";
     this.comboProvNum.Size                      = new System.Drawing.Size(254, 21);
     this.comboProvNum.TabIndex                  = 9;
     this.comboProvNum.SelectionChangeCommitted += new System.EventHandler(this.comboProvNum_SelectionChangeCommitted);
     //
     // butPickProv
     //
     this.butPickProv.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPickProv.Autosize            = false;
     this.butPickProv.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPickProv.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPickProv.CornerRadius        = 2F;
     this.butPickProv.Location            = new System.Drawing.Point(394, 245);
     this.butPickProv.Name     = "butPickProv";
     this.butPickProv.Size     = new System.Drawing.Size(18, 21);
     this.butPickProv.TabIndex = 10;
     this.butPickProv.Text     = "...";
     this.butPickProv.Click   += new System.EventHandler(this.butPickProv_Click);
     //
     // label7
     //
     this.label7.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location  = new System.Drawing.Point(37, 249);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(100, 14);
     this.label7.TabIndex  = 0;
     this.label7.Text      = "Provider";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textNotes
     //
     this.textNotes.AcceptsTab         = true;
     this.textNotes.BackColor          = System.Drawing.SystemColors.Window;
     this.textNotes.DetectLinksEnabled = false;
     this.textNotes.DetectUrls         = false;
     this.textNotes.Location           = new System.Drawing.Point(138, 288);
     this.textNotes.Name           = "textNotes";
     this.textNotes.QuickPasteType = OpenDentBusiness.QuickPasteType.Rx;
     this.textNotes.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textNotes.Size           = new System.Drawing.Size(373, 111);
     this.textNotes.TabIndex       = 12;
     this.textNotes.Text           = "";
     //
     // labelCPOE
     //
     this.labelCPOE.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelCPOE.Location  = new System.Drawing.Point(61, 9);
     this.labelCPOE.Name      = "labelCPOE";
     this.labelCPOE.Size      = new System.Drawing.Size(249, 14);
     this.labelCPOE.TabIndex  = 0;
     this.labelCPOE.Text      = "Computerized Provider Order Entry";
     this.labelCPOE.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this.labelCPOE.Visible   = false;
     //
     // butAudit
     //
     this.butAudit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAudit.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAudit.Autosize     = true;
     this.butAudit.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAudit.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAudit.CornerRadius = 4F;
     this.butAudit.Location     = new System.Drawing.Point(162, 547);
     this.butAudit.Name         = "butAudit";
     this.butAudit.Size         = new System.Drawing.Size(92, 24);
     this.butAudit.TabIndex     = 19;
     this.butAudit.Text         = "Audit Trail";
     this.butAudit.Click       += new System.EventHandler(this.butAudit_Click);
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(12, 405);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(125, 14);
     this.label10.TabIndex  = 0;
     this.label10.Text      = "Erx Pharmacy Info";
     this.label10.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textPharmInfo
     //
     this.textPharmInfo.AcceptsTab         = true;
     this.textPharmInfo.BackColor          = System.Drawing.SystemColors.Control;
     this.textPharmInfo.DetectLinksEnabled = false;
     this.textPharmInfo.DetectUrls         = false;
     this.textPharmInfo.Location           = new System.Drawing.Point(138, 400);
     this.textPharmInfo.Name           = "textPharmInfo";
     this.textPharmInfo.QuickPasteType = OpenDentBusiness.QuickPasteType.Rx;
     this.textPharmInfo.ReadOnly       = true;
     this.textPharmInfo.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textPharmInfo.Size           = new System.Drawing.Size(373, 50);
     this.textPharmInfo.TabIndex       = 0;
     this.textPharmInfo.TabStop        = false;
     this.textPharmInfo.Text           = "";
     //
     // checkProcRequired
     //
     this.checkProcRequired.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkProcRequired.Location   = new System.Drawing.Point(7, 74);
     this.checkProcRequired.Name       = "checkProcRequired";
     this.checkProcRequired.Size       = new System.Drawing.Size(145, 20);
     this.checkProcRequired.TabIndex   = 3;
     this.checkProcRequired.Text       = "Is Proc Required";
     this.checkProcRequired.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkProcRequired.UseVisualStyleBackColor = true;
     //
     // comboProcCode
     //
     this.comboProcCode.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboProcCode.FormattingEnabled = true;
     this.comboProcCode.Location          = new System.Drawing.Point(138, 94);
     this.comboProcCode.Name     = "comboProcCode";
     this.comboProcCode.Size     = new System.Drawing.Size(254, 21);
     this.comboProcCode.TabIndex = 4;
     //
     // labelProcedure
     //
     this.labelProcedure.Location  = new System.Drawing.Point(44, 94);
     this.labelProcedure.Name      = "labelProcedure";
     this.labelProcedure.Size      = new System.Drawing.Size(93, 21);
     this.labelProcedure.TabIndex  = 0;
     this.labelProcedure.Text      = "Procedure";
     this.labelProcedure.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelDaysOfSupply
     //
     this.labelDaysOfSupply.Location  = new System.Drawing.Point(14, 116);
     this.labelDaysOfSupply.Name      = "labelDaysOfSupply";
     this.labelDaysOfSupply.Size      = new System.Drawing.Size(123, 20);
     this.labelDaysOfSupply.TabIndex  = 21;
     this.labelDaysOfSupply.Text      = "Days of Supply";
     this.labelDaysOfSupply.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDaysOfSupply
     //
     this.textDaysOfSupply.Location = new System.Drawing.Point(138, 116);
     this.textDaysOfSupply.MaxVal   = 99999999;
     this.textDaysOfSupply.MinVal   = 0;
     this.textDaysOfSupply.Name     = "textDaysOfSupply";
     this.textDaysOfSupply.Size     = new System.Drawing.Size(114, 20);
     this.textDaysOfSupply.TabIndex = 22;
     //
     // FormRxEdit
     //
     this.AcceptButton = this.butOK;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(637, 595);
     this.Controls.Add(this.textDaysOfSupply);
     this.Controls.Add(this.labelDaysOfSupply);
     this.Controls.Add(this.labelProcedure);
     this.Controls.Add(this.comboProcCode);
     this.Controls.Add(this.checkProcRequired);
     this.Controls.Add(this.textPharmInfo);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.butAudit);
     this.Controls.Add(this.labelCPOE);
     this.Controls.Add(this.comboProvNum);
     this.Controls.Add(this.butPickProv);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.textDosageCode);
     this.Controls.Add(this.labelDosageCode);
     this.Controls.Add(this.comboSendStatus);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.labelView);
     this.Controls.Add(this.butView);
     this.Controls.Add(this.checkControlled);
     this.Controls.Add(this.butPick);
     this.Controls.Add(this.textPharmacy);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.textNotes);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.textDate);
     this.Controls.Add(this.textSig);
     this.Controls.Add(this.textDisp);
     this.Controls.Add(this.textRefills);
     this.Controls.Add(this.textDrug);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormRxEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Rx";
     this.Load         += new System.EventHandler(this.FormRxEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTreatPlanEdit));
     this.butCancel            = new OpenDental.UI.Button();
     this.butOK                = new OpenDental.UI.Button();
     this.textDateTP           = new OpenDental.ValidDate();
     this.label1               = new System.Windows.Forms.Label();
     this.textHeading          = new System.Windows.Forms.TextBox();
     this.label2               = new System.Windows.Forms.Label();
     this.label3               = new System.Windows.Forms.Label();
     this.butDelete            = new OpenDental.UI.Button();
     this.butClearResponsParty = new OpenDental.UI.Button();
     this.butPickResponsParty  = new OpenDental.UI.Button();
     this.textResponsParty     = new System.Windows.Forms.TextBox();
     this.labelResponsParty    = new System.Windows.Forms.Label();
     this.butSigClear          = new OpenDental.UI.Button();
     this.textDocument         = new System.Windows.Forms.TextBox();
     this.labelDocument        = new System.Windows.Forms.Label();
     this.butDocumentDetach    = new OpenDental.UI.Button();
     this.butDocumentView      = new OpenDental.UI.Button();
     this.textNote             = new OpenDental.ODtextBox();
     this.textUserEntry        = new System.Windows.Forms.TextBox();
     this.label4               = new System.Windows.Forms.Label();
     this.butPickPresenter     = new OpenDental.UI.Button();
     this.textPresenter        = new System.Windows.Forms.TextBox();
     this.label5               = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Location = new System.Drawing.Point(589, 385);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex = 0;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(589, 347);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex = 1;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // textDateTP
     //
     this.textDateTP.Location = new System.Drawing.Point(138, 22);
     this.textDateTP.Name     = "textDateTP";
     this.textDateTP.Size     = new System.Drawing.Size(85, 20);
     this.textDateTP.TabIndex = 3;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(47, 24);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(89, 16);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Date";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textHeading
     //
     this.textHeading.Location = new System.Drawing.Point(138, 44);
     this.textHeading.Name     = "textHeading";
     this.textHeading.Size     = new System.Drawing.Size(489, 20);
     this.textHeading.TabIndex = 4;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(47, 46);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(89, 16);
     this.label2.TabIndex  = 6;
     this.label2.Text      = "Heading";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(47, 68);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(89, 16);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Note";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butDelete
     //
     this.butDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location   = new System.Drawing.Point(12, 384);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(86, 24);
     this.butDelete.TabIndex   = 8;
     this.butDelete.Text       = "Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // butClearResponsParty
     //
     this.butClearResponsParty.AdjustImageLocation = new System.Drawing.Point(1, 1);
     this.butClearResponsParty.Image    = global::OpenDental.Properties.Resources.deleteX;
     this.butClearResponsParty.Location = new System.Drawing.Point(385, 257);
     this.butClearResponsParty.Name     = "butClearResponsParty";
     this.butClearResponsParty.Size     = new System.Drawing.Size(25, 23);
     this.butClearResponsParty.TabIndex = 71;
     this.butClearResponsParty.TabStop  = false;
     this.butClearResponsParty.Click   += new System.EventHandler(this.butClearResponsParty_Click);
     //
     // butPickResponsParty
     //
     this.butPickResponsParty.Location = new System.Drawing.Point(337, 257);
     this.butPickResponsParty.Name     = "butPickResponsParty";
     this.butPickResponsParty.Size     = new System.Drawing.Size(48, 23);
     this.butPickResponsParty.TabIndex = 70;
     this.butPickResponsParty.TabStop  = false;
     this.butPickResponsParty.Text     = "Pick";
     this.butPickResponsParty.Click   += new System.EventHandler(this.butPickResponsParty_Click);
     //
     // textResponsParty
     //
     this.textResponsParty.AcceptsReturn = true;
     this.textResponsParty.Location      = new System.Drawing.Point(137, 259);
     this.textResponsParty.Name          = "textResponsParty";
     this.textResponsParty.ReadOnly      = true;
     this.textResponsParty.Size          = new System.Drawing.Size(198, 20);
     this.textResponsParty.TabIndex      = 69;
     //
     // labelResponsParty
     //
     this.labelResponsParty.Location  = new System.Drawing.Point(-2, 259);
     this.labelResponsParty.Name      = "labelResponsParty";
     this.labelResponsParty.Size      = new System.Drawing.Size(138, 17);
     this.labelResponsParty.TabIndex  = 68;
     this.labelResponsParty.Text      = "Responsible Party";
     this.labelResponsParty.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butSigClear
     //
     this.butSigClear.AdjustImageLocation = new System.Drawing.Point(1, 1);
     this.butSigClear.Location            = new System.Drawing.Point(275, 385);
     this.butSigClear.Name     = "butSigClear";
     this.butSigClear.Size     = new System.Drawing.Size(110, 23);
     this.butSigClear.TabIndex = 75;
     this.butSigClear.TabStop  = false;
     this.butSigClear.Text     = "Clear Signature";
     this.butSigClear.Click   += new System.EventHandler(this.butSigClear_Click);
     //
     // textDocument
     //
     this.textDocument.AcceptsReturn = true;
     this.textDocument.Location      = new System.Drawing.Point(137, 285);
     this.textDocument.Name          = "textDocument";
     this.textDocument.ReadOnly      = true;
     this.textDocument.Size          = new System.Drawing.Size(198, 20);
     this.textDocument.TabIndex      = 77;
     //
     // labelDocument
     //
     this.labelDocument.Location  = new System.Drawing.Point(-2, 285);
     this.labelDocument.Name      = "labelDocument";
     this.labelDocument.Size      = new System.Drawing.Size(138, 17);
     this.labelDocument.TabIndex  = 76;
     this.labelDocument.Text      = "Saved Document";
     this.labelDocument.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butDocumentDetach
     //
     this.butDocumentDetach.AdjustImageLocation = new System.Drawing.Point(1, 1);
     this.butDocumentDetach.Image    = global::OpenDental.Properties.Resources.deleteX;
     this.butDocumentDetach.Location = new System.Drawing.Point(385, 283);
     this.butDocumentDetach.Name     = "butDocumentDetach";
     this.butDocumentDetach.Size     = new System.Drawing.Size(25, 23);
     this.butDocumentDetach.TabIndex = 78;
     this.butDocumentDetach.TabStop  = false;
     this.butDocumentDetach.Click   += new System.EventHandler(this.butDocumentDetach_Click);
     //
     // butDocumentView
     //
     this.butDocumentView.Location = new System.Drawing.Point(337, 283);
     this.butDocumentView.Name     = "butDocumentView";
     this.butDocumentView.Size     = new System.Drawing.Size(48, 23);
     this.butDocumentView.TabIndex = 79;
     this.butDocumentView.TabStop  = false;
     this.butDocumentView.Text     = "View";
     this.butDocumentView.Click   += new System.EventHandler(this.butDocumentView_Click);
     //
     // textNote
     //
     this.textNote.AcceptsTab         = true;
     this.textNote.BackColor          = System.Drawing.SystemColors.Window;
     this.textNote.DetectLinksEnabled = false;
     this.textNote.DetectUrls         = false;
     this.textNote.Location           = new System.Drawing.Point(138, 66);
     this.textNote.Name                = "textNote";
     this.textNote.QuickPasteType      = OpenDentBusiness.QuickPasteType.TreatPlan;
     this.textNote.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textNote.Size                = new System.Drawing.Size(489, 181);
     this.textNote.SpellCheckIsEnabled = false;
     this.textNote.TabIndex            = 80;
     this.textNote.Text                = "";
     //
     // textUserEntry
     //
     this.textUserEntry.AcceptsReturn = true;
     this.textUserEntry.Location      = new System.Drawing.Point(138, 337);
     this.textUserEntry.Name          = "textUserEntry";
     this.textUserEntry.ReadOnly      = true;
     this.textUserEntry.Size          = new System.Drawing.Size(198, 20);
     this.textUserEntry.TabIndex      = 86;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(-1, 337);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(138, 17);
     this.label4.TabIndex  = 85;
     this.label4.Text      = "User Entry";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butPickPresenter
     //
     this.butPickPresenter.AdjustImageLocation = new System.Drawing.Point(1, 1);
     this.butPickPresenter.Location            = new System.Drawing.Point(337, 310);
     this.butPickPresenter.Name     = "butPickPresenter";
     this.butPickPresenter.Size     = new System.Drawing.Size(23, 21);
     this.butPickPresenter.TabIndex = 84;
     this.butPickPresenter.TabStop  = false;
     this.butPickPresenter.Text     = "...";
     this.butPickPresenter.Click   += new System.EventHandler(this.butPickPresenter_Click);
     //
     // textPresenter
     //
     this.textPresenter.AcceptsReturn = true;
     this.textPresenter.Location      = new System.Drawing.Point(138, 311);
     this.textPresenter.Name          = "textPresenter";
     this.textPresenter.ReadOnly      = true;
     this.textPresenter.Size          = new System.Drawing.Size(198, 20);
     this.textPresenter.TabIndex      = 82;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(-1, 311);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(138, 17);
     this.label5.TabIndex  = 81;
     this.label5.Text      = "Presenter";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormTreatPlanEdit
     //
     this.ClientSize = new System.Drawing.Size(676, 420);
     this.Controls.Add(this.textUserEntry);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.butPickPresenter);
     this.Controls.Add(this.textPresenter);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.butDocumentView);
     this.Controls.Add(this.butDocumentDetach);
     this.Controls.Add(this.textDocument);
     this.Controls.Add(this.labelDocument);
     this.Controls.Add(this.butSigClear);
     this.Controls.Add(this.butClearResponsParty);
     this.Controls.Add(this.butPickResponsParty);
     this.Controls.Add(this.textResponsParty);
     this.Controls.Add(this.labelResponsParty);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.textHeading);
     this.Controls.Add(this.textDateTP);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormTreatPlanEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Treatment Plan";
     this.Load         += new System.EventHandler(this.FormTreatPlanEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPopupEdit));
     this.label1 = new System.Windows.Forms.Label();
     this.checkIsDisabled = new System.Windows.Forms.CheckBox();
     this.comboPopupLevel = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textPatient = new System.Windows.Forms.TextBox();
     this.butDelete = new OpenDental.UI.Button();
     this.butOK = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.textDescription = new OpenDental.ODtextBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(53,93);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(101,19);
     this.label1.TabIndex = 3;
     this.label1.Text = "Popup Message";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkIsDisabled
     //
     this.checkIsDisabled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsDisabled.Location = new System.Drawing.Point(14,70);
     this.checkIsDisabled.Name = "checkIsDisabled";
     this.checkIsDisabled.Size = new System.Drawing.Size(158,18);
     this.checkIsDisabled.TabIndex = 4;
     this.checkIsDisabled.Text = "Permanently Disabled";
     this.checkIsDisabled.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsDisabled.UseVisualStyleBackColor = true;
     //
     // comboPopupLevel
     //
     this.comboPopupLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPopupLevel.FormattingEnabled = true;
     this.comboPopupLevel.Location = new System.Drawing.Point(157,43);
     this.comboPopupLevel.Name = "comboPopupLevel";
     this.comboPopupLevel.Size = new System.Drawing.Size(159,21);
     this.comboPopupLevel.TabIndex = 6;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(33,43);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(121,18);
     this.label2.TabIndex = 7;
     this.label2.Text = "Level";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(11,19);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(142,15);
     this.label3.TabIndex = 8;
     this.label3.Text = "Patient";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textPatient
     //
     this.textPatient.Enabled = false;
     this.textPatient.Location = new System.Drawing.Point(157,17);
     this.textPatient.Name = "textPatient";
     this.textPatient.Size = new System.Drawing.Size(271,20);
     this.textPatient.TabIndex = 9;
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize = true;
     this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location = new System.Drawing.Point(28,205);
     this.butDelete.Name = "butDelete";
     this.butDelete.Size = new System.Drawing.Size(81,26);
     this.butDelete.TabIndex = 5;
     this.butDelete.Text = "Delete";
     this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize = true;
     this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location = new System.Drawing.Point(302,205);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(77,26);
     this.butOK.TabIndex = 1;
     this.butOK.Text = "OK";
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location = new System.Drawing.Point(385,205);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,26);
     this.butCancel.TabIndex = 0;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // textDescription
     //
     this.textDescription.Location = new System.Drawing.Point(157,93);
     this.textDescription.Multiline = true;
     this.textDescription.Name = "textDescription";
     this.textDescription.QuickPasteType = OpenDentBusiness.QuickPasteType.Popup;
     this.textDescription.Size = new System.Drawing.Size(271,91);
     this.textDescription.TabIndex = 2;
     //
     // FormPopupEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.ClientSize = new System.Drawing.Size(492,248);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.textPatient);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.comboPopupLevel);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.checkIsDisabled);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormPopupEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Popup";
     this.Load += new System.EventHandler(this.FormPopupEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 8
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRxDefEdit));
     this.label1             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.label4             = new System.Windows.Forms.Label();
     this.label5             = new System.Windows.Forms.Label();
     this.label6             = new System.Windows.Forms.Label();
     this.textDrug           = new System.Windows.Forms.TextBox();
     this.textNotes          = new System.Windows.Forms.TextBox();
     this.textRefills        = new System.Windows.Forms.TextBox();
     this.textDisp           = new System.Windows.Forms.TextBox();
     this.textSig            = new System.Windows.Forms.TextBox();
     this.butOK              = new OpenDental.UI.Button();
     this.butCancel          = new OpenDental.UI.Button();
     this.label2             = new System.Windows.Forms.Label();
     this.listAlerts         = new System.Windows.Forms.ListBox();
     this.butDelete          = new OpenDental.UI.Button();
     this.label7             = new System.Windows.Forms.Label();
     this.checkControlled    = new System.Windows.Forms.CheckBox();
     this.butAddAllergy      = new OpenDental.UI.Button();
     this.labelRxNorm        = new System.Windows.Forms.Label();
     this.butRxNormSelect    = new OpenDental.UI.Button();
     this.textRxCui          = new System.Windows.Forms.TextBox();
     this.butAddProblem      = new OpenDental.UI.Button();
     this.butAddMedication   = new OpenDental.UI.Button();
     this.checkProcRequired  = new System.Windows.Forms.CheckBox();
     this.textPatInstruction = new OpenDental.ODtextBox();
     this.labelPatInstruct   = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(52, 26);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(82, 14);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Drug";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(20, 197);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(114, 37);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Notes (will not show on printout)";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(46, 154);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(88, 14);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "Refills";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(46, 133);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(88, 14);
     this.label5.TabIndex  = 4;
     this.label5.Text      = "Disp";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(56, 88);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(78, 14);
     this.label6.TabIndex  = 5;
     this.label6.Text      = "Sig";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textDrug
     //
     this.textDrug.Location = new System.Drawing.Point(134, 24);
     this.textDrug.Name     = "textDrug";
     this.textDrug.Size     = new System.Drawing.Size(254, 20);
     this.textDrug.TabIndex = 0;
     //
     // textNotes
     //
     this.textNotes.AcceptsReturn = true;
     this.textNotes.Location      = new System.Drawing.Point(134, 193);
     this.textNotes.Multiline     = true;
     this.textNotes.Name          = "textNotes";
     this.textNotes.Size          = new System.Drawing.Size(386, 92);
     this.textNotes.TabIndex      = 7;
     //
     // textRefills
     //
     this.textRefills.Location = new System.Drawing.Point(134, 150);
     this.textRefills.Name     = "textRefills";
     this.textRefills.Size     = new System.Drawing.Size(114, 20);
     this.textRefills.TabIndex = 5;
     //
     // textDisp
     //
     this.textDisp.Location = new System.Drawing.Point(134, 129);
     this.textDisp.Name     = "textDisp";
     this.textDisp.Size     = new System.Drawing.Size(114, 20);
     this.textDisp.TabIndex = 4;
     //
     // textSig
     //
     this.textSig.AcceptsReturn = true;
     this.textSig.Location      = new System.Drawing.Point(134, 84);
     this.textSig.Multiline     = true;
     this.textSig.Name          = "textSig";
     this.textSig.Size          = new System.Drawing.Size(254, 44);
     this.textSig.TabIndex      = 3;
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(542, 511);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex = 13;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(542, 551);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 14;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(50, 441);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(84, 14);
     this.label2.TabIndex  = 7;
     this.label2.Text      = "Alerts";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // listAlerts
     //
     this.listAlerts.FormattingEnabled = true;
     this.listAlerts.Location          = new System.Drawing.Point(134, 440);
     this.listAlerts.Name         = "listAlerts";
     this.listAlerts.Size         = new System.Drawing.Size(120, 95);
     this.listAlerts.TabIndex     = 9;
     this.listAlerts.DoubleClick += new System.EventHandler(this.listAlerts_DoubleClick);
     //
     // butDelete
     //
     this.butDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location   = new System.Drawing.Point(36, 551);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(84, 24);
     this.butDelete.TabIndex   = 15;
     this.butDelete.Text       = "&Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // label7
     //
     this.label7.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label7.Location  = new System.Drawing.Point(132, 551);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(260, 26);
     this.label7.TabIndex  = 17;
     this.label7.Text      = "This does not damage any patient records";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // checkControlled
     //
     this.checkControlled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkControlled.Location   = new System.Drawing.Point(3, 45);
     this.checkControlled.Name       = "checkControlled";
     this.checkControlled.Size       = new System.Drawing.Size(145, 20);
     this.checkControlled.TabIndex   = 1;
     this.checkControlled.Text       = "Controlled Substance";
     this.checkControlled.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkControlled.UseVisualStyleBackColor = true;
     //
     // butAddAllergy
     //
     this.butAddAllergy.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddAllergy.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddAllergy.Location   = new System.Drawing.Point(260, 511);
     this.butAddAllergy.Name       = "butAddAllergy";
     this.butAddAllergy.Size       = new System.Drawing.Size(117, 24);
     this.butAddAllergy.TabIndex   = 12;
     this.butAddAllergy.Text       = "Add Allergy";
     this.butAddAllergy.Click     += new System.EventHandler(this.butAddAllergy_Click);
     //
     // labelRxNorm
     //
     this.labelRxNorm.Location  = new System.Drawing.Point(46, 174);
     this.labelRxNorm.Name      = "labelRxNorm";
     this.labelRxNorm.Size      = new System.Drawing.Size(88, 14);
     this.labelRxNorm.TabIndex  = 21;
     this.labelRxNorm.Text      = "RxNorm";
     this.labelRxNorm.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butRxNormSelect
     //
     this.butRxNormSelect.Location = new System.Drawing.Point(498, 170);
     this.butRxNormSelect.Name     = "butRxNormSelect";
     this.butRxNormSelect.Size     = new System.Drawing.Size(22, 22);
     this.butRxNormSelect.TabIndex = 260;
     this.butRxNormSelect.Text     = "...";
     this.butRxNormSelect.Click   += new System.EventHandler(this.butRxNormSelect_Click);
     //
     // textRxCui
     //
     this.textRxCui.Location = new System.Drawing.Point(134, 171);
     this.textRxCui.Name     = "textRxCui";
     this.textRxCui.ReadOnly = true;
     this.textRxCui.Size     = new System.Drawing.Size(358, 20);
     this.textRxCui.TabIndex = 6;
     //
     // butAddProblem
     //
     this.butAddProblem.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddProblem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddProblem.Location   = new System.Drawing.Point(260, 440);
     this.butAddProblem.Name       = "butAddProblem";
     this.butAddProblem.Size       = new System.Drawing.Size(117, 24);
     this.butAddProblem.TabIndex   = 10;
     this.butAddProblem.Text       = "Add Problem";
     this.butAddProblem.Click     += new System.EventHandler(this.butAddProblem_Click);
     //
     // butAddMedication
     //
     this.butAddMedication.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddMedication.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddMedication.Location   = new System.Drawing.Point(260, 475);
     this.butAddMedication.Name       = "butAddMedication";
     this.butAddMedication.Size       = new System.Drawing.Size(117, 24);
     this.butAddMedication.TabIndex   = 11;
     this.butAddMedication.Text       = "Add Medication";
     this.butAddMedication.Click     += new System.EventHandler(this.butAddMedication_Click);
     //
     // checkProcRequired
     //
     this.checkProcRequired.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkProcRequired.Enabled    = false;
     this.checkProcRequired.Location   = new System.Drawing.Point(3, 63);
     this.checkProcRequired.Name       = "checkProcRequired";
     this.checkProcRequired.Size       = new System.Drawing.Size(145, 20);
     this.checkProcRequired.TabIndex   = 2;
     this.checkProcRequired.Text       = "Is Proc Required";
     this.checkProcRequired.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkProcRequired.UseVisualStyleBackColor = true;
     //
     // textPatInstruction
     //
     this.textPatInstruction.AcceptsTab         = true;
     this.textPatInstruction.BackColor          = System.Drawing.SystemColors.Window;
     this.textPatInstruction.DetectLinksEnabled = false;
     this.textPatInstruction.DetectUrls         = false;
     this.textPatInstruction.Location           = new System.Drawing.Point(134, 291);
     this.textPatInstruction.Name           = "textPatInstruction";
     this.textPatInstruction.QuickPasteType = OpenDentBusiness.QuickPasteType.Rx;
     this.textPatInstruction.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textPatInstruction.Size           = new System.Drawing.Size(386, 143);
     this.textPatInstruction.TabIndex       = 8;
     this.textPatInstruction.Text           = "";
     //
     // labelPatInstruct
     //
     this.labelPatInstruct.Location  = new System.Drawing.Point(7, 295);
     this.labelPatInstruct.Name      = "labelPatInstruct";
     this.labelPatInstruct.Size      = new System.Drawing.Size(126, 14);
     this.labelPatInstruct.TabIndex  = 264;
     this.labelPatInstruct.Text      = "Patient Instructions";
     this.labelPatInstruct.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // FormRxDefEdit
     //
     this.AcceptButton = this.butOK;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(634, 587);
     this.Controls.Add(this.textPatInstruction);
     this.Controls.Add(this.labelPatInstruct);
     this.Controls.Add(this.checkProcRequired);
     this.Controls.Add(this.butAddMedication);
     this.Controls.Add(this.butAddProblem);
     this.Controls.Add(this.textRxCui);
     this.Controls.Add(this.butRxNormSelect);
     this.Controls.Add(this.labelRxNorm);
     this.Controls.Add(this.butAddAllergy);
     this.Controls.Add(this.checkControlled);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.listAlerts);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.textSig);
     this.Controls.Add(this.textDisp);
     this.Controls.Add(this.textRefills);
     this.Controls.Add(this.textNotes);
     this.Controls.Add(this.textDrug);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(556, 483);
     this.Name          = "FormRxDefEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Rx Template";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormRxDefEdit_FormClosing);
     this.Load         += new System.EventHandler(this.FormRxDefEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 9
0
        ///<summary>Creates a list box under given textBox filled with filtered list of recommended emails based on textBox.Text values.
        ///Key is used to navigate list indirectly.</summary>
        private void RecommendedEmailHelper(ODtextBox textBox, Keys key)
        {
            if (_listHistoricContacts.Count == 0)           //No recommendations to show.
            {
                return;
            }
            //The passed in textBox's tag points to the grid of options.
            //The created grid's tag will point to the textBox.
            if (textBox.Tag == null)
            {
                textBox.Tag = new ODGrid()
                {
                    TranslationName = "",
                };
            }
            ODGrid gridContacts = (ODGrid)textBox.Tag;
            //textBox.Text could contain multiple email addresses.
            //We only want to grab the last few characters as the filter string.
            //[email protected],[email protected],emai => "emai" is the filter.
            //When there is no comma, will just use what is currently in the textbox.
            string emailFilter = textBox.Text.ToLower().Split(',').Last();

            if (emailFilter.Length < 2)          //Require at least 2 characters for now.
            {
                gridContacts.Hide();             //Even if not showing .Hide() won't harm anything.
                textBox.Tag = null;              //Reset tag so that initial logic runs again.
                return;
            }
            #region Key navigation and filtering
            switch (key)
            {
            case Keys.Enter:                    //Select currently highlighted recommendation.
                if (gridContacts.Rows.Count == 0)
                {
                    return;
                }
                CloseAndSetRecommendedContacts(gridContacts, true);
                return;

            case Keys.Up:                    //Navigate the recommendations from the textBox indirectly.
                if (gridContacts.Rows.Count == 0)
                {
                    return;
                }
                //gridContacts is multi select. We are navigating 1 row at a time so clear and set the selected index.
                int index = Math.Max(gridContacts.GetSelectedIndex() - 1, 0);
                gridContacts.SetSelected(false);
                gridContacts.SetSelected(new int[] { index }, true);
                gridContacts.ScrollToIndex(index);
                break;

            case Keys.Down:                    //Navigate the recommendations from the textBox indirectly.
                if (gridContacts.Rows.Count == 0)
                {
                    return;
                }
                //gridContacts is multi select. We are navigating 1 row at a time so clear and set the selected index.
                index = Math.Min(gridContacts.GetSelectedIndex() + 1, gridContacts.Rows.Count - 1);
                gridContacts.SetSelected(false);
                gridContacts.SetSelected(new int[] { index }, true);
                gridContacts.ScrollToIndex(index);
                break;

            default:
                #region Filter recommendations
                List <string> listFilteredContacts = _listHistoricContacts.FindAll(x => x.ToLower().Contains(emailFilter.ToLower()));
                if (listFilteredContacts.Count == 0)
                {
                    gridContacts.Hide();                         //No options to show so make sure and hide the list box
                    textBox.Tag = null;                          //Reset tag.
                    return;
                }
                listFilteredContacts.Sort();
                gridContacts.BeginUpdate();
                if (gridContacts.Columns.Count == 0)                       //First time loading.
                {
                    gridContacts.Columns.Add(new ODGridColumn());
                }
                gridContacts.Rows.Clear();
                foreach (string email in listFilteredContacts)
                {
                    ODGridRow row = new ODGridRow(email);
                    row.Tag = email;
                    gridContacts.Rows.Add(row);
                }
                gridContacts.EndUpdate();
                gridContacts.SetSelected(0, true);                       //Force a selection.
                #endregion
                break;
            }
            #endregion
            if (gridContacts.Tag != null)           //Already initialized
            {
                return;
            }
            //When the text box losses focus, we close/hide the grid.
            //TextBox_LostFocus event fires after the EmailAuto_Click event.
            textBox.Leave += TextBox_LostFocus;
            #region Grid Init
            gridContacts.HeaderHeight  = 0;
            gridContacts.SelectionMode = GridSelectionMode.MultiExtended;
            gridContacts.MouseClick   += EmailAuto_Click;
            gridContacts.Tag           = textBox;
            gridContacts.TitleHeight   = 0;
            gridContacts.Parent        = this;
            gridContacts.BringToFront();
            Point menuPosition = textBox.Location;
            menuPosition.X       += 10;
            menuPosition.Y       += textBox.Height - 1;
            gridContacts.Location = menuPosition;
            gridContacts.Width    = (int)(textBox.Width * 0.75);
            gridContacts.SetSelected(0, true);
            #endregion
            gridContacts.Show();
        }
Esempio n. 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(FormApptEdit));
			this.comboConfirmed = new System.Windows.Forms.ComboBox();
			this.comboUnschedStatus = new System.Windows.Forms.ComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.comboStatus = new System.Windows.Forms.ComboBox();
			this.label5 = new System.Windows.Forms.Label();
			this.labelStatus = new System.Windows.Forms.Label();
			this.label24 = new System.Windows.Forms.Label();
			this.checkIsHygiene = new System.Windows.Forms.CheckBox();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.comboAssistant = new System.Windows.Forms.ComboBox();
			this.comboProvHyg = new System.Windows.Forms.ComboBox();
			this.comboProvNum = new System.Windows.Forms.ComboBox();
			this.label12 = new System.Windows.Forms.Label();
			this.checkIsNewPatient = new System.Windows.Forms.CheckBox();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.labelApptNote = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.textTime = new System.Windows.Forms.TextBox();
			this.butSlider = new System.Windows.Forms.Button();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.checkTimeLocked = new System.Windows.Forms.CheckBox();
			this.contextMenuTimeArrived = new System.Windows.Forms.ContextMenu();
			this.menuItemArrivedNow = new System.Windows.Forms.MenuItem();
			this.contextMenuTimeSeated = new System.Windows.Forms.ContextMenu();
			this.menuItemSeatedNow = new System.Windows.Forms.MenuItem();
			this.contextMenuTimeDismissed = new System.Windows.Forms.ContextMenu();
			this.menuItemDismissedNow = new System.Windows.Forms.MenuItem();
			this.textTimeAskedToArrive = new System.Windows.Forms.TextBox();
			this.label8 = new System.Windows.Forms.Label();
			this.listQuickAdd = new System.Windows.Forms.ListBox();
			this.labelQuickAdd = new System.Windows.Forms.Label();
			this.panel1 = new System.Windows.Forms.Panel();
			this.labelSyndromicObservations = new System.Windows.Forms.Label();
			this.butSyndromicObservations = new OpenDental.UI.Button();
			this.label9 = new System.Windows.Forms.Label();
			this.butColorClear = new OpenDental.UI.Button();
			this.butColor = new System.Windows.Forms.Button();
			this.textRequirement = new System.Windows.Forms.TextBox();
			this.butRequirement = new OpenDental.UI.Button();
			this.butInsPlan2 = new OpenDental.UI.Button();
			this.butInsPlan1 = new OpenDental.UI.Button();
			this.textInsPlan2 = new System.Windows.Forms.TextBox();
			this.labelInsPlan2 = new System.Windows.Forms.Label();
			this.textInsPlan1 = new System.Windows.Forms.TextBox();
			this.labelInsPlan1 = new System.Windows.Forms.Label();
			this.textTimeDismissed = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.textTimeSeated = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.textTimeArrived = new System.Windows.Forms.TextBox();
			this.labelTimeArrived = new System.Windows.Forms.Label();
			this.textLabCase = new System.Windows.Forms.TextBox();
			this.butLab = new OpenDental.UI.Button();
			this.butPickHyg = new OpenDental.UI.Button();
			this.butPickDentist = new OpenDental.UI.Button();
			this.gridFields = new OpenDental.UI.ODGrid();
			this.gridPatient = new OpenDental.UI.ODGrid();
			this.gridComm = new OpenDental.UI.ODGrid();
			this.gridProc = new OpenDental.UI.ODGrid();
			this.butPDF = new OpenDental.UI.Button();
			this.butComplete = new OpenDental.UI.Button();
			this.butDeleteProc = new OpenDental.UI.Button();
			this.butAdd = new OpenDental.UI.Button();
			this.textNote = new OpenDental.ODtextBox();
			this.butAddComm = new OpenDental.UI.Button();
			this.tbTime = new OpenDental.TableTimeBar();
			this.butAudit = new OpenDental.UI.Button();
			this.butTask = new OpenDental.UI.Button();
			this.butDelete = new OpenDental.UI.Button();
			this.butPin = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.butText = new OpenDental.UI.Button();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// comboConfirmed
			// 
			this.comboConfirmed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboConfirmed.Location = new System.Drawing.Point(114, 42);
			this.comboConfirmed.MaxDropDownItems = 30;
			this.comboConfirmed.Name = "comboConfirmed";
			this.comboConfirmed.Size = new System.Drawing.Size(126, 21);
			this.comboConfirmed.TabIndex = 84;
			// 
			// comboUnschedStatus
			// 
			this.comboUnschedStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboUnschedStatus.Location = new System.Drawing.Point(114, 21);
			this.comboUnschedStatus.MaxDropDownItems = 100;
			this.comboUnschedStatus.Name = "comboUnschedStatus";
			this.comboUnschedStatus.Size = new System.Drawing.Size(126, 21);
			this.comboUnschedStatus.TabIndex = 83;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(1, 24);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(111, 15);
			this.label4.TabIndex = 82;
			this.label4.Text = "Unscheduled Status";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboStatus
			// 
			this.comboStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboStatus.Location = new System.Drawing.Point(114, 0);
			this.comboStatus.MaxDropDownItems = 10;
			this.comboStatus.Name = "comboStatus";
			this.comboStatus.Size = new System.Drawing.Size(126, 21);
			this.comboStatus.TabIndex = 81;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(1, 44);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(111, 16);
			this.label5.TabIndex = 80;
			this.label5.Text = "Confirmed";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelStatus
			// 
			this.labelStatus.Location = new System.Drawing.Point(1, 3);
			this.labelStatus.Name = "labelStatus";
			this.labelStatus.Size = new System.Drawing.Size(111, 15);
			this.labelStatus.TabIndex = 79;
			this.labelStatus.Text = "Status";
			this.labelStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label24
			// 
			this.label24.Location = new System.Drawing.Point(128, 148);
			this.label24.Name = "label24";
			this.label24.Size = new System.Drawing.Size(113, 16);
			this.label24.TabIndex = 138;
			this.label24.Text = "(use hyg color)";
			// 
			// checkIsHygiene
			// 
			this.checkIsHygiene.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsHygiene.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsHygiene.Location = new System.Drawing.Point(23, 148);
			this.checkIsHygiene.Name = "checkIsHygiene";
			this.checkIsHygiene.Size = new System.Drawing.Size(104, 16);
			this.checkIsHygiene.TabIndex = 137;
			this.checkIsHygiene.Text = "Is Hygiene";
			this.checkIsHygiene.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(114, 83);
			this.comboClinic.MaxDropDownItems = 100;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(126, 21);
			this.comboClinic.TabIndex = 136;
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(13, 86);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(98, 16);
			this.labelClinic.TabIndex = 135;
			this.labelClinic.Text = "Clinic";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboAssistant
			// 
			this.comboAssistant.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboAssistant.Location = new System.Drawing.Point(114, 164);
			this.comboAssistant.MaxDropDownItems = 30;
			this.comboAssistant.Name = "comboAssistant";
			this.comboAssistant.Size = new System.Drawing.Size(126, 21);
			this.comboAssistant.TabIndex = 133;
			// 
			// comboProvHyg
			// 
			this.comboProvHyg.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProvHyg.Location = new System.Drawing.Point(114, 126);
			this.comboProvHyg.MaxDropDownItems = 30;
			this.comboProvHyg.Name = "comboProvHyg";
			this.comboProvHyg.Size = new System.Drawing.Size(107, 21);
			this.comboProvHyg.TabIndex = 132;
			// 
			// comboProvNum
			// 
			this.comboProvNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProvNum.Location = new System.Drawing.Point(114, 104);
			this.comboProvNum.MaxDropDownItems = 100;
			this.comboProvNum.Name = "comboProvNum";
			this.comboProvNum.Size = new System.Drawing.Size(107, 21);
			this.comboProvNum.TabIndex = 131;
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(13, 167);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(98, 16);
			this.label12.TabIndex = 129;
			this.label12.Text = "Assistant";
			this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsNewPatient
			// 
			this.checkIsNewPatient.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsNewPatient.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsNewPatient.Location = new System.Drawing.Point(17, 64);
			this.checkIsNewPatient.Name = "checkIsNewPatient";
			this.checkIsNewPatient.Size = new System.Drawing.Size(110, 17);
			this.checkIsNewPatient.TabIndex = 128;
			this.checkIsNewPatient.Text = "New Patient";
			this.checkIsNewPatient.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(15, 128);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(98, 16);
			this.label3.TabIndex = 127;
			this.label3.Text = "Hygienist";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(14, 107);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(98, 16);
			this.label2.TabIndex = 126;
			this.label2.Text = "Dentist";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelApptNote
			// 
			this.labelApptNote.Location = new System.Drawing.Point(20, 451);
			this.labelApptNote.Name = "labelApptNote";
			this.labelApptNote.Size = new System.Drawing.Size(197, 16);
			this.labelApptNote.TabIndex = 141;
			this.labelApptNote.Text = "Appointment Note";
			this.labelApptNote.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(-1, 190);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(113, 14);
			this.label6.TabIndex = 65;
			this.label6.Text = "Time Length";
			this.label6.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// textTime
			// 
			this.textTime.Location = new System.Drawing.Point(114, 187);
			this.textTime.Name = "textTime";
			this.textTime.ReadOnly = true;
			this.textTime.Size = new System.Drawing.Size(66, 20);
			this.textTime.TabIndex = 62;
			// 
			// butSlider
			// 
			this.butSlider.BackColor = System.Drawing.SystemColors.ControlDark;
			this.butSlider.Location = new System.Drawing.Point(6, 90);
			this.butSlider.Name = "butSlider";
			this.butSlider.Size = new System.Drawing.Size(12, 15);
			this.butSlider.TabIndex = 60;
			this.butSlider.UseVisualStyleBackColor = false;
			this.butSlider.MouseDown += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseDown);
			this.butSlider.MouseMove += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseMove);
			this.butSlider.MouseUp += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseUp);
			// 
			// checkTimeLocked
			// 
			this.checkTimeLocked.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkTimeLocked.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkTimeLocked.Location = new System.Drawing.Point(-1, 210);
			this.checkTimeLocked.Name = "checkTimeLocked";
			this.checkTimeLocked.Size = new System.Drawing.Size(128, 16);
			this.checkTimeLocked.TabIndex = 148;
			this.checkTimeLocked.Text = "Time Locked";
			this.checkTimeLocked.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkTimeLocked.Click += new System.EventHandler(this.checkTimeLocked_Click);
			// 
			// contextMenuTimeArrived
			// 
			this.contextMenuTimeArrived.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemArrivedNow});
			// 
			// menuItemArrivedNow
			// 
			this.menuItemArrivedNow.Index = 0;
			this.menuItemArrivedNow.Text = "Now";
			this.menuItemArrivedNow.Click += new System.EventHandler(this.menuItemArrivedNow_Click);
			// 
			// contextMenuTimeSeated
			// 
			this.contextMenuTimeSeated.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemSeatedNow});
			// 
			// menuItemSeatedNow
			// 
			this.menuItemSeatedNow.Index = 0;
			this.menuItemSeatedNow.Text = "Now";
			this.menuItemSeatedNow.Click += new System.EventHandler(this.menuItemSeatedNow_Click);
			// 
			// contextMenuTimeDismissed
			// 
			this.contextMenuTimeDismissed.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemDismissedNow});
			// 
			// menuItemDismissedNow
			// 
			this.menuItemDismissedNow.Index = 0;
			this.menuItemDismissedNow.Text = "Now";
			this.menuItemDismissedNow.Click += new System.EventHandler(this.menuItemDismissedNow_Click);
			// 
			// textTimeAskedToArrive
			// 
			this.textTimeAskedToArrive.Location = new System.Drawing.Point(114, 245);
			this.textTimeAskedToArrive.Name = "textTimeAskedToArrive";
			this.textTimeAskedToArrive.Size = new System.Drawing.Size(126, 20);
			this.textTimeAskedToArrive.TabIndex = 146;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(-1, 247);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(113, 18);
			this.label8.TabIndex = 160;
			this.label8.Text = "Time Ask To Arrive";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// listQuickAdd
			// 
			this.listQuickAdd.IntegralHeight = false;
			this.listQuickAdd.Location = new System.Drawing.Point(282, 48);
			this.listQuickAdd.Name = "listQuickAdd";
			this.listQuickAdd.Size = new System.Drawing.Size(150, 355);
			this.listQuickAdd.TabIndex = 163;
			this.listQuickAdd.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listQuickAdd_MouseDown);
			// 
			// labelQuickAdd
			// 
			this.labelQuickAdd.Location = new System.Drawing.Point(282, 7);
			this.labelQuickAdd.Name = "labelQuickAdd";
			this.labelQuickAdd.Size = new System.Drawing.Size(143, 39);
			this.labelQuickAdd.TabIndex = 162;
			this.labelQuickAdd.Text = "Single click on items in the list below to add them to this appointment.";
			// 
			// panel1
			// 
			this.panel1.AutoScroll = true;
			this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel1.Controls.Add(this.labelSyndromicObservations);
			this.panel1.Controls.Add(this.butSyndromicObservations);
			this.panel1.Controls.Add(this.label9);
			this.panel1.Controls.Add(this.butColorClear);
			this.panel1.Controls.Add(this.butColor);
			this.panel1.Controls.Add(this.textRequirement);
			this.panel1.Controls.Add(this.butRequirement);
			this.panel1.Controls.Add(this.butInsPlan2);
			this.panel1.Controls.Add(this.butInsPlan1);
			this.panel1.Controls.Add(this.textInsPlan2);
			this.panel1.Controls.Add(this.labelInsPlan2);
			this.panel1.Controls.Add(this.textInsPlan1);
			this.panel1.Controls.Add(this.labelInsPlan1);
			this.panel1.Controls.Add(this.textTimeDismissed);
			this.panel1.Controls.Add(this.label7);
			this.panel1.Controls.Add(this.textTimeSeated);
			this.panel1.Controls.Add(this.label1);
			this.panel1.Controls.Add(this.textTimeArrived);
			this.panel1.Controls.Add(this.labelTimeArrived);
			this.panel1.Controls.Add(this.textLabCase);
			this.panel1.Controls.Add(this.butLab);
			this.panel1.Controls.Add(this.comboStatus);
			this.panel1.Controls.Add(this.checkIsNewPatient);
			this.panel1.Controls.Add(this.comboConfirmed);
			this.panel1.Controls.Add(this.label24);
			this.panel1.Controls.Add(this.textTimeAskedToArrive);
			this.panel1.Controls.Add(this.comboUnschedStatus);
			this.panel1.Controls.Add(this.label8);
			this.panel1.Controls.Add(this.checkIsHygiene);
			this.panel1.Controls.Add(this.comboClinic);
			this.panel1.Controls.Add(this.labelClinic);
			this.panel1.Controls.Add(this.label4);
			this.panel1.Controls.Add(this.comboAssistant);
			this.panel1.Controls.Add(this.butPickHyg);
			this.panel1.Controls.Add(this.comboProvHyg);
			this.panel1.Controls.Add(this.comboProvNum);
			this.panel1.Controls.Add(this.butPickDentist);
			this.panel1.Controls.Add(this.label5);
			this.panel1.Controls.Add(this.label12);
			this.panel1.Controls.Add(this.label3);
			this.panel1.Controls.Add(this.labelStatus);
			this.panel1.Controls.Add(this.label2);
			this.panel1.Controls.Add(this.textTime);
			this.panel1.Controls.Add(this.label6);
			this.panel1.Controls.Add(this.checkTimeLocked);
			this.panel1.Location = new System.Drawing.Point(21, 2);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(260, 447);
			this.panel1.TabIndex = 164;
			// 
			// labelSyndromicObservations
			// 
			this.labelSyndromicObservations.Location = new System.Drawing.Point(63, 462);
			this.labelSyndromicObservations.Name = "labelSyndromicObservations";
			this.labelSyndromicObservations.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
			this.labelSyndromicObservations.Size = new System.Drawing.Size(174, 16);
			this.labelSyndromicObservations.TabIndex = 181;
			this.labelSyndromicObservations.Text = "(Syndromic Observations)";
			this.labelSyndromicObservations.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.labelSyndromicObservations.Visible = false;
			// 
			// butSyndromicObservations
			// 
			this.butSyndromicObservations.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSyndromicObservations.Autosize = true;
			this.butSyndromicObservations.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSyndromicObservations.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSyndromicObservations.CornerRadius = 4F;
			this.butSyndromicObservations.Location = new System.Drawing.Point(15, 460);
			this.butSyndromicObservations.Name = "butSyndromicObservations";
			this.butSyndromicObservations.Size = new System.Drawing.Size(46, 20);
			this.butSyndromicObservations.TabIndex = 180;
			this.butSyndromicObservations.Text = "Obs";
			this.butSyndromicObservations.Visible = false;
			this.butSyndromicObservations.Click += new System.EventHandler(this.butSyndromicObservations_Click);
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(-1, 228);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(113, 14);
			this.label9.TabIndex = 179;
			this.label9.Text = "Color";
			this.label9.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// butColorClear
			// 
			this.butColorClear.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butColorClear.Autosize = true;
			this.butColorClear.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butColorClear.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butColorClear.CornerRadius = 4F;
			this.butColorClear.Location = new System.Drawing.Point(137, 224);
			this.butColorClear.Name = "butColorClear";
			this.butColorClear.Size = new System.Drawing.Size(39, 20);
			this.butColorClear.TabIndex = 178;
			this.butColorClear.Text = "none";
			this.butColorClear.Click += new System.EventHandler(this.butColorClear_Click);
			// 
			// butColor
			// 
			this.butColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.butColor.Location = new System.Drawing.Point(114, 225);
			this.butColor.Name = "butColor";
			this.butColor.Size = new System.Drawing.Size(21, 19);
			this.butColor.TabIndex = 177;
			this.butColor.Click += new System.EventHandler(this.butColor_Click);
			// 
			// textRequirement
			// 
			this.textRequirement.Location = new System.Drawing.Point(63, 408);
			this.textRequirement.Multiline = true;
			this.textRequirement.Name = "textRequirement";
			this.textRequirement.ReadOnly = true;
			this.textRequirement.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.textRequirement.Size = new System.Drawing.Size(177, 53);
			this.textRequirement.TabIndex = 164;
			// 
			// butRequirement
			// 
			this.butRequirement.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butRequirement.Autosize = true;
			this.butRequirement.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butRequirement.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butRequirement.CornerRadius = 4F;
			this.butRequirement.Location = new System.Drawing.Point(15, 408);
			this.butRequirement.Name = "butRequirement";
			this.butRequirement.Size = new System.Drawing.Size(46, 20);
			this.butRequirement.TabIndex = 163;
			this.butRequirement.Text = "Req";
			this.butRequirement.Click += new System.EventHandler(this.butRequirement_Click);
			// 
			// butInsPlan2
			// 
			this.butInsPlan2.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butInsPlan2.Autosize = false;
			this.butInsPlan2.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butInsPlan2.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butInsPlan2.CornerRadius = 2F;
			this.butInsPlan2.Location = new System.Drawing.Point(222, 387);
			this.butInsPlan2.Name = "butInsPlan2";
			this.butInsPlan2.Size = new System.Drawing.Size(18, 20);
			this.butInsPlan2.TabIndex = 176;
			this.butInsPlan2.Text = "...";
			this.butInsPlan2.Click += new System.EventHandler(this.butInsPlan2_Click);
			// 
			// butInsPlan1
			// 
			this.butInsPlan1.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butInsPlan1.Autosize = false;
			this.butInsPlan1.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butInsPlan1.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butInsPlan1.CornerRadius = 2F;
			this.butInsPlan1.Location = new System.Drawing.Point(222, 366);
			this.butInsPlan1.Name = "butInsPlan1";
			this.butInsPlan1.Size = new System.Drawing.Size(18, 20);
			this.butInsPlan1.TabIndex = 175;
			this.butInsPlan1.Text = "...";
			this.butInsPlan1.Click += new System.EventHandler(this.butInsPlan1_Click);
			// 
			// textInsPlan2
			// 
			this.textInsPlan2.Location = new System.Drawing.Point(63, 387);
			this.textInsPlan2.Name = "textInsPlan2";
			this.textInsPlan2.ReadOnly = true;
			this.textInsPlan2.Size = new System.Drawing.Size(158, 20);
			this.textInsPlan2.TabIndex = 174;
			// 
			// labelInsPlan2
			// 
			this.labelInsPlan2.Location = new System.Drawing.Point(2, 389);
			this.labelInsPlan2.Name = "labelInsPlan2";
			this.labelInsPlan2.Size = new System.Drawing.Size(59, 16);
			this.labelInsPlan2.TabIndex = 173;
			this.labelInsPlan2.Text = "InsPlan 2";
			this.labelInsPlan2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textInsPlan1
			// 
			this.textInsPlan1.Location = new System.Drawing.Point(63, 366);
			this.textInsPlan1.Name = "textInsPlan1";
			this.textInsPlan1.ReadOnly = true;
			this.textInsPlan1.Size = new System.Drawing.Size(158, 20);
			this.textInsPlan1.TabIndex = 172;
			// 
			// labelInsPlan1
			// 
			this.labelInsPlan1.Location = new System.Drawing.Point(2, 368);
			this.labelInsPlan1.Name = "labelInsPlan1";
			this.labelInsPlan1.Size = new System.Drawing.Size(59, 16);
			this.labelInsPlan1.TabIndex = 171;
			this.labelInsPlan1.Text = "InsPlan 1";
			this.labelInsPlan1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textTimeDismissed
			// 
			this.textTimeDismissed.Location = new System.Drawing.Point(114, 305);
			this.textTimeDismissed.Name = "textTimeDismissed";
			this.textTimeDismissed.Size = new System.Drawing.Size(126, 20);
			this.textTimeDismissed.TabIndex = 170;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(-1, 307);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(113, 16);
			this.label7.TabIndex = 169;
			this.label7.Text = "Time Dismissed";
			this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textTimeSeated
			// 
			this.textTimeSeated.Location = new System.Drawing.Point(114, 285);
			this.textTimeSeated.Name = "textTimeSeated";
			this.textTimeSeated.Size = new System.Drawing.Size(126, 20);
			this.textTimeSeated.TabIndex = 168;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(-1, 287);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(113, 16);
			this.label1.TabIndex = 166;
			this.label1.Text = "Time Seated";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textTimeArrived
			// 
			this.textTimeArrived.Location = new System.Drawing.Point(114, 265);
			this.textTimeArrived.Name = "textTimeArrived";
			this.textTimeArrived.Size = new System.Drawing.Size(126, 20);
			this.textTimeArrived.TabIndex = 167;
			// 
			// labelTimeArrived
			// 
			this.labelTimeArrived.Location = new System.Drawing.Point(-1, 267);
			this.labelTimeArrived.Name = "labelTimeArrived";
			this.labelTimeArrived.Size = new System.Drawing.Size(113, 16);
			this.labelTimeArrived.TabIndex = 165;
			this.labelTimeArrived.Text = "Time Arrived";
			this.labelTimeArrived.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textLabCase
			// 
			this.textLabCase.AcceptsReturn = true;
			this.textLabCase.Location = new System.Drawing.Point(63, 330);
			this.textLabCase.Multiline = true;
			this.textLabCase.Name = "textLabCase";
			this.textLabCase.ReadOnly = true;
			this.textLabCase.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.textLabCase.Size = new System.Drawing.Size(177, 34);
			this.textLabCase.TabIndex = 162;
			// 
			// butLab
			// 
			this.butLab.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butLab.Autosize = true;
			this.butLab.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butLab.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butLab.CornerRadius = 4F;
			this.butLab.Location = new System.Drawing.Point(15, 330);
			this.butLab.Name = "butLab";
			this.butLab.Size = new System.Drawing.Size(46, 20);
			this.butLab.TabIndex = 161;
			this.butLab.Text = "Lab";
			this.butLab.Click += new System.EventHandler(this.butLab_Click);
			// 
			// butPickHyg
			// 
			this.butPickHyg.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickHyg.Autosize = false;
			this.butPickHyg.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickHyg.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickHyg.CornerRadius = 2F;
			this.butPickHyg.Location = new System.Drawing.Point(222, 127);
			this.butPickHyg.Name = "butPickHyg";
			this.butPickHyg.Size = new System.Drawing.Size(18, 20);
			this.butPickHyg.TabIndex = 158;
			this.butPickHyg.Text = "...";
			this.butPickHyg.Click += new System.EventHandler(this.butPickHyg_Click);
			// 
			// butPickDentist
			// 
			this.butPickDentist.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickDentist.Autosize = false;
			this.butPickDentist.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickDentist.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickDentist.CornerRadius = 2F;
			this.butPickDentist.Location = new System.Drawing.Point(222, 105);
			this.butPickDentist.Name = "butPickDentist";
			this.butPickDentist.Size = new System.Drawing.Size(18, 20);
			this.butPickDentist.TabIndex = 157;
			this.butPickDentist.Text = "...";
			this.butPickDentist.Click += new System.EventHandler(this.butPickDentist_Click);
			// 
			// gridFields
			// 
			this.gridFields.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridFields.HScrollVisible = false;
			this.gridFields.Location = new System.Drawing.Point(21, 578);
			this.gridFields.Name = "gridFields";
			this.gridFields.ScrollValue = 0;
			this.gridFields.Size = new System.Drawing.Size(259, 118);
			this.gridFields.TabIndex = 159;
			this.gridFields.Title = "Appt Fields";
			this.gridFields.TranslationName = "FormApptEdit";
			this.gridFields.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridFields_CellDoubleClick);
			// 
			// gridPatient
			// 
			this.gridPatient.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridPatient.HScrollVisible = false;
			this.gridPatient.Location = new System.Drawing.Point(282, 405);
			this.gridPatient.Name = "gridPatient";
			this.gridPatient.ScrollValue = 0;
			this.gridPatient.Size = new System.Drawing.Size(258, 291);
			this.gridPatient.TabIndex = 0;
			this.gridPatient.Title = "Patient Info";
			this.gridPatient.TranslationName = "TableApptPtInfo";
			this.gridPatient.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridPatient_MouseMove);
			// 
			// gridComm
			// 
			this.gridComm.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.gridComm.HScrollVisible = false;
			this.gridComm.Location = new System.Drawing.Point(542, 405);
			this.gridComm.Name = "gridComm";
			this.gridComm.ScrollValue = 0;
			this.gridComm.Size = new System.Drawing.Size(335, 291);
			this.gridComm.TabIndex = 1;
			this.gridComm.Title = "Communications Log - Appointment Scheduling";
			this.gridComm.TranslationName = "TableCommLog";
			this.gridComm.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridComm_CellDoubleClick);
			this.gridComm.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridComm_MouseMove);
			// 
			// gridProc
			// 
			this.gridProc.AllowSelection = false;
			this.gridProc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.gridProc.HScrollVisible = false;
			this.gridProc.Location = new System.Drawing.Point(434, 28);
			this.gridProc.Name = "gridProc";
			this.gridProc.ScrollValue = 0;
			this.gridProc.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridProc.Size = new System.Drawing.Size(538, 375);
			this.gridProc.TabIndex = 139;
			this.gridProc.Title = "Procedures on this Appointment";
			this.gridProc.TranslationName = "TableApptProcs";
			this.gridProc.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridProc_CellDoubleClick);
			this.gridProc.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridProc_CellClick);
			// 
			// butPDF
			// 
			this.butPDF.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPDF.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butPDF.Autosize = true;
			this.butPDF.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPDF.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPDF.CornerRadius = 4F;
			this.butPDF.Location = new System.Drawing.Point(880, 484);
			this.butPDF.Name = "butPDF";
			this.butPDF.Size = new System.Drawing.Size(92, 24);
			this.butPDF.TabIndex = 161;
			this.butPDF.Text = "Notes PDF";
			this.butPDF.Visible = false;
			this.butPDF.Click += new System.EventHandler(this.butPDF_Click);
			// 
			// butComplete
			// 
			this.butComplete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butComplete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butComplete.Autosize = true;
			this.butComplete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butComplete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butComplete.CornerRadius = 4F;
			this.butComplete.Location = new System.Drawing.Point(880, 510);
			this.butComplete.Name = "butComplete";
			this.butComplete.Size = new System.Drawing.Size(92, 24);
			this.butComplete.TabIndex = 155;
			this.butComplete.Text = "Finish && Send";
			this.butComplete.Visible = false;
			this.butComplete.Click += new System.EventHandler(this.butComplete_Click);
			// 
			// butDeleteProc
			// 
			this.butDeleteProc.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDeleteProc.Autosize = true;
			this.butDeleteProc.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDeleteProc.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDeleteProc.CornerRadius = 4F;
			this.butDeleteProc.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDeleteProc.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDeleteProc.Location = new System.Drawing.Point(434, 2);
			this.butDeleteProc.Name = "butDeleteProc";
			this.butDeleteProc.Size = new System.Drawing.Size(75, 24);
			this.butDeleteProc.TabIndex = 154;
			this.butDeleteProc.Text = "Delete";
			this.butDeleteProc.Click += new System.EventHandler(this.butDeleteProc_Click);
			// 
			// butAdd
			// 
			this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAdd.Autosize = true;
			this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAdd.CornerRadius = 4F;
			this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
			this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAdd.Location = new System.Drawing.Point(510, 2);
			this.butAdd.Name = "butAdd";
			this.butAdd.Size = new System.Drawing.Size(75, 24);
			this.butAdd.TabIndex = 152;
			this.butAdd.Text = "Add";
			this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
			// 
			// textNote
			// 
			this.textNote.AcceptsTab = true;
			this.textNote.DetectUrls = false;
			this.textNote.Location = new System.Drawing.Point(21, 469);
			this.textNote.Name = "textNote";
			this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Appointment;
			this.textNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textNote.Size = new System.Drawing.Size(260, 106);
			this.textNote.TabIndex = 142;
			this.textNote.Text = "";
			// 
			// butAddComm
			// 
			this.butAddComm.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAddComm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butAddComm.Autosize = true;
			this.butAddComm.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAddComm.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAddComm.CornerRadius = 4F;
			this.butAddComm.Image = global::OpenDental.Properties.Resources.commlog;
			this.butAddComm.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAddComm.Location = new System.Drawing.Point(880, 405);
			this.butAddComm.Name = "butAddComm";
			this.butAddComm.Size = new System.Drawing.Size(92, 24);
			this.butAddComm.TabIndex = 143;
			this.butAddComm.Text = "Co&mm";
			this.butAddComm.Click += new System.EventHandler(this.butAddComm_Click);
			// 
			// tbTime
			// 
			this.tbTime.BackColor = System.Drawing.SystemColors.Window;
			this.tbTime.Location = new System.Drawing.Point(4, 6);
			this.tbTime.Name = "tbTime";
			this.tbTime.ScrollValue = 150;
			this.tbTime.SelectedIndices = new int[0];
			this.tbTime.SelectionMode = System.Windows.Forms.SelectionMode.None;
			this.tbTime.Size = new System.Drawing.Size(15, 561);
			this.tbTime.TabIndex = 59;
			// 
			// butAudit
			// 
			this.butAudit.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAudit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butAudit.Autosize = true;
			this.butAudit.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAudit.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAudit.CornerRadius = 4F;
			this.butAudit.Location = new System.Drawing.Point(880, 536);
			this.butAudit.Name = "butAudit";
			this.butAudit.Size = new System.Drawing.Size(92, 24);
			this.butAudit.TabIndex = 125;
			this.butAudit.Text = "Audit Trail";
			this.butAudit.Click += new System.EventHandler(this.butAudit_Click);
			// 
			// butTask
			// 
			this.butTask.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butTask.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butTask.Autosize = true;
			this.butTask.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTask.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTask.CornerRadius = 4F;
			this.butTask.Location = new System.Drawing.Point(880, 562);
			this.butTask.Name = "butTask";
			this.butTask.Size = new System.Drawing.Size(92, 24);
			this.butTask.TabIndex = 124;
			this.butTask.Text = "To Task List";
			this.butTask.Click += new System.EventHandler(this.butTask_Click);
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(880, 614);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(92, 24);
			this.butDelete.TabIndex = 123;
			this.butDelete.Text = "&Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// butPin
			// 
			this.butPin.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butPin.Autosize = true;
			this.butPin.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPin.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPin.CornerRadius = 4F;
			this.butPin.Image = ((System.Drawing.Image)(resources.GetObject("butPin.Image")));
			this.butPin.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPin.Location = new System.Drawing.Point(880, 588);
			this.butPin.Name = "butPin";
			this.butPin.Size = new System.Drawing.Size(92, 24);
			this.butPin.TabIndex = 122;
			this.butPin.Text = "&Pinboard";
			this.butPin.Click += new System.EventHandler(this.butPin_Click);
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(880, 640);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(92, 24);
			this.butOK.TabIndex = 1;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.Location = new System.Drawing.Point(880, 666);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(92, 24);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butText
			// 
			this.butText.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butText.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butText.Autosize = true;
			this.butText.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butText.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butText.CornerRadius = 4F;
			this.butText.Image = global::OpenDental.Properties.Resources.Text;
			this.butText.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butText.Location = new System.Drawing.Point(880, 431);
			this.butText.Name = "butText";
			this.butText.Size = new System.Drawing.Size(92, 24);
			this.butText.TabIndex = 143;
			this.butText.Text = "Text";
			this.butText.Click += new System.EventHandler(this.butText_Click);
			// 
			// FormApptEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(974, 698);
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.listQuickAdd);
			this.Controls.Add(this.labelQuickAdd);
			this.Controls.Add(this.butPDF);
			this.Controls.Add(this.gridFields);
			this.Controls.Add(this.butComplete);
			this.Controls.Add(this.butDeleteProc);
			this.Controls.Add(this.butAdd);
			this.Controls.Add(this.textNote);
			this.Controls.Add(this.labelApptNote);
			this.Controls.Add(this.butText);
			this.Controls.Add(this.butAddComm);
			this.Controls.Add(this.butSlider);
			this.Controls.Add(this.tbTime);
			this.Controls.Add(this.gridPatient);
			this.Controls.Add(this.gridComm);
			this.Controls.Add(this.gridProc);
			this.Controls.Add(this.butAudit);
			this.Controls.Add(this.butTask);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.butPin);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormApptEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Appointment";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormApptEdit_FormClosing);
			this.Load += new System.EventHandler(this.FormApptEdit_Load);
			this.panel1.ResumeLayout(false);
			this.panel1.PerformLayout();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProviderIncTrans));
     this.label1        = new System.Windows.Forms.Label();
     this.textFamEnd    = new System.Windows.Forms.TextBox();
     this.label10       = new System.Windows.Forms.Label();
     this.textFamStart  = new System.Windows.Forms.TextBox();
     this.label2        = new System.Windows.Forms.Label();
     this.label12       = new System.Windows.Forms.Label();
     this.label6        = new System.Windows.Forms.Label();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.label3        = new System.Windows.Forms.Label();
     this.comboProv     = new System.Windows.Forms.ComboBox();
     this.butAdd        = new OpenDental.UI.Button();
     this.butTransfer   = new OpenDental.UI.Button();
     this.textDateEntry = new OpenDental.ValidDate();
     this.textDate      = new OpenDental.ValidDate();
     this.textNote      = new OpenDental.ODtextBox();
     this.butDeleteAll  = new OpenDental.UI.Button();
     this.gridMain      = new OpenDental.UI.ODGrid();
     this.gridBal       = new OpenDental.UI.ODGrid();
     this.butOK         = new OpenDental.UI.Button();
     this.butCancel     = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(95, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(554, 48);
     this.label1.TabIndex = 2;
     this.label1.Text     = resources.GetString("label1.Text");
     //
     // textFamEnd
     //
     this.textFamEnd.Location  = new System.Drawing.Point(653, 390);
     this.textFamEnd.Name      = "textFamEnd";
     this.textFamEnd.ReadOnly  = true;
     this.textFamEnd.Size      = new System.Drawing.Size(56, 20);
     this.textFamEnd.TabIndex  = 127;
     this.textFamEnd.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(491, 393);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(100, 16);
     this.label10.TabIndex  = 126;
     this.label10.Text      = "Family Total";
     this.label10.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textFamStart
     //
     this.textFamStart.Location  = new System.Drawing.Point(592, 390);
     this.textFamStart.Name      = "textFamStart";
     this.textFamStart.ReadOnly  = true;
     this.textFamStart.Size      = new System.Drawing.Size(61, 20);
     this.textFamStart.TabIndex  = 125;
     this.textFamStart.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(4, 100);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(92, 16);
     this.label2.TabIndex  = 131;
     this.label2.Text      = "Note";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(-4, 62);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(100, 16);
     this.label12.TabIndex  = 136;
     this.label12.Text      = "Entry Date";
     this.label12.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(-4, 83);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(100, 16);
     this.label6.TabIndex  = 134;
     this.label6.Text      = "Payment Date";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboProv);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.butTransfer);
     this.groupBox1.Location = new System.Drawing.Point(464, 94);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(265, 88);
     this.groupBox1.TabIndex = 137;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Transfer";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(4, 18);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(260, 33);
     this.label3.TabIndex = 137;
     this.label3.Text     = "Highlight a row in the grid below.  Select the provider to transfer that amount t" +
                            "o.  Click Transfer.";
     //
     // comboProv
     //
     this.comboProv.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboProv.FormattingEnabled = true;
     this.comboProv.Location          = new System.Drawing.Point(99, 61);
     this.comboProv.MaxDropDownItems  = 40;
     this.comboProv.Name     = "comboProv";
     this.comboProv.Size     = new System.Drawing.Size(160, 21);
     this.comboProv.TabIndex = 138;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Autosize            = true;
     this.butAdd.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius        = 4F;
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(98, 390);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(92, 24);
     this.butAdd.TabIndex   = 138;
     this.butAdd.Text       = "&Add Split";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // butTransfer
     //
     this.butTransfer.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butTransfer.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butTransfer.Autosize     = true;
     this.butTransfer.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butTransfer.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butTransfer.CornerRadius = 4F;
     this.butTransfer.Image        = global::OpenDental.Properties.Resources.Left;
     this.butTransfer.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butTransfer.Location     = new System.Drawing.Point(6, 59);
     this.butTransfer.Name         = "butTransfer";
     this.butTransfer.Size         = new System.Drawing.Size(79, 24);
     this.butTransfer.TabIndex     = 129;
     this.butTransfer.Text         = "Transfer";
     this.butTransfer.Click       += new System.EventHandler(this.butTransfer_Click);
     //
     // textDateEntry
     //
     this.textDateEntry.Location = new System.Drawing.Point(98, 58);
     this.textDateEntry.Name     = "textDateEntry";
     this.textDateEntry.ReadOnly = true;
     this.textDateEntry.Size     = new System.Drawing.Size(100, 20);
     this.textDateEntry.TabIndex = 135;
     //
     // textDate
     //
     this.textDate.Location = new System.Drawing.Point(98, 79);
     this.textDate.Name     = "textDate";
     this.textDate.Size     = new System.Drawing.Size(100, 20);
     this.textDate.TabIndex = 133;
     //
     // textNote
     //
     this.textNote.AcceptsReturn  = true;
     this.textNote.Location       = new System.Drawing.Point(98, 100);
     this.textNote.MaxLength      = 255;
     this.textNote.Multiline      = true;
     this.textNote.Name           = "textNote";
     this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Payment;
     this.textNote.ScrollBars     = System.Windows.Forms.ScrollBars.Vertical;
     this.textNote.Size           = new System.Drawing.Size(290, 80);
     this.textNote.TabIndex       = 132;
     //
     // butDeleteAll
     //
     this.butDeleteAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDeleteAll.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDeleteAll.Autosize     = true;
     this.butDeleteAll.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDeleteAll.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDeleteAll.CornerRadius = 4F;
     this.butDeleteAll.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDeleteAll.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDeleteAll.Location     = new System.Drawing.Point(34, 517);
     this.butDeleteAll.Name         = "butDeleteAll";
     this.butDeleteAll.Size         = new System.Drawing.Size(84, 26);
     this.butDeleteAll.TabIndex     = 130;
     this.butDeleteAll.Text         = "&Delete";
     this.butDeleteAll.Click       += new System.EventHandler(this.butDeleteAll_Click);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(98, 186);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(365, 198);
     this.gridMain.TabIndex         = 129;
     this.gridMain.Title            = "Transfers";
     this.gridMain.TranslationName  = "FormProviderIncTrans";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // gridBal
     //
     this.gridBal.HScrollVisible  = false;
     this.gridBal.Location        = new System.Drawing.Point(469, 186);
     this.gridBal.Name            = "gridBal";
     this.gridBal.ScrollValue     = 0;
     this.gridBal.Size            = new System.Drawing.Size(254, 198);
     this.gridBal.TabIndex        = 124;
     this.gridBal.Title           = "Family Balances";
     this.gridBal.TranslationName = "TablePaymentBal";
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(648, 476);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location     = new System.Drawing.Point(648, 517);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // FormProviderIncTrans
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(769, 564);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.textDateEntry);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.textDate);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butDeleteAll);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.textFamEnd);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.textFamStart);
     this.Controls.Add(this.gridBal);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormProviderIncTrans";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Provider Income Transfer";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormProviderIncTrans_FormClosing);
     this.Load         += new System.EventHandler(this.FormProviderIncTrans_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 12
0
		private void InitializeComponent(){
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormInsPlan));
			this.label5 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.labelGroupNum = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.labelCitySTZip = new System.Windows.Forms.Label();
			this.labelElectronicID = new System.Windows.Forms.Label();
			this.label28 = new System.Windows.Forms.Label();
			this.textCarrier = new System.Windows.Forms.TextBox();
			this.textPhone = new System.Windows.Forms.TextBox();
			this.textGroupName = new System.Windows.Forms.TextBox();
			this.textGroupNum = new System.Windows.Forms.TextBox();
			this.textAddress = new System.Windows.Forms.TextBox();
			this.textCity = new System.Windows.Forms.TextBox();
			this.textState = new System.Windows.Forms.TextBox();
			this.textZip = new System.Windows.Forms.TextBox();
			this.textElectID = new System.Windows.Forms.TextBox();
			this.textEmployer = new System.Windows.Forms.TextBox();
			this.label16 = new System.Windows.Forms.Label();
			this.textAddress2 = new System.Windows.Forms.TextBox();
			this.label21 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.checkAssign = new System.Windows.Forms.CheckBox();
			this.checkRelease = new System.Windows.Forms.CheckBox();
			this.checkNoSendElect = new System.Windows.Forms.CheckBox();
			this.label23 = new System.Windows.Forms.Label();
			this.checkAlternateCode = new System.Windows.Forms.CheckBox();
			this.checkClaimsUseUCR = new System.Windows.Forms.CheckBox();
			this.label14 = new System.Windows.Forms.Label();
			this.textSubscriber = new System.Windows.Forms.TextBox();
			this.groupSubscriber = new System.Windows.Forms.GroupBox();
			this.label25 = new System.Windows.Forms.Label();
			this.textSubscriberID = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.comboLinked = new System.Windows.Forms.ComboBox();
			this.textLinkedNum = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.comboPlanType = new System.Windows.Forms.ComboBox();
			this.checkIsMedical = new System.Windows.Forms.CheckBox();
			this.textDivisionNo = new System.Windows.Forms.TextBox();
			this.labelDivisionDash = new System.Windows.Forms.Label();
			this.comboClaimForm = new System.Windows.Forms.ComboBox();
			this.comboFeeSched = new System.Windows.Forms.ComboBox();
			this.groupCoPay = new System.Windows.Forms.GroupBox();
			this.label12 = new System.Windows.Forms.Label();
			this.comboAllowedFeeSched = new System.Windows.Forms.ComboBox();
			this.label11 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.comboCopay = new System.Windows.Forms.ComboBox();
			this.comboElectIDdescript = new System.Windows.Forms.ComboBox();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.labelDrop = new System.Windows.Forms.Label();
			this.groupRequestBen = new System.Windows.Forms.GroupBox();
			this.labelHistElect = new System.Windows.Forms.Label();
			this.textElectBenLastDate = new System.Windows.Forms.TextBox();
			this.labelTrojanID = new System.Windows.Forms.Label();
			this.textTrojanID = new System.Windows.Forms.TextBox();
			this.label26 = new System.Windows.Forms.Label();
			this.panel1 = new System.Windows.Forms.Panel();
			this.comboRelationship = new System.Windows.Forms.ComboBox();
			this.label31 = new System.Windows.Forms.Label();
			this.checkIsPending = new System.Windows.Forms.CheckBox();
			this.label32 = new System.Windows.Forms.Label();
			this.label33 = new System.Windows.Forms.Label();
			this.listAdj = new System.Windows.Forms.ListBox();
			this.label35 = new System.Windows.Forms.Label();
			this.textPatID = new System.Windows.Forms.TextBox();
			this.labelPatID = new System.Windows.Forms.Label();
			this.panelPat = new System.Windows.Forms.Panel();
			this.textPlanNum = new System.Windows.Forms.TextBox();
			this.label17 = new System.Windows.Forms.Label();
			this.label18 = new System.Windows.Forms.Label();
			this.groupPlan = new System.Windows.Forms.GroupBox();
			this.textBIN = new System.Windows.Forms.TextBox();
			this.labelBIN = new System.Windows.Forms.Label();
			this.groupCarrier = new System.Windows.Forms.GroupBox();
			this.panelPlan = new System.Windows.Forms.Panel();
			this.comboCobRule = new System.Windows.Forms.ComboBox();
			this.label20 = new System.Windows.Forms.Label();
			this.groupCanadian = new System.Windows.Forms.GroupBox();
			this.label19 = new System.Windows.Forms.Label();
			this.textCanadianInstCode = new System.Windows.Forms.TextBox();
			this.label9 = new System.Windows.Forms.Label();
			this.textCanadianDiagCode = new System.Windows.Forms.TextBox();
			this.checkIsPMP = new System.Windows.Forms.CheckBox();
			this.label24 = new System.Windows.Forms.Label();
			this.label22 = new System.Windows.Forms.Label();
			this.textPlanFlag = new System.Windows.Forms.TextBox();
			this.labelDentaide = new System.Windows.Forms.Label();
			this.comboFilingCodeSubtype = new System.Windows.Forms.ComboBox();
			this.label15 = new System.Windows.Forms.Label();
			this.checkIsHidden = new System.Windows.Forms.CheckBox();
			this.checkCodeSubst = new System.Windows.Forms.CheckBox();
			this.checkShowBaseUnits = new System.Windows.Forms.CheckBox();
			this.comboFilingCode = new System.Windows.Forms.ComboBox();
			this.label13 = new System.Windows.Forms.Label();
			this.radioChangeAll = new System.Windows.Forms.RadioButton();
			this.groupChanges = new System.Windows.Forms.GroupBox();
			this.radioCreateNew = new System.Windows.Forms.RadioButton();
			this.gridBenefits = new OpenDental.UI.ODGrid();
			this.textDentaide = new OpenDental.ValidNumber();
			this.butPickCarrier = new OpenDental.UI.Button();
			this.butSearch = new OpenDental.UI.Button();
			this.butAudit = new OpenDental.UI.Button();
			this.butPick = new OpenDental.UI.Button();
			this.textPlanNote = new OpenDental.ODtextBox();
			this.butOK = new OpenDental.UI.Button();
			this.textOrdinal = new OpenDental.ValidNumber();
			this.butAdjAdd = new OpenDental.UI.Button();
			this.butDrop = new OpenDental.UI.Button();
			this.butLabel = new OpenDental.UI.Button();
			this.butDelete = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.butHistoryElect = new OpenDental.UI.Button();
			this.butImportTrojan = new OpenDental.UI.Button();
			this.butGetElectronic = new OpenDental.UI.Button();
			this.butBenefitNotes = new OpenDental.UI.Button();
			this.butIapFind = new OpenDental.UI.Button();
			this.butChange = new OpenDental.UI.Button();
			this.textDateEffect = new OpenDental.ValidDate();
			this.textDateTerm = new OpenDental.ValidDate();
			this.textSubscNote = new OpenDental.ODtextBox();
			this.groupSubscriber.SuspendLayout();
			this.groupCoPay.SuspendLayout();
			this.groupRequestBen.SuspendLayout();
			this.panelPat.SuspendLayout();
			this.groupPlan.SuspendLayout();
			this.groupCarrier.SuspendLayout();
			this.panelPlan.SuspendLayout();
			this.groupCanadian.SuspendLayout();
			this.groupChanges.SuspendLayout();
			this.SuspendLayout();
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(7, 57);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(100, 15);
			this.label5.TabIndex = 5;
			this.label5.Text = "Effective Dates";
			this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(182, 57);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(36, 15);
			this.label6.TabIndex = 6;
			this.label6.Text = "To";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(5, 34);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(95, 15);
			this.label7.TabIndex = 7;
			this.label7.Text = "Phone";
			this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(16, 203);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(95, 15);
			this.label8.TabIndex = 8;
			this.label8.Text = "Group Name";
			this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelGroupNum
			// 
			this.labelGroupNum.Location = new System.Drawing.Point(16, 223);
			this.labelGroupNum.Name = "labelGroupNum";
			this.labelGroupNum.Size = new System.Drawing.Size(95, 15);
			this.labelGroupNum.TabIndex = 9;
			this.labelGroupNum.Text = "Group Num";
			this.labelGroupNum.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(5, 53);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(95, 15);
			this.label10.TabIndex = 10;
			this.label10.Text = "Address";
			this.label10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelCitySTZip
			// 
			this.labelCitySTZip.Location = new System.Drawing.Point(5, 93);
			this.labelCitySTZip.Name = "labelCitySTZip";
			this.labelCitySTZip.Size = new System.Drawing.Size(95, 15);
			this.labelCitySTZip.TabIndex = 11;
			this.labelCitySTZip.Text = "City,ST,Zip";
			this.labelCitySTZip.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelElectronicID
			// 
			this.labelElectronicID.Location = new System.Drawing.Point(4, 113);
			this.labelElectronicID.Name = "labelElectronicID";
			this.labelElectronicID.Size = new System.Drawing.Size(95, 15);
			this.labelElectronicID.TabIndex = 15;
			this.labelElectronicID.Text = "Electronic ID";
			this.labelElectronicID.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label28
			// 
			this.label28.Location = new System.Drawing.Point(2, 78);
			this.label28.Name = "label28";
			this.label28.Size = new System.Drawing.Size(55, 41);
			this.label28.TabIndex = 28;
			this.label28.Text = "Note";
			this.label28.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textCarrier
			// 
			this.textCarrier.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.textCarrier.Location = new System.Drawing.Point(102, 11);
			this.textCarrier.MaxLength = 50;
			this.textCarrier.Name = "textCarrier";
			this.textCarrier.Size = new System.Drawing.Size(273, 21);
			this.textCarrier.TabIndex = 0;
			this.textCarrier.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textCarrier_KeyUp);
			this.textCarrier.Leave += new System.EventHandler(this.textCarrier_Leave);
			// 
			// textPhone
			// 
			this.textPhone.Location = new System.Drawing.Point(102, 31);
			this.textPhone.MaxLength = 30;
			this.textPhone.Name = "textPhone";
			this.textPhone.Size = new System.Drawing.Size(157, 20);
			this.textPhone.TabIndex = 1;
			this.textPhone.TextChanged += new System.EventHandler(this.textPhone_TextChanged);
			// 
			// textGroupName
			// 
			this.textGroupName.Location = new System.Drawing.Point(112, 200);
			this.textGroupName.MaxLength = 50;
			this.textGroupName.Name = "textGroupName";
			this.textGroupName.Size = new System.Drawing.Size(193, 20);
			this.textGroupName.TabIndex = 2;
			// 
			// textGroupNum
			// 
			this.textGroupNum.Location = new System.Drawing.Point(112, 220);
			this.textGroupNum.MaxLength = 20;
			this.textGroupNum.Name = "textGroupNum";
			this.textGroupNum.Size = new System.Drawing.Size(129, 20);
			this.textGroupNum.TabIndex = 3;
			// 
			// textAddress
			// 
			this.textAddress.Location = new System.Drawing.Point(102, 51);
			this.textAddress.MaxLength = 60;
			this.textAddress.Name = "textAddress";
			this.textAddress.Size = new System.Drawing.Size(291, 20);
			this.textAddress.TabIndex = 2;
			this.textAddress.TextChanged += new System.EventHandler(this.textAddress_TextChanged);
			// 
			// textCity
			// 
			this.textCity.Location = new System.Drawing.Point(102, 91);
			this.textCity.MaxLength = 40;
			this.textCity.Name = "textCity";
			this.textCity.Size = new System.Drawing.Size(155, 20);
			this.textCity.TabIndex = 4;
			this.textCity.TextChanged += new System.EventHandler(this.textCity_TextChanged);
			// 
			// textState
			// 
			this.textState.Location = new System.Drawing.Point(257, 91);
			this.textState.MaxLength = 2;
			this.textState.Name = "textState";
			this.textState.Size = new System.Drawing.Size(65, 20);
			this.textState.TabIndex = 5;
			this.textState.TextChanged += new System.EventHandler(this.textState_TextChanged);
			// 
			// textZip
			// 
			this.textZip.Location = new System.Drawing.Point(322, 91);
			this.textZip.MaxLength = 10;
			this.textZip.Name = "textZip";
			this.textZip.Size = new System.Drawing.Size(71, 20);
			this.textZip.TabIndex = 6;
			// 
			// textElectID
			// 
			this.textElectID.Location = new System.Drawing.Point(102, 111);
			this.textElectID.MaxLength = 20;
			this.textElectID.Name = "textElectID";
			this.textElectID.Size = new System.Drawing.Size(54, 20);
			this.textElectID.TabIndex = 7;
			this.textElectID.Validating += new System.ComponentModel.CancelEventHandler(this.textElectID_Validating);
			// 
			// textEmployer
			// 
			this.textEmployer.Location = new System.Drawing.Point(112, 26);
			this.textEmployer.MaxLength = 40;
			this.textEmployer.Name = "textEmployer";
			this.textEmployer.Size = new System.Drawing.Size(291, 20);
			this.textEmployer.TabIndex = 0;
			this.textEmployer.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textEmployer_KeyUp);
			this.textEmployer.Leave += new System.EventHandler(this.textEmployer_Leave);
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(33, 28);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(78, 15);
			this.label16.TabIndex = 73;
			this.label16.Text = "Employer";
			this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textAddress2
			// 
			this.textAddress2.Location = new System.Drawing.Point(102, 71);
			this.textAddress2.MaxLength = 60;
			this.textAddress2.Name = "textAddress2";
			this.textAddress2.Size = new System.Drawing.Size(291, 20);
			this.textAddress2.TabIndex = 3;
			this.textAddress2.TextChanged += new System.EventHandler(this.textAddress2_TextChanged);
			// 
			// label21
			// 
			this.label21.Location = new System.Drawing.Point(5, 74);
			this.label21.Name = "label21";
			this.label21.Size = new System.Drawing.Size(95, 15);
			this.label21.TabIndex = 79;
			this.label21.Text = "Address 2";
			this.label21.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(18, 360);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(96, 16);
			this.label1.TabIndex = 91;
			this.label1.Text = "Fee Schedule";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkAssign
			// 
			this.checkAssign.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkAssign.Location = new System.Drawing.Point(300, 54);
			this.checkAssign.Name = "checkAssign";
			this.checkAssign.Size = new System.Drawing.Size(199, 20);
			this.checkAssign.TabIndex = 4;
			this.checkAssign.Text = "Assignment of Benefits (pay dentist)";
			// 
			// checkRelease
			// 
			this.checkRelease.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkRelease.Location = new System.Drawing.Point(300, 36);
			this.checkRelease.Name = "checkRelease";
			this.checkRelease.Size = new System.Drawing.Size(199, 20);
			this.checkRelease.TabIndex = 3;
			this.checkRelease.Text = "Release of Information";
			// 
			// checkNoSendElect
			// 
			this.checkNoSendElect.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkNoSendElect.Location = new System.Drawing.Point(178, 133);
			this.checkNoSendElect.Name = "checkNoSendElect";
			this.checkNoSendElect.Size = new System.Drawing.Size(213, 17);
			this.checkNoSendElect.TabIndex = 8;
			this.checkNoSendElect.Text = "Don\'t Usually Send Electronically";
			// 
			// label23
			// 
			this.label23.Location = new System.Drawing.Point(17, 384);
			this.label23.Name = "label23";
			this.label23.Size = new System.Drawing.Size(95, 15);
			this.label23.TabIndex = 96;
			this.label23.Text = "Claim Form";
			this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkAlternateCode
			// 
			this.checkAlternateCode.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkAlternateCode.Location = new System.Drawing.Point(115, 293);
			this.checkAlternateCode.Name = "checkAlternateCode";
			this.checkAlternateCode.Size = new System.Drawing.Size(275, 16);
			this.checkAlternateCode.TabIndex = 2;
			this.checkAlternateCode.Text = "Use Alternate Code (for some Medicaid plans)";
			// 
			// checkClaimsUseUCR
			// 
			this.checkClaimsUseUCR.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkClaimsUseUCR.Location = new System.Drawing.Point(115, 325);
			this.checkClaimsUseUCR.Name = "checkClaimsUseUCR";
			this.checkClaimsUseUCR.Size = new System.Drawing.Size(275, 16);
			this.checkClaimsUseUCR.TabIndex = 4;
			this.checkClaimsUseUCR.Text = "Claims show UCR fee, not billed fee";
			// 
			// label14
			// 
			this.label14.Location = new System.Drawing.Point(20, 271);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(95, 16);
			this.label14.TabIndex = 104;
			this.label14.Text = "Plan Type";
			this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textSubscriber
			// 
			this.textSubscriber.Location = new System.Drawing.Point(109, 14);
			this.textSubscriber.Name = "textSubscriber";
			this.textSubscriber.ReadOnly = true;
			this.textSubscriber.Size = new System.Drawing.Size(298, 20);
			this.textSubscriber.TabIndex = 109;
			// 
			// groupSubscriber
			// 
			this.groupSubscriber.Controls.Add(this.butChange);
			this.groupSubscriber.Controls.Add(this.checkAssign);
			this.groupSubscriber.Controls.Add(this.label25);
			this.groupSubscriber.Controls.Add(this.checkRelease);
			this.groupSubscriber.Controls.Add(this.textSubscriber);
			this.groupSubscriber.Controls.Add(this.textSubscriberID);
			this.groupSubscriber.Controls.Add(this.label2);
			this.groupSubscriber.Controls.Add(this.textDateEffect);
			this.groupSubscriber.Controls.Add(this.label5);
			this.groupSubscriber.Controls.Add(this.textDateTerm);
			this.groupSubscriber.Controls.Add(this.label6);
			this.groupSubscriber.Controls.Add(this.textSubscNote);
			this.groupSubscriber.Controls.Add(this.label28);
			this.groupSubscriber.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupSubscriber.Location = new System.Drawing.Point(468, 94);
			this.groupSubscriber.Name = "groupSubscriber";
			this.groupSubscriber.Size = new System.Drawing.Size(502, 176);
			this.groupSubscriber.TabIndex = 2;
			this.groupSubscriber.TabStop = false;
			this.groupSubscriber.Text = "Subscriber Information";
			// 
			// label25
			// 
			this.label25.Location = new System.Drawing.Point(8, 18);
			this.label25.Name = "label25";
			this.label25.Size = new System.Drawing.Size(99, 15);
			this.label25.TabIndex = 115;
			this.label25.Text = "Name";
			this.label25.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textSubscriberID
			// 
			this.textSubscriberID.Location = new System.Drawing.Point(109, 34);
			this.textSubscriberID.MaxLength = 20;
			this.textSubscriberID.Name = "textSubscriberID";
			this.textSubscriberID.Size = new System.Drawing.Size(129, 20);
			this.textSubscriberID.TabIndex = 0;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(8, 36);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(99, 15);
			this.label2.TabIndex = 114;
			this.label2.Text = "Subscriber ID";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// comboLinked
			// 
			this.comboLinked.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboLinked.Location = new System.Drawing.Point(150, 240);
			this.comboLinked.MaxDropDownItems = 30;
			this.comboLinked.Name = "comboLinked";
			this.comboLinked.Size = new System.Drawing.Size(253, 21);
			this.comboLinked.TabIndex = 68;
			// 
			// textLinkedNum
			// 
			this.textLinkedNum.BackColor = System.Drawing.Color.White;
			this.textLinkedNum.Location = new System.Drawing.Point(112, 240);
			this.textLinkedNum.Multiline = true;
			this.textLinkedNum.Name = "textLinkedNum";
			this.textLinkedNum.ReadOnly = true;
			this.textLinkedNum.Size = new System.Drawing.Size(37, 21);
			this.textLinkedNum.TabIndex = 67;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(6, 242);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(104, 17);
			this.label4.TabIndex = 66;
			this.label4.Text = "Other Subscribers";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboPlanType
			// 
			this.comboPlanType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPlanType.Location = new System.Drawing.Point(115, 270);
			this.comboPlanType.Name = "comboPlanType";
			this.comboPlanType.Size = new System.Drawing.Size(212, 21);
			this.comboPlanType.TabIndex = 1;
			this.comboPlanType.SelectionChangeCommitted += new System.EventHandler(this.comboPlanType_SelectionChangeCommitted);
			// 
			// checkIsMedical
			// 
			this.checkIsMedical.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsMedical.Location = new System.Drawing.Point(112, 9);
			this.checkIsMedical.Name = "checkIsMedical";
			this.checkIsMedical.Size = new System.Drawing.Size(202, 17);
			this.checkIsMedical.TabIndex = 113;
			this.checkIsMedical.Text = "Medical Insurance";
			// 
			// textDivisionNo
			// 
			this.textDivisionNo.Location = new System.Drawing.Point(296, 220);
			this.textDivisionNo.MaxLength = 20;
			this.textDivisionNo.Name = "textDivisionNo";
			this.textDivisionNo.Size = new System.Drawing.Size(107, 20);
			this.textDivisionNo.TabIndex = 3;
			// 
			// labelDivisionDash
			// 
			this.labelDivisionDash.Location = new System.Drawing.Point(242, 224);
			this.labelDivisionDash.Name = "labelDivisionDash";
			this.labelDivisionDash.Size = new System.Drawing.Size(53, 16);
			this.labelDivisionDash.TabIndex = 111;
			this.labelDivisionDash.Text = "Div. No.";
			this.labelDivisionDash.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboClaimForm
			// 
			this.comboClaimForm.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClaimForm.Location = new System.Drawing.Point(115, 381);
			this.comboClaimForm.MaxDropDownItems = 30;
			this.comboClaimForm.Name = "comboClaimForm";
			this.comboClaimForm.Size = new System.Drawing.Size(212, 21);
			this.comboClaimForm.TabIndex = 7;
			// 
			// comboFeeSched
			// 
			this.comboFeeSched.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboFeeSched.Location = new System.Drawing.Point(115, 359);
			this.comboFeeSched.MaxDropDownItems = 30;
			this.comboFeeSched.Name = "comboFeeSched";
			this.comboFeeSched.Size = new System.Drawing.Size(212, 21);
			this.comboFeeSched.TabIndex = 6;
			// 
			// groupCoPay
			// 
			this.groupCoPay.Controls.Add(this.label12);
			this.groupCoPay.Controls.Add(this.comboAllowedFeeSched);
			this.groupCoPay.Controls.Add(this.label11);
			this.groupCoPay.Controls.Add(this.label3);
			this.groupCoPay.Controls.Add(this.comboCopay);
			this.groupCoPay.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupCoPay.Location = new System.Drawing.Point(8, 409);
			this.groupCoPay.Name = "groupCoPay";
			this.groupCoPay.Size = new System.Drawing.Size(404, 99);
			this.groupCoPay.TabIndex = 8;
			this.groupCoPay.TabStop = false;
			this.groupCoPay.Text = "Other Fee Schedules";
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(1, 67);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(105, 27);
			this.label12.TabIndex = 111;
			this.label12.Text = "Carrier Allowed Amounts";
			this.label12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// comboAllowedFeeSched
			// 
			this.comboAllowedFeeSched.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboAllowedFeeSched.Location = new System.Drawing.Point(107, 67);
			this.comboAllowedFeeSched.MaxDropDownItems = 30;
			this.comboAllowedFeeSched.Name = "comboAllowedFeeSched";
			this.comboAllowedFeeSched.Size = new System.Drawing.Size(212, 21);
			this.comboAllowedFeeSched.TabIndex = 1;
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(1, 36);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(105, 26);
			this.label11.TabIndex = 109;
			this.label11.Text = "Patient Co-pay Amounts";
			this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(1, 19);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(390, 17);
			this.label3.TabIndex = 106;
			this.label3.Text = "Don\'t use these unless you understand how they will affect your estimates";
			// 
			// comboCopay
			// 
			this.comboCopay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCopay.Location = new System.Drawing.Point(107, 37);
			this.comboCopay.MaxDropDownItems = 30;
			this.comboCopay.Name = "comboCopay";
			this.comboCopay.Size = new System.Drawing.Size(212, 21);
			this.comboCopay.TabIndex = 0;
			// 
			// comboElectIDdescript
			// 
			this.comboElectIDdescript.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboElectIDdescript.Location = new System.Drawing.Point(156, 111);
			this.comboElectIDdescript.MaxDropDownItems = 30;
			this.comboElectIDdescript.Name = "comboElectIDdescript";
			this.comboElectIDdescript.Size = new System.Drawing.Size(237, 21);
			this.comboElectIDdescript.TabIndex = 125;
			this.comboElectIDdescript.SelectedIndexChanged += new System.EventHandler(this.comboElectIDdescript_SelectedIndexChanged);
			// 
			// labelDrop
			// 
			this.labelDrop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.labelDrop.Location = new System.Drawing.Point(101, 72);
			this.labelDrop.Name = "labelDrop";
			this.labelDrop.Size = new System.Drawing.Size(554, 15);
			this.labelDrop.TabIndex = 124;
			this.labelDrop.Text = "Drop a plan when a patient changes carriers or is no longer covered.  This does n" +
    "ot delete the plan.";
			this.labelDrop.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// groupRequestBen
			// 
			this.groupRequestBen.Controls.Add(this.butHistoryElect);
			this.groupRequestBen.Controls.Add(this.labelHistElect);
			this.groupRequestBen.Controls.Add(this.textElectBenLastDate);
			this.groupRequestBen.Controls.Add(this.butImportTrojan);
			this.groupRequestBen.Controls.Add(this.butGetElectronic);
			this.groupRequestBen.Controls.Add(this.butBenefitNotes);
			this.groupRequestBen.Controls.Add(this.butIapFind);
			this.groupRequestBen.Controls.Add(this.labelTrojanID);
			this.groupRequestBen.Controls.Add(this.textTrojanID);
			this.groupRequestBen.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupRequestBen.Location = new System.Drawing.Point(468, 269);
			this.groupRequestBen.Name = "groupRequestBen";
			this.groupRequestBen.Size = new System.Drawing.Size(502, 63);
			this.groupRequestBen.TabIndex = 10;
			this.groupRequestBen.TabStop = false;
			this.groupRequestBen.Text = "Request Electronic Benefits";
			// 
			// labelHistElect
			// 
			this.labelHistElect.Location = new System.Drawing.Point(3, 19);
			this.labelHistElect.Name = "labelHistElect";
			this.labelHistElect.Size = new System.Drawing.Size(84, 15);
			this.labelHistElect.TabIndex = 119;
			this.labelHistElect.Text = "Last Request";
			this.labelHistElect.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textElectBenLastDate
			// 
			this.textElectBenLastDate.Location = new System.Drawing.Point(89, 17);
			this.textElectBenLastDate.MaxLength = 30;
			this.textElectBenLastDate.Name = "textElectBenLastDate";
			this.textElectBenLastDate.Size = new System.Drawing.Size(73, 20);
			this.textElectBenLastDate.TabIndex = 118;
			// 
			// labelTrojanID
			// 
			this.labelTrojanID.Location = new System.Drawing.Point(360, 18);
			this.labelTrojanID.Name = "labelTrojanID";
			this.labelTrojanID.Size = new System.Drawing.Size(23, 15);
			this.labelTrojanID.TabIndex = 9;
			this.labelTrojanID.Text = "ID";
			this.labelTrojanID.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textTrojanID
			// 
			this.textTrojanID.Location = new System.Drawing.Point(387, 14);
			this.textTrojanID.MaxLength = 30;
			this.textTrojanID.Name = "textTrojanID";
			this.textTrojanID.Size = new System.Drawing.Size(109, 20);
			this.textTrojanID.TabIndex = 8;
			// 
			// label26
			// 
			this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label26.Location = new System.Drawing.Point(20, 22);
			this.label26.Name = "label26";
			this.label26.Size = new System.Drawing.Size(148, 14);
			this.label26.TabIndex = 127;
			this.label26.Text = "Relationship to Subscriber";
			this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.SystemColors.ControlText;
			this.panel1.Location = new System.Drawing.Point(0, 90);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(988, 2);
			this.panel1.TabIndex = 128;
			// 
			// comboRelationship
			// 
			this.comboRelationship.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboRelationship.Location = new System.Drawing.Point(170, 18);
			this.comboRelationship.MaxDropDownItems = 30;
			this.comboRelationship.Name = "comboRelationship";
			this.comboRelationship.Size = new System.Drawing.Size(151, 21);
			this.comboRelationship.TabIndex = 0;
			// 
			// label31
			// 
			this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label31.Location = new System.Drawing.Point(396, 23);
			this.label31.Name = "label31";
			this.label31.Size = new System.Drawing.Size(109, 14);
			this.label31.TabIndex = 130;
			this.label31.Text = "Order";
			this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsPending
			// 
			this.checkIsPending.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsPending.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsPending.Location = new System.Drawing.Point(396, 42);
			this.checkIsPending.Name = "checkIsPending";
			this.checkIsPending.Size = new System.Drawing.Size(125, 16);
			this.checkIsPending.TabIndex = 3;
			this.checkIsPending.Text = "Pending";
			this.checkIsPending.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label32
			// 
			this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label32.Location = new System.Drawing.Point(5, 94);
			this.label32.Name = "label32";
			this.label32.Size = new System.Drawing.Size(304, 19);
			this.label32.TabIndex = 134;
			this.label32.Text = "Insurance Plan Information";
			// 
			// label33
			// 
			this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label33.Location = new System.Drawing.Point(5, 0);
			this.label33.Name = "label33";
			this.label33.Size = new System.Drawing.Size(188, 19);
			this.label33.TabIndex = 135;
			this.label33.Text = "Patient Information";
			// 
			// listAdj
			// 
			this.listAdj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.listAdj.Items.AddRange(new object[] {
            "03/05/2001       Ins Used:  $124.00       Ded Used:  $50.00",
            "03/05/2002       Ins Used:  $0.00       Ded Used:  $50.00"});
			this.listAdj.Location = new System.Drawing.Point(613, 28);
			this.listAdj.Name = "listAdj";
			this.listAdj.Size = new System.Drawing.Size(341, 56);
			this.listAdj.TabIndex = 137;
			this.listAdj.DoubleClick += new System.EventHandler(this.listAdj_DoubleClick);
			// 
			// label35
			// 
			this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label35.Location = new System.Drawing.Point(613, 8);
			this.label35.Name = "label35";
			this.label35.Size = new System.Drawing.Size(218, 17);
			this.label35.TabIndex = 138;
			this.label35.Text = "Adjustments to Insurance Benefits: ";
			this.label35.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// textPatID
			// 
			this.textPatID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.textPatID.Location = new System.Drawing.Point(170, 40);
			this.textPatID.MaxLength = 100;
			this.textPatID.Name = "textPatID";
			this.textPatID.Size = new System.Drawing.Size(151, 20);
			this.textPatID.TabIndex = 1;
			// 
			// labelPatID
			// 
			this.labelPatID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelPatID.Location = new System.Drawing.Point(30, 42);
			this.labelPatID.Name = "labelPatID";
			this.labelPatID.Size = new System.Drawing.Size(138, 16);
			this.labelPatID.TabIndex = 143;
			this.labelPatID.Text = "Optional Patient ID";
			this.labelPatID.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// panelPat
			// 
			this.panelPat.Controls.Add(this.comboRelationship);
			this.panelPat.Controls.Add(this.label33);
			this.panelPat.Controls.Add(this.textOrdinal);
			this.panelPat.Controls.Add(this.butAdjAdd);
			this.panelPat.Controls.Add(this.listAdj);
			this.panelPat.Controls.Add(this.label35);
			this.panelPat.Controls.Add(this.textPatID);
			this.panelPat.Controls.Add(this.labelPatID);
			this.panelPat.Controls.Add(this.labelDrop);
			this.panelPat.Controls.Add(this.butDrop);
			this.panelPat.Controls.Add(this.label26);
			this.panelPat.Controls.Add(this.label31);
			this.panelPat.Controls.Add(this.checkIsPending);
			this.panelPat.Location = new System.Drawing.Point(0, 0);
			this.panelPat.Name = "panelPat";
			this.panelPat.Size = new System.Drawing.Size(982, 90);
			this.panelPat.TabIndex = 15;
			// 
			// textPlanNum
			// 
			this.textPlanNum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.textPlanNum.Location = new System.Drawing.Point(310, 676);
			this.textPlanNum.Name = "textPlanNum";
			this.textPlanNum.Size = new System.Drawing.Size(100, 20);
			this.textPlanNum.TabIndex = 148;
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(7, 13);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(94, 15);
			this.label17.TabIndex = 152;
			this.label17.Text = "Carrier";
			this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label18
			// 
			this.label18.Location = new System.Drawing.Point(12, 563);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(272, 15);
			this.label18.TabIndex = 156;
			this.label18.Text = "Plan Note";
			this.label18.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// groupPlan
			// 
			this.groupPlan.Controls.Add(this.textBIN);
			this.groupPlan.Controls.Add(this.labelBIN);
			this.groupPlan.Controls.Add(this.textDivisionNo);
			this.groupPlan.Controls.Add(this.textGroupName);
			this.groupPlan.Controls.Add(this.textEmployer);
			this.groupPlan.Controls.Add(this.groupCarrier);
			this.groupPlan.Controls.Add(this.checkIsMedical);
			this.groupPlan.Controls.Add(this.textGroupNum);
			this.groupPlan.Controls.Add(this.labelGroupNum);
			this.groupPlan.Controls.Add(this.label8);
			this.groupPlan.Controls.Add(this.comboLinked);
			this.groupPlan.Controls.Add(this.textLinkedNum);
			this.groupPlan.Controls.Add(this.label16);
			this.groupPlan.Controls.Add(this.label4);
			this.groupPlan.Controls.Add(this.labelDivisionDash);
			this.groupPlan.Location = new System.Drawing.Point(3, 3);
			this.groupPlan.Name = "groupPlan";
			this.groupPlan.Size = new System.Drawing.Size(425, 264);
			this.groupPlan.TabIndex = 0;
			this.groupPlan.TabStop = false;
			// 
			// textBIN
			// 
			this.textBIN.Location = new System.Drawing.Point(341, 200);
			this.textBIN.MaxLength = 20;
			this.textBIN.Name = "textBIN";
			this.textBIN.Size = new System.Drawing.Size(62, 20);
			this.textBIN.TabIndex = 115;
			// 
			// labelBIN
			// 
			this.labelBIN.Location = new System.Drawing.Point(307, 201);
			this.labelBIN.Name = "labelBIN";
			this.labelBIN.Size = new System.Drawing.Size(32, 16);
			this.labelBIN.TabIndex = 114;
			this.labelBIN.Text = "BIN";
			this.labelBIN.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupCarrier
			// 
			this.groupCarrier.Controls.Add(this.butPickCarrier);
			this.groupCarrier.Controls.Add(this.textPhone);
			this.groupCarrier.Controls.Add(this.textAddress);
			this.groupCarrier.Controls.Add(this.comboElectIDdescript);
			this.groupCarrier.Controls.Add(this.textElectID);
			this.groupCarrier.Controls.Add(this.butSearch);
			this.groupCarrier.Controls.Add(this.textAddress2);
			this.groupCarrier.Controls.Add(this.textZip);
			this.groupCarrier.Controls.Add(this.checkNoSendElect);
			this.groupCarrier.Controls.Add(this.label10);
			this.groupCarrier.Controls.Add(this.textCity);
			this.groupCarrier.Controls.Add(this.label7);
			this.groupCarrier.Controls.Add(this.textCarrier);
			this.groupCarrier.Controls.Add(this.labelElectronicID);
			this.groupCarrier.Controls.Add(this.label21);
			this.groupCarrier.Controls.Add(this.label17);
			this.groupCarrier.Controls.Add(this.textState);
			this.groupCarrier.Controls.Add(this.labelCitySTZip);
			this.groupCarrier.Location = new System.Drawing.Point(10, 44);
			this.groupCarrier.Name = "groupCarrier";
			this.groupCarrier.Size = new System.Drawing.Size(402, 155);
			this.groupCarrier.TabIndex = 1;
			this.groupCarrier.TabStop = false;
			this.groupCarrier.Text = "Carrier";
			// 
			// panelPlan
			// 
			this.panelPlan.AutoScroll = true;
			this.panelPlan.AutoScrollMargin = new System.Drawing.Size(0, 10);
			this.panelPlan.BackColor = System.Drawing.SystemColors.Control;
			this.panelPlan.Controls.Add(this.comboCobRule);
			this.panelPlan.Controls.Add(this.label20);
			this.panelPlan.Controls.Add(this.groupCanadian);
			this.panelPlan.Controls.Add(this.comboFilingCodeSubtype);
			this.panelPlan.Controls.Add(this.label15);
			this.panelPlan.Controls.Add(this.checkIsHidden);
			this.panelPlan.Controls.Add(this.checkCodeSubst);
			this.panelPlan.Controls.Add(this.checkShowBaseUnits);
			this.panelPlan.Controls.Add(this.comboFeeSched);
			this.panelPlan.Controls.Add(this.groupPlan);
			this.panelPlan.Controls.Add(this.comboFilingCode);
			this.panelPlan.Controls.Add(this.groupCoPay);
			this.panelPlan.Controls.Add(this.comboPlanType);
			this.panelPlan.Controls.Add(this.label13);
			this.panelPlan.Controls.Add(this.comboClaimForm);
			this.panelPlan.Controls.Add(this.label1);
			this.panelPlan.Controls.Add(this.label14);
			this.panelPlan.Controls.Add(this.label23);
			this.panelPlan.Controls.Add(this.checkAlternateCode);
			this.panelPlan.Controls.Add(this.checkClaimsUseUCR);
			this.panelPlan.Location = new System.Drawing.Point(8, 116);
			this.panelPlan.Name = "panelPlan";
			this.panelPlan.Size = new System.Drawing.Size(454, 438);
			this.panelPlan.TabIndex = 0;
			// 
			// comboCobRule
			// 
			this.comboCobRule.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCobRule.Location = new System.Drawing.Point(115, 512);
			this.comboCobRule.MaxDropDownItems = 30;
			this.comboCobRule.Name = "comboCobRule";
			this.comboCobRule.Size = new System.Drawing.Size(111, 21);
			this.comboCobRule.TabIndex = 167;
			// 
			// label20
			// 
			this.label20.Location = new System.Drawing.Point(17, 515);
			this.label20.Name = "label20";
			this.label20.Size = new System.Drawing.Size(95, 15);
			this.label20.TabIndex = 168;
			this.label20.Text = "COB Rule";
			this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupCanadian
			// 
			this.groupCanadian.Controls.Add(this.label19);
			this.groupCanadian.Controls.Add(this.textCanadianInstCode);
			this.groupCanadian.Controls.Add(this.label9);
			this.groupCanadian.Controls.Add(this.textCanadianDiagCode);
			this.groupCanadian.Controls.Add(this.checkIsPMP);
			this.groupCanadian.Controls.Add(this.label24);
			this.groupCanadian.Controls.Add(this.label22);
			this.groupCanadian.Controls.Add(this.textPlanFlag);
			this.groupCanadian.Controls.Add(this.textDentaide);
			this.groupCanadian.Controls.Add(this.labelDentaide);
			this.groupCanadian.Location = new System.Drawing.Point(8, 600);
			this.groupCanadian.Name = "groupCanadian";
			this.groupCanadian.Size = new System.Drawing.Size(404, 129);
			this.groupCanadian.TabIndex = 12;
			this.groupCanadian.TabStop = false;
			this.groupCanadian.Text = "Canadian";
			// 
			// label19
			// 
			this.label19.Location = new System.Drawing.Point(37, 106);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(140, 19);
			this.label19.TabIndex = 173;
			this.label19.Text = "Institution Code";
			this.label19.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textCanadianInstCode
			// 
			this.textCanadianInstCode.Location = new System.Drawing.Point(181, 103);
			this.textCanadianInstCode.MaxLength = 20;
			this.textCanadianInstCode.Name = "textCanadianInstCode";
			this.textCanadianInstCode.Size = new System.Drawing.Size(88, 20);
			this.textCanadianInstCode.TabIndex = 172;
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(37, 85);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(140, 19);
			this.label9.TabIndex = 171;
			this.label9.Text = "Diagnostic Code";
			this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textCanadianDiagCode
			// 
			this.textCanadianDiagCode.Location = new System.Drawing.Point(181, 82);
			this.textCanadianDiagCode.MaxLength = 20;
			this.textCanadianDiagCode.Name = "textCanadianDiagCode";
			this.textCanadianDiagCode.Size = new System.Drawing.Size(88, 20);
			this.textCanadianDiagCode.TabIndex = 170;
			// 
			// checkIsPMP
			// 
			this.checkIsPMP.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsPMP.Location = new System.Drawing.Point(18, 62);
			this.checkIsPMP.Name = "checkIsPMP";
			this.checkIsPMP.Size = new System.Drawing.Size(178, 17);
			this.checkIsPMP.TabIndex = 169;
			this.checkIsPMP.Text = "Is Provincial Medical Plan";
			this.checkIsPMP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsPMP.UseVisualStyleBackColor = true;
			// 
			// label24
			// 
			this.label24.Location = new System.Drawing.Point(221, 39);
			this.label24.Name = "label24";
			this.label24.Size = new System.Drawing.Size(140, 19);
			this.label24.TabIndex = 168;
			this.label24.Text = "A, V, N, or blank";
			this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(37, 41);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(140, 19);
			this.label22.TabIndex = 167;
			this.label22.Text = "Plan Flag";
			this.label22.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textPlanFlag
			// 
			this.textPlanFlag.Location = new System.Drawing.Point(181, 38);
			this.textPlanFlag.MaxLength = 20;
			this.textPlanFlag.Name = "textPlanFlag";
			this.textPlanFlag.Size = new System.Drawing.Size(37, 20);
			this.textPlanFlag.TabIndex = 1;
			// 
			// labelDentaide
			// 
			this.labelDentaide.Location = new System.Drawing.Point(37, 20);
			this.labelDentaide.Name = "labelDentaide";
			this.labelDentaide.Size = new System.Drawing.Size(140, 19);
			this.labelDentaide.TabIndex = 160;
			this.labelDentaide.Text = "Dentaide Card Sequence";
			this.labelDentaide.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// comboFilingCodeSubtype
			// 
			this.comboFilingCodeSubtype.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboFilingCodeSubtype.Location = new System.Drawing.Point(115, 556);
			this.comboFilingCodeSubtype.MaxDropDownItems = 30;
			this.comboFilingCodeSubtype.Name = "comboFilingCodeSubtype";
			this.comboFilingCodeSubtype.Size = new System.Drawing.Size(212, 21);
			this.comboFilingCodeSubtype.TabIndex = 10;
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(3, 558);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(110, 19);
			this.label15.TabIndex = 166;
			this.label15.Text = "Filing Code Subtype";
			this.label15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// checkIsHidden
			// 
			this.checkIsHidden.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsHidden.Location = new System.Drawing.Point(115, 341);
			this.checkIsHidden.Name = "checkIsHidden";
			this.checkIsHidden.Size = new System.Drawing.Size(275, 16);
			this.checkIsHidden.TabIndex = 5;
			this.checkIsHidden.Text = "Hidden";
			// 
			// checkCodeSubst
			// 
			this.checkCodeSubst.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkCodeSubst.Location = new System.Drawing.Point(115, 309);
			this.checkCodeSubst.Name = "checkCodeSubst";
			this.checkCodeSubst.Size = new System.Drawing.Size(275, 16);
			this.checkCodeSubst.TabIndex = 3;
			this.checkCodeSubst.Text = "Don\'t Substitute Codes (e.g. posterior composites)";
			// 
			// checkShowBaseUnits
			// 
			this.checkShowBaseUnits.Location = new System.Drawing.Point(115, 582);
			this.checkShowBaseUnits.Name = "checkShowBaseUnits";
			this.checkShowBaseUnits.Size = new System.Drawing.Size(289, 17);
			this.checkShowBaseUnits.TabIndex = 11;
			this.checkShowBaseUnits.Text = "Claims show base units (Does not affect billed amount)";
			this.checkShowBaseUnits.UseVisualStyleBackColor = true;
			// 
			// comboFilingCode
			// 
			this.comboFilingCode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboFilingCode.Location = new System.Drawing.Point(115, 534);
			this.comboFilingCode.MaxDropDownItems = 30;
			this.comboFilingCode.Name = "comboFilingCode";
			this.comboFilingCode.Size = new System.Drawing.Size(212, 21);
			this.comboFilingCode.TabIndex = 9;
			this.comboFilingCode.SelectionChangeCommitted += new System.EventHandler(this.comboFilingCode_SelectionChangeCommitted);
			// 
			// label13
			// 
			this.label13.Location = new System.Drawing.Point(13, 536);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(100, 19);
			this.label13.TabIndex = 158;
			this.label13.Text = "Filing Code";
			this.label13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// radioChangeAll
			// 
			this.radioChangeAll.Location = new System.Drawing.Point(6, 25);
			this.radioChangeAll.Name = "radioChangeAll";
			this.radioChangeAll.Size = new System.Drawing.Size(211, 17);
			this.radioChangeAll.TabIndex = 158;
			this.radioChangeAll.Text = "Change Plan for all subscribers";
			this.radioChangeAll.UseVisualStyleBackColor = true;
			// 
			// groupChanges
			// 
			this.groupChanges.Controls.Add(this.radioCreateNew);
			this.groupChanges.Controls.Add(this.radioChangeAll);
			this.groupChanges.Location = new System.Drawing.Point(467, 653);
			this.groupChanges.Name = "groupChanges";
			this.groupChanges.Size = new System.Drawing.Size(240, 45);
			this.groupChanges.TabIndex = 159;
			this.groupChanges.TabStop = false;
			// 
			// radioCreateNew
			// 
			this.radioCreateNew.Checked = true;
			this.radioCreateNew.Location = new System.Drawing.Point(6, 8);
			this.radioCreateNew.Name = "radioCreateNew";
			this.radioCreateNew.Size = new System.Drawing.Size(211, 17);
			this.radioCreateNew.TabIndex = 159;
			this.radioCreateNew.TabStop = true;
			this.radioCreateNew.Text = "Create new Plan if needed";
			this.radioCreateNew.UseVisualStyleBackColor = true;
			// 
			// gridBenefits
			// 
			this.gridBenefits.HScrollVisible = false;
			this.gridBenefits.Location = new System.Drawing.Point(468, 332);
			this.gridBenefits.Name = "gridBenefits";
			this.gridBenefits.ScrollValue = 0;
			this.gridBenefits.SelectionMode = OpenDental.UI.GridSelectionMode.None;
			this.gridBenefits.Size = new System.Drawing.Size(502, 326);
			this.gridBenefits.TabIndex = 146;
			this.gridBenefits.Title = "Benefit Information";
			this.gridBenefits.TranslationName = "TableBenefits";
			this.gridBenefits.DoubleClick += new System.EventHandler(this.gridBenefits_DoubleClick);
			// 
			// textDentaide
			// 
			this.textDentaide.Location = new System.Drawing.Point(181, 17);
			this.textDentaide.MaxVal = 255;
			this.textDentaide.MinVal = 0;
			this.textDentaide.Name = "textDentaide";
			this.textDentaide.Size = new System.Drawing.Size(37, 20);
			this.textDentaide.TabIndex = 0;
			// 
			// butPickCarrier
			// 
			this.butPickCarrier.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickCarrier.Autosize = true;
			this.butPickCarrier.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickCarrier.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickCarrier.CornerRadius = 3F;
			this.butPickCarrier.Location = new System.Drawing.Point(376, 11);
			this.butPickCarrier.Name = "butPickCarrier";
			this.butPickCarrier.Size = new System.Drawing.Size(19, 20);
			this.butPickCarrier.TabIndex = 153;
			this.butPickCarrier.Text = "...";
			this.butPickCarrier.Click += new System.EventHandler(this.butPickCarrier_Click);
			// 
			// butSearch
			// 
			this.butSearch.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSearch.Autosize = true;
			this.butSearch.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSearch.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSearch.CornerRadius = 4F;
			this.butSearch.Location = new System.Drawing.Point(86, 132);
			this.butSearch.Name = "butSearch";
			this.butSearch.Size = new System.Drawing.Size(84, 20);
			this.butSearch.TabIndex = 124;
			this.butSearch.Text = "Search IDs";
			this.butSearch.Click += new System.EventHandler(this.butSearch_Click);
			// 
			// butAudit
			// 
			this.butAudit.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAudit.Autosize = true;
			this.butAudit.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAudit.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAudit.CornerRadius = 4F;
			this.butAudit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAudit.Location = new System.Drawing.Point(229, 93);
			this.butAudit.Name = "butAudit";
			this.butAudit.Size = new System.Drawing.Size(69, 23);
			this.butAudit.TabIndex = 153;
			this.butAudit.Text = "Audit Trail";
			this.butAudit.Click += new System.EventHandler(this.butAudit_Click);
			// 
			// butPick
			// 
			this.butPick.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPick.Autosize = true;
			this.butPick.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPick.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPick.CornerRadius = 4F;
			this.butPick.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPick.Location = new System.Drawing.Point(326, 93);
			this.butPick.Name = "butPick";
			this.butPick.Size = new System.Drawing.Size(90, 23);
			this.butPick.TabIndex = 153;
			this.butPick.Text = "Pick From List";
			this.butPick.Click += new System.EventHandler(this.butPick_Click);
			// 
			// textPlanNote
			// 
			this.textPlanNote.AcceptsTab = true;
			this.textPlanNote.DetectUrls = false;
			this.textPlanNote.Location = new System.Drawing.Point(14, 581);
			this.textPlanNote.Name = "textPlanNote";
			this.textPlanNote.QuickPasteType = OpenDentBusiness.QuickPasteType.InsPlan;
			this.textPlanNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textPlanNote.Size = new System.Drawing.Size(395, 85);
			this.textPlanNote.TabIndex = 1;
			this.textPlanNote.Text = "1 - InsPlan\n2\n3 lines will show here in 46 vert.\n4 lines will show here in 59 ver" +
    "t.\n5 lines in 72 vert\n6 in 85";
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(810, 673);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75, 24);
			this.butOK.TabIndex = 3;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// textOrdinal
			// 
			this.textOrdinal.Location = new System.Drawing.Point(508, 22);
			this.textOrdinal.MaxVal = 10;
			this.textOrdinal.MinVal = 1;
			this.textOrdinal.Name = "textOrdinal";
			this.textOrdinal.Size = new System.Drawing.Size(45, 20);
			this.textOrdinal.TabIndex = 2;
			// 
			// butAdjAdd
			// 
			this.butAdjAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAdjAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butAdjAdd.Autosize = true;
			this.butAdjAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAdjAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAdjAdd.CornerRadius = 4F;
			this.butAdjAdd.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.butAdjAdd.Location = new System.Drawing.Point(895, 6);
			this.butAdjAdd.Name = "butAdjAdd";
			this.butAdjAdd.Size = new System.Drawing.Size(59, 21);
			this.butAdjAdd.TabIndex = 4;
			this.butAdjAdd.Text = "Add";
			this.butAdjAdd.Click += new System.EventHandler(this.butAdjAdd_Click);
			// 
			// butDrop
			// 
			this.butDrop.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDrop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butDrop.Autosize = true;
			this.butDrop.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDrop.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDrop.CornerRadius = 4F;
			this.butDrop.Location = new System.Drawing.Point(7, 67);
			this.butDrop.Name = "butDrop";
			this.butDrop.Size = new System.Drawing.Size(72, 21);
			this.butDrop.TabIndex = 5;
			this.butDrop.Text = "Drop";
			this.butDrop.Click += new System.EventHandler(this.butDrop_Click);
			// 
			// butLabel
			// 
			this.butLabel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butLabel.Autosize = true;
			this.butLabel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butLabel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butLabel.CornerRadius = 4F;
			this.butLabel.Image = global::OpenDental.Properties.Resources.butLabel;
			this.butLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butLabel.Location = new System.Drawing.Point(201, 673);
			this.butLabel.Name = "butLabel";
			this.butLabel.Size = new System.Drawing.Size(81, 24);
			this.butLabel.TabIndex = 125;
			this.butLabel.Text = "Label";
			this.butLabel.Click += new System.EventHandler(this.butLabel_Click);
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(13, 673);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(81, 24);
			this.butDelete.TabIndex = 112;
			this.butDelete.Text = "&Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.butCancel.Location = new System.Drawing.Point(896, 673);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75, 24);
			this.butCancel.TabIndex = 14;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butHistoryElect
			// 
			this.butHistoryElect.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butHistoryElect.Autosize = true;
			this.butHistoryElect.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butHistoryElect.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butHistoryElect.CornerRadius = 4F;
			this.butHistoryElect.Location = new System.Drawing.Point(89, 38);
			this.butHistoryElect.Name = "butHistoryElect";
			this.butHistoryElect.Size = new System.Drawing.Size(73, 21);
			this.butHistoryElect.TabIndex = 120;
			this.butHistoryElect.Text = "History";
			this.toolTip1.SetToolTip(this.butHistoryElect, "Edit all the similar plans at once");
			this.butHistoryElect.Click += new System.EventHandler(this.butHistoryElect_Click);
			// 
			// butImportTrojan
			// 
			this.butImportTrojan.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butImportTrojan.Autosize = true;
			this.butImportTrojan.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butImportTrojan.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butImportTrojan.CornerRadius = 4F;
			this.butImportTrojan.Location = new System.Drawing.Point(294, 15);
			this.butImportTrojan.Name = "butImportTrojan";
			this.butImportTrojan.Size = new System.Drawing.Size(69, 21);
			this.butImportTrojan.TabIndex = 0;
			this.butImportTrojan.Text = "Trojan";
			this.toolTip1.SetToolTip(this.butImportTrojan, "Edit all the similar plans at once");
			this.butImportTrojan.Click += new System.EventHandler(this.butImportTrojan_Click);
			// 
			// butGetElectronic
			// 
			this.butGetElectronic.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butGetElectronic.Autosize = true;
			this.butGetElectronic.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butGetElectronic.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butGetElectronic.CornerRadius = 4F;
			this.butGetElectronic.Location = new System.Drawing.Point(11, 38);
			this.butGetElectronic.Name = "butGetElectronic";
			this.butGetElectronic.Size = new System.Drawing.Size(73, 21);
			this.butGetElectronic.TabIndex = 116;
			this.butGetElectronic.Text = "Request";
			this.toolTip1.SetToolTip(this.butGetElectronic, "Edit all the similar plans at once");
			this.butGetElectronic.Click += new System.EventHandler(this.butGetElectronic_Click);
			// 
			// butBenefitNotes
			// 
			this.butBenefitNotes.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butBenefitNotes.Autosize = true;
			this.butBenefitNotes.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butBenefitNotes.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butBenefitNotes.CornerRadius = 4F;
			this.butBenefitNotes.Location = new System.Drawing.Point(387, 38);
			this.butBenefitNotes.Name = "butBenefitNotes";
			this.butBenefitNotes.Size = new System.Drawing.Size(98, 21);
			this.butBenefitNotes.TabIndex = 2;
			this.butBenefitNotes.Text = "Trojan/IAP Note";
			this.toolTip1.SetToolTip(this.butBenefitNotes, "Edit all the similar plans at once");
			this.butBenefitNotes.Click += new System.EventHandler(this.butBenefitNotes_Click);
			// 
			// butIapFind
			// 
			this.butIapFind.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butIapFind.Autosize = true;
			this.butIapFind.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butIapFind.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butIapFind.CornerRadius = 4F;
			this.butIapFind.Location = new System.Drawing.Point(294, 38);
			this.butIapFind.Name = "butIapFind";
			this.butIapFind.Size = new System.Drawing.Size(69, 21);
			this.butIapFind.TabIndex = 1;
			this.butIapFind.Text = "IAP";
			this.toolTip1.SetToolTip(this.butIapFind, "Edit all the similar plans at once");
			this.butIapFind.Click += new System.EventHandler(this.butIapFind_Click);
			// 
			// butChange
			// 
			this.butChange.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butChange.Autosize = true;
			this.butChange.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butChange.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butChange.CornerRadius = 4F;
			this.butChange.Location = new System.Drawing.Point(413, 13);
			this.butChange.Name = "butChange";
			this.butChange.Size = new System.Drawing.Size(73, 21);
			this.butChange.TabIndex = 121;
			this.butChange.Text = "Change";
			this.toolTip1.SetToolTip(this.butChange, "Change subscriber name");
			this.butChange.Click += new System.EventHandler(this.butChange_Click);
			// 
			// textDateEffect
			// 
			this.textDateEffect.Location = new System.Drawing.Point(109, 54);
			this.textDateEffect.Name = "textDateEffect";
			this.textDateEffect.Size = new System.Drawing.Size(72, 20);
			this.textDateEffect.TabIndex = 1;
			// 
			// textDateTerm
			// 
			this.textDateTerm.Location = new System.Drawing.Point(221, 54);
			this.textDateTerm.Name = "textDateTerm";
			this.textDateTerm.Size = new System.Drawing.Size(72, 20);
			this.textDateTerm.TabIndex = 2;
			// 
			// textSubscNote
			// 
			this.textSubscNote.AcceptsTab = true;
			this.textSubscNote.DetectUrls = false;
			this.textSubscNote.Location = new System.Drawing.Point(57, 75);
			this.textSubscNote.Name = "textSubscNote";
			this.textSubscNote.QuickPasteType = OpenDentBusiness.QuickPasteType.InsPlan;
			this.textSubscNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textSubscNote.Size = new System.Drawing.Size(439, 98);
			this.textSubscNote.TabIndex = 5;
			this.textSubscNote.Text = "1 - InsPlan subscriber\n2\n3 lines will show here in 46 vert.\n4 lines will show her" +
    "e in 59 vert.\n5 lines in 72 vert\n6 lines in 85 vert\n7 lines in 98";
			// 
			// FormInsPlan
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(982, 700);
			this.Controls.Add(this.gridBenefits);
			this.Controls.Add(this.groupChanges);
			this.Controls.Add(this.panelPlan);
			this.Controls.Add(this.butAudit);
			this.Controls.Add(this.butPick);
			this.Controls.Add(this.textPlanNote);
			this.Controls.Add(this.label18);
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.textPlanNum);
			this.Controls.Add(this.panelPat);
			this.Controls.Add(this.butLabel);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.label32);
			this.Controls.Add(this.groupRequestBen);
			this.Controls.Add(this.groupSubscriber);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormInsPlan";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Insurance Plan";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.FormInsPlan_Closing);
			this.Load += new System.EventHandler(this.FormInsPlan_Load);
			this.groupSubscriber.ResumeLayout(false);
			this.groupSubscriber.PerformLayout();
			this.groupCoPay.ResumeLayout(false);
			this.groupRequestBen.ResumeLayout(false);
			this.groupRequestBen.PerformLayout();
			this.panelPat.ResumeLayout(false);
			this.panelPat.PerformLayout();
			this.groupPlan.ResumeLayout(false);
			this.groupPlan.PerformLayout();
			this.groupCarrier.ResumeLayout(false);
			this.groupCarrier.PerformLayout();
			this.panelPlan.ResumeLayout(false);
			this.groupCanadian.ResumeLayout(false);
			this.groupCanadian.PerformLayout();
			this.groupChanges.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 13
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(FormDiseaseDefs));
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.checkShowHidden  = new System.Windows.Forms.CheckBox();
     this.label4           = new System.Windows.Forms.Label();
     this.textSnoMed       = new OpenDental.ODtextBox();
     this.textDescript     = new OpenDental.ODtextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.textICD10        = new OpenDental.ODtextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.textICD9         = new OpenDental.ODtextBox();
     this.gridMain         = new OpenDental.UI.ODGrid();
     this.butAdd           = new OpenDental.UI.Button();
     this.butOK            = new OpenDental.UI.Button();
     this.butDown          = new OpenDental.UI.Button();
     this.butUp            = new OpenDental.UI.Button();
     this.butClose         = new OpenDental.UI.Button();
     this.butAlphabetize   = new OpenDental.UI.Button();
     this.labelAlphabetize = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkShowHidden);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.textSnoMed);
     this.groupBox1.Controls.Add(this.textDescript);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.textICD10);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.textICD9);
     this.groupBox1.Location = new System.Drawing.Point(18, 3);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(537, 128);
     this.groupBox1.TabIndex = 20;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Search";
     //
     // checkShowHidden
     //
     this.checkShowHidden.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkShowHidden.CheckAlign      = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowHidden.Checked         = true;
     this.checkShowHidden.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkShowHidden.Location        = new System.Drawing.Point(277, 106);
     this.checkShowHidden.Name            = "checkShowHidden";
     this.checkShowHidden.Size            = new System.Drawing.Size(252, 18);
     this.checkShowHidden.TabIndex        = 28;
     this.checkShowHidden.Text            = "Show Hidden";
     this.checkShowHidden.TextAlign       = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowHidden.CheckedChanged += new System.EventHandler(this.checkShowHidden_CheckedChanged);
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(7, 78);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(79, 20);
     this.label4.TabIndex  = 27;
     this.label4.Text      = "Description";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textSnoMed
     //
     this.textSnoMed.AcceptsTab = true;
     this.textSnoMed.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.textSnoMed.BackColor          = System.Drawing.SystemColors.Window;
     this.textSnoMed.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textSnoMed.DetectLinksEnabled = false;
     this.textSnoMed.DetectUrls         = false;
     this.textSnoMed.Location           = new System.Drawing.Point(88, 59);
     this.textSnoMed.Multiline          = false;
     this.textSnoMed.Name           = "textSnoMed";
     this.textSnoMed.QuickPasteType = OpenDentBusiness.QuickPasteType.MedicationEdit;
     this.textSnoMed.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textSnoMed.Size           = new System.Drawing.Size(234, 20);
     this.textSnoMed.TabIndex       = 26;
     this.textSnoMed.Text           = "";
     //
     // textDescript
     //
     this.textDescript.AcceptsTab = true;
     this.textDescript.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.textDescript.BackColor          = System.Drawing.SystemColors.Window;
     this.textDescript.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textDescript.DetectLinksEnabled = false;
     this.textDescript.DetectUrls         = false;
     this.textDescript.Location           = new System.Drawing.Point(88, 80);
     this.textDescript.Multiline          = false;
     this.textDescript.Name           = "textDescript";
     this.textDescript.QuickPasteType = OpenDentBusiness.QuickPasteType.MedicationEdit;
     this.textDescript.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textDescript.Size           = new System.Drawing.Size(441, 20);
     this.textDescript.TabIndex       = 25;
     this.textDescript.Text           = "";
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(7, 59);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(79, 20);
     this.label3.TabIndex  = 24;
     this.label3.Text      = "SNOMED";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(7, 39);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(79, 20);
     this.label2.TabIndex  = 22;
     this.label2.Text      = "ICD10";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textICD10
     //
     this.textICD10.AcceptsTab = true;
     this.textICD10.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.textICD10.BackColor          = System.Drawing.SystemColors.Window;
     this.textICD10.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textICD10.DetectLinksEnabled = false;
     this.textICD10.DetectUrls         = false;
     this.textICD10.Location           = new System.Drawing.Point(88, 39);
     this.textICD10.Multiline          = false;
     this.textICD10.Name           = "textICD10";
     this.textICD10.QuickPasteType = OpenDentBusiness.QuickPasteType.MedicationEdit;
     this.textICD10.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textICD10.Size           = new System.Drawing.Size(234, 20);
     this.textICD10.TabIndex       = 21;
     this.textICD10.Text           = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(7, 19);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(79, 20);
     this.label1.TabIndex  = 20;
     this.label1.Text      = "ICD9";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textICD9
     //
     this.textICD9.AcceptsTab = true;
     this.textICD9.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.textICD9.BackColor          = System.Drawing.SystemColors.Window;
     this.textICD9.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textICD9.DetectLinksEnabled = false;
     this.textICD9.DetectUrls         = false;
     this.textICD9.Location           = new System.Drawing.Point(88, 19);
     this.textICD9.Multiline          = false;
     this.textICD9.Name           = "textICD9";
     this.textICD9.QuickPasteType = OpenDentBusiness.QuickPasteType.MedicationEdit;
     this.textICD9.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textICD9.Size           = new System.Drawing.Size(234, 20);
     this.textICD9.TabIndex       = 19;
     this.textICD9.Text           = "";
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.Location         = new System.Drawing.Point(18, 137);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(537, 548);
     this.gridMain.TabIndex         = 16;
     this.gridMain.Title            = null;
     this.gridMain.TranslationName  = "TableProblems";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butAdd.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(561, 137);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(79, 26);
     this.butAdd.TabIndex   = 21;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(592, 629);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(79, 26);
     this.butOK.TabIndex = 15;
     this.butOK.Text     = "OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // butDown
     //
     this.butDown.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDown.Image      = global::OpenDental.Properties.Resources.down;
     this.butDown.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDown.Location   = new System.Drawing.Point(561, 426);
     this.butDown.Name       = "butDown";
     this.butDown.Size       = new System.Drawing.Size(79, 26);
     this.butDown.TabIndex   = 14;
     this.butDown.Text       = "&Down";
     this.butDown.Click     += new System.EventHandler(this.butDown_Click);
     //
     // butUp
     //
     this.butUp.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUp.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butUp.Image      = global::OpenDental.Properties.Resources.up;
     this.butUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUp.Location   = new System.Drawing.Point(561, 394);
     this.butUp.Name       = "butUp";
     this.butUp.Size       = new System.Drawing.Size(79, 26);
     this.butUp.TabIndex   = 13;
     this.butUp.Text       = "&Up";
     this.butUp.Click     += new System.EventHandler(this.butUp_Click);
     //
     // butClose
     //
     this.butClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Location = new System.Drawing.Point(592, 661);
     this.butClose.Name     = "butClose";
     this.butClose.Size     = new System.Drawing.Size(79, 26);
     this.butClose.TabIndex = 1;
     this.butClose.Text     = "Close";
     this.butClose.Click   += new System.EventHandler(this.butClose_Click);
     //
     // butAlphabetize
     //
     this.butAlphabetize.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butAlphabetize.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAlphabetize.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAlphabetize.Location   = new System.Drawing.Point(561, 245);
     this.butAlphabetize.Name       = "butAlphabetize";
     this.butAlphabetize.Size       = new System.Drawing.Size(79, 26);
     this.butAlphabetize.TabIndex   = 22;
     this.butAlphabetize.Text       = "Alphabetize";
     this.butAlphabetize.Click     += new System.EventHandler(this.butAlphabetize_Click);
     //
     // labelAlphabetize
     //
     this.labelAlphabetize.Location  = new System.Drawing.Point(561, 209);
     this.labelAlphabetize.Name      = "labelAlphabetize";
     this.labelAlphabetize.Size      = new System.Drawing.Size(118, 33);
     this.labelAlphabetize.TabIndex  = 29;
     this.labelAlphabetize.Text      = "Orders the problem list alphabetically";
     this.labelAlphabetize.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FormDiseaseDefs
     //
     this.ClientSize = new System.Drawing.Size(680, 697);
     this.Controls.Add(this.labelAlphabetize);
     this.Controls.Add(this.butAlphabetize);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butDown);
     this.Controls.Add(this.butUp);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormDiseaseDefs";
     this.ShowInTaskbar = false;
     this.Text          = "Problems";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormDiseaseDefs_FormClosing);
     this.Load         += new System.EventHandler(this.FormDiseaseDefs_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 14
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPopupEdit));
			this.label1 = new System.Windows.Forms.Label();
			this.checkIsDisabled = new System.Windows.Forms.CheckBox();
			this.comboPopupLevel = new System.Windows.Forms.ComboBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.textPatient = new System.Windows.Forms.TextBox();
			this.butDelete = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.textDescription = new OpenDental.ODtextBox();
			this.textCreateDate = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.textUser = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.butAudit = new OpenDental.UI.Button();
			this.textEditDate = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(48, 160);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(101, 19);
			this.label1.TabIndex = 3;
			this.label1.Text = "Popup Message";
			this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// checkIsDisabled
			// 
			this.checkIsDisabled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsDisabled.Location = new System.Drawing.Point(6, 137);
			this.checkIsDisabled.Name = "checkIsDisabled";
			this.checkIsDisabled.Size = new System.Drawing.Size(158, 18);
			this.checkIsDisabled.TabIndex = 4;
			this.checkIsDisabled.Text = "Permanently Disabled";
			this.checkIsDisabled.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsDisabled.UseVisualStyleBackColor = true;
			// 
			// comboPopupLevel
			// 
			this.comboPopupLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPopupLevel.FormattingEnabled = true;
			this.comboPopupLevel.Location = new System.Drawing.Point(149, 110);
			this.comboPopupLevel.Name = "comboPopupLevel";
			this.comboPopupLevel.Size = new System.Drawing.Size(159, 21);
			this.comboPopupLevel.TabIndex = 6;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(28, 110);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(121, 18);
			this.label2.TabIndex = 7;
			this.label2.Text = "Level";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(7, 86);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(142, 15);
			this.label3.TabIndex = 8;
			this.label3.Text = "Patient";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textPatient
			// 
			this.textPatient.Enabled = false;
			this.textPatient.Location = new System.Drawing.Point(149, 84);
			this.textPatient.Name = "textPatient";
			this.textPatient.Size = new System.Drawing.Size(271, 20);
			this.textPatient.TabIndex = 9;
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(28, 271);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(81, 26);
			this.butDelete.TabIndex = 5;
			this.butDelete.Text = "Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(302, 271);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(77, 26);
			this.butOK.TabIndex = 1;
			this.butOK.Text = "OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.Location = new System.Drawing.Point(385, 271);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75, 26);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// textDescription
			// 
			this.textDescription.AcceptsTab = true;
			this.textDescription.DetectUrls = false;
			this.textDescription.Location = new System.Drawing.Point(149, 160);
			this.textDescription.Name = "textDescription";
			this.textDescription.QuickPasteType = OpenDentBusiness.QuickPasteType.Popup;
			this.textDescription.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textDescription.Size = new System.Drawing.Size(271, 91);
			this.textDescription.TabIndex = 2;
			this.textDescription.Text = "";
			// 
			// textCreateDate
			// 
			this.textCreateDate.Enabled = false;
			this.textCreateDate.Location = new System.Drawing.Point(149, 33);
			this.textCreateDate.Name = "textCreateDate";
			this.textCreateDate.ReadOnly = true;
			this.textCreateDate.Size = new System.Drawing.Size(159, 20);
			this.textCreateDate.TabIndex = 16;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(15, 35);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(134, 15);
			this.label5.TabIndex = 15;
			this.label5.Text = "Date Created";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textUser
			// 
			this.textUser.Enabled = false;
			this.textUser.Location = new System.Drawing.Point(149, 7);
			this.textUser.Name = "textUser";
			this.textUser.ReadOnly = true;
			this.textUser.Size = new System.Drawing.Size(159, 20);
			this.textUser.TabIndex = 14;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(18, 9);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(131, 15);
			this.label4.TabIndex = 13;
			this.label4.Text = "User";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// butAudit
			// 
			this.butAudit.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAudit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butAudit.Autosize = true;
			this.butAudit.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAudit.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAudit.CornerRadius = 4F;
			this.butAudit.Location = new System.Drawing.Point(149, 271);
			this.butAudit.Name = "butAudit";
			this.butAudit.Size = new System.Drawing.Size(77, 26);
			this.butAudit.TabIndex = 17;
			this.butAudit.Text = "Audit Trail";
			this.butAudit.Click += new System.EventHandler(this.butAudit_Click);
			// 
			// textEditDate
			// 
			this.textEditDate.Enabled = false;
			this.textEditDate.Location = new System.Drawing.Point(149, 59);
			this.textEditDate.Name = "textEditDate";
			this.textEditDate.ReadOnly = true;
			this.textEditDate.Size = new System.Drawing.Size(159, 20);
			this.textEditDate.TabIndex = 18;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(15, 61);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(134, 15);
			this.label6.TabIndex = 19;
			this.label6.Text = "Date Edited";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// FormPopupEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(492, 314);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.textEditDate);
			this.Controls.Add(this.butAudit);
			this.Controls.Add(this.textCreateDate);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.textUser);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.textDescription);
			this.Controls.Add(this.textPatient);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.comboPopupLevel);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.checkIsDisabled);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormPopupEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Popup";
			this.Load += new System.EventHandler(this.FormPopupEdit_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormEmailTemplateEdit));
     this.butCancel              = new OpenDental.UI.Button();
     this.butOK                  = new OpenDental.UI.Button();
     this.label2                 = new System.Windows.Forms.Label();
     this.textBodyText           = new OpenDental.ODtextBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.butBodyFields          = new OpenDental.UI.Button();
     this.textSubject            = new OpenDental.ODtextBox();
     this.textDescription        = new OpenDental.ODtextBox();
     this.butSubjectFields       = new OpenDental.UI.Button();
     this.butAttach              = new OpenDental.UI.Button();
     this.gridAttachments        = new OpenDental.UI.ODGrid();
     this.contextMenuAttachments = new System.Windows.Forms.ContextMenu();
     this.menuItemOpen           = new System.Windows.Forms.MenuItem();
     this.menuItemRename         = new System.Windows.Forms.MenuItem();
     this.menuItemRemove         = new System.Windows.Forms.MenuItem();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(883, 656);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex     = 6;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(802, 656);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 25);
     this.butOK.TabIndex     = 5;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 65);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 20);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "Subject";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBodyText
     //
     this.textBodyText.AcceptsTab = true;
     this.textBodyText.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.textBodyText.BackColor          = System.Drawing.SystemColors.Window;
     this.textBodyText.DetectLinksEnabled = false;
     this.textBodyText.DetectUrls         = false;
     this.textBodyText.Location           = new System.Drawing.Point(97, 86);
     this.textBodyText.Name           = "textBodyText";
     this.textBodyText.QuickPasteType = OpenDentBusiness.QuickPasteType.Email;
     this.textBodyText.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textBodyText.Size           = new System.Drawing.Size(861, 564);
     this.textBodyText.TabIndex       = 3;
     this.textBodyText.Text           = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 86);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 20);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Body";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 44);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(88, 20);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "Description";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butBodyFields
     //
     this.butBodyFields.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butBodyFields.Autosize            = true;
     this.butBodyFields.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butBodyFields.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butBodyFields.CornerRadius        = 4F;
     this.butBodyFields.Location            = new System.Drawing.Point(182, 23);
     this.butBodyFields.Name     = "butBodyFields";
     this.butBodyFields.Size     = new System.Drawing.Size(82, 20);
     this.butBodyFields.TabIndex = 4;
     this.butBodyFields.Text     = "Body Fields";
     this.butBodyFields.Click   += new System.EventHandler(this.butBodyFields_Click);
     //
     // textSubject
     //
     this.textSubject.AcceptsTab = true;
     this.textSubject.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.textSubject.BackColor          = System.Drawing.SystemColors.Window;
     this.textSubject.DetectLinksEnabled = false;
     this.textSubject.DetectUrls         = false;
     this.textSubject.Location           = new System.Drawing.Point(97, 65);
     this.textSubject.Multiline          = false;
     this.textSubject.Name           = "textSubject";
     this.textSubject.QuickPasteType = OpenDentBusiness.QuickPasteType.Email;
     this.textSubject.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textSubject.Size           = new System.Drawing.Size(635, 20);
     this.textSubject.TabIndex       = 2;
     this.textSubject.Text           = "";
     //
     // textDescription
     //
     this.textDescription.AcceptsTab = true;
     this.textDescription.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textDescription.BackColor          = System.Drawing.SystemColors.Window;
     this.textDescription.DetectLinksEnabled = false;
     this.textDescription.DetectUrls         = false;
     this.textDescription.Location           = new System.Drawing.Point(97, 44);
     this.textDescription.Multiline          = false;
     this.textDescription.Name           = "textDescription";
     this.textDescription.QuickPasteType = OpenDentBusiness.QuickPasteType.Email;
     this.textDescription.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textDescription.Size           = new System.Drawing.Size(635, 20);
     this.textDescription.TabIndex       = 1;
     this.textDescription.Text           = "";
     //
     // butSubjectFields
     //
     this.butSubjectFields.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSubjectFields.Autosize            = true;
     this.butSubjectFields.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSubjectFields.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSubjectFields.CornerRadius        = 4F;
     this.butSubjectFields.Location            = new System.Drawing.Point(97, 23);
     this.butSubjectFields.Name     = "butSubjectFields";
     this.butSubjectFields.Size     = new System.Drawing.Size(82, 20);
     this.butSubjectFields.TabIndex = 7;
     this.butSubjectFields.Text     = "Subject Fields";
     this.butSubjectFields.Click   += new System.EventHandler(this.butSubjectFields_Click);
     //
     // butAttach
     //
     this.butAttach.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAttach.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butAttach.Autosize     = true;
     this.butAttach.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAttach.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAttach.CornerRadius = 4F;
     this.butAttach.Location     = new System.Drawing.Point(738, 2);
     this.butAttach.Name         = "butAttach";
     this.butAttach.Size         = new System.Drawing.Size(82, 20);
     this.butAttach.TabIndex     = 9;
     this.butAttach.Text         = "Attach...";
     this.butAttach.Click       += new System.EventHandler(this.butAttach_Click);
     //
     // gridAttachments
     //
     this.gridAttachments.Anchor              = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridAttachments.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridAttachments.HasAddButton        = false;
     this.gridAttachments.HasDropDowns        = false;
     this.gridAttachments.HasMultilineHeaders = false;
     this.gridAttachments.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridAttachments.HeaderHeight        = 15;
     this.gridAttachments.HScrollVisible      = false;
     this.gridAttachments.Location            = new System.Drawing.Point(738, 23);
     this.gridAttachments.Name             = "gridAttachments";
     this.gridAttachments.ScrollValue      = 0;
     this.gridAttachments.Size             = new System.Drawing.Size(220, 62);
     this.gridAttachments.TabIndex         = 8;
     this.gridAttachments.TabStop          = false;
     this.gridAttachments.Title            = "Attachments";
     this.gridAttachments.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridAttachments.TitleHeight      = 18;
     this.gridAttachments.TranslationName  = "TableAttachments";
     this.gridAttachments.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridAttachments_CellDoubleClick);
     this.gridAttachments.MouseDown       += new System.Windows.Forms.MouseEventHandler(this.gridAttachments_MouseDown);
     //
     // contextMenuAttachments
     //
     this.contextMenuAttachments.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemOpen,
         this.menuItemRename,
         this.menuItemRemove
     });
     this.contextMenuAttachments.Popup += new System.EventHandler(this.contextMenuAttachments_Popup);
     //
     // menuItemOpen
     //
     this.menuItemOpen.Index  = 0;
     this.menuItemOpen.Text   = "Open";
     this.menuItemOpen.Click += new System.EventHandler(this.menuItemOpen_Click);
     //
     // menuItemRename
     //
     this.menuItemRename.Index  = 1;
     this.menuItemRename.Text   = "Rename";
     this.menuItemRename.Click += new System.EventHandler(this.menuItemRename_Click);
     //
     // menuItemRemove
     //
     this.menuItemRemove.Index  = 2;
     this.menuItemRemove.Text   = "Remove";
     this.menuItemRemove.Click += new System.EventHandler(this.menuItemRemove_Click);
     //
     // FormEmailTemplateEdit
     //
     this.ClientSize = new System.Drawing.Size(974, 695);
     this.Controls.Add(this.butAttach);
     this.Controls.Add(this.gridAttachments);
     this.Controls.Add(this.butSubjectFields);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.textSubject);
     this.Controls.Add(this.butBodyFields);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBodyText);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(933, 200);
     this.Name          = "FormEmailTemplateEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Email Template";
     this.Load         += new System.EventHandler(this.FormEmailTemplateEdit_Load);
     this.ResumeLayout(false);
 }
Esempio n. 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormQueryFavorites));
     this.butOK           = new OpenDental.UI.Button();
     this.butCancel       = new OpenDental.UI.Button();
     this.butAdd          = new OpenDental.UI.Button();
     this.butDelete       = new OpenDental.UI.Button();
     this.butEdit         = new OpenDental.UI.Button();
     this.gridMain        = new OpenDental.UI.ODGrid();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.butShowHide     = new OpenDental.UI.Button();
     this.checkWrapText   = new System.Windows.Forms.CheckBox();
     this.textQuery       = new OpenDental.ODtextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.textSearch      = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(898, 622);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 3;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(979, 622);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 4;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(367, 568);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(82, 24);
     this.butAdd.TabIndex     = 34;
     this.butAdd.Text         = "&New";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location     = new System.Drawing.Point(5, 568);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(82, 24);
     this.butDelete.TabIndex     = 35;
     this.butDelete.Text         = "&Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // butEdit
     //
     this.butEdit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butEdit.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butEdit.Autosize     = true;
     this.butEdit.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butEdit.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butEdit.CornerRadius = 4F;
     this.butEdit.Image        = global::OpenDental.Properties.Resources.editPencil;
     this.butEdit.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEdit.Location     = new System.Drawing.Point(279, 568);
     this.butEdit.Name         = "butEdit";
     this.butEdit.Size         = new System.Drawing.Size(82, 24);
     this.butEdit.TabIndex     = 36;
     this.butEdit.Text         = "Edit";
     this.butEdit.Click       += new System.EventHandler(this.butEdit_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(6, 55);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(443, 509);
     this.gridMain.TabIndex         = 38;
     this.gridMain.Title            = "";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 0;
     this.gridMain.TranslationName  = "TableQueryFavorites";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // splitContainer1
     //
     this.splitContainer1.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.splitContainer1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer1.FixedPanel      = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.IsSplitterFixed = true;
     this.splitContainer1.Location        = new System.Drawing.Point(5, 3);
     this.splitContainer1.Name            = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.label5);
     this.splitContainer1.Panel1.Controls.Add(this.textSearch);
     this.splitContainer1.Panel1.Controls.Add(this.butShowHide);
     this.splitContainer1.Panel1.Controls.Add(this.butDelete);
     this.splitContainer1.Panel1.Controls.Add(this.gridMain);
     this.splitContainer1.Panel1.Controls.Add(this.butAdd);
     this.splitContainer1.Panel1.Controls.Add(this.butEdit);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.checkWrapText);
     this.splitContainer1.Panel2.Controls.Add(this.textQuery);
     this.splitContainer1.Size             = new System.Drawing.Size(1079, 613);
     this.splitContainer1.SplitterDistance = 454;
     this.splitContainer1.SplitterWidth    = 1;
     this.splitContainer1.TabIndex         = 39;
     //
     // butShowHide
     //
     this.butShowHide.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butShowHide.Autosize            = true;
     this.butShowHide.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butShowHide.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butShowHide.CornerRadius        = 4F;
     this.butShowHide.Location            = new System.Drawing.Point(367, 3);
     this.butShowHide.Name     = "butShowHide";
     this.butShowHide.Size     = new System.Drawing.Size(82, 25);
     this.butShowHide.TabIndex = 40;
     this.butShowHide.Text     = "Show Text >";
     this.butShowHide.UseVisualStyleBackColor = true;
     this.butShowHide.Click += new System.EventHandler(this.butShowHide_Click);
     //
     // checkWrapText
     //
     this.checkWrapText.Location = new System.Drawing.Point(0, 8);
     this.checkWrapText.Name     = "checkWrapText";
     this.checkWrapText.Size     = new System.Drawing.Size(227, 24);
     this.checkWrapText.TabIndex = 1;
     this.checkWrapText.Text     = "Wrap Text";
     this.checkWrapText.UseVisualStyleBackColor = true;
     this.checkWrapText.CheckedChanged         += new System.EventHandler(this.checkWrapText_CheckedChanged);
     //
     // textQuery
     //
     this.textQuery.AcceptsTab         = true;
     this.textQuery.BackColor          = System.Drawing.SystemColors.Control;
     this.textQuery.DetectLinksEnabled = false;
     this.textQuery.DetectUrls         = false;
     this.textQuery.Dock           = System.Windows.Forms.DockStyle.Bottom;
     this.textQuery.Location       = new System.Drawing.Point(0, 31);
     this.textQuery.Name           = "textQuery";
     this.textQuery.QuickPasteType = OpenDentBusiness.QuickPasteType.ReadOnly;
     this.textQuery.ReadOnly       = true;
     this.textQuery.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textQuery.Size           = new System.Drawing.Size(622, 580);
     this.textQuery.TabIndex       = 0;
     this.textQuery.Text           = "";
     this.textQuery.WordWrap       = false;
     //
     // label5
     //
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(6, 15);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(173, 16);
     this.label5.TabIndex  = 163;
     this.label5.Text      = "Search:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textSearch
     //
     this.textSearch.Location     = new System.Drawing.Point(6, 32);
     this.textSearch.Name         = "textSearch";
     this.textSearch.Size         = new System.Drawing.Size(443, 20);
     this.textSearch.TabIndex     = 162;
     this.textSearch.TextChanged += new System.EventHandler(this.textSearch_TextChanged);
     //
     // FormQueryFavorites
     //
     this.AcceptButton = this.butOK;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(1084, 656);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormQueryFavorites";
     this.ShowInTaskbar = false;
     this.Text          = "Query Favorites";
     this.Load         += new System.EventHandler(this.FormQueryFormulate_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormStatementOptions));
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.checkHidePayment = new System.Windows.Forms.CheckBox();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.label3 = new System.Windows.Forms.Label();
			this.textNote = new OpenDental.ODtextBox();
			this.buttonFuchs1 = new OpenDental.UI.Button();
			this.buttonFuchs2 = new OpenDental.UI.Button();
			this.buttonFuchs3 = new OpenDental.UI.Button();
			this.groupFuchs = new System.Windows.Forms.GroupBox();
			this.butToday = new OpenDental.UI.Button();
			this.butDatesAll = new OpenDental.UI.Button();
			this.but90days = new OpenDental.UI.Button();
			this.but45days = new OpenDental.UI.Button();
			this.labelEndDate = new System.Windows.Forms.Label();
			this.labelStartDate = new System.Windows.Forms.Label();
			this.textNoteBold = new OpenDental.ODtextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.listMode = new System.Windows.Forms.ListBox();
			this.checkIntermingled = new System.Windows.Forms.CheckBox();
			this.checkSinglePatient = new System.Windows.Forms.CheckBox();
			this.groupDateRange = new System.Windows.Forms.GroupBox();
			this.textDateEnd = new System.Windows.Forms.TextBox();
			this.textDateStart = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.checkIsSent = new System.Windows.Forms.CheckBox();
			this.butDelete = new OpenDental.UI.Button();
			this.butPrint = new OpenDental.UI.Button();
			this.butEmail = new OpenDental.UI.Button();
			this.butPreview = new OpenDental.UI.Button();
			this.textDate = new System.Windows.Forms.TextBox();
			this.checkIsReceipt = new System.Windows.Forms.CheckBox();
			this.groupInvoice = new System.Windows.Forms.GroupBox();
			this.textInvoiceNum = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.checkIsInvoiceCopy = new System.Windows.Forms.CheckBox();
			this.checkIsInvoice = new System.Windows.Forms.CheckBox();
			this.groupFuchs.SuspendLayout();
			this.groupDateRange.SuspendLayout();
			this.groupInvoice.SuspendLayout();
			this.SuspendLayout();
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.butCancel.Location = new System.Drawing.Point(606, 539);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75, 24);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(514, 539);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75, 24);
			this.butOK.TabIndex = 1;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// checkHidePayment
			// 
			this.checkHidePayment.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkHidePayment.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkHidePayment.Location = new System.Drawing.Point(1, 120);
			this.checkHidePayment.Name = "checkHidePayment";
			this.checkHidePayment.Size = new System.Drawing.Size(158, 20);
			this.checkHidePayment.TabIndex = 11;
			this.checkHidePayment.Text = "Hide payment options";
			this.checkHidePayment.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(14, 290);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(90, 17);
			this.label3.TabIndex = 13;
			this.label3.Text = "Note";
			this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textNote
			// 
			this.textNote.AcceptsTab = true;
			this.textNote.DetectUrls = false;
			this.textNote.Location = new System.Drawing.Point(105, 290);
			this.textNote.Name = "textNote";
			this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Statement;
			this.textNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textNote.Size = new System.Drawing.Size(462, 147);
			this.textNote.TabIndex = 14;
			this.textNote.Text = "";
			// 
			// buttonFuchs1
			// 
			this.buttonFuchs1.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.buttonFuchs1.Autosize = true;
			this.buttonFuchs1.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.buttonFuchs1.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.buttonFuchs1.CornerRadius = 4F;
			this.buttonFuchs1.Location = new System.Drawing.Point(6, 19);
			this.buttonFuchs1.Name = "buttonFuchs1";
			this.buttonFuchs1.Size = new System.Drawing.Size(86, 24);
			this.buttonFuchs1.TabIndex = 18;
			this.buttonFuchs1.Text = "Ins. Not Paid";
			this.buttonFuchs1.Visible = false;
			this.buttonFuchs1.Click += new System.EventHandler(this.buttonFuchs1_Click);
			// 
			// buttonFuchs2
			// 
			this.buttonFuchs2.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.buttonFuchs2.Autosize = true;
			this.buttonFuchs2.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.buttonFuchs2.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.buttonFuchs2.CornerRadius = 4F;
			this.buttonFuchs2.Location = new System.Drawing.Point(6, 46);
			this.buttonFuchs2.Name = "buttonFuchs2";
			this.buttonFuchs2.Size = new System.Drawing.Size(103, 24);
			this.buttonFuchs2.TabIndex = 19;
			this.buttonFuchs2.Text = "Ins. Paid, Bal. Left";
			this.buttonFuchs2.Visible = false;
			this.buttonFuchs2.Click += new System.EventHandler(this.buttonFuchs2_Click);
			// 
			// buttonFuchs3
			// 
			this.buttonFuchs3.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.buttonFuchs3.Autosize = true;
			this.buttonFuchs3.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.buttonFuchs3.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.buttonFuchs3.CornerRadius = 4F;
			this.buttonFuchs3.Location = new System.Drawing.Point(6, 73);
			this.buttonFuchs3.Name = "buttonFuchs3";
			this.buttonFuchs3.Size = new System.Drawing.Size(117, 24);
			this.buttonFuchs3.TabIndex = 20;
			this.buttonFuchs3.Text = "Ins. Paid, Credit Left";
			this.buttonFuchs3.Visible = false;
			this.buttonFuchs3.Click += new System.EventHandler(this.buttonFuchs3_Click);
			// 
			// groupFuchs
			// 
			this.groupFuchs.Controls.Add(this.buttonFuchs1);
			this.groupFuchs.Controls.Add(this.buttonFuchs3);
			this.groupFuchs.Controls.Add(this.buttonFuchs2);
			this.groupFuchs.Location = new System.Drawing.Point(297, 81);
			this.groupFuchs.Name = "groupFuchs";
			this.groupFuchs.Size = new System.Drawing.Size(129, 105);
			this.groupFuchs.TabIndex = 21;
			this.groupFuchs.TabStop = false;
			this.groupFuchs.Text = "Fuchs hidden options";
			this.groupFuchs.Visible = false;
			// 
			// butToday
			// 
			this.butToday.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butToday.Autosize = true;
			this.butToday.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butToday.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butToday.CornerRadius = 4F;
			this.butToday.Location = new System.Drawing.Point(75, 64);
			this.butToday.Name = "butToday";
			this.butToday.Size = new System.Drawing.Size(77, 24);
			this.butToday.TabIndex = 229;
			this.butToday.Text = "Today";
			this.butToday.Click += new System.EventHandler(this.butToday_Click);
			// 
			// butDatesAll
			// 
			this.butDatesAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDatesAll.Autosize = true;
			this.butDatesAll.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDatesAll.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDatesAll.CornerRadius = 4F;
			this.butDatesAll.Location = new System.Drawing.Point(75, 142);
			this.butDatesAll.Name = "butDatesAll";
			this.butDatesAll.Size = new System.Drawing.Size(77, 24);
			this.butDatesAll.TabIndex = 228;
			this.butDatesAll.Text = "All Dates";
			this.butDatesAll.Click += new System.EventHandler(this.butDatesAll_Click);
			// 
			// but90days
			// 
			this.but90days.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.but90days.Autosize = true;
			this.but90days.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.but90days.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.but90days.CornerRadius = 4F;
			this.but90days.Location = new System.Drawing.Point(75, 116);
			this.but90days.Name = "but90days";
			this.but90days.Size = new System.Drawing.Size(77, 24);
			this.but90days.TabIndex = 227;
			this.but90days.Text = "Last 90 Days";
			this.but90days.Click += new System.EventHandler(this.but90days_Click);
			// 
			// but45days
			// 
			this.but45days.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.but45days.Autosize = true;
			this.but45days.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.but45days.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.but45days.CornerRadius = 4F;
			this.but45days.Location = new System.Drawing.Point(75, 90);
			this.but45days.Name = "but45days";
			this.but45days.Size = new System.Drawing.Size(77, 24);
			this.but45days.TabIndex = 226;
			this.but45days.Text = "Last 45 Days";
			this.but45days.Click += new System.EventHandler(this.but45days_Click);
			// 
			// labelEndDate
			// 
			this.labelEndDate.Location = new System.Drawing.Point(3, 44);
			this.labelEndDate.Name = "labelEndDate";
			this.labelEndDate.Size = new System.Drawing.Size(69, 14);
			this.labelEndDate.TabIndex = 222;
			this.labelEndDate.Text = "End Date";
			this.labelEndDate.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelStartDate
			// 
			this.labelStartDate.Location = new System.Drawing.Point(3, 21);
			this.labelStartDate.Name = "labelStartDate";
			this.labelStartDate.Size = new System.Drawing.Size(69, 14);
			this.labelStartDate.TabIndex = 221;
			this.labelStartDate.Text = "Start Date";
			this.labelStartDate.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textNoteBold
			// 
			this.textNoteBold.AcceptsTab = true;
			this.textNoteBold.DetectUrls = false;
			this.textNoteBold.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.textNoteBold.ForeColor = System.Drawing.Color.DarkRed;
			this.textNoteBold.Location = new System.Drawing.Point(105, 443);
			this.textNoteBold.Name = "textNoteBold";
			this.textNoteBold.QuickPasteType = OpenDentBusiness.QuickPasteType.Statement;
			this.textNoteBold.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textNoteBold.Size = new System.Drawing.Size(462, 74);
			this.textNoteBold.TabIndex = 231;
			this.textNoteBold.Text = "";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(12, 444);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(92, 17);
			this.label1.TabIndex = 230;
			this.label1.Text = "Bold Note";
			this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(64, 62);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(81, 14);
			this.label2.TabIndex = 232;
			this.label2.Text = "Mode";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// listMode
			// 
			this.listMode.FormattingEnabled = true;
			this.listMode.Location = new System.Drawing.Point(146, 60);
			this.listMode.Name = "listMode";
			this.listMode.Size = new System.Drawing.Size(113, 56);
			this.listMode.TabIndex = 233;
			this.listMode.Click += new System.EventHandler(this.listMode_Click);
			// 
			// checkIntermingled
			// 
			this.checkIntermingled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIntermingled.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIntermingled.Location = new System.Drawing.Point(1, 162);
			this.checkIntermingled.Name = "checkIntermingled";
			this.checkIntermingled.Size = new System.Drawing.Size(158, 20);
			this.checkIntermingled.TabIndex = 234;
			this.checkIntermingled.Text = "Intermingle family members";
			this.checkIntermingled.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIntermingled.Click += new System.EventHandler(this.checkIntermingled_Click);
			// 
			// checkSinglePatient
			// 
			this.checkSinglePatient.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkSinglePatient.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkSinglePatient.Location = new System.Drawing.Point(1, 141);
			this.checkSinglePatient.Name = "checkSinglePatient";
			this.checkSinglePatient.Size = new System.Drawing.Size(158, 20);
			this.checkSinglePatient.TabIndex = 235;
			this.checkSinglePatient.Text = "Single patient only";
			this.checkSinglePatient.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkSinglePatient.Click += new System.EventHandler(this.checkSinglePatient_Click);
			// 
			// groupDateRange
			// 
			this.groupDateRange.Controls.Add(this.textDateEnd);
			this.groupDateRange.Controls.Add(this.labelStartDate);
			this.groupDateRange.Controls.Add(this.textDateStart);
			this.groupDateRange.Controls.Add(this.labelEndDate);
			this.groupDateRange.Controls.Add(this.but45days);
			this.groupDateRange.Controls.Add(this.but90days);
			this.groupDateRange.Controls.Add(this.butDatesAll);
			this.groupDateRange.Controls.Add(this.butToday);
			this.groupDateRange.Location = new System.Drawing.Point(446, 12);
			this.groupDateRange.Name = "groupDateRange";
			this.groupDateRange.Size = new System.Drawing.Size(162, 174);
			this.groupDateRange.TabIndex = 236;
			this.groupDateRange.TabStop = false;
			this.groupDateRange.Text = "Date Range";
			// 
			// textDateEnd
			// 
			this.textDateEnd.Location = new System.Drawing.Point(75, 41);
			this.textDateEnd.Name = "textDateEnd";
			this.textDateEnd.Size = new System.Drawing.Size(77, 20);
			this.textDateEnd.TabIndex = 246;
			this.textDateEnd.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textDateEnd_KeyDown);
			this.textDateEnd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textDateEnd_KeyPress);
			this.textDateEnd.Validating += new System.ComponentModel.CancelEventHandler(this.textDateEnd_Validating);
			// 
			// textDateStart
			// 
			this.textDateStart.Location = new System.Drawing.Point(75, 18);
			this.textDateStart.Name = "textDateStart";
			this.textDateStart.Size = new System.Drawing.Size(77, 20);
			this.textDateStart.TabIndex = 245;
			this.textDateStart.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textDateStart_KeyDown);
			this.textDateStart.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textDateStart_KeyPress);
			this.textDateStart.Validating += new System.ComponentModel.CancelEventHandler(this.textDateStart_Validating);
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(67, 17);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(77, 14);
			this.label4.TabIndex = 237;
			this.label4.Text = "Date";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsSent
			// 
			this.checkIsSent.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsSent.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsSent.Location = new System.Drawing.Point(1, 39);
			this.checkIsSent.Name = "checkIsSent";
			this.checkIsSent.Size = new System.Drawing.Size(159, 18);
			this.checkIsSent.TabIndex = 239;
			this.checkIsSent.Text = "Sent";
			this.checkIsSent.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsSent.Click += new System.EventHandler(this.checkIsSent_Click);
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(40, 539);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(79, 24);
			this.butDelete.TabIndex = 240;
			this.butDelete.Text = "Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// butPrint
			// 
			this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPrint.Autosize = true;
			this.butPrint.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPrint.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPrint.CornerRadius = 4F;
			this.butPrint.Image = global::OpenDental.Properties.Resources.butPrint;
			this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPrint.Location = new System.Drawing.Point(210, 539);
			this.butPrint.Name = "butPrint";
			this.butPrint.Size = new System.Drawing.Size(79, 24);
			this.butPrint.TabIndex = 241;
			this.butPrint.Text = "Print";
			this.butPrint.Click += new System.EventHandler(this.butPrint_Click);
			// 
			// butEmail
			// 
			this.butEmail.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butEmail.Autosize = true;
			this.butEmail.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEmail.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEmail.CornerRadius = 4F;
			this.butEmail.Image = global::OpenDental.Properties.Resources.email1;
			this.butEmail.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butEmail.Location = new System.Drawing.Point(295, 539);
			this.butEmail.Name = "butEmail";
			this.butEmail.Size = new System.Drawing.Size(79, 24);
			this.butEmail.TabIndex = 242;
			this.butEmail.Text = "E-mail";
			this.butEmail.Click += new System.EventHandler(this.butEmail_Click);
			// 
			// butPreview
			// 
			this.butPreview.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPreview.Autosize = true;
			this.butPreview.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPreview.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPreview.CornerRadius = 4F;
			this.butPreview.Image = global::OpenDental.Properties.Resources.printPreview20;
			this.butPreview.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPreview.Location = new System.Drawing.Point(380, 539);
			this.butPreview.Name = "butPreview";
			this.butPreview.Size = new System.Drawing.Size(79, 24);
			this.butPreview.TabIndex = 243;
			this.butPreview.Text = "View";
			this.butPreview.Click += new System.EventHandler(this.butPreview_Click);
			// 
			// textDate
			// 
			this.textDate.Location = new System.Drawing.Point(146, 15);
			this.textDate.Name = "textDate";
			this.textDate.Size = new System.Drawing.Size(77, 20);
			this.textDate.TabIndex = 244;
			this.textDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textDate_KeyDown);
			this.textDate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textDate_KeyPress);
			this.textDate.Validating += new System.ComponentModel.CancelEventHandler(this.textDate_Validating);
			// 
			// checkIsReceipt
			// 
			this.checkIsReceipt.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsReceipt.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsReceipt.Location = new System.Drawing.Point(1, 183);
			this.checkIsReceipt.Name = "checkIsReceipt";
			this.checkIsReceipt.Size = new System.Drawing.Size(158, 20);
			this.checkIsReceipt.TabIndex = 245;
			this.checkIsReceipt.Text = "Receipt";
			this.checkIsReceipt.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupInvoice
			// 
			this.groupInvoice.Controls.Add(this.textInvoiceNum);
			this.groupInvoice.Controls.Add(this.label5);
			this.groupInvoice.Controls.Add(this.checkIsInvoiceCopy);
			this.groupInvoice.Controls.Add(this.checkIsInvoice);
			this.groupInvoice.Location = new System.Drawing.Point(12, 202);
			this.groupInvoice.Name = "groupInvoice";
			this.groupInvoice.Size = new System.Drawing.Size(247, 82);
			this.groupInvoice.TabIndex = 247;
			this.groupInvoice.TabStop = false;
			this.groupInvoice.Text = "Invoice";
			// 
			// textInvoiceNum
			// 
			this.textInvoiceNum.Location = new System.Drawing.Point(134, 55);
			this.textInvoiceNum.Name = "textInvoiceNum";
			this.textInvoiceNum.ReadOnly = true;
			this.textInvoiceNum.Size = new System.Drawing.Size(108, 20);
			this.textInvoiceNum.TabIndex = 250;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(13, 57);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(120, 14);
			this.label5.TabIndex = 249;
			this.label5.Text = "Invoice Number";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsInvoiceCopy
			// 
			this.checkIsInvoiceCopy.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsInvoiceCopy.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsInvoiceCopy.Location = new System.Drawing.Point(5, 32);
			this.checkIsInvoiceCopy.Name = "checkIsInvoiceCopy";
			this.checkIsInvoiceCopy.Size = new System.Drawing.Size(142, 20);
			this.checkIsInvoiceCopy.TabIndex = 248;
			this.checkIsInvoiceCopy.Text = "Invoice Copy";
			this.checkIsInvoiceCopy.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsInvoice
			// 
			this.checkIsInvoice.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsInvoice.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsInvoice.Location = new System.Drawing.Point(5, 12);
			this.checkIsInvoice.Name = "checkIsInvoice";
			this.checkIsInvoice.Size = new System.Drawing.Size(142, 20);
			this.checkIsInvoice.TabIndex = 247;
			this.checkIsInvoice.Text = "Invoice";
			this.checkIsInvoice.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsInvoice.Click += new System.EventHandler(this.checkIsInvoice_Click);
			// 
			// FormStatementOptions
			// 
			this.AcceptButton = this.butOK;
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(709, 575);
			this.Controls.Add(this.butPrint);
			this.Controls.Add(this.butEmail);
			this.Controls.Add(this.butPreview);
			this.Controls.Add(this.groupInvoice);
			this.Controls.Add(this.checkIsReceipt);
			this.Controls.Add(this.textDate);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.checkIsSent);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.groupDateRange);
			this.Controls.Add(this.checkSinglePatient);
			this.Controls.Add(this.checkIntermingled);
			this.Controls.Add(this.listMode);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.textNoteBold);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.groupFuchs);
			this.Controls.Add(this.textNote);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.checkHidePayment);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormStatementOptions";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Statement";
			this.Load += new System.EventHandler(this.FormStatementOptions_Load);
			this.groupFuchs.ResumeLayout(false);
			this.groupDateRange.ResumeLayout(false);
			this.groupDateRange.PerformLayout();
			this.groupInvoice.ResumeLayout(false);
			this.groupInvoice.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPopupEdit));
     this.label1          = new System.Windows.Forms.Label();
     this.checkIsDisabled = new System.Windows.Forms.CheckBox();
     this.comboPopupLevel = new System.Windows.Forms.ComboBox();
     this.label2          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.textPatient     = new System.Windows.Forms.TextBox();
     this.butDelete       = new OpenDental.UI.Button();
     this.butOK           = new OpenDental.UI.Button();
     this.butCancel       = new OpenDental.UI.Button();
     this.textDescription = new OpenDental.ODtextBox();
     this.textCreateDate  = new System.Windows.Forms.TextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.textUser        = new System.Windows.Forms.TextBox();
     this.label4          = new System.Windows.Forms.Label();
     this.butAudit        = new OpenDental.UI.Button();
     this.textEditDate    = new System.Windows.Forms.TextBox();
     this.label6          = new System.Windows.Forms.Label();
     this.labelNoPerms    = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(48, 160);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(101, 19);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Popup Message";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkIsDisabled
     //
     this.checkIsDisabled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsDisabled.Location   = new System.Drawing.Point(6, 137);
     this.checkIsDisabled.Name       = "checkIsDisabled";
     this.checkIsDisabled.Size       = new System.Drawing.Size(158, 18);
     this.checkIsDisabled.TabIndex   = 4;
     this.checkIsDisabled.Text       = "Permanently Disabled";
     this.checkIsDisabled.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsDisabled.UseVisualStyleBackColor = true;
     //
     // comboPopupLevel
     //
     this.comboPopupLevel.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPopupLevel.FormattingEnabled = true;
     this.comboPopupLevel.Location          = new System.Drawing.Point(149, 110);
     this.comboPopupLevel.Name     = "comboPopupLevel";
     this.comboPopupLevel.Size     = new System.Drawing.Size(159, 21);
     this.comboPopupLevel.TabIndex = 6;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(28, 110);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(121, 18);
     this.label2.TabIndex  = 7;
     this.label2.Text      = "Level";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(7, 86);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(142, 15);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Patient";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textPatient
     //
     this.textPatient.Enabled  = false;
     this.textPatient.Location = new System.Drawing.Point(149, 84);
     this.textPatient.Name     = "textPatient";
     this.textPatient.Size     = new System.Drawing.Size(271, 20);
     this.textPatient.TabIndex = 9;
     //
     // butDelete
     //
     this.butDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location   = new System.Drawing.Point(28, 274);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(81, 26);
     this.butDelete.TabIndex   = 2;
     this.butDelete.Text       = "Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(302, 274);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(77, 26);
     this.butOK.TabIndex = 3;
     this.butOK.Text     = "OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Location = new System.Drawing.Point(385, 274);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex = 4;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_Click);
     //
     // textDescription
     //
     this.textDescription.AcceptsTab         = true;
     this.textDescription.BackColor          = System.Drawing.SystemColors.Window;
     this.textDescription.DetectLinksEnabled = false;
     this.textDescription.DetectUrls         = false;
     this.textDescription.Location           = new System.Drawing.Point(149, 160);
     this.textDescription.Name           = "textDescription";
     this.textDescription.QuickPasteType = OpenDentBusiness.QuickPasteType.Popup;
     this.textDescription.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textDescription.Size           = new System.Drawing.Size(271, 91);
     this.textDescription.TabIndex       = 1;
     this.textDescription.Text           = "";
     //
     // textCreateDate
     //
     this.textCreateDate.Enabled  = false;
     this.textCreateDate.Location = new System.Drawing.Point(149, 33);
     this.textCreateDate.Name     = "textCreateDate";
     this.textCreateDate.ReadOnly = true;
     this.textCreateDate.Size     = new System.Drawing.Size(159, 20);
     this.textCreateDate.TabIndex = 16;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(15, 35);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(134, 15);
     this.label5.TabIndex  = 15;
     this.label5.Text      = "Date Created";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textUser
     //
     this.textUser.Enabled  = false;
     this.textUser.Location = new System.Drawing.Point(149, 7);
     this.textUser.Name     = "textUser";
     this.textUser.ReadOnly = true;
     this.textUser.Size     = new System.Drawing.Size(159, 20);
     this.textUser.TabIndex = 14;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(18, 9);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(131, 15);
     this.label4.TabIndex  = 13;
     this.label4.Text      = "User";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butAudit
     //
     this.butAudit.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAudit.Location = new System.Drawing.Point(149, 274);
     this.butAudit.Name     = "butAudit";
     this.butAudit.Size     = new System.Drawing.Size(77, 26);
     this.butAudit.TabIndex = 17;
     this.butAudit.Text     = "Audit Trail";
     this.butAudit.Click   += new System.EventHandler(this.butAudit_Click);
     //
     // textEditDate
     //
     this.textEditDate.Enabled  = false;
     this.textEditDate.Location = new System.Drawing.Point(149, 59);
     this.textEditDate.Name     = "textEditDate";
     this.textEditDate.ReadOnly = true;
     this.textEditDate.Size     = new System.Drawing.Size(159, 20);
     this.textEditDate.TabIndex = 18;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(15, 61);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(134, 15);
     this.label6.TabIndex  = 19;
     this.label6.Text      = "Date Edited";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelNoPerms
     //
     this.labelNoPerms.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelNoPerms.Location = new System.Drawing.Point(144, 255);
     this.labelNoPerms.Name     = "labelNoPerms";
     this.labelNoPerms.Size     = new System.Drawing.Size(311, 16);
     this.labelNoPerms.TabIndex = 20;
     this.labelNoPerms.Text     = "Some fields disabled due to lack of Edit Popup permission.";
     this.labelNoPerms.Visible  = false;
     //
     // FormPopupEdit
     //
     this.ClientSize = new System.Drawing.Size(492, 314);
     this.Controls.Add(this.labelNoPerms);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.textEditDate);
     this.Controls.Add(this.butAudit);
     this.Controls.Add(this.textCreateDate);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.textUser);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.textPatient);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.comboPopupLevel);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.checkIsDisabled);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormPopupEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Popup";
     this.Load         += new System.EventHandler(this.FormPopupEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProcCodeNoteEdit));
     this.listProv  = new System.Windows.Forms.ListBox();
     this.label15   = new System.Windows.Forms.Label();
     this.butSlider = new System.Windows.Forms.Button();
     this.label11   = new System.Windows.Forms.Label();
     this.textTime2 = new System.Windows.Forms.TextBox();
     this.label6    = new System.Windows.Forms.Label();
     this.label10   = new System.Windows.Forms.Label();
     this.textNote  = new OpenDental.ODtextBox();
     this.tbTime    = new OpenDental.TableTimeBar();
     this.butOK     = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.butDelete = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // listProv
     //
     this.listProv.FormattingEnabled = true;
     this.listProv.Location          = new System.Drawing.Point(92, 51);
     this.listProv.Name     = "listProv";
     this.listProv.Size     = new System.Drawing.Size(176, 199);
     this.listProv.TabIndex = 2;
     //
     // label15
     //
     this.label15.Location  = new System.Drawing.Point(89, 30);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(100, 18);
     this.label15.TabIndex  = 47;
     this.label15.Text      = "Provider";
     this.label15.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butSlider
     //
     this.butSlider.BackColor = System.Drawing.SystemColors.ControlDark;
     this.butSlider.Location  = new System.Drawing.Point(14, 56);
     this.butSlider.Name      = "butSlider";
     this.butSlider.Size      = new System.Drawing.Size(12, 15);
     this.butSlider.TabIndex  = 50;
     this.butSlider.UseVisualStyleBackColor = false;
     this.butSlider.MouseDown += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseDown);
     this.butSlider.MouseMove += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseMove);
     this.butSlider.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseUp);
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(78, 621);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(102, 16);
     this.label11.TabIndex = 52;
     this.label11.Text     = "Minutes";
     //
     // textTime2
     //
     this.textTime2.Location = new System.Drawing.Point(12, 617);
     this.textTime2.Name     = "textTime2";
     this.textTime2.Size     = new System.Drawing.Size(60, 20);
     this.textTime2.TabIndex = 51;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(4, 1);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(53, 39);
     this.label6.TabIndex  = 48;
     this.label6.Text      = "Time Pattern";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(91, 260);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(148, 14);
     this.label10.TabIndex  = 53;
     this.label10.Text      = "Note";
     this.label10.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textNote
     //
     this.textNote.AcceptsReturn  = true;
     this.textNote.Location       = new System.Drawing.Point(92, 278);
     this.textNote.Multiline      = true;
     this.textNote.Name           = "textNote";
     this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Procedure;
     this.textNote.ScrollBars     = System.Windows.Forms.ScrollBars.Vertical;
     this.textNote.Size           = new System.Drawing.Size(540, 219);
     this.textNote.TabIndex       = 54;
     //
     // tbTime
     //
     this.tbTime.BackColor       = System.Drawing.SystemColors.Window;
     this.tbTime.Location        = new System.Drawing.Point(12, 51);
     this.tbTime.Name            = "tbTime";
     this.tbTime.ScrollValue     = 150;
     this.tbTime.SelectedIndices = new int[0];
     this.tbTime.SelectionMode   = System.Windows.Forms.SelectionMode.None;
     this.tbTime.Size            = new System.Drawing.Size(15, 561);
     this.tbTime.TabIndex        = 49;
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(602, 567);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location     = new System.Drawing.Point(602, 608);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location     = new System.Drawing.Point(207, 608);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(82, 26);
     this.butDelete.TabIndex     = 55;
     this.butDelete.Text         = "Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // FormProcCodeNoteEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(689, 646);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.butSlider);
     this.Controls.Add(this.tbTime);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.textTime2);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.listProv);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormProcCodeNoteEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit ProcedureCode Note";
     this.Load         += new System.EventHandler(this.FormProcCodeNoteEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormEmailJobs));
     this.label3                        = new System.Windows.Forms.Label();
     this.label2                        = new System.Windows.Forms.Label();
     this.comboEmailFrom                = new System.Windows.Forms.ComboBox();
     this.menuStrip1                    = new System.Windows.Forms.MenuStrip();
     this.setupToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.editTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label1                        = new System.Windows.Forms.Label();
     this.label4                        = new System.Windows.Forms.Label();
     this.label5                        = new System.Windows.Forms.Label();
     this.gridRecipients                = new OpenDental.UI.ODGrid();
     this.textVersions                  = new OpenDental.ODtextBox();
     this.textDescriptions              = new OpenDental.ODtextBox();
     this.textPledgeTemplate            = new OpenDental.ODtextBox();
     this.textSubject                   = new OpenDental.ODtextBox();
     this.textFromAddress               = new OpenDental.ODtextBox();
     this.textBodyTextTemplate          = new OpenDental.ODtextBox();
     this.butSend                       = new OpenDental.UI.Button();
     this.butCancel                     = new OpenDental.UI.Button();
     this.butExport                     = new OpenDental.UI.Button();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.Location  = new System.Drawing.Point(12, 285);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(88, 14);
     this.label3.TabIndex  = 38;
     this.label3.Text      = "From:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.Location  = new System.Drawing.Point(12, 306);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 14);
     this.label2.TabIndex  = 40;
     this.label2.Text      = "Subject:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboEmailFrom
     //
     this.comboEmailFrom.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.comboEmailFrom.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboEmailFrom.Location         = new System.Drawing.Point(645, 281);
     this.comboEmailFrom.MaxDropDownItems = 40;
     this.comboEmailFrom.Name             = "comboEmailFrom";
     this.comboEmailFrom.Size             = new System.Drawing.Size(359, 21);
     this.comboEmailFrom.TabIndex         = 227;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.setupToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1018, 24);
     this.menuStrip1.TabIndex = 229;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // setupToolStripMenuItem
     //
     this.setupToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.editTemplateToolStripMenuItem
     });
     this.setupToolStripMenuItem.Name = "setupToolStripMenuItem";
     this.setupToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
     this.setupToolStripMenuItem.Text = "Setup";
     //
     // editTemplateToolStripMenuItem
     //
     this.editTemplateToolStripMenuItem.Name   = "editTemplateToolStripMenuItem";
     this.editTemplateToolStripMenuItem.Size   = new System.Drawing.Size(151, 22);
     this.editTemplateToolStripMenuItem.Text   = "Edit Templates";
     this.editTemplateToolStripMenuItem.Click += new System.EventHandler(this.editTemplateToolStripMenuItem_Click);
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Location  = new System.Drawing.Point(11, 559);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 31);
     this.label1.TabIndex  = 232;
     this.label1.Text      = "Feature Description(s):";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label4.Location  = new System.Drawing.Point(12, 528);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(88, 14);
     this.label4.TabIndex  = 233;
     this.label4.Text      = "Pledge:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.Location  = new System.Drawing.Point(771, 533);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(88, 14);
     this.label5.TabIndex  = 234;
     this.label5.Text      = "Version(s):";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // gridRecipients
     //
     this.gridRecipients.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.gridRecipients.HasMultilineHeaders = true;
     this.gridRecipients.Location            = new System.Drawing.Point(98, 27);
     this.gridRecipients.Name            = "gridRecipients";
     this.gridRecipients.Size            = new System.Drawing.Size(906, 250);
     this.gridRecipients.TabIndex        = 226;
     this.gridRecipients.Title           = "Recipients";
     this.gridRecipients.TranslationName = "FormTaskEdit";
     this.gridRecipients.CellClick      += new OpenDental.UI.ODGridClickEventHandler(this.gridRecipients_CellClick);
     //
     // textVersions
     //
     this.textVersions.AcceptsTab         = true;
     this.textVersions.Anchor             = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.textVersions.BackColor          = System.Drawing.SystemColors.Window;
     this.textVersions.DetectLinksEnabled = false;
     this.textVersions.DetectUrls         = false;
     this.textVersions.Location           = new System.Drawing.Point(857, 529);
     this.textVersions.Multiline          = false;
     this.textVersions.Name                = "textVersions";
     this.textVersions.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textVersions.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textVersions.Size                = new System.Drawing.Size(147, 22);
     this.textVersions.SpellCheckIsEnabled = false;
     this.textVersions.TabIndex            = 235;
     this.textVersions.Text                = "";
     this.textVersions.WordWrap            = false;
     //
     // textDescriptions
     //
     this.textDescriptions.AcceptsTab = true;
     this.textDescriptions.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.textDescriptions.BackColor          = System.Drawing.SystemColors.Window;
     this.textDescriptions.DetectLinksEnabled = false;
     this.textDescriptions.DetectUrls         = false;
     this.textDescriptions.Location           = new System.Drawing.Point(98, 557);
     this.textDescriptions.Name                = "textDescriptions";
     this.textDescriptions.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textDescriptions.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textDescriptions.Size                = new System.Drawing.Size(667, 127);
     this.textDescriptions.SpellCheckIsEnabled = false;
     this.textDescriptions.TabIndex            = 230;
     this.textDescriptions.Text                = "";
     //
     // textPledgeTemplate
     //
     this.textPledgeTemplate.AcceptsTab = true;
     this.textPledgeTemplate.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.textPledgeTemplate.BackColor          = System.Drawing.SystemColors.Control;
     this.textPledgeTemplate.DetectLinksEnabled = false;
     this.textPledgeTemplate.DetectUrls         = false;
     this.textPledgeTemplate.Location           = new System.Drawing.Point(98, 526);
     this.textPledgeTemplate.Name                = "textPledgeTemplate";
     this.textPledgeTemplate.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textPledgeTemplate.ReadOnly            = true;
     this.textPledgeTemplate.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textPledgeTemplate.Size                = new System.Drawing.Size(667, 25);
     this.textPledgeTemplate.SpellCheckIsEnabled = false;
     this.textPledgeTemplate.TabIndex            = 231;
     this.textPledgeTemplate.Text                = "";
     //
     // textSubject
     //
     this.textSubject.AcceptsTab = true;
     this.textSubject.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.textSubject.BackColor          = System.Drawing.SystemColors.Window;
     this.textSubject.DetectLinksEnabled = false;
     this.textSubject.DetectUrls         = false;
     this.textSubject.Location           = new System.Drawing.Point(98, 304);
     this.textSubject.Multiline          = false;
     this.textSubject.Name                = "textSubject";
     this.textSubject.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textSubject.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textSubject.Size                = new System.Drawing.Size(906, 22);
     this.textSubject.SpellCheckIsEnabled = false;
     this.textSubject.TabIndex            = 44;
     this.textSubject.Text                = "";
     this.textSubject.WordWrap            = false;
     //
     // textFromAddress
     //
     this.textFromAddress.AcceptsTab = true;
     this.textFromAddress.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textFromAddress.BackColor          = System.Drawing.SystemColors.Window;
     this.textFromAddress.DetectLinksEnabled = false;
     this.textFromAddress.DetectUrls         = false;
     this.textFromAddress.Location           = new System.Drawing.Point(98, 281);
     this.textFromAddress.Multiline          = false;
     this.textFromAddress.Name                = "textFromAddress";
     this.textFromAddress.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textFromAddress.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textFromAddress.Size                = new System.Drawing.Size(544, 22);
     this.textFromAddress.SpellCheckIsEnabled = false;
     this.textFromAddress.TabIndex            = 41;
     this.textFromAddress.Text                = "";
     this.textFromAddress.WordWrap            = false;
     //
     // textBodyTextTemplate
     //
     this.textBodyTextTemplate.AcceptsTab = true;
     this.textBodyTextTemplate.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBodyTextTemplate.BackColor          = System.Drawing.SystemColors.Control;
     this.textBodyTextTemplate.DetectLinksEnabled = false;
     this.textBodyTextTemplate.DetectUrls         = false;
     this.textBodyTextTemplate.Location           = new System.Drawing.Point(98, 327);
     this.textBodyTextTemplate.Name                = "textBodyTextTemplate";
     this.textBodyTextTemplate.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textBodyTextTemplate.ReadOnly            = true;
     this.textBodyTextTemplate.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textBodyTextTemplate.Size                = new System.Drawing.Size(906, 193);
     this.textBodyTextTemplate.SpellCheckIsEnabled = false;
     this.textBodyTextTemplate.TabIndex            = 46;
     this.textBodyTextTemplate.Text                = "";
     //
     // butSend
     //
     this.butSend.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butSend.Location = new System.Drawing.Point(848, 659);
     this.butSend.Name     = "butSend";
     this.butSend.Size     = new System.Drawing.Size(75, 25);
     this.butSend.TabIndex = 9;
     this.butSend.Text     = "&Send";
     this.butSend.Click   += new System.EventHandler(this.butSend_Click);
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(929, 659);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex     = 10;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butExport
     //
     this.butExport.Location = new System.Drawing.Point(17, 253);
     this.butExport.Name     = "butExport";
     this.butExport.Size     = new System.Drawing.Size(75, 24);
     this.butExport.TabIndex = 236;
     this.butExport.Text     = "Export";
     this.butExport.Click   += new System.EventHandler(this.butExport_Click);
     //
     // FormEmailJobs
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1018, 696);
     this.Controls.Add(this.butExport);
     this.Controls.Add(this.textVersions);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.textDescriptions);
     this.Controls.Add(this.textPledgeTemplate);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboEmailFrom);
     this.Controls.Add(this.gridRecipients);
     this.Controls.Add(this.textSubject);
     this.Controls.Add(this.textFromAddress);
     this.Controls.Add(this.textBodyTextTemplate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butSend);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.menuStrip1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.MinimumSize   = new System.Drawing.Size(875, 735);
     this.Name          = "FormEmailJobs";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Email Message";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormEmailJobs_FormClosing);
     this.Load         += new System.EventHandler(this.FormEmailJobs_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 21
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormInsBenefits));
			this.checkSimplified = new System.Windows.Forms.CheckBox();
			this.label1 = new System.Windows.Forms.Label();
			this.labelSubscNote = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.comboExams = new System.Windows.Forms.ComboBox();
			this.label24 = new System.Windows.Forms.Label();
			this.textExams = new OpenDental.ValidNumber();
			this.label8 = new System.Windows.Forms.Label();
			this.comboPano = new System.Windows.Forms.ComboBox();
			this.textPano = new OpenDental.ValidNumber();
			this.label7 = new System.Windows.Forms.Label();
			this.comboBW = new System.Windows.Forms.ComboBox();
			this.textBW = new OpenDental.ValidNumber();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.textOrthoPercent = new OpenDental.ValidNumber();
			this.label11 = new System.Windows.Forms.Label();
			this.textOrthoMax = new OpenDental.ValidDouble();
			this.label10 = new System.Windows.Forms.Label();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.textDeductDiagFam = new OpenDental.ValidDouble();
			this.textDeductXrayFam = new OpenDental.ValidDouble();
			this.textDeductDiag = new OpenDental.ValidDouble();
			this.label3 = new System.Windows.Forms.Label();
			this.textDeductXray = new OpenDental.ValidDouble();
			this.label29 = new System.Windows.Forms.Label();
			this.label27 = new System.Windows.Forms.Label();
			this.label26 = new System.Windows.Forms.Label();
			this.textDeductPreventFam = new OpenDental.ValidDouble();
			this.textXray = new OpenDental.ValidNumber();
			this.label25 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.panel3 = new System.Windows.Forms.Panel();
			this.panel2 = new System.Windows.Forms.Panel();
			this.panel1 = new System.Windows.Forms.Panel();
			this.textStand4 = new OpenDental.ValidNumber();
			this.textAccident = new OpenDental.ValidNumber();
			this.label23 = new System.Windows.Forms.Label();
			this.textStand2 = new OpenDental.ValidNumber();
			this.textMaxProsth = new OpenDental.ValidNumber();
			this.textDeductPrevent = new OpenDental.ValidDouble();
			this.label22 = new System.Windows.Forms.Label();
			this.textStand1 = new OpenDental.ValidNumber();
			this.textProsth = new OpenDental.ValidNumber();
			this.label21 = new System.Windows.Forms.Label();
			this.textOralSurg = new OpenDental.ValidNumber();
			this.label20 = new System.Windows.Forms.Label();
			this.textPerio = new OpenDental.ValidNumber();
			this.label19 = new System.Windows.Forms.Label();
			this.textEndo = new OpenDental.ValidNumber();
			this.label18 = new System.Windows.Forms.Label();
			this.textRoutinePrev = new OpenDental.ValidNumber();
			this.label9 = new System.Windows.Forms.Label();
			this.textCrowns = new OpenDental.ValidNumber();
			this.label15 = new System.Windows.Forms.Label();
			this.textRestorative = new OpenDental.ValidNumber();
			this.label16 = new System.Windows.Forms.Label();
			this.textDiagnostic = new OpenDental.ValidNumber();
			this.label17 = new System.Windows.Forms.Label();
			this.panelSimple = new System.Windows.Forms.Panel();
			this.label14 = new System.Windows.Forms.Label();
			this.textAnnualMaxFam = new OpenDental.ValidDouble();
			this.textDeductibleFam = new OpenDental.ValidDouble();
			this.label13 = new System.Windows.Forms.Label();
			this.textAnnualMax = new OpenDental.ValidDouble();
			this.textFlo = new OpenDental.ValidNumber();
			this.textDeductible = new OpenDental.ValidDouble();
			this.label30 = new System.Windows.Forms.Label();
			this.groupYear = new System.Windows.Forms.GroupBox();
			this.checkCalendarYear = new System.Windows.Forms.CheckBox();
			this.textMonth = new OpenDental.ValidNumber();
			this.textSubscNote = new OpenDental.ODtextBox();
			this.gridBenefits = new OpenDental.UI.ODGrid();
			this.butDelete = new OpenDental.UI.Button();
			this.butAdd = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.groupBox1.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.panelSimple.SuspendLayout();
			this.groupYear.SuspendLayout();
			this.SuspendLayout();
			// 
			// checkSimplified
			// 
			this.checkSimplified.Checked = true;
			this.checkSimplified.CheckState = System.Windows.Forms.CheckState.Checked;
			this.checkSimplified.Location = new System.Drawing.Point(12, 10);
			this.checkSimplified.Name = "checkSimplified";
			this.checkSimplified.Size = new System.Drawing.Size(123, 17);
			this.checkSimplified.TabIndex = 40;
			this.checkSimplified.Text = "Simplified View";
			this.checkSimplified.UseVisualStyleBackColor = true;
			this.checkSimplified.Click += new System.EventHandler(this.checkSimplified_Click);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(62, 39);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(100, 21);
			this.label1.TabIndex = 159;
			this.label1.Text = "Annual Max";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelSubscNote
			// 
			this.labelSubscNote.Location = new System.Drawing.Point(38, 563);
			this.labelSubscNote.Name = "labelSubscNote";
			this.labelSubscNote.Size = new System.Drawing.Size(74, 41);
			this.labelSubscNote.TabIndex = 160;
			this.labelSubscNote.Text = "Notes";
			this.labelSubscNote.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(15, 59);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(147, 21);
			this.label2.TabIndex = 163;
			this.label2.Text = "General Deductible";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(62, 86);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(100, 21);
			this.label4.TabIndex = 167;
			this.label4.Text = "Fluoride to Age";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(27, 46);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(70, 21);
			this.label5.TabIndex = 168;
			this.label5.Text = "BWs";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(99, 30);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(39, 15);
			this.label6.TabIndex = 170;
			this.label6.Text = "#";
			this.label6.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.comboExams);
			this.groupBox1.Controls.Add(this.label24);
			this.groupBox1.Controls.Add(this.textExams);
			this.groupBox1.Controls.Add(this.label8);
			this.groupBox1.Controls.Add(this.comboPano);
			this.groupBox1.Controls.Add(this.textPano);
			this.groupBox1.Controls.Add(this.label7);
			this.groupBox1.Controls.Add(this.comboBW);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Controls.Add(this.textBW);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Location = new System.Drawing.Point(67, 117);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(282, 114);
			this.groupBox1.TabIndex = 171;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Frequencies";
			// 
			// comboExams
			// 
			this.comboExams.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboExams.FormattingEnabled = true;
			this.comboExams.Items.AddRange(new object[] {
            "Every # Years",
            "# Per Year",
            "Every # Months"});
			this.comboExams.Location = new System.Drawing.Point(142, 89);
			this.comboExams.Name = "comboExams";
			this.comboExams.Size = new System.Drawing.Size(136, 21);
			this.comboExams.TabIndex = 11;
			// 
			// label24
			// 
			this.label24.Location = new System.Drawing.Point(6, 17);
			this.label24.Name = "label24";
			this.label24.Size = new System.Drawing.Size(270, 13);
			this.label24.TabIndex = 180;
			this.label24.Text = "These do not affect estimate calculations.";
			this.label24.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			// 
			// textExams
			// 
			this.textExams.Location = new System.Drawing.Point(99, 89);
			this.textExams.MaxVal = 255;
			this.textExams.MinVal = 0;
			this.textExams.Name = "textExams";
			this.textExams.Size = new System.Drawing.Size(39, 20);
			this.textExams.TabIndex = 10;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(27, 88);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(70, 21);
			this.label8.TabIndex = 176;
			this.label8.Text = "Exams";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboPano
			// 
			this.comboPano.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPano.FormattingEnabled = true;
			this.comboPano.Items.AddRange(new object[] {
            "Every # Years",
            "# Per Year",
            "Every # Months"});
			this.comboPano.Location = new System.Drawing.Point(142, 68);
			this.comboPano.Name = "comboPano";
			this.comboPano.Size = new System.Drawing.Size(136, 21);
			this.comboPano.TabIndex = 9;
			// 
			// textPano
			// 
			this.textPano.Location = new System.Drawing.Point(99, 68);
			this.textPano.MaxVal = 255;
			this.textPano.MinVal = 0;
			this.textPano.Name = "textPano";
			this.textPano.Size = new System.Drawing.Size(39, 20);
			this.textPano.TabIndex = 8;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(27, 67);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(70, 21);
			this.label7.TabIndex = 173;
			this.label7.Text = "Pano/FMX";
			this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboBW
			// 
			this.comboBW.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBW.FormattingEnabled = true;
			this.comboBW.Items.AddRange(new object[] {
            "Every # Years",
            "# Per Year",
            "Every # Months"});
			this.comboBW.Location = new System.Drawing.Point(142, 47);
			this.comboBW.Name = "comboBW";
			this.comboBW.Size = new System.Drawing.Size(136, 21);
			this.comboBW.TabIndex = 7;
			// 
			// textBW
			// 
			this.textBW.Location = new System.Drawing.Point(99, 47);
			this.textBW.MaxVal = 255;
			this.textBW.MinVal = 0;
			this.textBW.Name = "textBW";
			this.textBW.Size = new System.Drawing.Size(39, 20);
			this.textBW.TabIndex = 6;
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.textOrthoPercent);
			this.groupBox3.Controls.Add(this.label11);
			this.groupBox3.Controls.Add(this.textOrthoMax);
			this.groupBox3.Controls.Add(this.label10);
			this.groupBox3.Location = new System.Drawing.Point(67, 238);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(282, 63);
			this.groupBox3.TabIndex = 175;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "Ortho";
			// 
			// textOrthoPercent
			// 
			this.textOrthoPercent.Location = new System.Drawing.Point(99, 36);
			this.textOrthoPercent.MaxVal = 255;
			this.textOrthoPercent.MinVal = 0;
			this.textOrthoPercent.Name = "textOrthoPercent";
			this.textOrthoPercent.Size = new System.Drawing.Size(60, 20);
			this.textOrthoPercent.TabIndex = 13;
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(27, 35);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(70, 21);
			this.label11.TabIndex = 174;
			this.label11.Text = "Percentage";
			this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textOrthoMax
			// 
			this.textOrthoMax.Location = new System.Drawing.Point(99, 16);
			this.textOrthoMax.Name = "textOrthoMax";
			this.textOrthoMax.Size = new System.Drawing.Size(73, 20);
			this.textOrthoMax.TabIndex = 12;
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(2, 15);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(94, 21);
			this.label10.TabIndex = 163;
			this.label10.Text = "Lifetime Max";
			this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.textDeductDiagFam);
			this.groupBox4.Controls.Add(this.textDeductXrayFam);
			this.groupBox4.Controls.Add(this.textDeductDiag);
			this.groupBox4.Controls.Add(this.label3);
			this.groupBox4.Controls.Add(this.textDeductXray);
			this.groupBox4.Controls.Add(this.label29);
			this.groupBox4.Controls.Add(this.label27);
			this.groupBox4.Controls.Add(this.label26);
			this.groupBox4.Controls.Add(this.textDeductPreventFam);
			this.groupBox4.Controls.Add(this.textXray);
			this.groupBox4.Controls.Add(this.label25);
			this.groupBox4.Controls.Add(this.label12);
			this.groupBox4.Controls.Add(this.panel3);
			this.groupBox4.Controls.Add(this.panel2);
			this.groupBox4.Controls.Add(this.panel1);
			this.groupBox4.Controls.Add(this.textStand4);
			this.groupBox4.Controls.Add(this.textAccident);
			this.groupBox4.Controls.Add(this.label23);
			this.groupBox4.Controls.Add(this.textStand2);
			this.groupBox4.Controls.Add(this.textMaxProsth);
			this.groupBox4.Controls.Add(this.textDeductPrevent);
			this.groupBox4.Controls.Add(this.label22);
			this.groupBox4.Controls.Add(this.textStand1);
			this.groupBox4.Controls.Add(this.textProsth);
			this.groupBox4.Controls.Add(this.label21);
			this.groupBox4.Controls.Add(this.textOralSurg);
			this.groupBox4.Controls.Add(this.label20);
			this.groupBox4.Controls.Add(this.textPerio);
			this.groupBox4.Controls.Add(this.label19);
			this.groupBox4.Controls.Add(this.textEndo);
			this.groupBox4.Controls.Add(this.label18);
			this.groupBox4.Controls.Add(this.textRoutinePrev);
			this.groupBox4.Controls.Add(this.label9);
			this.groupBox4.Controls.Add(this.textCrowns);
			this.groupBox4.Controls.Add(this.label15);
			this.groupBox4.Controls.Add(this.textRestorative);
			this.groupBox4.Controls.Add(this.label16);
			this.groupBox4.Controls.Add(this.textDiagnostic);
			this.groupBox4.Controls.Add(this.label17);
			this.groupBox4.Location = new System.Drawing.Point(357, 3);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(439, 298);
			this.groupBox4.TabIndex = 176;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "Categories";
			// 
			// textDeductDiagFam
			// 
			this.textDeductDiagFam.Location = new System.Drawing.Point(348, 47);
			this.textDeductDiagFam.Name = "textDeductDiagFam";
			this.textDeductDiagFam.Size = new System.Drawing.Size(62, 20);
			this.textDeductDiagFam.TabIndex = 21;
			// 
			// textDeductXrayFam
			// 
			this.textDeductXrayFam.Location = new System.Drawing.Point(348, 67);
			this.textDeductXrayFam.Name = "textDeductXrayFam";
			this.textDeductXrayFam.Size = new System.Drawing.Size(62, 20);
			this.textDeductXrayFam.TabIndex = 22;
			// 
			// textDeductDiag
			// 
			this.textDeductDiag.Location = new System.Drawing.Point(280, 47);
			this.textDeductDiag.Name = "textDeductDiag";
			this.textDeductDiag.Size = new System.Drawing.Size(62, 20);
			this.textDeductDiag.TabIndex = 18;
			// 
			// label3
			// 
			this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label3.Location = new System.Drawing.Point(275, 12);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(143, 15);
			this.label3.TabIndex = 206;
			this.label3.Text = "Deductibles (if different)";
			this.label3.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// textDeductXray
			// 
			this.textDeductXray.Location = new System.Drawing.Point(280, 67);
			this.textDeductXray.Name = "textDeductXray";
			this.textDeductXray.Size = new System.Drawing.Size(62, 20);
			this.textDeductXray.TabIndex = 19;
			// 
			// label29
			// 
			this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label29.Location = new System.Drawing.Point(348, 30);
			this.label29.Name = "label29";
			this.label29.Size = new System.Drawing.Size(58, 15);
			this.label29.TabIndex = 204;
			this.label29.Text = "Family";
			this.label29.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// label27
			// 
			this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label27.Location = new System.Drawing.Point(283, 30);
			this.label27.Name = "label27";
			this.label27.Size = new System.Drawing.Size(58, 15);
			this.label27.TabIndex = 203;
			this.label27.Text = "Individual";
			this.label27.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// label26
			// 
			this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label26.Location = new System.Drawing.Point(148, 23);
			this.label26.Name = "label26";
			this.label26.Size = new System.Drawing.Size(60, 22);
			this.label26.TabIndex = 202;
			this.label26.Text = "%";
			this.label26.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// textDeductPreventFam
			// 
			this.textDeductPreventFam.Location = new System.Drawing.Point(348, 87);
			this.textDeductPreventFam.Name = "textDeductPreventFam";
			this.textDeductPreventFam.Size = new System.Drawing.Size(62, 20);
			this.textDeductPreventFam.TabIndex = 23;
			// 
			// textXray
			// 
			this.textXray.Location = new System.Drawing.Point(148, 67);
			this.textXray.MaxVal = 255;
			this.textXray.MinVal = 0;
			this.textXray.Name = "textXray";
			this.textXray.Size = new System.Drawing.Size(60, 20);
			this.textXray.TabIndex = 15;
			// 
			// label25
			// 
			this.label25.Location = new System.Drawing.Point(26, 66);
			this.label25.Name = "label25";
			this.label25.Size = new System.Drawing.Size(120, 21);
			this.label25.TabIndex = 200;
			this.label25.Text = "X-Ray (if different)";
			this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label12
			// 
			this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label12.Location = new System.Drawing.Point(213, 23);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(67, 22);
			this.label12.TabIndex = 199;
			this.label12.Text = "Quick %";
			this.label12.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// panel3
			// 
			this.panel3.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panel3.Location = new System.Drawing.Point(43, 244);
			this.panel3.Name = "panel3";
			this.panel3.Size = new System.Drawing.Size(246, 1);
			this.panel3.TabIndex = 198;
			// 
			// panel2
			// 
			this.panel2.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panel2.Location = new System.Drawing.Point(43, 197);
			this.panel2.Name = "panel2";
			this.panel2.Size = new System.Drawing.Size(246, 1);
			this.panel2.TabIndex = 197;
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panel1.Location = new System.Drawing.Point(43, 110);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(380, 1);
			this.panel1.TabIndex = 196;
			// 
			// textStand4
			// 
			this.textStand4.Location = new System.Drawing.Point(214, 213);
			this.textStand4.MaxVal = 255;
			this.textStand4.MinVal = 0;
			this.textStand4.Name = "textStand4";
			this.textStand4.Size = new System.Drawing.Size(60, 20);
			this.textStand4.TabIndex = 31;
			this.textStand4.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textStand4_KeyUp);
			// 
			// textAccident
			// 
			this.textAccident.Location = new System.Drawing.Point(148, 268);
			this.textAccident.MaxVal = 255;
			this.textAccident.MinVal = 0;
			this.textAccident.Name = "textAccident";
			this.textAccident.Size = new System.Drawing.Size(60, 20);
			this.textAccident.TabIndex = 33;
			// 
			// label23
			// 
			this.label23.Location = new System.Drawing.Point(26, 267);
			this.label23.Name = "label23";
			this.label23.Size = new System.Drawing.Size(120, 21);
			this.label23.TabIndex = 194;
			this.label23.Text = "Accident";
			this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textStand2
			// 
			this.textStand2.Location = new System.Drawing.Point(214, 144);
			this.textStand2.MaxVal = 255;
			this.textStand2.MinVal = 0;
			this.textStand2.Name = "textStand2";
			this.textStand2.Size = new System.Drawing.Size(60, 20);
			this.textStand2.TabIndex = 28;
			this.textStand2.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textStand2_KeyUp);
			// 
			// textMaxProsth
			// 
			this.textMaxProsth.Location = new System.Drawing.Point(148, 248);
			this.textMaxProsth.MaxVal = 255;
			this.textMaxProsth.MinVal = 0;
			this.textMaxProsth.Name = "textMaxProsth";
			this.textMaxProsth.Size = new System.Drawing.Size(60, 20);
			this.textMaxProsth.TabIndex = 32;
			// 
			// textDeductPrevent
			// 
			this.textDeductPrevent.Location = new System.Drawing.Point(280, 87);
			this.textDeductPrevent.Name = "textDeductPrevent";
			this.textDeductPrevent.Size = new System.Drawing.Size(62, 20);
			this.textDeductPrevent.TabIndex = 20;
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(26, 247);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(120, 21);
			this.label22.TabIndex = 192;
			this.label22.Text = "Maxillofacial Prosth";
			this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textStand1
			// 
			this.textStand1.Location = new System.Drawing.Point(214, 67);
			this.textStand1.MaxVal = 255;
			this.textStand1.MinVal = 0;
			this.textStand1.Name = "textStand1";
			this.textStand1.Size = new System.Drawing.Size(60, 20);
			this.textStand1.TabIndex = 17;
			this.textStand1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textStand1_KeyUp);
			// 
			// textProsth
			// 
			this.textProsth.Location = new System.Drawing.Point(148, 221);
			this.textProsth.MaxVal = 255;
			this.textProsth.MinVal = 0;
			this.textProsth.Name = "textProsth";
			this.textProsth.Size = new System.Drawing.Size(60, 20);
			this.textProsth.TabIndex = 30;
			// 
			// label21
			// 
			this.label21.Location = new System.Drawing.Point(26, 220);
			this.label21.Name = "label21";
			this.label21.Size = new System.Drawing.Size(120, 21);
			this.label21.TabIndex = 190;
			this.label21.Text = "Prosthodontics";
			this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textOralSurg
			// 
			this.textOralSurg.Location = new System.Drawing.Point(148, 174);
			this.textOralSurg.MaxVal = 255;
			this.textOralSurg.MinVal = 0;
			this.textOralSurg.Name = "textOralSurg";
			this.textOralSurg.Size = new System.Drawing.Size(60, 20);
			this.textOralSurg.TabIndex = 27;
			// 
			// label20
			// 
			this.label20.Location = new System.Drawing.Point(26, 173);
			this.label20.Name = "label20";
			this.label20.Size = new System.Drawing.Size(120, 21);
			this.label20.TabIndex = 188;
			this.label20.Text = "Oral Surgery";
			this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textPerio
			// 
			this.textPerio.Location = new System.Drawing.Point(148, 154);
			this.textPerio.MaxVal = 255;
			this.textPerio.MinVal = 0;
			this.textPerio.Name = "textPerio";
			this.textPerio.Size = new System.Drawing.Size(60, 20);
			this.textPerio.TabIndex = 26;
			// 
			// label19
			// 
			this.label19.Location = new System.Drawing.Point(26, 153);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(120, 21);
			this.label19.TabIndex = 186;
			this.label19.Text = "Perio";
			this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textEndo
			// 
			this.textEndo.Location = new System.Drawing.Point(148, 134);
			this.textEndo.MaxVal = 255;
			this.textEndo.MinVal = 0;
			this.textEndo.Name = "textEndo";
			this.textEndo.Size = new System.Drawing.Size(60, 20);
			this.textEndo.TabIndex = 25;
			// 
			// label18
			// 
			this.label18.Location = new System.Drawing.Point(26, 133);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(120, 21);
			this.label18.TabIndex = 184;
			this.label18.Text = "Endo";
			this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textRoutinePrev
			// 
			this.textRoutinePrev.Location = new System.Drawing.Point(148, 87);
			this.textRoutinePrev.MaxVal = 255;
			this.textRoutinePrev.MinVal = 0;
			this.textRoutinePrev.Name = "textRoutinePrev";
			this.textRoutinePrev.Size = new System.Drawing.Size(60, 20);
			this.textRoutinePrev.TabIndex = 16;
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(26, 86);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(120, 21);
			this.label9.TabIndex = 182;
			this.label9.Text = "Routine Preventive";
			this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textCrowns
			// 
			this.textCrowns.Location = new System.Drawing.Point(148, 201);
			this.textCrowns.MaxVal = 255;
			this.textCrowns.MinVal = 0;
			this.textCrowns.Name = "textCrowns";
			this.textCrowns.Size = new System.Drawing.Size(60, 20);
			this.textCrowns.TabIndex = 29;
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(26, 200);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(120, 21);
			this.label15.TabIndex = 180;
			this.label15.Text = "Crowns";
			this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textRestorative
			// 
			this.textRestorative.Location = new System.Drawing.Point(148, 114);
			this.textRestorative.MaxVal = 255;
			this.textRestorative.MinVal = 0;
			this.textRestorative.Name = "textRestorative";
			this.textRestorative.Size = new System.Drawing.Size(60, 20);
			this.textRestorative.TabIndex = 24;
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(26, 113);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(120, 21);
			this.label16.TabIndex = 178;
			this.label16.Text = "Restorative";
			this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDiagnostic
			// 
			this.textDiagnostic.Location = new System.Drawing.Point(148, 47);
			this.textDiagnostic.MaxVal = 255;
			this.textDiagnostic.MinVal = 0;
			this.textDiagnostic.Name = "textDiagnostic";
			this.textDiagnostic.Size = new System.Drawing.Size(60, 20);
			this.textDiagnostic.TabIndex = 14;
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(3, 46);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(143, 21);
			this.label17.TabIndex = 176;
			this.label17.Text = "Diagnostic (includes x-ray)";
			this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// panelSimple
			// 
			this.panelSimple.Controls.Add(this.label14);
			this.panelSimple.Controls.Add(this.textAnnualMaxFam);
			this.panelSimple.Controls.Add(this.textDeductibleFam);
			this.panelSimple.Controls.Add(this.label13);
			this.panelSimple.Controls.Add(this.textAnnualMax);
			this.panelSimple.Controls.Add(this.label1);
			this.panelSimple.Controls.Add(this.textFlo);
			this.panelSimple.Controls.Add(this.label2);
			this.panelSimple.Controls.Add(this.groupBox4);
			this.panelSimple.Controls.Add(this.textDeductible);
			this.panelSimple.Controls.Add(this.groupBox3);
			this.panelSimple.Controls.Add(this.groupBox1);
			this.panelSimple.Controls.Add(this.label4);
			this.panelSimple.Location = new System.Drawing.Point(-2, 26);
			this.panelSimple.Name = "panelSimple";
			this.panelSimple.Size = new System.Drawing.Size(804, 305);
			this.panelSimple.TabIndex = 179;
			// 
			// label14
			// 
			this.label14.Location = new System.Drawing.Point(242, 23);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(76, 15);
			this.label14.TabIndex = 183;
			this.label14.Text = "Family";
			this.label14.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// textAnnualMaxFam
			// 
			this.textAnnualMaxFam.Location = new System.Drawing.Point(243, 39);
			this.textAnnualMaxFam.Name = "textAnnualMaxFam";
			this.textAnnualMaxFam.Size = new System.Drawing.Size(73, 20);
			this.textAnnualMaxFam.TabIndex = 2;
			// 
			// textDeductibleFam
			// 
			this.textDeductibleFam.Location = new System.Drawing.Point(243, 59);
			this.textDeductibleFam.Name = "textDeductibleFam";
			this.textDeductibleFam.Size = new System.Drawing.Size(73, 20);
			this.textDeductibleFam.TabIndex = 4;
			// 
			// label13
			// 
			this.label13.Location = new System.Drawing.Point(165, 23);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(78, 15);
			this.label13.TabIndex = 179;
			this.label13.Text = "Individual";
			this.label13.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// textAnnualMax
			// 
			this.textAnnualMax.Location = new System.Drawing.Point(166, 39);
			this.textAnnualMax.Name = "textAnnualMax";
			this.textAnnualMax.Size = new System.Drawing.Size(73, 20);
			this.textAnnualMax.TabIndex = 1;
			// 
			// textFlo
			// 
			this.textFlo.Location = new System.Drawing.Point(166, 86);
			this.textFlo.MaxVal = 255;
			this.textFlo.MinVal = 0;
			this.textFlo.Name = "textFlo";
			this.textFlo.Size = new System.Drawing.Size(39, 20);
			this.textFlo.TabIndex = 5;
			// 
			// textDeductible
			// 
			this.textDeductible.Location = new System.Drawing.Point(166, 59);
			this.textDeductible.Name = "textDeductible";
			this.textDeductible.Size = new System.Drawing.Size(73, 20);
			this.textDeductible.TabIndex = 3;
			// 
			// label30
			// 
			this.label30.Location = new System.Drawing.Point(89, 15);
			this.label30.Name = "label30";
			this.label30.Size = new System.Drawing.Size(56, 16);
			this.label30.TabIndex = 190;
			this.label30.Text = "Month";
			this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupYear
			// 
			this.groupYear.Controls.Add(this.checkCalendarYear);
			this.groupYear.Controls.Add(this.textMonth);
			this.groupYear.Controls.Add(this.label30);
			this.groupYear.Location = new System.Drawing.Point(141, 3);
			this.groupYear.Name = "groupYear";
			this.groupYear.Size = new System.Drawing.Size(181, 36);
			this.groupYear.TabIndex = 192;
			this.groupYear.TabStop = false;
			this.groupYear.Text = "Benefit Year";
			// 
			// checkCalendarYear
			// 
			this.checkCalendarYear.Location = new System.Drawing.Point(8, 16);
			this.checkCalendarYear.Name = "checkCalendarYear";
			this.checkCalendarYear.Size = new System.Drawing.Size(82, 17);
			this.checkCalendarYear.TabIndex = 41;
			this.checkCalendarYear.Text = "Calendar";
			this.checkCalendarYear.UseVisualStyleBackColor = true;
			this.checkCalendarYear.Click += new System.EventHandler(this.checkCalendarYear_Click);
			// 
			// textMonth
			// 
			this.textMonth.Location = new System.Drawing.Point(145, 13);
			this.textMonth.MaxVal = 12;
			this.textMonth.MinVal = 1;
			this.textMonth.Name = "textMonth";
			this.textMonth.Size = new System.Drawing.Size(28, 20);
			this.textMonth.TabIndex = 42;
			// 
			// textSubscNote
			// 
			this.textSubscNote.AcceptsTab = true;
			this.textSubscNote.DetectUrls = false;
			this.textSubscNote.Location = new System.Drawing.Point(112, 560);
			this.textSubscNote.Name = "textSubscNote";
			this.textSubscNote.QuickPasteType = OpenDentBusiness.QuickPasteType.InsPlan;
			this.textSubscNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textSubscNote.Size = new System.Drawing.Size(485, 98);
			this.textSubscNote.TabIndex = 100;
			this.textSubscNote.Text = "1 - Benefits\n2\n3 lines will show here in 46 vert.\n4 lines will show here in 59 ve" +
    "rt.\n5 lines in 72 vert\n6 lines in 85 vert\n7 lines in 98";
			// 
			// gridBenefits
			// 
			this.gridBenefits.HScrollVisible = false;
			this.gridBenefits.Location = new System.Drawing.Point(23, 337);
			this.gridBenefits.Name = "gridBenefits";
			this.gridBenefits.ScrollValue = 0;
			this.gridBenefits.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridBenefits.Size = new System.Drawing.Size(574, 180);
			this.gridBenefits.TabIndex = 37;
			this.gridBenefits.Title = "Other Benefits";
			this.gridBenefits.TranslationName = "TableInsBenefits";
			this.gridBenefits.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridBenefits_CellDoubleClick);
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(110, 524);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(78, 24);
			this.butDelete.TabIndex = 36;
			this.butDelete.Text = "Delete";
			this.butDelete.Click += new System.EventHandler(this.butClear_Click);
			// 
			// butAdd
			// 
			this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butAdd.Autosize = true;
			this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAdd.CornerRadius = 4F;
			this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
			this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAdd.Location = new System.Drawing.Point(23, 524);
			this.butAdd.Name = "butAdd";
			this.butAdd.Size = new System.Drawing.Size(78, 24);
			this.butAdd.TabIndex = 35;
			this.butAdd.Text = "Add";
			this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(719, 591);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75, 24);
			this.butOK.TabIndex = 38;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butCancel.Autosize = true;
			this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butCancel.CornerRadius = 4F;
			this.butCancel.Location = new System.Drawing.Point(719, 632);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75, 24);
			this.butCancel.TabIndex = 39;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// FormInsBenefits
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(806, 670);
			this.Controls.Add(this.groupYear);
			this.Controls.Add(this.checkSimplified);
			this.Controls.Add(this.panelSimple);
			this.Controls.Add(this.textSubscNote);
			this.Controls.Add(this.labelSubscNote);
			this.Controls.Add(this.gridBenefits);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.butAdd);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormInsBenefits";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Benefits";
			this.Load += new System.EventHandler(this.FormInsBenefits_Load);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.groupBox3.ResumeLayout(false);
			this.groupBox3.PerformLayout();
			this.groupBox4.ResumeLayout(false);
			this.groupBox4.PerformLayout();
			this.panelSimple.ResumeLayout(false);
			this.panelSimple.PerformLayout();
			this.groupYear.ResumeLayout(false);
			this.groupYear.PerformLayout();
			this.ResumeLayout(false);

		}
Esempio n. 22
0
		private void InitializeComponent(){
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProcEdit));
			this.labelDate = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.labelTooth = new System.Windows.Forms.Label();
			this.labelSurfaces = new System.Windows.Forms.Label();
			this.labelAmount = new System.Windows.Forms.Label();
			this.textProc = new System.Windows.Forms.TextBox();
			this.textTooth = new System.Windows.Forms.TextBox();
			this.textSurfaces = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.textDesc = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.labelRange = new System.Windows.Forms.Label();
			this.textRange = new System.Windows.Forms.TextBox();
			this.groupQuadrant = new System.Windows.Forms.GroupBox();
			this.radioLR = new System.Windows.Forms.RadioButton();
			this.radioLL = new System.Windows.Forms.RadioButton();
			this.radioUL = new System.Windows.Forms.RadioButton();
			this.radioUR = new System.Windows.Forms.RadioButton();
			this.groupArch = new System.Windows.Forms.GroupBox();
			this.radioL = new System.Windows.Forms.RadioButton();
			this.radioU = new System.Windows.Forms.RadioButton();
			this.panelSurfaces = new System.Windows.Forms.Panel();
			this.groupSextant = new System.Windows.Forms.GroupBox();
			this.radioS6 = new System.Windows.Forms.RadioButton();
			this.radioS5 = new System.Windows.Forms.RadioButton();
			this.radioS4 = new System.Windows.Forms.RadioButton();
			this.radioS2 = new System.Windows.Forms.RadioButton();
			this.radioS3 = new System.Windows.Forms.RadioButton();
			this.radioS1 = new System.Windows.Forms.RadioButton();
			this.label9 = new System.Windows.Forms.Label();
			this.labelDx = new System.Windows.Forms.Label();
			this.panel1 = new System.Windows.Forms.Panel();
			this.textTimeFinal = new System.Windows.Forms.TextBox();
			this.labelTimeFinal = new System.Windows.Forms.Label();
			this.textTimeStart = new System.Windows.Forms.TextBox();
			this.textTimeEnd = new System.Windows.Forms.TextBox();
			this.label27 = new System.Windows.Forms.Label();
			this.label26 = new System.Windows.Forms.Label();
			this.listBoxTeeth = new System.Windows.Forms.ListBox();
			this.label12 = new System.Windows.Forms.Label();
			this.labelStartTime = new System.Windows.Forms.Label();
			this.labelEndTime = new System.Windows.Forms.Label();
			this.listBoxTeeth2 = new System.Windows.Forms.ListBox();
			this.textDrugQty = new System.Windows.Forms.TextBox();
			this.label10 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.textDrugNDC = new System.Windows.Forms.TextBox();
			this.comboDrugUnit = new System.Windows.Forms.ComboBox();
			this.label1 = new System.Windows.Forms.Label();
			this.textRevCode = new System.Windows.Forms.TextBox();
			this.label22 = new System.Windows.Forms.Label();
			this.textUnitQty = new System.Windows.Forms.TextBox();
			this.label21 = new System.Windows.Forms.Label();
			this.textCodeMod4 = new System.Windows.Forms.TextBox();
			this.textCodeMod3 = new System.Windows.Forms.TextBox();
			this.textCodeMod2 = new System.Windows.Forms.TextBox();
			this.label19 = new System.Windows.Forms.Label();
			this.textCodeMod1 = new System.Windows.Forms.TextBox();
			this.checkIsPrincDiag = new System.Windows.Forms.CheckBox();
			this.label11 = new System.Windows.Forms.Label();
			this.textDiagnosticCode = new System.Windows.Forms.TextBox();
			this.label8 = new System.Windows.Forms.Label();
			this.textMedicalCode = new System.Windows.Forms.TextBox();
			this.labelClaim = new System.Windows.Forms.Label();
			this.comboPlaceService = new System.Windows.Forms.ComboBox();
			this.labelPlaceService = new System.Windows.Forms.Label();
			this.labelPriority = new System.Windows.Forms.Label();
			this.labelSetComplete = new System.Windows.Forms.Label();
			this.checkNoBillIns = new System.Windows.Forms.CheckBox();
			this.labelIncomplete = new System.Windows.Forms.Label();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label15 = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.comboPriority = new System.Windows.Forms.ComboBox();
			this.comboDx = new System.Windows.Forms.ComboBox();
			this.comboProvNum = new System.Windows.Forms.ComboBox();
			this.textUser = new System.Windows.Forms.TextBox();
			this.comboBillingTypeTwo = new System.Windows.Forms.ComboBox();
			this.labelBillingTypeTwo = new System.Windows.Forms.Label();
			this.comboBillingTypeOne = new System.Windows.Forms.ComboBox();
			this.labelBillingTypeOne = new System.Windows.Forms.Label();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.labelInvalidSig = new System.Windows.Forms.Label();
			this.textSite = new System.Windows.Forms.TextBox();
			this.labelSite = new System.Windows.Forms.Label();
			this.checkHideGraphics = new System.Windows.Forms.CheckBox();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.listProsth = new System.Windows.Forms.ListBox();
			this.groupProsth = new System.Windows.Forms.GroupBox();
			this.checkTypeCodeA = new System.Windows.Forms.CheckBox();
			this.checkTypeCodeB = new System.Windows.Forms.CheckBox();
			this.checkTypeCodeC = new System.Windows.Forms.CheckBox();
			this.checkTypeCodeE = new System.Windows.Forms.CheckBox();
			this.checkTypeCodeL = new System.Windows.Forms.CheckBox();
			this.checkTypeCodeX = new System.Windows.Forms.CheckBox();
			this.checkTypeCodeS = new System.Windows.Forms.CheckBox();
			this.groupCanadianProcTypeCode = new System.Windows.Forms.GroupBox();
			this.labelDPCpost = new System.Windows.Forms.Label();
			this.comboDPCpost = new System.Windows.Forms.ComboBox();
			this.labelScheduleBy = new System.Windows.Forms.Label();
			this.checkIsRepair = new System.Windows.Forms.CheckBox();
			this.checkIsEffComm = new System.Windows.Forms.CheckBox();
			this.checkIsOnCall = new System.Windows.Forms.CheckBox();
			this.comboDPC = new System.Windows.Forms.ComboBox();
			this.comboStatus = new System.Windows.Forms.ComboBox();
			this.labelStatus = new System.Windows.Forms.Label();
			this.labelDateStop = new System.Windows.Forms.Label();
			this.labelDateSched = new System.Windows.Forms.Label();
			this.labelDPC = new System.Windows.Forms.Label();
			this.comboPrognosis = new System.Windows.Forms.ComboBox();
			this.labelPrognosis = new System.Windows.Forms.Label();
			this.comboProcStatus = new System.Windows.Forms.ComboBox();
			this.label13 = new System.Windows.Forms.Label();
			this.textReferral = new System.Windows.Forms.TextBox();
			this.labelClaimNote = new System.Windows.Forms.Label();
			this.tabControl = new System.Windows.Forms.TabControl();
			this.tabPageFinancial = new System.Windows.Forms.TabPage();
			this.tabPageMedical = new System.Windows.Forms.TabPage();
			this.label17 = new System.Windows.Forms.Label();
			this.comboUnitType = new System.Windows.Forms.ComboBox();
			this.tabPageMisc = new System.Windows.Forms.TabPage();
			this.textBillingNote = new System.Windows.Forms.TextBox();
			this.label18 = new System.Windows.Forms.Label();
			this.tabPageCanada = new System.Windows.Forms.TabPage();
			this.labelCanadaLabFee2 = new System.Windows.Forms.Label();
			this.labelCanadaLabFee1 = new System.Windows.Forms.Label();
			this.tabPageOrion = new System.Windows.Forms.TabPage();
			this.labelLocked = new System.Windows.Forms.Label();
			this.gridIns = new OpenDental.UI.ODGrid();
			this.label20 = new System.Windows.Forms.Label();
			this.textSnomedBodySite = new System.Windows.Forms.TextBox();
			this.butSearch = new OpenDental.UI.Button();
			this.butLock = new OpenDental.UI.Button();
			this.butInvalidate = new OpenDental.UI.Button();
			this.butAppend = new OpenDental.UI.Button();
			this.butAddEstimate = new OpenDental.UI.Button();
			this.tbAdj = new OpenDental.TableProcAdj();
			this.tbPay = new OpenDental.TableProcPay();
			this.butAddAdjust = new OpenDental.UI.Button();
			this.butNoneSnomedBodySite = new OpenDental.UI.Button();
			this.butSnomedBodySiteSelect = new OpenDental.UI.Button();
			this.butPickSite = new OpenDental.UI.Button();
			this.textCanadaLabFee2 = new OpenDental.ValidDouble();
			this.textCanadaLabFee1 = new OpenDental.ValidDouble();
			this.textDateStop = new OpenDental.ValidDate();
			this.textDateScheduled = new OpenDental.ValidDate();
			this.textClaimNote = new OpenDental.ODtextBox();
			this.butReferral = new OpenDental.UI.Button();
			this.butPickProv = new OpenDental.UI.Button();
			this.butTopazSign = new OpenDental.UI.Button();
			this.buttonUseAutoNote = new OpenDental.UI.Button();
			this.sigBox = new OpenDental.UI.SignatureBox();
			this.butClearSig = new OpenDental.UI.Button();
			this.textDateOriginalProsth = new OpenDental.ValidDate();
			this.textNotes = new OpenDental.ODtextBox();
			this.butSetComplete = new OpenDental.UI.Button();
			this.butEditAnyway = new OpenDental.UI.Button();
			this.butDelete = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.textDate = new OpenDental.ValidDate();
			this.butNow = new OpenDental.UI.Button();
			this.butD = new OpenDental.UI.Button();
			this.butBF = new OpenDental.UI.Button();
			this.butL = new OpenDental.UI.Button();
			this.butM = new OpenDental.UI.Button();
			this.butV = new OpenDental.UI.Button();
			this.butOI = new OpenDental.UI.Button();
			this.textDateTP = new OpenDental.ValidDate();
			this.textDateEntry = new OpenDental.ValidDate();
			this.textProcFee = new OpenDental.ValidDouble();
			this.butChange = new OpenDental.UI.Button();
			this.groupQuadrant.SuspendLayout();
			this.groupArch.SuspendLayout();
			this.panelSurfaces.SuspendLayout();
			this.groupSextant.SuspendLayout();
			this.panel1.SuspendLayout();
			this.groupProsth.SuspendLayout();
			this.groupCanadianProcTypeCode.SuspendLayout();
			this.tabControl.SuspendLayout();
			this.tabPageFinancial.SuspendLayout();
			this.tabPageMedical.SuspendLayout();
			this.tabPageMisc.SuspendLayout();
			this.tabPageCanada.SuspendLayout();
			this.tabPageOrion.SuspendLayout();
			this.SuspendLayout();
			// 
			// labelDate
			// 
			this.labelDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelDate.Location = new System.Drawing.Point(8, 44);
			this.labelDate.Name = "labelDate";
			this.labelDate.Size = new System.Drawing.Size(96, 14);
			this.labelDate.TabIndex = 0;
			this.labelDate.Text = "Date";
			this.labelDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label2
			// 
			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(26, 63);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(79, 12);
			this.label2.TabIndex = 1;
			this.label2.Text = "Procedure";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelTooth
			// 
			this.labelTooth.Location = new System.Drawing.Point(68, 107);
			this.labelTooth.Name = "labelTooth";
			this.labelTooth.Size = new System.Drawing.Size(36, 12);
			this.labelTooth.TabIndex = 2;
			this.labelTooth.Text = "Tooth";
			this.labelTooth.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelTooth.Visible = false;
			// 
			// labelSurfaces
			// 
			this.labelSurfaces.Location = new System.Drawing.Point(33, 135);
			this.labelSurfaces.Name = "labelSurfaces";
			this.labelSurfaces.Size = new System.Drawing.Size(73, 16);
			this.labelSurfaces.TabIndex = 3;
			this.labelSurfaces.Text = "Surfaces";
			this.labelSurfaces.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelSurfaces.Visible = false;
			// 
			// labelAmount
			// 
			this.labelAmount.Location = new System.Drawing.Point(30, 158);
			this.labelAmount.Name = "labelAmount";
			this.labelAmount.Size = new System.Drawing.Size(75, 16);
			this.labelAmount.TabIndex = 4;
			this.labelAmount.Text = "Amount";
			this.labelAmount.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textProc
			// 
			this.textProc.Location = new System.Drawing.Point(106, 61);
			this.textProc.Name = "textProc";
			this.textProc.ReadOnly = true;
			this.textProc.Size = new System.Drawing.Size(76, 20);
			this.textProc.TabIndex = 6;
			// 
			// textTooth
			// 
			this.textTooth.Location = new System.Drawing.Point(106, 105);
			this.textTooth.Name = "textTooth";
			this.textTooth.Size = new System.Drawing.Size(35, 20);
			this.textTooth.TabIndex = 7;
			this.textTooth.Visible = false;
			this.textTooth.Validating += new System.ComponentModel.CancelEventHandler(this.textTooth_Validating);
			// 
			// textSurfaces
			// 
			this.textSurfaces.Location = new System.Drawing.Point(106, 133);
			this.textSurfaces.Name = "textSurfaces";
			this.textSurfaces.Size = new System.Drawing.Size(68, 20);
			this.textSurfaces.TabIndex = 4;
			this.textSurfaces.Visible = false;
			this.textSurfaces.TextChanged += new System.EventHandler(this.textSurfaces_TextChanged);
			this.textSurfaces.Validating += new System.ComponentModel.CancelEventHandler(this.textSurfaces_Validating);
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(0, 81);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(105, 16);
			this.label6.TabIndex = 13;
			this.label6.Text = "Description";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDesc
			// 
			this.textDesc.BackColor = System.Drawing.SystemColors.Control;
			this.textDesc.Location = new System.Drawing.Point(106, 81);
			this.textDesc.Name = "textDesc";
			this.textDesc.Size = new System.Drawing.Size(216, 20);
			this.textDesc.TabIndex = 16;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(429, 163);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(73, 16);
			this.label7.TabIndex = 0;
			this.label7.Text = "&Notes";
			this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelRange
			// 
			this.labelRange.Location = new System.Drawing.Point(24, 107);
			this.labelRange.Name = "labelRange";
			this.labelRange.Size = new System.Drawing.Size(82, 16);
			this.labelRange.TabIndex = 33;
			this.labelRange.Text = "Tooth Range";
			this.labelRange.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelRange.Visible = false;
			// 
			// textRange
			// 
			this.textRange.Location = new System.Drawing.Point(106, 105);
			this.textRange.Name = "textRange";
			this.textRange.Size = new System.Drawing.Size(100, 20);
			this.textRange.TabIndex = 34;
			this.textRange.Visible = false;
			// 
			// groupQuadrant
			// 
			this.groupQuadrant.Controls.Add(this.radioLR);
			this.groupQuadrant.Controls.Add(this.radioLL);
			this.groupQuadrant.Controls.Add(this.radioUL);
			this.groupQuadrant.Controls.Add(this.radioUR);
			this.groupQuadrant.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupQuadrant.Location = new System.Drawing.Point(104, 99);
			this.groupQuadrant.Name = "groupQuadrant";
			this.groupQuadrant.Size = new System.Drawing.Size(108, 56);
			this.groupQuadrant.TabIndex = 36;
			this.groupQuadrant.TabStop = false;
			this.groupQuadrant.Text = "Quadrant";
			this.groupQuadrant.Visible = false;
			// 
			// radioLR
			// 
			this.radioLR.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioLR.Location = new System.Drawing.Point(12, 36);
			this.radioLR.Name = "radioLR";
			this.radioLR.Size = new System.Drawing.Size(40, 16);
			this.radioLR.TabIndex = 3;
			this.radioLR.Text = "LR";
			this.radioLR.Click += new System.EventHandler(this.radioLR_Click);
			// 
			// radioLL
			// 
			this.radioLL.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioLL.Location = new System.Drawing.Point(64, 36);
			this.radioLL.Name = "radioLL";
			this.radioLL.Size = new System.Drawing.Size(40, 16);
			this.radioLL.TabIndex = 1;
			this.radioLL.Text = "LL";
			this.radioLL.Click += new System.EventHandler(this.radioLL_Click);
			// 
			// radioUL
			// 
			this.radioUL.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioUL.Location = new System.Drawing.Point(64, 16);
			this.radioUL.Name = "radioUL";
			this.radioUL.Size = new System.Drawing.Size(40, 16);
			this.radioUL.TabIndex = 0;
			this.radioUL.Text = "UL";
			this.radioUL.Click += new System.EventHandler(this.radioUL_Click);
			// 
			// radioUR
			// 
			this.radioUR.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioUR.Location = new System.Drawing.Point(12, 16);
			this.radioUR.Name = "radioUR";
			this.radioUR.Size = new System.Drawing.Size(40, 16);
			this.radioUR.TabIndex = 0;
			this.radioUR.Text = "UR";
			this.radioUR.Click += new System.EventHandler(this.radioUR_Click);
			// 
			// groupArch
			// 
			this.groupArch.Controls.Add(this.radioL);
			this.groupArch.Controls.Add(this.radioU);
			this.groupArch.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupArch.Location = new System.Drawing.Point(104, 99);
			this.groupArch.Name = "groupArch";
			this.groupArch.Size = new System.Drawing.Size(60, 56);
			this.groupArch.TabIndex = 3;
			this.groupArch.TabStop = false;
			this.groupArch.Text = "Arch";
			this.groupArch.Visible = false;
			// 
			// radioL
			// 
			this.radioL.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioL.Location = new System.Drawing.Point(12, 36);
			this.radioL.Name = "radioL";
			this.radioL.Size = new System.Drawing.Size(28, 16);
			this.radioL.TabIndex = 1;
			this.radioL.Text = "L";
			this.radioL.Click += new System.EventHandler(this.radioL_Click);
			// 
			// radioU
			// 
			this.radioU.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioU.Location = new System.Drawing.Point(12, 16);
			this.radioU.Name = "radioU";
			this.radioU.Size = new System.Drawing.Size(32, 16);
			this.radioU.TabIndex = 0;
			this.radioU.Text = "U";
			this.radioU.Click += new System.EventHandler(this.radioU_Click);
			// 
			// panelSurfaces
			// 
			this.panelSurfaces.Controls.Add(this.butD);
			this.panelSurfaces.Controls.Add(this.butBF);
			this.panelSurfaces.Controls.Add(this.butL);
			this.panelSurfaces.Controls.Add(this.butM);
			this.panelSurfaces.Controls.Add(this.butV);
			this.panelSurfaces.Controls.Add(this.butOI);
			this.panelSurfaces.Location = new System.Drawing.Point(188, 106);
			this.panelSurfaces.Name = "panelSurfaces";
			this.panelSurfaces.Size = new System.Drawing.Size(96, 66);
			this.panelSurfaces.TabIndex = 100;
			this.panelSurfaces.Visible = false;
			// 
			// groupSextant
			// 
			this.groupSextant.Controls.Add(this.radioS6);
			this.groupSextant.Controls.Add(this.radioS5);
			this.groupSextant.Controls.Add(this.radioS4);
			this.groupSextant.Controls.Add(this.radioS2);
			this.groupSextant.Controls.Add(this.radioS3);
			this.groupSextant.Controls.Add(this.radioS1);
			this.groupSextant.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupSextant.Location = new System.Drawing.Point(104, 99);
			this.groupSextant.Name = "groupSextant";
			this.groupSextant.Size = new System.Drawing.Size(156, 56);
			this.groupSextant.TabIndex = 5;
			this.groupSextant.TabStop = false;
			this.groupSextant.Text = "Sextant";
			this.groupSextant.Visible = false;
			// 
			// radioS6
			// 
			this.radioS6.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioS6.Location = new System.Drawing.Point(12, 36);
			this.radioS6.Name = "radioS6";
			this.radioS6.Size = new System.Drawing.Size(36, 16);
			this.radioS6.TabIndex = 5;
			this.radioS6.Text = "6";
			this.radioS6.Click += new System.EventHandler(this.radioS6_Click);
			// 
			// radioS5
			// 
			this.radioS5.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioS5.Location = new System.Drawing.Point(60, 36);
			this.radioS5.Name = "radioS5";
			this.radioS5.Size = new System.Drawing.Size(36, 16);
			this.radioS5.TabIndex = 4;
			this.radioS5.Text = "5";
			this.radioS5.Click += new System.EventHandler(this.radioS5_Click);
			// 
			// radioS4
			// 
			this.radioS4.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioS4.Location = new System.Drawing.Point(108, 36);
			this.radioS4.Name = "radioS4";
			this.radioS4.Size = new System.Drawing.Size(36, 16);
			this.radioS4.TabIndex = 1;
			this.radioS4.Text = "4";
			this.radioS4.Click += new System.EventHandler(this.radioS4_Click);
			// 
			// radioS2
			// 
			this.radioS2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioS2.Location = new System.Drawing.Point(60, 16);
			this.radioS2.Name = "radioS2";
			this.radioS2.Size = new System.Drawing.Size(36, 16);
			this.radioS2.TabIndex = 2;
			this.radioS2.Text = "2";
			this.radioS2.Click += new System.EventHandler(this.radioS2_Click);
			// 
			// radioS3
			// 
			this.radioS3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioS3.Location = new System.Drawing.Point(108, 16);
			this.radioS3.Name = "radioS3";
			this.radioS3.Size = new System.Drawing.Size(36, 16);
			this.radioS3.TabIndex = 0;
			this.radioS3.Text = "3";
			this.radioS3.Click += new System.EventHandler(this.radioS3_Click);
			// 
			// radioS1
			// 
			this.radioS1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioS1.Location = new System.Drawing.Point(12, 16);
			this.radioS1.Name = "radioS1";
			this.radioS1.Size = new System.Drawing.Size(36, 16);
			this.radioS1.TabIndex = 0;
			this.radioS1.Text = "1";
			this.radioS1.Click += new System.EventHandler(this.radioS1_Click);
			// 
			// label9
			// 
			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(5, 199);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(100, 14);
			this.label9.TabIndex = 45;
			this.label9.Text = "Provider";
			this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelDx
			// 
			this.labelDx.Location = new System.Drawing.Point(5, 242);
			this.labelDx.Name = "labelDx";
			this.labelDx.Size = new System.Drawing.Size(100, 14);
			this.labelDx.TabIndex = 46;
			this.labelDx.Text = "Diagnosis";
			this.labelDx.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// panel1
			// 
			this.panel1.AllowDrop = true;
			this.panel1.Controls.Add(this.textTimeFinal);
			this.panel1.Controls.Add(this.labelTimeFinal);
			this.panel1.Controls.Add(this.textTimeStart);
			this.panel1.Controls.Add(this.textTimeEnd);
			this.panel1.Controls.Add(this.textDate);
			this.panel1.Controls.Add(this.butNow);
			this.panel1.Controls.Add(this.panelSurfaces);
			this.panel1.Controls.Add(this.textDateTP);
			this.panel1.Controls.Add(this.label27);
			this.panel1.Controls.Add(this.label26);
			this.panel1.Controls.Add(this.listBoxTeeth);
			this.panel1.Controls.Add(this.textDesc);
			this.panel1.Controls.Add(this.textDateEntry);
			this.panel1.Controls.Add(this.label12);
			this.panel1.Controls.Add(this.label2);
			this.panel1.Controls.Add(this.labelTooth);
			this.panel1.Controls.Add(this.labelSurfaces);
			this.panel1.Controls.Add(this.labelAmount);
			this.panel1.Controls.Add(this.textSurfaces);
			this.panel1.Controls.Add(this.label6);
			this.panel1.Controls.Add(this.groupQuadrant);
			this.panel1.Controls.Add(this.textProcFee);
			this.panel1.Controls.Add(this.textTooth);
			this.panel1.Controls.Add(this.labelStartTime);
			this.panel1.Controls.Add(this.labelEndTime);
			this.panel1.Controls.Add(this.labelRange);
			this.panel1.Controls.Add(this.labelDate);
			this.panel1.Controls.Add(this.textProc);
			this.panel1.Controls.Add(this.listBoxTeeth2);
			this.panel1.Controls.Add(this.textRange);
			this.panel1.Controls.Add(this.butChange);
			this.panel1.Controls.Add(this.groupSextant);
			this.panel1.Controls.Add(this.groupArch);
			this.panel1.Location = new System.Drawing.Point(0, 0);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(397, 177);
			this.panel1.TabIndex = 2;
			// 
			// textTimeFinal
			// 
			this.textTimeFinal.Location = new System.Drawing.Point(314, 61);
			this.textTimeFinal.Name = "textTimeFinal";
			this.textTimeFinal.Size = new System.Drawing.Size(55, 20);
			this.textTimeFinal.TabIndex = 104;
			this.textTimeFinal.Visible = false;
			// 
			// labelTimeFinal
			// 
			this.labelTimeFinal.Location = new System.Drawing.Point(259, 65);
			this.labelTimeFinal.Name = "labelTimeFinal";
			this.labelTimeFinal.Size = new System.Drawing.Size(56, 14);
			this.labelTimeFinal.TabIndex = 103;
			this.labelTimeFinal.Text = "Final";
			this.labelTimeFinal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.labelTimeFinal.Visible = false;
			// 
			// textTimeStart
			// 
			this.textTimeStart.Location = new System.Drawing.Point(236, 40);
			this.textTimeStart.Name = "textTimeStart";
			this.textTimeStart.Size = new System.Drawing.Size(55, 20);
			this.textTimeStart.TabIndex = 102;
			this.textTimeStart.TextChanged += new System.EventHandler(this.textTimeStart_TextChanged);
			// 
			// textTimeEnd
			// 
			this.textTimeEnd.Location = new System.Drawing.Point(314, 40);
			this.textTimeEnd.Name = "textTimeEnd";
			this.textTimeEnd.Size = new System.Drawing.Size(55, 20);
			this.textTimeEnd.TabIndex = 102;
			this.textTimeEnd.Visible = false;
			this.textTimeEnd.TextChanged += new System.EventHandler(this.textTimeEnd_TextChanged);
			// 
			// label27
			// 
			this.label27.Location = new System.Drawing.Point(34, 25);
			this.label27.Name = "label27";
			this.label27.Size = new System.Drawing.Size(70, 14);
			this.label27.TabIndex = 98;
			this.label27.Text = "Date TP";
			this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label26
			// 
			this.label26.Location = new System.Drawing.Point(184, 3);
			this.label26.Name = "label26";
			this.label26.Size = new System.Drawing.Size(125, 18);
			this.label26.TabIndex = 97;
			this.label26.Text = "(for security)";
			this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// listBoxTeeth
			// 
			this.listBoxTeeth.AllowDrop = true;
			this.listBoxTeeth.ColumnWidth = 16;
			this.listBoxTeeth.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.listBoxTeeth.Items.AddRange(new object[] {
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9",
            "10",
            "11",
            "12",
            "13",
            "14",
            "15",
            "16"});
			this.listBoxTeeth.Location = new System.Drawing.Point(106, 101);
			this.listBoxTeeth.MultiColumn = true;
			this.listBoxTeeth.Name = "listBoxTeeth";
			this.listBoxTeeth.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.listBoxTeeth.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
			this.listBoxTeeth.Size = new System.Drawing.Size(272, 17);
			this.listBoxTeeth.TabIndex = 1;
			this.listBoxTeeth.Visible = false;
			this.listBoxTeeth.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listBoxTeeth_MouseDown);
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(-19, 3);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(125, 18);
			this.label12.TabIndex = 96;
			this.label12.Text = "Date Entry";
			this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelStartTime
			// 
			this.labelStartTime.Location = new System.Drawing.Point(181, 44);
			this.labelStartTime.Name = "labelStartTime";
			this.labelStartTime.Size = new System.Drawing.Size(56, 14);
			this.labelStartTime.TabIndex = 0;
			this.labelStartTime.Text = "Time Start";
			this.labelStartTime.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelEndTime
			// 
			this.labelEndTime.Location = new System.Drawing.Point(259, 44);
			this.labelEndTime.Name = "labelEndTime";
			this.labelEndTime.Size = new System.Drawing.Size(56, 14);
			this.labelEndTime.TabIndex = 0;
			this.labelEndTime.Text = "End";
			this.labelEndTime.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.labelEndTime.Visible = false;
			// 
			// listBoxTeeth2
			// 
			this.listBoxTeeth2.ColumnWidth = 16;
			this.listBoxTeeth2.Items.AddRange(new object[] {
            "32",
            "31",
            "30",
            "29",
            "28",
            "27",
            "26",
            "25",
            "24",
            "23",
            "22",
            "21",
            "20",
            "19",
            "18",
            "17"});
			this.listBoxTeeth2.Location = new System.Drawing.Point(106, 115);
			this.listBoxTeeth2.MultiColumn = true;
			this.listBoxTeeth2.Name = "listBoxTeeth2";
			this.listBoxTeeth2.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
			this.listBoxTeeth2.Size = new System.Drawing.Size(272, 17);
			this.listBoxTeeth2.TabIndex = 2;
			this.listBoxTeeth2.Visible = false;
			this.listBoxTeeth2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listBoxTeeth2_MouseDown);
			// 
			// textDrugQty
			// 
			this.textDrugQty.Location = new System.Drawing.Point(93, 189);
			this.textDrugQty.Name = "textDrugQty";
			this.textDrugQty.Size = new System.Drawing.Size(59, 20);
			this.textDrugQty.TabIndex = 174;
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(18, 190);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(74, 16);
			this.label10.TabIndex = 173;
			this.label10.Text = "Drug Qty";
			this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(13, 150);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(79, 16);
			this.label5.TabIndex = 170;
			this.label5.Text = "Drug NDC";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDrugNDC
			// 
			this.textDrugNDC.Location = new System.Drawing.Point(93, 148);
			this.textDrugNDC.Name = "textDrugNDC";
			this.textDrugNDC.ReadOnly = true;
			this.textDrugNDC.Size = new System.Drawing.Size(109, 20);
			this.textDrugNDC.TabIndex = 171;
			this.textDrugNDC.Text = "12345678901";
			// 
			// comboDrugUnit
			// 
			this.comboDrugUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboDrugUnit.FormattingEnabled = true;
			this.comboDrugUnit.Location = new System.Drawing.Point(93, 168);
			this.comboDrugUnit.Name = "comboDrugUnit";
			this.comboDrugUnit.Size = new System.Drawing.Size(92, 21);
			this.comboDrugUnit.TabIndex = 169;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(18, 170);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(74, 16);
			this.label1.TabIndex = 168;
			this.label1.Text = "Drug Unit";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textRevCode
			// 
			this.textRevCode.Location = new System.Drawing.Point(93, 128);
			this.textRevCode.MaxLength = 48;
			this.textRevCode.Name = "textRevCode";
			this.textRevCode.Size = new System.Drawing.Size(59, 20);
			this.textRevCode.TabIndex = 112;
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(13, 130);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(79, 17);
			this.label22.TabIndex = 111;
			this.label22.Text = "Revenue Code";
			this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textUnitQty
			// 
			this.textUnitQty.Location = new System.Drawing.Point(93, 87);
			this.textUnitQty.MaxLength = 15;
			this.textUnitQty.Name = "textUnitQty";
			this.textUnitQty.Size = new System.Drawing.Size(29, 20);
			this.textUnitQty.TabIndex = 110;
			// 
			// label21
			// 
			this.label21.Location = new System.Drawing.Point(16, 89);
			this.label21.Name = "label21";
			this.label21.Size = new System.Drawing.Size(76, 17);
			this.label21.TabIndex = 108;
			this.label21.Text = "Unit Quantity";
			this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textCodeMod4
			// 
			this.textCodeMod4.Location = new System.Drawing.Point(180, 67);
			this.textCodeMod4.MaxLength = 2;
			this.textCodeMod4.Name = "textCodeMod4";
			this.textCodeMod4.Size = new System.Drawing.Size(29, 20);
			this.textCodeMod4.TabIndex = 106;
			this.textCodeMod4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
			// 
			// textCodeMod3
			// 
			this.textCodeMod3.Location = new System.Drawing.Point(151, 67);
			this.textCodeMod3.MaxLength = 2;
			this.textCodeMod3.Name = "textCodeMod3";
			this.textCodeMod3.Size = new System.Drawing.Size(29, 20);
			this.textCodeMod3.TabIndex = 105;
			this.textCodeMod3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
			// 
			// textCodeMod2
			// 
			this.textCodeMod2.Location = new System.Drawing.Point(122, 67);
			this.textCodeMod2.MaxLength = 2;
			this.textCodeMod2.Name = "textCodeMod2";
			this.textCodeMod2.Size = new System.Drawing.Size(29, 20);
			this.textCodeMod2.TabIndex = 104;
			this.textCodeMod2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
			// 
			// label19
			// 
			this.label19.Location = new System.Drawing.Point(17, 69);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(75, 17);
			this.label19.TabIndex = 102;
			this.label19.Text = "Mods";
			this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textCodeMod1
			// 
			this.textCodeMod1.Location = new System.Drawing.Point(93, 67);
			this.textCodeMod1.MaxLength = 2;
			this.textCodeMod1.Name = "textCodeMod1";
			this.textCodeMod1.Size = new System.Drawing.Size(29, 20);
			this.textCodeMod1.TabIndex = 103;
			this.textCodeMod1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
			// 
			// checkIsPrincDiag
			// 
			this.checkIsPrincDiag.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsPrincDiag.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsPrincDiag.Location = new System.Drawing.Point(30, 48);
			this.checkIsPrincDiag.Name = "checkIsPrincDiag";
			this.checkIsPrincDiag.Size = new System.Drawing.Size(76, 18);
			this.checkIsPrincDiag.TabIndex = 101;
			this.checkIsPrincDiag.Text = "Princ Diag";
			this.checkIsPrincDiag.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(13, 28);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(79, 16);
			this.label11.TabIndex = 99;
			this.label11.Text = "ICD-9 Code";
			this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDiagnosticCode
			// 
			this.textDiagnosticCode.Location = new System.Drawing.Point(93, 26);
			this.textDiagnosticCode.Name = "textDiagnosticCode";
			this.textDiagnosticCode.Size = new System.Drawing.Size(76, 20);
			this.textDiagnosticCode.TabIndex = 100;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(10, 9);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(82, 16);
			this.label8.TabIndex = 97;
			this.label8.Text = "Medical Code";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textMedicalCode
			// 
			this.textMedicalCode.Location = new System.Drawing.Point(93, 6);
			this.textMedicalCode.Name = "textMedicalCode";
			this.textMedicalCode.Size = new System.Drawing.Size(76, 20);
			this.textMedicalCode.TabIndex = 98;
			// 
			// labelClaim
			// 
			this.labelClaim.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.labelClaim.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelClaim.Location = new System.Drawing.Point(111, 652);
			this.labelClaim.Name = "labelClaim";
			this.labelClaim.Size = new System.Drawing.Size(480, 44);
			this.labelClaim.TabIndex = 50;
			this.labelClaim.Text = "This procedure is attached to a claim, so certain fields should not be edited.  Y" +
    "ou should reprint the claim if any significant changes are made.";
			this.labelClaim.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			this.labelClaim.Visible = false;
			// 
			// comboPlaceService
			// 
			this.comboPlaceService.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPlaceService.Location = new System.Drawing.Point(119, 98);
			this.comboPlaceService.MaxDropDownItems = 30;
			this.comboPlaceService.Name = "comboPlaceService";
			this.comboPlaceService.Size = new System.Drawing.Size(177, 21);
			this.comboPlaceService.TabIndex = 6;
			// 
			// labelPlaceService
			// 
			this.labelPlaceService.Location = new System.Drawing.Point(4, 101);
			this.labelPlaceService.Name = "labelPlaceService";
			this.labelPlaceService.Size = new System.Drawing.Size(114, 16);
			this.labelPlaceService.TabIndex = 53;
			this.labelPlaceService.Text = "Place of Service";
			this.labelPlaceService.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelPriority
			// 
			this.labelPriority.Location = new System.Drawing.Point(32, 263);
			this.labelPriority.Name = "labelPriority";
			this.labelPriority.Size = new System.Drawing.Size(72, 16);
			this.labelPriority.TabIndex = 56;
			this.labelPriority.Text = "Priority";
			this.labelPriority.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelSetComplete
			// 
			this.labelSetComplete.Location = new System.Drawing.Point(724, 23);
			this.labelSetComplete.Name = "labelSetComplete";
			this.labelSetComplete.Size = new System.Drawing.Size(157, 16);
			this.labelSetComplete.TabIndex = 58;
			this.labelSetComplete.Text = "changes date and adds note.";
			// 
			// checkNoBillIns
			// 
			this.checkNoBillIns.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkNoBillIns.Location = new System.Drawing.Point(142, 12);
			this.checkNoBillIns.Name = "checkNoBillIns";
			this.checkNoBillIns.Size = new System.Drawing.Size(152, 18);
			this.checkNoBillIns.TabIndex = 9;
			this.checkNoBillIns.Text = "Do Not Bill to Ins";
			this.checkNoBillIns.ThreeState = true;
			this.checkNoBillIns.Click += new System.EventHandler(this.checkNoBillIns_Click);
			// 
			// labelIncomplete
			// 
			this.labelIncomplete.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelIncomplete.ForeColor = System.Drawing.Color.DarkRed;
			this.labelIncomplete.Location = new System.Drawing.Point(724, 138);
			this.labelIncomplete.Name = "labelIncomplete";
			this.labelIncomplete.Size = new System.Drawing.Size(123, 18);
			this.labelIncomplete.TabIndex = 73;
			this.labelIncomplete.Text = "Incomplete";
			this.labelIncomplete.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(106, 217);
			this.comboClinic.MaxDropDownItems = 30;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(177, 21);
			this.comboClinic.TabIndex = 74;
			this.comboClinic.SelectionChangeCommitted += new System.EventHandler(this.comboClinic_SelectionChangeCommitted);
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(-10, 219);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(114, 16);
			this.labelClinic.TabIndex = 75;
			this.labelClinic.Text = "Clinic";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label14
			// 
			this.label14.Location = new System.Drawing.Point(403, 20);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(99, 16);
			this.label14.TabIndex = 77;
			this.label14.Text = "Procedure Status";
			this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(389, 327);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(110, 41);
			this.label15.TabIndex = 79;
			this.label15.Text = "Signature /\r\nInitials";
			this.label15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(429, 138);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(73, 16);
			this.label16.TabIndex = 80;
			this.label16.Text = "User";
			this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboPriority
			// 
			this.comboPriority.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPriority.Location = new System.Drawing.Point(106, 259);
			this.comboPriority.MaxDropDownItems = 30;
			this.comboPriority.Name = "comboPriority";
			this.comboPriority.Size = new System.Drawing.Size(177, 21);
			this.comboPriority.TabIndex = 98;
			// 
			// comboDx
			// 
			this.comboDx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboDx.Location = new System.Drawing.Point(106, 238);
			this.comboDx.MaxDropDownItems = 30;
			this.comboDx.Name = "comboDx";
			this.comboDx.Size = new System.Drawing.Size(177, 21);
			this.comboDx.TabIndex = 99;
			// 
			// comboProvNum
			// 
			this.comboProvNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProvNum.Location = new System.Drawing.Point(106, 195);
			this.comboProvNum.MaxDropDownItems = 30;
			this.comboProvNum.Name = "comboProvNum";
			this.comboProvNum.Size = new System.Drawing.Size(158, 21);
			this.comboProvNum.TabIndex = 100;
			this.comboProvNum.SelectionChangeCommitted += new System.EventHandler(this.comboProvNum_SelectionChangeCommitted);
			// 
			// textUser
			// 
			this.textUser.Location = new System.Drawing.Point(504, 137);
			this.textUser.Name = "textUser";
			this.textUser.ReadOnly = true;
			this.textUser.Size = new System.Drawing.Size(116, 20);
			this.textUser.TabIndex = 101;
			// 
			// comboBillingTypeTwo
			// 
			this.comboBillingTypeTwo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBillingTypeTwo.FormattingEnabled = true;
			this.comboBillingTypeTwo.Location = new System.Drawing.Point(119, 33);
			this.comboBillingTypeTwo.MaxDropDownItems = 30;
			this.comboBillingTypeTwo.Name = "comboBillingTypeTwo";
			this.comboBillingTypeTwo.Size = new System.Drawing.Size(198, 21);
			this.comboBillingTypeTwo.TabIndex = 102;
			// 
			// labelBillingTypeTwo
			// 
			this.labelBillingTypeTwo.Location = new System.Drawing.Point(15, 35);
			this.labelBillingTypeTwo.Name = "labelBillingTypeTwo";
			this.labelBillingTypeTwo.Size = new System.Drawing.Size(102, 16);
			this.labelBillingTypeTwo.TabIndex = 103;
			this.labelBillingTypeTwo.Text = "Billing Type 2";
			this.labelBillingTypeTwo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboBillingTypeOne
			// 
			this.comboBillingTypeOne.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBillingTypeOne.FormattingEnabled = true;
			this.comboBillingTypeOne.Location = new System.Drawing.Point(119, 12);
			this.comboBillingTypeOne.MaxDropDownItems = 30;
			this.comboBillingTypeOne.Name = "comboBillingTypeOne";
			this.comboBillingTypeOne.Size = new System.Drawing.Size(198, 21);
			this.comboBillingTypeOne.TabIndex = 104;
			// 
			// labelBillingTypeOne
			// 
			this.labelBillingTypeOne.Location = new System.Drawing.Point(13, 14);
			this.labelBillingTypeOne.Name = "labelBillingTypeOne";
			this.labelBillingTypeOne.Size = new System.Drawing.Size(104, 16);
			this.labelBillingTypeOne.TabIndex = 105;
			this.labelBillingTypeOne.Text = "Billing Type 1";
			this.labelBillingTypeOne.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelInvalidSig
			// 
			this.labelInvalidSig.BackColor = System.Drawing.SystemColors.Window;
			this.labelInvalidSig.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelInvalidSig.Location = new System.Drawing.Point(589, 337);
			this.labelInvalidSig.Name = "labelInvalidSig";
			this.labelInvalidSig.Size = new System.Drawing.Size(196, 59);
			this.labelInvalidSig.TabIndex = 109;
			this.labelInvalidSig.Text = "Invalid Signature -  Note or user has changed since it was signed.";
			this.labelInvalidSig.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textSite
			// 
			this.textSite.AcceptsReturn = true;
			this.textSite.Location = new System.Drawing.Point(119, 77);
			this.textSite.Name = "textSite";
			this.textSite.ReadOnly = true;
			this.textSite.Size = new System.Drawing.Size(153, 20);
			this.textSite.TabIndex = 111;
			// 
			// labelSite
			// 
			this.labelSite.Location = new System.Drawing.Point(4, 78);
			this.labelSite.Name = "labelSite";
			this.labelSite.Size = new System.Drawing.Size(114, 17);
			this.labelSite.TabIndex = 110;
			this.labelSite.Text = "Site";
			this.labelSite.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkHideGraphics
			// 
			this.checkHideGraphics.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkHideGraphics.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkHideGraphics.Location = new System.Drawing.Point(5, 178);
			this.checkHideGraphics.Name = "checkHideGraphics";
			this.checkHideGraphics.Size = new System.Drawing.Size(114, 18);
			this.checkHideGraphics.TabIndex = 162;
			this.checkHideGraphics.Text = "HideGraphics";
			this.checkHideGraphics.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(2, 14);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(90, 41);
			this.label3.TabIndex = 0;
			this.label3.Text = "Crown, Bridge, Denture, or RPD";
			this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(5, 61);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(84, 16);
			this.label4.TabIndex = 4;
			this.label4.Text = "Original Date";
			this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// listProsth
			// 
			this.listProsth.Location = new System.Drawing.Point(91, 14);
			this.listProsth.Name = "listProsth";
			this.listProsth.Size = new System.Drawing.Size(163, 43);
			this.listProsth.TabIndex = 0;
			// 
			// groupProsth
			// 
			this.groupProsth.Controls.Add(this.listProsth);
			this.groupProsth.Controls.Add(this.textDateOriginalProsth);
			this.groupProsth.Controls.Add(this.label4);
			this.groupProsth.Controls.Add(this.label3);
			this.groupProsth.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupProsth.Location = new System.Drawing.Point(15, 283);
			this.groupProsth.Name = "groupProsth";
			this.groupProsth.Size = new System.Drawing.Size(269, 80);
			this.groupProsth.TabIndex = 7;
			this.groupProsth.TabStop = false;
			this.groupProsth.Text = "Prosthesis Replacement";
			// 
			// checkTypeCodeA
			// 
			this.checkTypeCodeA.Location = new System.Drawing.Point(10, 16);
			this.checkTypeCodeA.Name = "checkTypeCodeA";
			this.checkTypeCodeA.Size = new System.Drawing.Size(268, 17);
			this.checkTypeCodeA.TabIndex = 0;
			this.checkTypeCodeA.Text = "Not initial placement.  Repair of a prior service.";
			this.checkTypeCodeA.UseVisualStyleBackColor = true;
			// 
			// checkTypeCodeB
			// 
			this.checkTypeCodeB.Location = new System.Drawing.Point(10, 33);
			this.checkTypeCodeB.Name = "checkTypeCodeB";
			this.checkTypeCodeB.Size = new System.Drawing.Size(239, 17);
			this.checkTypeCodeB.TabIndex = 1;
			this.checkTypeCodeB.Text = "Temporary placement or service.";
			this.checkTypeCodeB.UseVisualStyleBackColor = true;
			// 
			// checkTypeCodeC
			// 
			this.checkTypeCodeC.Location = new System.Drawing.Point(10, 50);
			this.checkTypeCodeC.Name = "checkTypeCodeC";
			this.checkTypeCodeC.Size = new System.Drawing.Size(239, 17);
			this.checkTypeCodeC.TabIndex = 2;
			this.checkTypeCodeC.Text = "Correction of TMJ";
			this.checkTypeCodeC.UseVisualStyleBackColor = true;
			// 
			// checkTypeCodeE
			// 
			this.checkTypeCodeE.Location = new System.Drawing.Point(10, 67);
			this.checkTypeCodeE.Name = "checkTypeCodeE";
			this.checkTypeCodeE.Size = new System.Drawing.Size(268, 17);
			this.checkTypeCodeE.TabIndex = 3;
			this.checkTypeCodeE.Text = "Implant, or in conjunction with implants";
			this.checkTypeCodeE.UseVisualStyleBackColor = true;
			// 
			// checkTypeCodeL
			// 
			this.checkTypeCodeL.Location = new System.Drawing.Point(10, 84);
			this.checkTypeCodeL.Name = "checkTypeCodeL";
			this.checkTypeCodeL.Size = new System.Drawing.Size(113, 17);
			this.checkTypeCodeL.TabIndex = 4;
			this.checkTypeCodeL.Text = "Appliance lost";
			this.checkTypeCodeL.UseVisualStyleBackColor = true;
			// 
			// checkTypeCodeX
			// 
			this.checkTypeCodeX.Location = new System.Drawing.Point(10, 118);
			this.checkTypeCodeX.Name = "checkTypeCodeX";
			this.checkTypeCodeX.Size = new System.Drawing.Size(239, 17);
			this.checkTypeCodeX.TabIndex = 5;
			this.checkTypeCodeX.Text = "None of the above are applicable";
			this.checkTypeCodeX.UseVisualStyleBackColor = true;
			// 
			// checkTypeCodeS
			// 
			this.checkTypeCodeS.Location = new System.Drawing.Point(10, 101);
			this.checkTypeCodeS.Name = "checkTypeCodeS";
			this.checkTypeCodeS.Size = new System.Drawing.Size(113, 17);
			this.checkTypeCodeS.TabIndex = 6;
			this.checkTypeCodeS.Text = "Appliance stolen";
			this.checkTypeCodeS.UseVisualStyleBackColor = true;
			// 
			// groupCanadianProcTypeCode
			// 
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeS);
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeX);
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeL);
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeE);
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeC);
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeB);
			this.groupCanadianProcTypeCode.Controls.Add(this.checkTypeCodeA);
			this.groupCanadianProcTypeCode.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupCanadianProcTypeCode.Location = new System.Drawing.Point(18, 16);
			this.groupCanadianProcTypeCode.Name = "groupCanadianProcTypeCode";
			this.groupCanadianProcTypeCode.Size = new System.Drawing.Size(316, 142);
			this.groupCanadianProcTypeCode.TabIndex = 163;
			this.groupCanadianProcTypeCode.TabStop = false;
			this.groupCanadianProcTypeCode.Text = "Procedure Type Code";
			// 
			// labelDPCpost
			// 
			this.labelDPCpost.Location = new System.Drawing.Point(9, 28);
			this.labelDPCpost.Name = "labelDPCpost";
			this.labelDPCpost.Size = new System.Drawing.Size(100, 16);
			this.labelDPCpost.TabIndex = 107;
			this.labelDPCpost.Text = "DPC Post Visit";
			this.labelDPCpost.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboDPCpost
			// 
			this.comboDPCpost.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboDPCpost.DropDownWidth = 177;
			this.comboDPCpost.FormattingEnabled = true;
			this.comboDPCpost.Location = new System.Drawing.Point(111, 27);
			this.comboDPCpost.MaxDropDownItems = 30;
			this.comboDPCpost.Name = "comboDPCpost";
			this.comboDPCpost.Size = new System.Drawing.Size(177, 21);
			this.comboDPCpost.TabIndex = 106;
			// 
			// labelScheduleBy
			// 
			this.labelScheduleBy.Location = new System.Drawing.Point(193, 70);
			this.labelScheduleBy.Name = "labelScheduleBy";
			this.labelScheduleBy.Size = new System.Drawing.Size(148, 16);
			this.labelScheduleBy.TabIndex = 105;
			this.labelScheduleBy.Text = "No Schedule by Date";
			this.labelScheduleBy.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.labelScheduleBy.Visible = false;
			// 
			// checkIsRepair
			// 
			this.checkIsRepair.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsRepair.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsRepair.Location = new System.Drawing.Point(10, 145);
			this.checkIsRepair.Name = "checkIsRepair";
			this.checkIsRepair.Size = new System.Drawing.Size(114, 18);
			this.checkIsRepair.TabIndex = 104;
			this.checkIsRepair.Text = "Repair";
			this.checkIsRepair.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsEffComm
			// 
			this.checkIsEffComm.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsEffComm.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsEffComm.Location = new System.Drawing.Point(10, 128);
			this.checkIsEffComm.Name = "checkIsEffComm";
			this.checkIsEffComm.Size = new System.Drawing.Size(114, 18);
			this.checkIsEffComm.TabIndex = 103;
			this.checkIsEffComm.Text = "Effective Comm";
			this.checkIsEffComm.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsOnCall
			// 
			this.checkIsOnCall.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsOnCall.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsOnCall.Location = new System.Drawing.Point(10, 111);
			this.checkIsOnCall.Name = "checkIsOnCall";
			this.checkIsOnCall.Size = new System.Drawing.Size(114, 18);
			this.checkIsOnCall.TabIndex = 102;
			this.checkIsOnCall.Text = "On Call";
			this.checkIsOnCall.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboDPC
			// 
			this.comboDPC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboDPC.DropDownWidth = 177;
			this.comboDPC.FormattingEnabled = true;
			this.comboDPC.Location = new System.Drawing.Point(111, 6);
			this.comboDPC.MaxDropDownItems = 30;
			this.comboDPC.Name = "comboDPC";
			this.comboDPC.Size = new System.Drawing.Size(177, 21);
			this.comboDPC.TabIndex = 8;
			this.comboDPC.SelectionChangeCommitted += new System.EventHandler(this.comboDPC_SelectionChangeCommitted);
			// 
			// comboStatus
			// 
			this.comboStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboStatus.DropDownWidth = 230;
			this.comboStatus.FormattingEnabled = true;
			this.comboStatus.Location = new System.Drawing.Point(111, 48);
			this.comboStatus.MaxDropDownItems = 30;
			this.comboStatus.Name = "comboStatus";
			this.comboStatus.Size = new System.Drawing.Size(230, 21);
			this.comboStatus.TabIndex = 7;
			this.comboStatus.SelectionChangeCommitted += new System.EventHandler(this.comboStatus_SelectionChangeCommitted);
			// 
			// labelStatus
			// 
			this.labelStatus.Location = new System.Drawing.Point(9, 49);
			this.labelStatus.Name = "labelStatus";
			this.labelStatus.Size = new System.Drawing.Size(100, 16);
			this.labelStatus.TabIndex = 3;
			this.labelStatus.Text = "Status";
			this.labelStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelDateStop
			// 
			this.labelDateStop.Location = new System.Drawing.Point(11, 90);
			this.labelDateStop.Name = "labelDateStop";
			this.labelDateStop.Size = new System.Drawing.Size(100, 16);
			this.labelDateStop.TabIndex = 2;
			this.labelDateStop.Text = "Date Stop Clock";
			this.labelDateStop.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelDateSched
			// 
			this.labelDateSched.Location = new System.Drawing.Point(10, 70);
			this.labelDateSched.Name = "labelDateSched";
			this.labelDateSched.Size = new System.Drawing.Size(100, 16);
			this.labelDateSched.TabIndex = 1;
			this.labelDateSched.Text = "Scheduled By";
			this.labelDateSched.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelDPC
			// 
			this.labelDPC.Location = new System.Drawing.Point(9, 7);
			this.labelDPC.Name = "labelDPC";
			this.labelDPC.Size = new System.Drawing.Size(100, 16);
			this.labelDPC.TabIndex = 0;
			this.labelDPC.Text = "DPC";
			this.labelDPC.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboPrognosis
			// 
			this.comboPrognosis.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPrognosis.Location = new System.Drawing.Point(119, 55);
			this.comboPrognosis.MaxDropDownItems = 30;
			this.comboPrognosis.Name = "comboPrognosis";
			this.comboPrognosis.Size = new System.Drawing.Size(153, 21);
			this.comboPrognosis.TabIndex = 165;
			// 
			// labelPrognosis
			// 
			this.labelPrognosis.Location = new System.Drawing.Point(3, 57);
			this.labelPrognosis.Name = "labelPrognosis";
			this.labelPrognosis.Size = new System.Drawing.Size(114, 17);
			this.labelPrognosis.TabIndex = 166;
			this.labelPrognosis.Text = "Prognosis";
			this.labelPrognosis.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboProcStatus
			// 
			this.comboProcStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProcStatus.FormattingEnabled = true;
			this.comboProcStatus.Location = new System.Drawing.Point(504, 19);
			this.comboProcStatus.Name = "comboProcStatus";
			this.comboProcStatus.Size = new System.Drawing.Size(133, 21);
			this.comboProcStatus.TabIndex = 167;
			this.comboProcStatus.SelectionChangeCommitted += new System.EventHandler(this.comboProcStatus_SelectionChangeCommitted);
			// 
			// label13
			// 
			this.label13.Location = new System.Drawing.Point(418, 80);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(84, 16);
			this.label13.TabIndex = 168;
			this.label13.Text = "Referral";
			this.label13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textReferral
			// 
			this.textReferral.BackColor = System.Drawing.SystemColors.Control;
			this.textReferral.ForeColor = System.Drawing.Color.DarkRed;
			this.textReferral.Location = new System.Drawing.Point(504, 77);
			this.textReferral.Name = "textReferral";
			this.textReferral.Size = new System.Drawing.Size(198, 20);
			this.textReferral.TabIndex = 169;
			this.textReferral.Text = "test";
			// 
			// labelClaimNote
			// 
			this.labelClaimNote.Location = new System.Drawing.Point(0, 364);
			this.labelClaimNote.Name = "labelClaimNote";
			this.labelClaimNote.Size = new System.Drawing.Size(104, 41);
			this.labelClaimNote.TabIndex = 174;
			this.labelClaimNote.Text = "E-claim Note (keep it very short)";
			this.labelClaimNote.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// tabControl
			// 
			this.tabControl.Controls.Add(this.tabPageFinancial);
			this.tabControl.Controls.Add(this.tabPageMedical);
			this.tabControl.Controls.Add(this.tabPageMisc);
			this.tabControl.Controls.Add(this.tabPageCanada);
			this.tabControl.Controls.Add(this.tabPageOrion);
			this.tabControl.Location = new System.Drawing.Point(1, 424);
			this.tabControl.Name = "tabControl";
			this.tabControl.SelectedIndex = 0;
			this.tabControl.Size = new System.Drawing.Size(962, 244);
			this.tabControl.TabIndex = 175;
			// 
			// tabPageFinancial
			// 
			this.tabPageFinancial.Controls.Add(this.butAddEstimate);
			this.tabPageFinancial.Controls.Add(this.checkNoBillIns);
			this.tabPageFinancial.Controls.Add(this.tbAdj);
			this.tabPageFinancial.Controls.Add(this.tbPay);
			this.tabPageFinancial.Controls.Add(this.butAddAdjust);
			this.tabPageFinancial.Controls.Add(this.gridIns);
			this.tabPageFinancial.Location = new System.Drawing.Point(4, 22);
			this.tabPageFinancial.Name = "tabPageFinancial";
			this.tabPageFinancial.Padding = new System.Windows.Forms.Padding(3);
			this.tabPageFinancial.Size = new System.Drawing.Size(954, 218);
			this.tabPageFinancial.TabIndex = 0;
			this.tabPageFinancial.Text = "Financial";
			this.tabPageFinancial.UseVisualStyleBackColor = true;
			// 
			// tabPageMedical
			// 
			this.tabPageMedical.Controls.Add(this.butNoneSnomedBodySite);
			this.tabPageMedical.Controls.Add(this.butSnomedBodySiteSelect);
			this.tabPageMedical.Controls.Add(this.label20);
			this.tabPageMedical.Controls.Add(this.textSnomedBodySite);
			this.tabPageMedical.Controls.Add(this.label17);
			this.tabPageMedical.Controls.Add(this.comboUnitType);
			this.tabPageMedical.Controls.Add(this.textDrugQty);
			this.tabPageMedical.Controls.Add(this.label10);
			this.tabPageMedical.Controls.Add(this.label8);
			this.tabPageMedical.Controls.Add(this.label5);
			this.tabPageMedical.Controls.Add(this.textMedicalCode);
			this.tabPageMedical.Controls.Add(this.textDrugNDC);
			this.tabPageMedical.Controls.Add(this.textDiagnosticCode);
			this.tabPageMedical.Controls.Add(this.comboDrugUnit);
			this.tabPageMedical.Controls.Add(this.label11);
			this.tabPageMedical.Controls.Add(this.label1);
			this.tabPageMedical.Controls.Add(this.checkIsPrincDiag);
			this.tabPageMedical.Controls.Add(this.textRevCode);
			this.tabPageMedical.Controls.Add(this.textCodeMod1);
			this.tabPageMedical.Controls.Add(this.label22);
			this.tabPageMedical.Controls.Add(this.label19);
			this.tabPageMedical.Controls.Add(this.textUnitQty);
			this.tabPageMedical.Controls.Add(this.textCodeMod2);
			this.tabPageMedical.Controls.Add(this.label21);
			this.tabPageMedical.Controls.Add(this.textCodeMod3);
			this.tabPageMedical.Controls.Add(this.textCodeMod4);
			this.tabPageMedical.Location = new System.Drawing.Point(4, 22);
			this.tabPageMedical.Name = "tabPageMedical";
			this.tabPageMedical.Padding = new System.Windows.Forms.Padding(3);
			this.tabPageMedical.Size = new System.Drawing.Size(954, 218);
			this.tabPageMedical.TabIndex = 3;
			this.tabPageMedical.Text = "Medical";
			this.tabPageMedical.UseVisualStyleBackColor = true;
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(16, 109);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(76, 17);
			this.label17.TabIndex = 176;
			this.label17.Text = "Unit Type";
			this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboUnitType
			// 
			this.comboUnitType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboUnitType.FormattingEnabled = true;
			this.comboUnitType.Location = new System.Drawing.Point(93, 107);
			this.comboUnitType.Name = "comboUnitType";
			this.comboUnitType.Size = new System.Drawing.Size(117, 21);
			this.comboUnitType.TabIndex = 175;
			// 
			// tabPageMisc
			// 
			this.tabPageMisc.Controls.Add(this.textBillingNote);
			this.tabPageMisc.Controls.Add(this.label18);
			this.tabPageMisc.Controls.Add(this.comboBillingTypeOne);
			this.tabPageMisc.Controls.Add(this.labelBillingTypeTwo);
			this.tabPageMisc.Controls.Add(this.comboBillingTypeTwo);
			this.tabPageMisc.Controls.Add(this.labelBillingTypeOne);
			this.tabPageMisc.Controls.Add(this.comboPrognosis);
			this.tabPageMisc.Controls.Add(this.labelPrognosis);
			this.tabPageMisc.Controls.Add(this.textSite);
			this.tabPageMisc.Controls.Add(this.labelSite);
			this.tabPageMisc.Controls.Add(this.butPickSite);
			this.tabPageMisc.Controls.Add(this.comboPlaceService);
			this.tabPageMisc.Controls.Add(this.labelPlaceService);
			this.tabPageMisc.Location = new System.Drawing.Point(4, 22);
			this.tabPageMisc.Name = "tabPageMisc";
			this.tabPageMisc.Size = new System.Drawing.Size(954, 218);
			this.tabPageMisc.TabIndex = 4;
			this.tabPageMisc.Text = "Misc";
			this.tabPageMisc.UseVisualStyleBackColor = true;
			// 
			// textBillingNote
			// 
			this.textBillingNote.Location = new System.Drawing.Point(119, 120);
			this.textBillingNote.Multiline = true;
			this.textBillingNote.Name = "textBillingNote";
			this.textBillingNote.Size = new System.Drawing.Size(259, 83);
			this.textBillingNote.TabIndex = 168;
			// 
			// label18
			// 
			this.label18.Location = new System.Drawing.Point(6, 122);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(111, 14);
			this.label18.TabIndex = 167;
			this.label18.Text = "Billing Note";
			this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// tabPageCanada
			// 
			this.tabPageCanada.Controls.Add(this.labelCanadaLabFee2);
			this.tabPageCanada.Controls.Add(this.labelCanadaLabFee1);
			this.tabPageCanada.Controls.Add(this.groupCanadianProcTypeCode);
			this.tabPageCanada.Controls.Add(this.textCanadaLabFee2);
			this.tabPageCanada.Controls.Add(this.textCanadaLabFee1);
			this.tabPageCanada.Location = new System.Drawing.Point(4, 22);
			this.tabPageCanada.Name = "tabPageCanada";
			this.tabPageCanada.Padding = new System.Windows.Forms.Padding(3);
			this.tabPageCanada.Size = new System.Drawing.Size(954, 218);
			this.tabPageCanada.TabIndex = 1;
			this.tabPageCanada.Text = "Canada";
			this.tabPageCanada.UseVisualStyleBackColor = true;
			// 
			// labelCanadaLabFee2
			// 
			this.labelCanadaLabFee2.Location = new System.Drawing.Point(340, 37);
			this.labelCanadaLabFee2.Name = "labelCanadaLabFee2";
			this.labelCanadaLabFee2.Size = new System.Drawing.Size(75, 20);
			this.labelCanadaLabFee2.TabIndex = 167;
			this.labelCanadaLabFee2.Text = "Lab Fee 2";
			this.labelCanadaLabFee2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelCanadaLabFee1
			// 
			this.labelCanadaLabFee1.Location = new System.Drawing.Point(340, 16);
			this.labelCanadaLabFee1.Name = "labelCanadaLabFee1";
			this.labelCanadaLabFee1.Size = new System.Drawing.Size(75, 20);
			this.labelCanadaLabFee1.TabIndex = 166;
			this.labelCanadaLabFee1.Text = "Lab Fee 1";
			this.labelCanadaLabFee1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// tabPageOrion
			// 
			this.tabPageOrion.Controls.Add(this.labelDPCpost);
			this.tabPageOrion.Controls.Add(this.comboDPCpost);
			this.tabPageOrion.Controls.Add(this.labelDPC);
			this.tabPageOrion.Controls.Add(this.labelScheduleBy);
			this.tabPageOrion.Controls.Add(this.labelDateSched);
			this.tabPageOrion.Controls.Add(this.checkIsRepair);
			this.tabPageOrion.Controls.Add(this.labelDateStop);
			this.tabPageOrion.Controls.Add(this.checkIsEffComm);
			this.tabPageOrion.Controls.Add(this.labelStatus);
			this.tabPageOrion.Controls.Add(this.checkIsOnCall);
			this.tabPageOrion.Controls.Add(this.comboStatus);
			this.tabPageOrion.Controls.Add(this.comboDPC);
			this.tabPageOrion.Controls.Add(this.textDateStop);
			this.tabPageOrion.Controls.Add(this.textDateScheduled);
			this.tabPageOrion.Location = new System.Drawing.Point(4, 22);
			this.tabPageOrion.Name = "tabPageOrion";
			this.tabPageOrion.Padding = new System.Windows.Forms.Padding(3);
			this.tabPageOrion.Size = new System.Drawing.Size(954, 218);
			this.tabPageOrion.TabIndex = 2;
			this.tabPageOrion.Text = "Orion";
			this.tabPageOrion.UseVisualStyleBackColor = true;
			// 
			// labelLocked
			// 
			this.labelLocked.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelLocked.ForeColor = System.Drawing.Color.DarkRed;
			this.labelLocked.Location = new System.Drawing.Point(834, 115);
			this.labelLocked.Name = "labelLocked";
			this.labelLocked.Size = new System.Drawing.Size(123, 18);
			this.labelLocked.TabIndex = 176;
			this.labelLocked.Text = "Locked";
			this.labelLocked.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			this.labelLocked.Visible = false;
			// 
			// gridIns
			// 
			this.gridIns.HScrollVisible = false;
			this.gridIns.Location = new System.Drawing.Point(3, 32);
			this.gridIns.Name = "gridIns";
			this.gridIns.ScrollValue = 0;
			this.gridIns.Size = new System.Drawing.Size(949, 102);
			this.gridIns.TabIndex = 113;
			this.gridIns.Title = "Insurance Estimates and Payments";
			this.gridIns.TranslationName = "TableProcIns";
			this.gridIns.WrapText = false;
			this.gridIns.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridIns_CellDoubleClick);
			// 
			// label20
			// 
			this.label20.Location = new System.Drawing.Point(186, 7);
			this.label20.Name = "label20";
			this.label20.Size = new System.Drawing.Size(172, 20);
			this.label20.TabIndex = 178;
			this.label20.Text = "SNOMED CT Body Site";
			this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textSnomedBodySite
			// 
			this.textSnomedBodySite.Location = new System.Drawing.Point(361, 7);
			this.textSnomedBodySite.Name = "textSnomedBodySite";
			this.textSnomedBodySite.ReadOnly = true;
			this.textSnomedBodySite.Size = new System.Drawing.Size(272, 20);
			this.textSnomedBodySite.TabIndex = 177;
			// 
			// butSearch
			// 
			this.butSearch.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSearch.Autosize = true;
			this.butSearch.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSearch.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSearch.CornerRadius = 4F;
			this.butSearch.Location = new System.Drawing.Point(443, 232);
			this.butSearch.Name = "butSearch";
			this.butSearch.Size = new System.Drawing.Size(59, 24);
			this.butSearch.TabIndex = 180;
			this.butSearch.Text = "Search";
			this.butSearch.Click += new System.EventHandler(this.butSearch_Click);
			// 
			// butLock
			// 
			this.butLock.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butLock.Autosize = true;
			this.butLock.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butLock.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butLock.CornerRadius = 4F;
			this.butLock.Location = new System.Drawing.Point(874, 91);
			this.butLock.Name = "butLock";
			this.butLock.Size = new System.Drawing.Size(80, 22);
			this.butLock.TabIndex = 178;
			this.butLock.Text = "Lock";
			this.butLock.Click += new System.EventHandler(this.butLock_Click);
			// 
			// butInvalidate
			// 
			this.butInvalidate.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butInvalidate.Autosize = true;
			this.butInvalidate.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butInvalidate.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butInvalidate.CornerRadius = 4F;
			this.butInvalidate.Location = new System.Drawing.Point(879, 77);
			this.butInvalidate.Name = "butInvalidate";
			this.butInvalidate.Size = new System.Drawing.Size(80, 22);
			this.butInvalidate.TabIndex = 179;
			this.butInvalidate.Text = "Invalidate";
			this.butInvalidate.Visible = false;
			this.butInvalidate.Click += new System.EventHandler(this.butInvalidate_Click);
			// 
			// butAppend
			// 
			this.butAppend.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAppend.Autosize = true;
			this.butAppend.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAppend.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAppend.CornerRadius = 4F;
			this.butAppend.Location = new System.Drawing.Point(874, 136);
			this.butAppend.Name = "butAppend";
			this.butAppend.Size = new System.Drawing.Size(80, 22);
			this.butAppend.TabIndex = 177;
			this.butAppend.Text = "Append";
			this.butAppend.Visible = false;
			this.butAppend.Click += new System.EventHandler(this.butAppend_Click);
			// 
			// butAddEstimate
			// 
			this.butAddEstimate.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAddEstimate.Autosize = true;
			this.butAddEstimate.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAddEstimate.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAddEstimate.CornerRadius = 4F;
			this.butAddEstimate.Image = global::OpenDental.Properties.Resources.Add;
			this.butAddEstimate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAddEstimate.Location = new System.Drawing.Point(3, 6);
			this.butAddEstimate.Name = "butAddEstimate";
			this.butAddEstimate.Size = new System.Drawing.Size(111, 24);
			this.butAddEstimate.TabIndex = 60;
			this.butAddEstimate.Text = "Add Estimate";
			this.butAddEstimate.Click += new System.EventHandler(this.butAddEstimate_Click);
			// 
			// tbAdj
			// 
			this.tbAdj.BackColor = System.Drawing.SystemColors.Window;
			this.tbAdj.Location = new System.Drawing.Point(458, 137);
			this.tbAdj.Name = "tbAdj";
			this.tbAdj.ScrollValue = 33;
			this.tbAdj.SelectedIndices = new int[0];
			this.tbAdj.SelectionMode = System.Windows.Forms.SelectionMode.One;
			this.tbAdj.Size = new System.Drawing.Size(494, 72);
			this.tbAdj.TabIndex = 70;
			this.tbAdj.CellDoubleClicked += new OpenDental.ContrTable.CellEventHandler(this.tbAdj_CellDoubleClicked);
			// 
			// tbPay
			// 
			this.tbPay.BackColor = System.Drawing.SystemColors.Window;
			this.tbPay.Location = new System.Drawing.Point(2, 137);
			this.tbPay.Name = "tbPay";
			this.tbPay.ScrollValue = 33;
			this.tbPay.SelectedIndices = new int[0];
			this.tbPay.SelectionMode = System.Windows.Forms.SelectionMode.One;
			this.tbPay.Size = new System.Drawing.Size(449, 72);
			this.tbPay.TabIndex = 71;
			this.tbPay.CellDoubleClicked += new OpenDental.ContrTable.CellEventHandler(this.tbPay_CellDoubleClicked);
			// 
			// butAddAdjust
			// 
			this.butAddAdjust.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAddAdjust.Autosize = true;
			this.butAddAdjust.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAddAdjust.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAddAdjust.CornerRadius = 4F;
			this.butAddAdjust.Image = global::OpenDental.Properties.Resources.Add;
			this.butAddAdjust.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAddAdjust.Location = new System.Drawing.Point(458, 6);
			this.butAddAdjust.Name = "butAddAdjust";
			this.butAddAdjust.Size = new System.Drawing.Size(126, 24);
			this.butAddAdjust.TabIndex = 72;
			this.butAddAdjust.Text = "Add Adjustment";
			this.butAddAdjust.Click += new System.EventHandler(this.butAddAdjust_Click);
			// 
			// butNoneSnomedBodySite
			// 
			this.butNoneSnomedBodySite.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butNoneSnomedBodySite.Autosize = true;
			this.butNoneSnomedBodySite.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butNoneSnomedBodySite.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butNoneSnomedBodySite.CornerRadius = 4F;
			this.butNoneSnomedBodySite.Location = new System.Drawing.Point(666, 6);
			this.butNoneSnomedBodySite.Name = "butNoneSnomedBodySite";
			this.butNoneSnomedBodySite.Size = new System.Drawing.Size(51, 22);
			this.butNoneSnomedBodySite.TabIndex = 180;
			this.butNoneSnomedBodySite.Text = "None";
			this.butNoneSnomedBodySite.Click += new System.EventHandler(this.butNoneSnomedBodySite_Click);
			// 
			// butSnomedBodySiteSelect
			// 
			this.butSnomedBodySiteSelect.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSnomedBodySiteSelect.Autosize = true;
			this.butSnomedBodySiteSelect.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSnomedBodySiteSelect.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSnomedBodySiteSelect.CornerRadius = 4F;
			this.butSnomedBodySiteSelect.Location = new System.Drawing.Point(638, 6);
			this.butSnomedBodySiteSelect.Name = "butSnomedBodySiteSelect";
			this.butSnomedBodySiteSelect.Size = new System.Drawing.Size(22, 22);
			this.butSnomedBodySiteSelect.TabIndex = 179;
			this.butSnomedBodySiteSelect.Text = "...";
			this.butSnomedBodySiteSelect.Click += new System.EventHandler(this.butSnomedBodySiteSelect_Click);
			// 
			// butPickSite
			// 
			this.butPickSite.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickSite.Autosize = true;
			this.butPickSite.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickSite.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickSite.CornerRadius = 2F;
			this.butPickSite.Location = new System.Drawing.Point(273, 76);
			this.butPickSite.Name = "butPickSite";
			this.butPickSite.Size = new System.Drawing.Size(19, 21);
			this.butPickSite.TabIndex = 112;
			this.butPickSite.TabStop = false;
			this.butPickSite.Text = "...";
			this.butPickSite.Click += new System.EventHandler(this.butPickSite_Click);
			// 
			// textCanadaLabFee2
			// 
			this.textCanadaLabFee2.Location = new System.Drawing.Point(421, 37);
			this.textCanadaLabFee2.Name = "textCanadaLabFee2";
			this.textCanadaLabFee2.Size = new System.Drawing.Size(68, 20);
			this.textCanadaLabFee2.TabIndex = 165;
			// 
			// textCanadaLabFee1
			// 
			this.textCanadaLabFee1.Location = new System.Drawing.Point(421, 16);
			this.textCanadaLabFee1.Name = "textCanadaLabFee1";
			this.textCanadaLabFee1.Size = new System.Drawing.Size(68, 20);
			this.textCanadaLabFee1.TabIndex = 164;
			// 
			// textDateStop
			// 
			this.textDateStop.Location = new System.Drawing.Point(111, 89);
			this.textDateStop.Name = "textDateStop";
			this.textDateStop.Size = new System.Drawing.Size(76, 20);
			this.textDateStop.TabIndex = 10;
			// 
			// textDateScheduled
			// 
			this.textDateScheduled.Location = new System.Drawing.Point(111, 69);
			this.textDateScheduled.Name = "textDateScheduled";
			this.textDateScheduled.ReadOnly = true;
			this.textDateScheduled.Size = new System.Drawing.Size(76, 20);
			this.textDateScheduled.TabIndex = 9;
			// 
			// textClaimNote
			// 
			this.textClaimNote.AcceptsTab = true;
			this.textClaimNote.DetectUrls = false;
			this.textClaimNote.Location = new System.Drawing.Point(106, 364);
			this.textClaimNote.MaxLength = 80;
			this.textClaimNote.Name = "textClaimNote";
			this.textClaimNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Procedure;
			this.textClaimNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textClaimNote.Size = new System.Drawing.Size(277, 43);
			this.textClaimNote.TabIndex = 173;
			this.textClaimNote.Text = "";
			// 
			// butReferral
			// 
			this.butReferral.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butReferral.Autosize = false;
			this.butReferral.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butReferral.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butReferral.CornerRadius = 2F;
			this.butReferral.Location = new System.Drawing.Point(707, 77);
			this.butReferral.Name = "butReferral";
			this.butReferral.Size = new System.Drawing.Size(18, 21);
			this.butReferral.TabIndex = 170;
			this.butReferral.Text = "...";
			this.butReferral.Click += new System.EventHandler(this.butReferral_Click);
			// 
			// butPickProv
			// 
			this.butPickProv.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickProv.Autosize = false;
			this.butPickProv.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickProv.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickProv.CornerRadius = 2F;
			this.butPickProv.Location = new System.Drawing.Point(265, 195);
			this.butPickProv.Name = "butPickProv";
			this.butPickProv.Size = new System.Drawing.Size(18, 21);
			this.butPickProv.TabIndex = 161;
			this.butPickProv.Text = "...";
			this.butPickProv.Click += new System.EventHandler(this.butPickProv_Click);
			// 
			// butTopazSign
			// 
			this.butTopazSign.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butTopazSign.Autosize = true;
			this.butTopazSign.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTopazSign.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTopazSign.CornerRadius = 4F;
			this.butTopazSign.Location = new System.Drawing.Point(873, 356);
			this.butTopazSign.Name = "butTopazSign";
			this.butTopazSign.Size = new System.Drawing.Size(81, 24);
			this.butTopazSign.TabIndex = 108;
			this.butTopazSign.Text = "Sign Topaz";
			this.butTopazSign.UseVisualStyleBackColor = true;
			this.butTopazSign.Click += new System.EventHandler(this.butTopazSign_Click);
			// 
			// buttonUseAutoNote
			// 
			this.buttonUseAutoNote.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.buttonUseAutoNote.Autosize = true;
			this.buttonUseAutoNote.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.buttonUseAutoNote.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.buttonUseAutoNote.CornerRadius = 4F;
			this.buttonUseAutoNote.Location = new System.Drawing.Point(622, 136);
			this.buttonUseAutoNote.Name = "buttonUseAutoNote";
			this.buttonUseAutoNote.Size = new System.Drawing.Size(80, 22);
			this.buttonUseAutoNote.TabIndex = 106;
			this.buttonUseAutoNote.Text = "Auto Note";
			this.buttonUseAutoNote.Click += new System.EventHandler(this.buttonUseAutoNote_Click);
			// 
			// sigBox
			// 
			this.sigBox.Location = new System.Drawing.Point(505, 325);
			this.sigBox.Name = "sigBox";
			this.sigBox.Size = new System.Drawing.Size(362, 79);
			this.sigBox.TabIndex = 86;
			this.sigBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.sigBox_MouseUp);
			// 
			// butClearSig
			// 
			this.butClearSig.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butClearSig.Autosize = true;
			this.butClearSig.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butClearSig.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butClearSig.CornerRadius = 4F;
			this.butClearSig.Location = new System.Drawing.Point(873, 325);
			this.butClearSig.Name = "butClearSig";
			this.butClearSig.Size = new System.Drawing.Size(81, 24);
			this.butClearSig.TabIndex = 85;
			this.butClearSig.Text = "Clear Sig";
			this.butClearSig.Click += new System.EventHandler(this.butClearSig_Click);
			// 
			// textDateOriginalProsth
			// 
			this.textDateOriginalProsth.Location = new System.Drawing.Point(91, 58);
			this.textDateOriginalProsth.Name = "textDateOriginalProsth";
			this.textDateOriginalProsth.Size = new System.Drawing.Size(73, 20);
			this.textDateOriginalProsth.TabIndex = 1;
			// 
			// textNotes
			// 
			this.textNotes.AcceptsTab = true;
			this.textNotes.BackColor = System.Drawing.SystemColors.Window;
			this.textNotes.DetectUrls = false;
			this.textNotes.Location = new System.Drawing.Point(504, 157);
			this.textNotes.Name = "textNotes";
			this.textNotes.QuickPasteType = OpenDentBusiness.QuickPasteType.Procedure;
			this.textNotes.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textNotes.Size = new System.Drawing.Size(450, 164);
			this.textNotes.TabIndex = 1;
			this.textNotes.Text = "";
			this.textNotes.TextChanged += new System.EventHandler(this.textNotes_TextChanged);
			// 
			// butSetComplete
			// 
			this.butSetComplete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSetComplete.Autosize = true;
			this.butSetComplete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSetComplete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSetComplete.CornerRadius = 4F;
			this.butSetComplete.Location = new System.Drawing.Point(643, 19);
			this.butSetComplete.Name = "butSetComplete";
			this.butSetComplete.Size = new System.Drawing.Size(79, 22);
			this.butSetComplete.TabIndex = 54;
			this.butSetComplete.Text = "Set Complete";
			this.butSetComplete.Click += new System.EventHandler(this.butSetComplete_Click);
			// 
			// butEditAnyway
			// 
			this.butEditAnyway.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butEditAnyway.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butEditAnyway.Autosize = true;
			this.butEditAnyway.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEditAnyway.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEditAnyway.CornerRadius = 4F;
			this.butEditAnyway.Location = new System.Drawing.Point(594, 671);
			this.butEditAnyway.Name = "butEditAnyway";
			this.butEditAnyway.Size = new System.Drawing.Size(104, 24);
			this.butEditAnyway.TabIndex = 51;
			this.butEditAnyway.Text = "&Edit Anyway";
			this.butEditAnyway.Visible = false;
			this.butEditAnyway.Click += new System.EventHandler(this.butEditAnyway_Click);
			// 
			// butDelete
			// 
			this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butDelete.Autosize = true;
			this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDelete.CornerRadius = 4F;
			this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(2, 671);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(83, 24);
			this.butDelete.TabIndex = 8;
			this.butDelete.Text = "&Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// butCancel
			// 
			this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			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(870, 671);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(76, 24);
			this.butCancel.TabIndex = 13;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butOK
			// 
			this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butOK.Autosize = true;
			this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOK.CornerRadius = 4F;
			this.butOK.Location = new System.Drawing.Point(779, 671);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(76, 24);
			this.butOK.TabIndex = 12;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// textDate
			// 
			this.textDate.Location = new System.Drawing.Point(106, 40);
			this.textDate.Name = "textDate";
			this.textDate.Size = new System.Drawing.Size(76, 20);
			this.textDate.TabIndex = 102;
			// 
			// butNow
			// 
			this.butNow.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butNow.Autosize = false;
			this.butNow.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butNow.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butNow.CornerRadius = 4F;
			this.butNow.Location = new System.Drawing.Point(369, 40);
			this.butNow.Name = "butNow";
			this.butNow.Size = new System.Drawing.Size(27, 20);
			this.butNow.TabIndex = 101;
			this.butNow.Text = "Now";
			this.butNow.UseVisualStyleBackColor = true;
			this.butNow.Visible = false;
			this.butNow.Click += new System.EventHandler(this.butNow_Click);
			// 
			// butD
			// 
			this.butD.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butD.Autosize = true;
			this.butD.BackColor = System.Drawing.SystemColors.Control;
			this.butD.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butD.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butD.CornerRadius = 4F;
			this.butD.Location = new System.Drawing.Point(61, 23);
			this.butD.Name = "butD";
			this.butD.Size = new System.Drawing.Size(24, 20);
			this.butD.TabIndex = 27;
			this.butD.Text = "D";
			this.butD.UseVisualStyleBackColor = false;
			this.butD.Click += new System.EventHandler(this.butD_Click);
			// 
			// butBF
			// 
			this.butBF.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butBF.Autosize = true;
			this.butBF.BackColor = System.Drawing.SystemColors.Control;
			this.butBF.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butBF.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butBF.CornerRadius = 4F;
			this.butBF.Location = new System.Drawing.Point(22, 3);
			this.butBF.Name = "butBF";
			this.butBF.Size = new System.Drawing.Size(28, 20);
			this.butBF.TabIndex = 28;
			this.butBF.Text = "B/F";
			this.butBF.UseVisualStyleBackColor = false;
			this.butBF.Click += new System.EventHandler(this.butBF_Click);
			// 
			// butL
			// 
			this.butL.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butL.Autosize = true;
			this.butL.BackColor = System.Drawing.SystemColors.Control;
			this.butL.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butL.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butL.CornerRadius = 4F;
			this.butL.Location = new System.Drawing.Point(32, 43);
			this.butL.Name = "butL";
			this.butL.Size = new System.Drawing.Size(24, 20);
			this.butL.TabIndex = 29;
			this.butL.Text = "L";
			this.butL.UseVisualStyleBackColor = false;
			this.butL.Click += new System.EventHandler(this.butL_Click);
			// 
			// butM
			// 
			this.butM.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butM.Autosize = true;
			this.butM.BackColor = System.Drawing.SystemColors.Control;
			this.butM.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butM.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butM.CornerRadius = 4F;
			this.butM.Location = new System.Drawing.Point(3, 23);
			this.butM.Name = "butM";
			this.butM.Size = new System.Drawing.Size(24, 20);
			this.butM.TabIndex = 25;
			this.butM.Text = "M";
			this.butM.UseVisualStyleBackColor = false;
			this.butM.Click += new System.EventHandler(this.butM_Click);
			// 
			// butV
			// 
			this.butV.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butV.Autosize = true;
			this.butV.BackColor = System.Drawing.SystemColors.Control;
			this.butV.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butV.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butV.CornerRadius = 4F;
			this.butV.Location = new System.Drawing.Point(50, 3);
			this.butV.Name = "butV";
			this.butV.Size = new System.Drawing.Size(17, 20);
			this.butV.TabIndex = 30;
			this.butV.Text = "V";
			this.butV.UseVisualStyleBackColor = false;
			this.butV.Click += new System.EventHandler(this.butV_Click);
			// 
			// butOI
			// 
			this.butOI.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butOI.Autosize = true;
			this.butOI.BackColor = System.Drawing.SystemColors.Control;
			this.butOI.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butOI.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butOI.CornerRadius = 4F;
			this.butOI.Location = new System.Drawing.Point(27, 23);
			this.butOI.Name = "butOI";
			this.butOI.Size = new System.Drawing.Size(34, 20);
			this.butOI.TabIndex = 26;
			this.butOI.Text = "O/I";
			this.butOI.UseVisualStyleBackColor = false;
			this.butOI.Click += new System.EventHandler(this.butOI_Click);
			// 
			// textDateTP
			// 
			this.textDateTP.Location = new System.Drawing.Point(106, 21);
			this.textDateTP.Name = "textDateTP";
			this.textDateTP.Size = new System.Drawing.Size(76, 20);
			this.textDateTP.TabIndex = 99;
			// 
			// textDateEntry
			// 
			this.textDateEntry.Location = new System.Drawing.Point(106, 1);
			this.textDateEntry.Name = "textDateEntry";
			this.textDateEntry.ReadOnly = true;
			this.textDateEntry.Size = new System.Drawing.Size(76, 20);
			this.textDateEntry.TabIndex = 95;
			// 
			// textProcFee
			// 
			this.textProcFee.Location = new System.Drawing.Point(106, 155);
			this.textProcFee.Name = "textProcFee";
			this.textProcFee.Size = new System.Drawing.Size(68, 20);
			this.textProcFee.TabIndex = 6;
			this.textProcFee.Validating += new System.ComponentModel.CancelEventHandler(this.textProcFee_Validating);
			// 
			// butChange
			// 
			this.butChange.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butChange.Autosize = true;
			this.butChange.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butChange.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butChange.CornerRadius = 4F;
			this.butChange.Location = new System.Drawing.Point(184, 61);
			this.butChange.Name = "butChange";
			this.butChange.Size = new System.Drawing.Size(74, 20);
			this.butChange.TabIndex = 37;
			this.butChange.Text = "C&hange";
			this.butChange.Click += new System.EventHandler(this.butChange_Click);
			// 
			// FormProcEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(962, 696);
			this.Controls.Add(this.butSearch);
			this.Controls.Add(this.butLock);
			this.Controls.Add(this.butInvalidate);
			this.Controls.Add(this.butAppend);
			this.Controls.Add(this.labelLocked);
			this.Controls.Add(this.tabControl);
			this.Controls.Add(this.labelClaimNote);
			this.Controls.Add(this.textClaimNote);
			this.Controls.Add(this.butReferral);
			this.Controls.Add(this.textReferral);
			this.Controls.Add(this.label13);
			this.Controls.Add(this.comboProcStatus);
			this.Controls.Add(this.comboProvNum);
			this.Controls.Add(this.checkHideGraphics);
			this.Controls.Add(this.butPickProv);
			this.Controls.Add(this.labelInvalidSig);
			this.Controls.Add(this.butTopazSign);
			this.Controls.Add(this.buttonUseAutoNote);
			this.Controls.Add(this.textUser);
			this.Controls.Add(this.comboDx);
			this.Controls.Add(this.comboPriority);
			this.Controls.Add(this.comboClinic);
			this.Controls.Add(this.labelClinic);
			this.Controls.Add(this.labelPriority);
			this.Controls.Add(this.labelDx);
			this.Controls.Add(this.label9);
			this.Controls.Add(this.sigBox);
			this.Controls.Add(this.butClearSig);
			this.Controls.Add(this.groupProsth);
			this.Controls.Add(this.textNotes);
			this.Controls.Add(this.label16);
			this.Controls.Add(this.label15);
			this.Controls.Add(this.labelIncomplete);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.label14);
			this.Controls.Add(this.butSetComplete);
			this.Controls.Add(this.butEditAnyway);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.labelSetComplete);
			this.Controls.Add(this.labelClaim);
			this.Controls.Add(this.panel1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormProcEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Procedure Info";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormProcEdit_FormClosing);
			this.Load += new System.EventHandler(this.FormProcInfo_Load);
			this.groupQuadrant.ResumeLayout(false);
			this.groupArch.ResumeLayout(false);
			this.panelSurfaces.ResumeLayout(false);
			this.groupSextant.ResumeLayout(false);
			this.panel1.ResumeLayout(false);
			this.panel1.PerformLayout();
			this.groupProsth.ResumeLayout(false);
			this.groupProsth.PerformLayout();
			this.groupCanadianProcTypeCode.ResumeLayout(false);
			this.tabControl.ResumeLayout(false);
			this.tabPageFinancial.ResumeLayout(false);
			this.tabPageMedical.ResumeLayout(false);
			this.tabPageMedical.PerformLayout();
			this.tabPageMisc.ResumeLayout(false);
			this.tabPageMisc.PerformLayout();
			this.tabPageCanada.ResumeLayout(false);
			this.tabPageCanada.PerformLayout();
			this.tabPageOrion.ResumeLayout(false);
			this.tabPageOrion.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 23
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.tabMain = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.checkInsNo = new System.Windows.Forms.CheckBox();
			this.labelIns = new System.Windows.Forms.Label();
			this.comboPosition = new System.Windows.Forms.ComboBox();
			this.comboGender = new System.Windows.Forms.ComboBox();
			this.textReferral = new System.Windows.Forms.TextBox();
			this.labelReferral = new System.Windows.Forms.Label();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label1 = new System.Windows.Forms.Label();
			this.comboStudentStatus = new System.Windows.Forms.ComboBox();
			this.textSchool = new System.Windows.Forms.TextBox();
			this.label30 = new System.Windows.Forms.Label();
			this.checkInsYes = new System.Windows.Forms.CheckBox();
			this.labelAddrNotes = new System.Windows.Forms.Label();
			this.textAddrNotes = new OpenDental.ODtextBox();
			this.textBirthdate = new OpenDental.ValidDate();
			this.textEmail = new System.Windows.Forms.TextBox();
			this.textWirelessPhone = new System.Windows.Forms.TextBox();
			this.textWkPhone = new System.Windows.Forms.TextBox();
			this.textSSN = new System.Windows.Forms.TextBox();
			this.textPreferred = new System.Windows.Forms.TextBox();
			this.textMiddleI = new System.Windows.Forms.TextBox();
			this.textFName = new System.Windows.Forms.TextBox();
			this.textLName = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.textHmPhone = new System.Windows.Forms.TextBox();
			this.textZip = new System.Windows.Forms.TextBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.checkSame = new System.Windows.Forms.CheckBox();
			this.textState = new System.Windows.Forms.TextBox();
			this.labelST = new System.Windows.Forms.Label();
			this.textAddress = new System.Windows.Forms.TextBox();
			this.label12 = new System.Windows.Forms.Label();
			this.labelCity = new System.Windows.Forms.Label();
			this.textAddress2 = new System.Windows.Forms.TextBox();
			this.labelZip = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.textCity = new System.Windows.Forms.TextBox();
			this.label11 = new System.Windows.Forms.Label();
			this.label22 = new System.Windows.Forms.Label();
			this.label18 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.labelSSN = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.listDiseases = new System.Windows.Forms.CheckedListBox();
			this.label6 = new System.Windows.Forms.Label();
			this.multInput = new OpenDental.UI.ContrMultInput();
			this.timer1 = new System.Windows.Forms.Timer(this.components);
			this.textWelcome = new System.Windows.Forms.TextBox();
			this.labelConnection = new System.Windows.Forms.Label();
			this.butSubmit = new OpenDental.UI.Button();
			this.butClose = new OpenDental.UI.Button();
			this.tabMain.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.SuspendLayout();
			// 
			// tabMain
			// 
			this.tabMain.Controls.Add(this.tabPage1);
			this.tabMain.Controls.Add(this.tabPage2);
			this.tabMain.Location = new System.Drawing.Point(12,12);
			this.tabMain.Name = "tabMain";
			this.tabMain.SelectedIndex = 0;
			this.tabMain.Size = new System.Drawing.Size(992,713);
			this.tabMain.TabIndex = 2;
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.Add(this.checkInsNo);
			this.tabPage1.Controls.Add(this.labelIns);
			this.tabPage1.Controls.Add(this.comboPosition);
			this.tabPage1.Controls.Add(this.comboGender);
			this.tabPage1.Controls.Add(this.textReferral);
			this.tabPage1.Controls.Add(this.labelReferral);
			this.tabPage1.Controls.Add(this.groupBox2);
			this.tabPage1.Controls.Add(this.checkInsYes);
			this.tabPage1.Controls.Add(this.labelAddrNotes);
			this.tabPage1.Controls.Add(this.textAddrNotes);
			this.tabPage1.Controls.Add(this.textBirthdate);
			this.tabPage1.Controls.Add(this.textEmail);
			this.tabPage1.Controls.Add(this.textWirelessPhone);
			this.tabPage1.Controls.Add(this.textWkPhone);
			this.tabPage1.Controls.Add(this.textSSN);
			this.tabPage1.Controls.Add(this.textPreferred);
			this.tabPage1.Controls.Add(this.textMiddleI);
			this.tabPage1.Controls.Add(this.textFName);
			this.tabPage1.Controls.Add(this.textLName);
			this.tabPage1.Controls.Add(this.label7);
			this.tabPage1.Controls.Add(this.groupBox1);
			this.tabPage1.Controls.Add(this.label22);
			this.tabPage1.Controls.Add(this.label18);
			this.tabPage1.Controls.Add(this.label17);
			this.tabPage1.Controls.Add(this.labelSSN);
			this.tabPage1.Controls.Add(this.label9);
			this.tabPage1.Controls.Add(this.label8);
			this.tabPage1.Controls.Add(this.label5);
			this.tabPage1.Controls.Add(this.label4);
			this.tabPage1.Controls.Add(this.label3);
			this.tabPage1.Controls.Add(this.label2);
			this.tabPage1.Location = new System.Drawing.Point(4,22);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
			this.tabPage1.Size = new System.Drawing.Size(984,687);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "Patient Information";
			this.tabPage1.UseVisualStyleBackColor = true;
			// 
			// checkInsNo
			// 
			this.checkInsNo.Location = new System.Drawing.Point(180,78);
			this.checkInsNo.Name = "checkInsNo";
			this.checkInsNo.Size = new System.Drawing.Size(102,16);
			this.checkInsNo.TabIndex = 141;
			this.checkInsNo.Text = "No";
			this.checkInsNo.UseVisualStyleBackColor = true;
			this.checkInsNo.Click += new System.EventHandler(this.checkInsNo_Click);
			// 
			// labelIns
			// 
			this.labelIns.Location = new System.Drawing.Point(177,44);
			this.labelIns.Name = "labelIns";
			this.labelIns.Size = new System.Drawing.Size(403,15);
			this.labelIns.TabIndex = 140;
			this.labelIns.Text = "Do you have dental insurance?";
			// 
			// comboPosition
			// 
			this.comboPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPosition.FormattingEnabled = true;
			this.comboPosition.Location = new System.Drawing.Point(180,215);
			this.comboPosition.Name = "comboPosition";
			this.comboPosition.Size = new System.Drawing.Size(121,21);
			this.comboPosition.TabIndex = 6;
			// 
			// comboGender
			// 
			this.comboGender.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboGender.FormattingEnabled = true;
			this.comboGender.Location = new System.Drawing.Point(180,193);
			this.comboGender.Name = "comboGender";
			this.comboGender.Size = new System.Drawing.Size(121,21);
			this.comboGender.TabIndex = 5;
			// 
			// textReferral
			// 
			this.textReferral.Location = new System.Drawing.Point(668,315);
			this.textReferral.MaxLength = 100;
			this.textReferral.Name = "textReferral";
			this.textReferral.Size = new System.Drawing.Size(268,20);
			this.textReferral.TabIndex = 14;
			// 
			// labelReferral
			// 
			this.labelReferral.Location = new System.Drawing.Point(475,318);
			this.labelReferral.Name = "labelReferral";
			this.labelReferral.Size = new System.Drawing.Size(191,17);
			this.labelReferral.TabIndex = 139;
			this.labelReferral.Text = "How did you hear about our office?";
			this.labelReferral.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// groupBox2
			// 
			this.groupBox2.BackColor = System.Drawing.SystemColors.Window;
			this.groupBox2.Controls.Add(this.label1);
			this.groupBox2.Controls.Add(this.comboStudentStatus);
			this.groupBox2.Controls.Add(this.textSchool);
			this.groupBox2.Controls.Add(this.label30);
			this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox2.Location = new System.Drawing.Point(574,203);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(362,68);
			this.groupBox2.TabIndex = 13;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "Student Status if Dependent Over 19 (for Ins)";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(4,23);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(116,16);
			this.label1.TabIndex = 142;
			this.label1.Text = "Status";
			this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// comboStudentStatus
			// 
			this.comboStudentStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboStudentStatus.FormattingEnabled = true;
			this.comboStudentStatus.Location = new System.Drawing.Point(122,20);
			this.comboStudentStatus.Name = "comboStudentStatus";
			this.comboStudentStatus.Size = new System.Drawing.Size(121,21);
			this.comboStudentStatus.TabIndex = 0;
			// 
			// textSchool
			// 
			this.textSchool.Location = new System.Drawing.Point(122,42);
			this.textSchool.MaxLength = 30;
			this.textSchool.Name = "textSchool";
			this.textSchool.Size = new System.Drawing.Size(226,20);
			this.textSchool.TabIndex = 1;
			// 
			// label30
			// 
			this.label30.Location = new System.Drawing.Point(4,46);
			this.label30.Name = "label30";
			this.label30.Size = new System.Drawing.Size(116,16);
			this.label30.TabIndex = 9;
			this.label30.Text = "College Name";
			this.label30.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// checkInsYes
			// 
			this.checkInsYes.Location = new System.Drawing.Point(180,61);
			this.checkInsYes.Name = "checkInsYes";
			this.checkInsYes.Size = new System.Drawing.Size(327,18);
			this.checkInsYes.TabIndex = 0;
			this.checkInsYes.Text = "Yes    (Please present card to receptionist before continuing)";
			this.checkInsYes.UseVisualStyleBackColor = true;
			this.checkInsYes.Click += new System.EventHandler(this.checkInsYes_Click);
			// 
			// labelAddrNotes
			// 
			this.labelAddrNotes.Location = new System.Drawing.Point(517,386);
			this.labelAddrNotes.Name = "labelAddrNotes";
			this.labelAddrNotes.Size = new System.Drawing.Size(151,44);
			this.labelAddrNotes.TabIndex = 135;
			this.labelAddrNotes.Text = "Notes regarding address or telephone";
			this.labelAddrNotes.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textAddrNotes
			// 
			this.textAddrNotes.Location = new System.Drawing.Point(668,386);
			this.textAddrNotes.Multiline = true;
			this.textAddrNotes.Name = "textAddrNotes";
			this.textAddrNotes.QuickPasteType = OpenDentBusiness.QuickPasteType.PatAddressNote;
			this.textAddrNotes.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textAddrNotes.Size = new System.Drawing.Size(268,126);
			this.textAddrNotes.TabIndex = 15;
			// 
			// textBirthdate
			// 
			this.textBirthdate.Location = new System.Drawing.Point(180,237);
			this.textBirthdate.Name = "textBirthdate";
			this.textBirthdate.Size = new System.Drawing.Size(82,20);
			this.textBirthdate.TabIndex = 7;
			// 
			// textEmail
			// 
			this.textEmail.Location = new System.Drawing.Point(180,279);
			this.textEmail.MaxLength = 100;
			this.textEmail.Name = "textEmail";
			this.textEmail.Size = new System.Drawing.Size(226,20);
			this.textEmail.TabIndex = 9;
			// 
			// textWirelessPhone
			// 
			this.textWirelessPhone.Location = new System.Drawing.Point(180,300);
			this.textWirelessPhone.MaxLength = 30;
			this.textWirelessPhone.Name = "textWirelessPhone";
			this.textWirelessPhone.Size = new System.Drawing.Size(174,20);
			this.textWirelessPhone.TabIndex = 10;
			this.textWirelessPhone.TextChanged += new System.EventHandler(this.textWirelessPhone_TextChanged);
			// 
			// textWkPhone
			// 
			this.textWkPhone.Location = new System.Drawing.Point(180,321);
			this.textWkPhone.MaxLength = 30;
			this.textWkPhone.Name = "textWkPhone";
			this.textWkPhone.Size = new System.Drawing.Size(174,20);
			this.textWkPhone.TabIndex = 11;
			this.textWkPhone.TextChanged += new System.EventHandler(this.textWkPhone_TextChanged);
			// 
			// textSSN
			// 
			this.textSSN.Location = new System.Drawing.Point(180,258);
			this.textSSN.MaxLength = 100;
			this.textSSN.Name = "textSSN";
			this.textSSN.Size = new System.Drawing.Size(82,20);
			this.textSSN.TabIndex = 8;
			this.textSSN.Validating += new System.ComponentModel.CancelEventHandler(this.textSSN_Validating);
			// 
			// textPreferred
			// 
			this.textPreferred.Location = new System.Drawing.Point(180,172);
			this.textPreferred.MaxLength = 100;
			this.textPreferred.Name = "textPreferred";
			this.textPreferred.Size = new System.Drawing.Size(228,20);
			this.textPreferred.TabIndex = 4;
			this.textPreferred.TextChanged += new System.EventHandler(this.textPreferred_TextChanged);
			// 
			// textMiddleI
			// 
			this.textMiddleI.Location = new System.Drawing.Point(180,151);
			this.textMiddleI.MaxLength = 100;
			this.textMiddleI.Name = "textMiddleI";
			this.textMiddleI.Size = new System.Drawing.Size(75,20);
			this.textMiddleI.TabIndex = 3;
			this.textMiddleI.TextChanged += new System.EventHandler(this.textMiddleI_TextChanged);
			// 
			// textFName
			// 
			this.textFName.Location = new System.Drawing.Point(180,130);
			this.textFName.MaxLength = 100;
			this.textFName.Name = "textFName";
			this.textFName.Size = new System.Drawing.Size(228,20);
			this.textFName.TabIndex = 2;
			this.textFName.TextChanged += new System.EventHandler(this.textFName_TextChanged);
			// 
			// textLName
			// 
			this.textLName.Location = new System.Drawing.Point(180,109);
			this.textLName.MaxLength = 100;
			this.textLName.Name = "textLName";
			this.textLName.Size = new System.Drawing.Size(228,20);
			this.textLName.TabIndex = 1;
			this.textLName.TextChanged += new System.EventHandler(this.textLName_TextChanged);
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(72,194);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(106,16);
			this.label7.TabIndex = 104;
			this.label7.Text = "Gender";
			this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupBox1
			// 
			this.groupBox1.BackColor = System.Drawing.SystemColors.Window;
			this.groupBox1.Controls.Add(this.textHmPhone);
			this.groupBox1.Controls.Add(this.textZip);
			this.groupBox1.Controls.Add(this.textBox1);
			this.groupBox1.Controls.Add(this.checkSame);
			this.groupBox1.Controls.Add(this.textState);
			this.groupBox1.Controls.Add(this.labelST);
			this.groupBox1.Controls.Add(this.textAddress);
			this.groupBox1.Controls.Add(this.label12);
			this.groupBox1.Controls.Add(this.labelCity);
			this.groupBox1.Controls.Add(this.textAddress2);
			this.groupBox1.Controls.Add(this.labelZip);
			this.groupBox1.Controls.Add(this.label16);
			this.groupBox1.Controls.Add(this.textCity);
			this.groupBox1.Controls.Add(this.label11);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(75,347);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(373,185);
			this.groupBox1.TabIndex = 12;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Address and Phone";
			// 
			// textHmPhone
			// 
			this.textHmPhone.Location = new System.Drawing.Point(105,51);
			this.textHmPhone.MaxLength = 30;
			this.textHmPhone.Name = "textHmPhone";
			this.textHmPhone.Size = new System.Drawing.Size(174,20);
			this.textHmPhone.TabIndex = 1;
			this.textHmPhone.TextChanged += new System.EventHandler(this.textHmPhone_TextChanged);
			// 
			// textZip
			// 
			this.textZip.Location = new System.Drawing.Point(105,151);
			this.textZip.MaxLength = 100;
			this.textZip.Name = "textZip";
			this.textZip.Size = new System.Drawing.Size(116,20);
			this.textZip.TabIndex = 6;
			// 
			// textBox1
			// 
			this.textBox1.BackColor = System.Drawing.SystemColors.Window;
			this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.textBox1.Location = new System.Drawing.Point(123,19);
			this.textBox1.Multiline = true;
			this.textBox1.Name = "textBox1";
			this.textBox1.ReadOnly = true;
			this.textBox1.Size = new System.Drawing.Size(230,33);
			this.textBox1.TabIndex = 57;
			this.textBox1.TabStop = false;
			this.textBox1.Text = "This info is the same for everyone in the family";
			// 
			// checkSame
			// 
			this.checkSame.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkSame.Location = new System.Drawing.Point(105,16);
			this.checkSame.Name = "checkSame";
			this.checkSame.Size = new System.Drawing.Size(18,21);
			this.checkSame.TabIndex = 0;
			this.checkSame.TabStop = false;
			// 
			// textState
			// 
			this.textState.Location = new System.Drawing.Point(105,131);
			this.textState.MaxLength = 100;
			this.textState.Name = "textState";
			this.textState.Size = new System.Drawing.Size(61,20);
			this.textState.TabIndex = 5;
			this.textState.TabStop = false;
			// 
			// labelST
			// 
			this.labelST.Location = new System.Drawing.Point(7,135);
			this.labelST.Name = "labelST";
			this.labelST.Size = new System.Drawing.Size(96,14);
			this.labelST.TabIndex = 13;
			this.labelST.Text = "ST";
			this.labelST.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textAddress
			// 
			this.textAddress.Location = new System.Drawing.Point(105,71);
			this.textAddress.MaxLength = 100;
			this.textAddress.Name = "textAddress";
			this.textAddress.Size = new System.Drawing.Size(254,20);
			this.textAddress.TabIndex = 2;
			this.textAddress.TextChanged += new System.EventHandler(this.textAddress_TextChanged);
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(5,95);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(99,14);
			this.label12.TabIndex = 11;
			this.label12.Text = "Address2";
			this.label12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelCity
			// 
			this.labelCity.Location = new System.Drawing.Point(4,115);
			this.labelCity.Name = "labelCity";
			this.labelCity.Size = new System.Drawing.Size(98,14);
			this.labelCity.TabIndex = 12;
			this.labelCity.Text = "City";
			this.labelCity.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textAddress2
			// 
			this.textAddress2.Location = new System.Drawing.Point(105,91);
			this.textAddress2.MaxLength = 100;
			this.textAddress2.Name = "textAddress2";
			this.textAddress2.Size = new System.Drawing.Size(253,20);
			this.textAddress2.TabIndex = 3;
			this.textAddress2.TextChanged += new System.EventHandler(this.textAddress2_TextChanged);
			// 
			// labelZip
			// 
			this.labelZip.Location = new System.Drawing.Point(7,156);
			this.labelZip.Name = "labelZip";
			this.labelZip.Size = new System.Drawing.Size(96,14);
			this.labelZip.TabIndex = 14;
			this.labelZip.Text = "Zip";
			this.labelZip.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(7,53);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(98,14);
			this.label16.TabIndex = 15;
			this.label16.Text = "Home Phone";
			this.label16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textCity
			// 
			this.textCity.Location = new System.Drawing.Point(105,111);
			this.textCity.MaxLength = 100;
			this.textCity.Name = "textCity";
			this.textCity.Size = new System.Drawing.Size(191,20);
			this.textCity.TabIndex = 4;
			this.textCity.TabStop = false;
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(5,74);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(98,14);
			this.label11.TabIndex = 10;
			this.label11.Text = "Address";
			this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(74,284);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(104,14);
			this.label22.TabIndex = 125;
			this.label22.Text = "E-mail";
			this.label22.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label18
			// 
			this.label18.Location = new System.Drawing.Point(55,304);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(124,14);
			this.label18.TabIndex = 120;
			this.label18.Text = "Wireless Phone";
			this.label18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(61,325);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(118,14);
			this.label17.TabIndex = 119;
			this.label17.Text = "Work Phone";
			this.label17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelSSN
			// 
			this.labelSSN.Location = new System.Drawing.Point(35,263);
			this.labelSSN.Name = "labelSSN";
			this.labelSSN.Size = new System.Drawing.Size(142,14);
			this.labelSSN.TabIndex = 111;
			this.labelSSN.Text = "Social Security Number";
			this.labelSSN.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(73,241);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(105,14);
			this.label9.TabIndex = 109;
			this.label9.Text = "Birthdate";
			this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(78,216);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(100,16);
			this.label8.TabIndex = 106;
			this.label8.Text = "Marital Status";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(32,175);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(146,16);
			this.label5.TabIndex = 100;
			this.label5.Text = "Preferred Name (nickname)";
			this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(54,154);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(124,16);
			this.label4.TabIndex = 98;
			this.label4.Text = "Middle Initial";
			this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(51,133);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(127,16);
			this.label3.TabIndex = 96;
			this.label3.Text = "First Name";
			this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(53,111);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(125,16);
			this.label2.TabIndex = 95;
			this.label2.Text = "Last Name";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// tabPage2
			// 
			this.tabPage2.Controls.Add(this.listDiseases);
			this.tabPage2.Controls.Add(this.label6);
			this.tabPage2.Controls.Add(this.multInput);
			this.tabPage2.Location = new System.Drawing.Point(4,22);
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
			this.tabPage2.Size = new System.Drawing.Size(984,687);
			this.tabPage2.TabIndex = 1;
			this.tabPage2.Text = "Medical History";
			this.tabPage2.UseVisualStyleBackColor = true;
			// 
			// listDiseases
			// 
			this.listDiseases.CheckOnClick = true;
			this.listDiseases.FormattingEnabled = true;
			this.listDiseases.Location = new System.Drawing.Point(3,20);
			this.listDiseases.MultiColumn = true;
			this.listDiseases.Name = "listDiseases";
			this.listDiseases.Size = new System.Drawing.Size(975,199);
			this.listDiseases.TabIndex = 0;
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(6,4);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(317,13);
			this.label6.TabIndex = 5;
			this.label6.Text = "Please mark any of the following medical conditions that you have";
			// 
			// multInput
			// 
			this.multInput.Location = new System.Drawing.Point(3,223);
			this.multInput.Name = "multInput";
			this.multInput.Size = new System.Drawing.Size(975,440);
			this.multInput.TabIndex = 4;
			// 
			// timer1
			// 
			this.timer1.Enabled = true;
			this.timer1.Interval = 4000;
			this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
			// 
			// textWelcome
			// 
			this.textWelcome.BackColor = System.Drawing.SystemColors.Control;
			this.textWelcome.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.textWelcome.Font = new System.Drawing.Font("Microsoft Sans Serif",18F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,((byte)(0)));
			this.textWelcome.Location = new System.Drawing.Point(330,237);
			this.textWelcome.Multiline = true;
			this.textWelcome.Name = "textWelcome";
			this.textWelcome.ReadOnly = true;
			this.textWelcome.Size = new System.Drawing.Size(377,289);
			this.textWelcome.TabIndex = 3;
			this.textWelcome.TabStop = false;
			this.textWelcome.Text = "Welcome!\r\n\r\nThis  terminal is used to enter new patient information.\r\n\r\nThe recep" +
    "tionist will prepare the screen for you.";
			this.textWelcome.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
			// 
			// labelConnection
			// 
			this.labelConnection.Font = new System.Drawing.Font("Microsoft Sans Serif",18F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,((byte)(0)));
			this.labelConnection.Location = new System.Drawing.Point(51,728);
			this.labelConnection.Name = "labelConnection";
			this.labelConnection.Size = new System.Drawing.Size(444,29);
			this.labelConnection.TabIndex = 4;
			this.labelConnection.Text = "Connection to server has been lost";
			// 
			// butSubmit
			// 
			this.butSubmit.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butSubmit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butSubmit.Autosize = true;
			this.butSubmit.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSubmit.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSubmit.CornerRadius = 4F;
			this.butSubmit.Location = new System.Drawing.Point(929,731);
			this.butSubmit.Name = "butSubmit";
			this.butSubmit.Size = new System.Drawing.Size(75,26);
			this.butSubmit.TabIndex = 1;
			this.butSubmit.Text = "Submit";
			this.butSubmit.Click += new System.EventHandler(this.butSubmit_Click);
			// 
			// butClose
			// 
			this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butClose.Autosize = true;
			this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butClose.CornerRadius = 4F;
			this.butClose.Location = new System.Drawing.Point(501,731);
			this.butClose.Name = "butClose";
			this.butClose.Size = new System.Drawing.Size(75,26);
			this.butClose.TabIndex = 0;
			this.butClose.Text = "Close";
			this.butClose.Click += new System.EventHandler(this.butClose_Click);
			// 
			// FormTerminalOld
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(1016,760);
			this.ControlBox = false;
			this.Controls.Add(this.labelConnection);
			this.Controls.Add(this.tabMain);
			this.Controls.Add(this.butSubmit);
			this.Controls.Add(this.butClose);
			this.Controls.Add(this.textWelcome);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormTerminalOld";
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Load += new System.EventHandler(this.FormTerminal_Load);
			this.tabMain.ResumeLayout(false);
			this.tabPage1.ResumeLayout(false);
			this.tabPage1.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.tabPage2.ResumeLayout(false);
			this.tabPage2.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPopupEdit));
     this.label1          = new System.Windows.Forms.Label();
     this.checkIsDisabled = new System.Windows.Forms.CheckBox();
     this.comboPopupLevel = new System.Windows.Forms.ComboBox();
     this.label2          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.textPatient     = new System.Windows.Forms.TextBox();
     this.butDelete       = new OpenDental.UI.Button();
     this.butOK           = new OpenDental.UI.Button();
     this.butCancel       = new OpenDental.UI.Button();
     this.textDescription = new OpenDental.ODtextBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(53, 93);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(101, 19);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Popup Message";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkIsDisabled
     //
     this.checkIsDisabled.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsDisabled.Location   = new System.Drawing.Point(14, 70);
     this.checkIsDisabled.Name       = "checkIsDisabled";
     this.checkIsDisabled.Size       = new System.Drawing.Size(158, 18);
     this.checkIsDisabled.TabIndex   = 4;
     this.checkIsDisabled.Text       = "Permanently Disabled";
     this.checkIsDisabled.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsDisabled.UseVisualStyleBackColor = true;
     //
     // comboPopupLevel
     //
     this.comboPopupLevel.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPopupLevel.FormattingEnabled = true;
     this.comboPopupLevel.Location          = new System.Drawing.Point(157, 43);
     this.comboPopupLevel.Name     = "comboPopupLevel";
     this.comboPopupLevel.Size     = new System.Drawing.Size(159, 21);
     this.comboPopupLevel.TabIndex = 6;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(33, 43);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(121, 18);
     this.label2.TabIndex  = 7;
     this.label2.Text      = "Level";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(11, 19);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(142, 15);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Patient";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textPatient
     //
     this.textPatient.Enabled  = false;
     this.textPatient.Location = new System.Drawing.Point(157, 17);
     this.textPatient.Name     = "textPatient";
     this.textPatient.Size     = new System.Drawing.Size(271, 20);
     this.textPatient.TabIndex = 9;
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location     = new System.Drawing.Point(28, 205);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(81, 26);
     this.butDelete.TabIndex     = 5;
     this.butDelete.Text         = "Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(302, 205);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(77, 26);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location     = new System.Drawing.Point(385, 205);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // textDescription
     //
     this.textDescription.Location       = new System.Drawing.Point(157, 93);
     this.textDescription.Multiline      = true;
     this.textDescription.Name           = "textDescription";
     this.textDescription.QuickPasteType = OpenDentBusiness.QuickPasteType.Popup;
     this.textDescription.Size           = new System.Drawing.Size(271, 91);
     this.textDescription.TabIndex       = 2;
     //
     // FormPopupEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(492, 248);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.textPatient);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.comboPopupLevel);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.checkIsDisabled);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormPopupEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Popup";
     this.Load         += new System.EventHandler(this.FormPopupEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }