Exemple #1
0
        ///<summary>Should run AllFieldsAreValid() first. This is called from the parent form to retrieve the data that the user entered.  Returns an arraylist.  For most fields, the length of the arraylist will be 0 or 1.</summary>
        public ArrayList GetCurrentValues(int item)
        {
            ArrayList retVal = new ArrayList();

            if (multInputItems[item].ValueType == FieldValueType.Boolean)
            {
                if (((CheckBox)inputs[item]).Checked)
                {
                    retVal.Add(true);
                }
            }
            else if (multInputItems[item].ValueType == FieldValueType.Date)
            {
                retVal.Add(PIn.Date(inputs[item].Text));
            }
            else if (multInputItems[item].ValueType == FieldValueType.Def)
            {
                ComboBoxMulti comboBox = (ComboBoxMulti)inputs[item];
                List <Def>    listDefs = Defs.GetDefsForCategory(multInputItems[item].DefCategory, true);
                for (int j = 0; j < comboBox.SelectedIndices.Count; j++)
                {
                    retVal.Add(
                        listDefs[(int)comboBox.SelectedIndices[j]].DefNum);
                }
            }
            else if (multInputItems[item].ValueType == FieldValueType.Enum)
            {
                ComboBoxMulti comboBox = (ComboBoxMulti)inputs[item];
                Type          eType    = Type.GetType("OpenDental." + multInputItems[item].EnumerationType.ToString());
                for (int j = 0; j < comboBox.SelectedIndices.Count; j++)
                {
                    retVal.Add(
                        (int)(Enum.Parse(eType, Enum.GetNames(eType)[(int)comboBox.SelectedIndices[j]])));
                }
            }
            else if (multInputItems[item].ValueType == FieldValueType.Integer)
            {
                retVal.Add(PIn.Long(inputs[item].Text));
            }
            else if (multInputItems[item].ValueType == FieldValueType.Number)
            {
                retVal.Add(PIn.Double(inputs[item].Text));
            }
            else if (multInputItems[item].ValueType == FieldValueType.String)
            {
                if (inputs[item].Text != "")
                {
                    //the text is first stripped of any ?'s
                    retVal.Add(Regex.Replace(inputs[item].Text, @"\?", ""));
                }
            }
            else if (multInputItems[item].ValueType == FieldValueType.YesNoUnknown)
            {
                retVal.Add(((ContrYN)inputs[item]).CurrentValue);
            }
            //MessageBox.Show(multInputItems[1].CurrentValues.Count.ToString());
            return(retVal);
        }
Exemple #2
0
		/// <summary>Returns the required height.</summary>
		private int ArrangeControls(Graphics g){
			//calculate width of input section
			int inputW=300;//the widest allowed for the input section on the right.
			if(IsQuestionnaire){
				inputW=450;
			}
			if(panelSlide.Width<600){
				inputW=panelSlide.Width/2;
			}
			int promptW=panelSlide.Width-inputW;
			panelSlide.Controls.Clear();
			int yPos=5;
			int itemH=0;//item height
			labels=new Label[multInputItems.Count];
			inputs=new Control[multInputItems.Count];
			for(int i=0;i<multInputItems.Count;i++){
				//Calculate height
				itemH=(int)g.MeasureString(((MultInputItem)multInputItems[i]).PromptingText,Font,promptW).Height;
				if(itemH<20)
					itemH=20;
				//promptingText
				labels[i]=new Label();
				labels[i].Location=new Point(2,yPos);
				//labels[i].Name="Label"+i.ToString();
				labels[i].Size=new Size(promptW-5,itemH);
				labels[i].Text=multInputItems[i].PromptingText;
				labels[i].TextAlign=ContentAlignment.MiddleRight;
				//labels[i].BorderStyle=BorderStyle.FixedSingle;//just used in debugging layout
				panelSlide.Controls.Add(labels[i]);
				if(multInputItems[i].ValueType==FieldValueType.Boolean){
					//add a checkbox
					inputs[i]=new CheckBox();
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					inputs[i].Size=new Size(inputW-5,20);
					if(multInputItems[i].CurrentValues.Count==0)
						((CheckBox)inputs[i]).Checked=false;
					else
						((CheckBox)inputs[i]).Checked=true;
					((CheckBox)inputs[i]).FlatStyle=FlatStyle.System;
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.Date){
					//add a validDate box
					inputs[i]=new ValidDate();
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					if(inputW<100){//not enough room for a fullsize box
						inputs[i].Size=new Size(inputW-20,20);
					}
					else{
						inputs[i].Size=new Size(75,20);
					}
					;
					if(multInputItems[i].CurrentValues.Count>0){
						DateTime myDate=(DateTime)multInputItems[i].CurrentValues[0];
						inputs[i].Text=myDate.ToShortDateString();
					}
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.Def){
					//add a psuedo combobox filled with visible defs for one category
					inputs[i]=new ComboBoxMulti();
					for(int j=0;j<DefC.Short[(int)multInputItems[i].DefCategory].Length;j++){
						((ComboBoxMulti)inputs[i]).Items.Add(DefC.Short[(int)multInputItems[i].DefCategory][j].ItemName);
						if(multInputItems[i].CurrentValues.Count > 0
							&& multInputItems[i].CurrentValues
							.Contains(DefC.Short[(int)multInputItems[i].DefCategory][j].DefNum))
						{
							((ComboBoxMulti)inputs[i]).SetSelected(j,true);
						}
					}
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					inputs[i].Size=new Size(inputW-5,20);
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.Enum){
					//add a psuedo combobox filled with values for one enumeration
					inputs[i]=new ComboBoxMulti();
					Type eType=Type.GetType("OpenDental."+multInputItems[i].EnumerationType.ToString());
					for(int j=0;j<Enum.GetNames(eType).Length;j++){
						((ComboBoxMulti)inputs[i]).Items.Add(Enum.GetNames(eType)[j]);
						if(multInputItems[i].CurrentValues.Count > 0
							&& multInputItems[i].CurrentValues.Contains((int)(Enum.Parse(eType,Enum.GetNames(eType)[j])))  )
						{
							((ComboBoxMulti)inputs[i]).SetSelected(j,true);
						}
					}
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					inputs[i].Size=new Size(inputW-5,20);
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.ForeignKey){
					//add a psuedo combobox filled with values from one table
					inputs[i]=new ComboBoxMulti();
					//these two arrays are matched item for item
					string[] foreignRows=GetFRows(multInputItems[i].FKType);
					long[] foreignKeys=GetFKeys(multInputItems[i].FKType);
					for(int j=0;j<foreignRows.Length;j++){
						((ComboBoxMulti)inputs[i]).Items.Add(foreignRows[j]);
						if(multInputItems[i].CurrentValues.Count > 0
							&& multInputItems[i].CurrentValues.Contains(foreignKeys[j])  )
						{
							((ComboBoxMulti)inputs[i]).SetSelected(j,true);
						}
					}
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					inputs[i].Size=new Size(inputW-5,20);
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.Integer){
					//add a validNumber box
					inputs[i]=new ValidNumber();
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					if(inputW<100){//not enough room for a fullsize box
						inputs[i].Size=new Size(inputW-20,20);
					}
					else{
						inputs[i].Size=new Size(75,20);
					}
					if(multInputItems[i].CurrentValues.Count>0){
						inputs[i].Text=((int)multInputItems[i].CurrentValues[0]).ToString();
					}
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.Number){
					//add a validDouble box
					inputs[i]=new ValidDouble();
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					if(inputW<100){//not enough room for a fullsize box
						inputs[i].Size=new Size(inputW-20,20);
					}
					else{
						inputs[i].Size=new Size(75,20);
					}
					if(multInputItems[i].CurrentValues.Count>0){
						inputs[i].Text=((double)multInputItems[i].CurrentValues[0]).ToString("n");
					}
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.String){
					//add a textbox
					inputs[i]=new TextBox();
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					//inputs[i].Name=
					inputs[i].Size=new Size(inputW-5,20);
					if(multInputItems[i].CurrentValues.Count>0){
						inputs[i].Text=multInputItems[i].CurrentValues[0].ToString();
					}
					panelSlide.Controls.Add(inputs[i]);
				}
				else if(multInputItems[i].ValueType==FieldValueType.YesNoUnknown) {
					//add two checkboxes: Yes(1) and No(2).
					inputs[i]=new ContrYN();
					if(multInputItems[i].CurrentValues.Count>0){
						((ContrYN)inputs[i]).CurrentValue=(YN)multInputItems[i].CurrentValues[0];
					}
					inputs[i].Location=new Point(promptW,yPos+(itemH-20)/2);
					inputs[i].Size=new Size(inputW-5,20);
					panelSlide.Controls.Add(inputs[i]);
				}
				yPos+=itemH+5;
				if(yPos>panelMain.Height && !vScrollBar2.Visible)
					return yPos;//There's not enough room, so stop and make the scrollbar visible.
			}
			panelSlide.Height=yPos;
			vScrollBar2.Maximum=panelSlide.Height;
			vScrollBar2.Minimum=0;
			vScrollBar2.LargeChange=panelMain.Height;
			vScrollBar2.SmallChange=5;
			return -1;
		}
		private void InitializeComponent(){
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPatientEdit));
			this.label2 = 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.label7 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.labelSSN = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.labelCity = new System.Windows.Forms.Label();
			this.labelST = new System.Windows.Forms.Label();
			this.labelZip = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.label18 = new System.Windows.Forms.Label();
			this.textLName = new System.Windows.Forms.TextBox();
			this.textFName = new System.Windows.Forms.TextBox();
			this.textMiddleI = new System.Windows.Forms.TextBox();
			this.textPreferred = new System.Windows.Forms.TextBox();
			this.textSSN = new System.Windows.Forms.TextBox();
			this.textAddress = new System.Windows.Forms.TextBox();
			this.textAddress2 = new System.Windows.Forms.TextBox();
			this.textCity = new System.Windows.Forms.TextBox();
			this.textState = new System.Windows.Forms.TextBox();
			this.textHmPhone = new System.Windows.Forms.TextBox();
			this.textWkPhone = new System.Windows.Forms.TextBox();
			this.textWirelessPhone = new System.Windows.Forms.TextBox();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.label20 = new System.Windows.Forms.Label();
			this.textAge = new System.Windows.Forms.TextBox();
			this.textSalutation = new System.Windows.Forms.TextBox();
			this.label21 = new System.Windows.Forms.Label();
			this.textEmail = new System.Windows.Forms.TextBox();
			this.label22 = new System.Windows.Forms.Label();
			this.label27 = new System.Windows.Forms.Label();
			this.textCreditType = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.labelCanadianEligibilityCode = new System.Windows.Forms.Label();
			this.comboCanadianEligibilityCode = new System.Windows.Forms.ComboBox();
			this.textSchool = new System.Windows.Forms.TextBox();
			this.radioStudentN = new System.Windows.Forms.RadioButton();
			this.radioStudentP = new System.Windows.Forms.RadioButton();
			this.radioStudentF = new System.Windows.Forms.RadioButton();
			this.labelSchoolName = new System.Windows.Forms.Label();
			this.label29 = new System.Windows.Forms.Label();
			this.textChartNumber = new System.Windows.Forms.TextBox();
			this.textBirthdate = new OpenDental.ValidDate();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label40 = new System.Windows.Forms.Label();
			this.label39 = new System.Windows.Forms.Label();
			this.label38 = new System.Windows.Forms.Label();
			this.comboFeeSched = new System.Windows.Forms.ComboBox();
			this.comboSecProv = new System.Windows.Forms.ComboBox();
			this.comboPriProv = new System.Windows.Forms.ComboBox();
			this.comboBillType = new System.Windows.Forms.ComboBox();
			this.butEditZip = new OpenDental.UI.Button();
			this.textZip = new System.Windows.Forms.TextBox();
			this.comboZip = new System.Windows.Forms.ComboBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.checkSame = new System.Windows.Forms.CheckBox();
			this.textCountry = new System.Windows.Forms.TextBox();
			this.groupNotes = new System.Windows.Forms.GroupBox();
			this.textAddrNotes = new OpenDental.ODtextBox();
			this.checkNotesSame = new System.Windows.Forms.CheckBox();
			this.textPatNum = new System.Windows.Forms.TextBox();
			this.label19 = new System.Windows.Forms.Label();
			this.label32 = new System.Windows.Forms.Label();
			this.butAuto = new OpenDental.UI.Button();
			this.textMedicaidID = new System.Windows.Forms.TextBox();
			this.label31 = new System.Windows.Forms.Label();
			this.listStatus = new System.Windows.Forms.ListBox();
			this.listGender = new System.Windows.Forms.ListBox();
			this.listPosition = new System.Windows.Forms.ListBox();
			this.textEmployer = new System.Windows.Forms.TextBox();
			this.label33 = new System.Windows.Forms.Label();
			this.groupPH = new System.Windows.Forms.GroupBox();
			this.comboBoxMultiRace = new OpenDental.UI.ComboBoxMulti();
			this.comboEthnicity = new System.Windows.Forms.ComboBox();
			this.labelEthnicity = new System.Windows.Forms.Label();
			this.butClearResponsParty = new OpenDental.UI.Button();
			this.butPickResponsParty = new OpenDental.UI.Button();
			this.textResponsParty = new System.Windows.Forms.TextBox();
			this.label34 = new System.Windows.Forms.Label();
			this.butPickSite = new OpenDental.UI.Button();
			this.comboUrgency = new System.Windows.Forms.ComboBox();
			this.comboGradeLevel = new System.Windows.Forms.ComboBox();
			this.textSite = new System.Windows.Forms.TextBox();
			this.label35 = new System.Windows.Forms.Label();
			this.textCounty = new System.Windows.Forms.TextBox();
			this.label15 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.labelRaceEthnicity = new System.Windows.Forms.Label();
			this.textDateFirstVisit = new OpenDental.ValidDate();
			this.label36 = new System.Windows.Forms.Label();
			this.label37 = new System.Windows.Forms.Label();
			this.labelClinic = new System.Windows.Forms.Label();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.textTrophyFolder = new System.Windows.Forms.TextBox();
			this.labelTrophyFolder = new System.Windows.Forms.Label();
			this.textWard = new System.Windows.Forms.TextBox();
			this.labelWard = new System.Windows.Forms.Label();
			this.label28 = new System.Windows.Forms.Label();
			this.comboLanguage = new System.Windows.Forms.ComboBox();
			this.comboContact = new System.Windows.Forms.ComboBox();
			this.label23 = new System.Windows.Forms.Label();
			this.comboConfirm = new System.Windows.Forms.ComboBox();
			this.label24 = new System.Windows.Forms.Label();
			this.comboRecall = new System.Windows.Forms.ComboBox();
			this.label25 = new System.Windows.Forms.Label();
			this.textAdmitDate = new OpenDental.ValidDate();
			this.labelAdmitDate = new System.Windows.Forms.Label();
			this.textTitle = new System.Windows.Forms.TextBox();
			this.label26 = new System.Windows.Forms.Label();
			this.label41 = new System.Windows.Forms.Label();
			this.listRelationships = new System.Windows.Forms.ListBox();
			this.butAddGuardian = new OpenDental.UI.Button();
			this.butGuardianDefaults = new OpenDental.UI.Button();
			this.textAskToArriveEarly = new System.Windows.Forms.TextBox();
			this.label42 = new System.Windows.Forms.Label();
			this.checkArriveEarlySame = new System.Windows.Forms.CheckBox();
			this.label43 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.listTextOk = new System.Windows.Forms.ListBox();
			this.textMotherMaidenFname = new System.Windows.Forms.TextBox();
			this.labelMotherMaidenFname = new System.Windows.Forms.Label();
			this.textMotherMaidenLname = new System.Windows.Forms.TextBox();
			this.labelMotherMaidenLname = new System.Windows.Forms.Label();
			this.label30 = new System.Windows.Forms.Label();
			this.textDateDeceased = new System.Windows.Forms.TextBox();
			this.groupBox2.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.groupNotes.SuspendLayout();
			this.groupPH.SuspendLayout();
			this.SuspendLayout();
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(5, 35);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(154, 16);
			this.label2.TabIndex = 0;
			this.label2.Text = "Last Name";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(5, 57);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(154, 16);
			this.label3.TabIndex = 0;
			this.label3.Text = "First Name";
			this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(5, 78);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(154, 16);
			this.label4.TabIndex = 0;
			this.label4.Text = "Middle Initial";
			this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(5, 99);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(154, 16);
			this.label5.TabIndex = 0;
			this.label5.Text = "Preferred Name";
			this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(12, 200);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(114, 17);
			this.label6.TabIndex = 0;
			this.label6.Text = "Status";
			this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(130, 201);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(106, 16);
			this.label7.TabIndex = 0;
			this.label7.Text = "Gender";
			this.label7.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(245, 201);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(100, 16);
			this.label8.TabIndex = 0;
			this.label8.Text = "Position";
			this.label8.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(2, 297);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(156, 14);
			this.label9.TabIndex = 0;
			this.label9.Text = "Birthdate";
			this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelSSN
			// 
			this.labelSSN.Location = new System.Drawing.Point(5, 338);
			this.labelSSN.Name = "labelSSN";
			this.labelSSN.Size = new System.Drawing.Size(154, 14);
			this.labelSSN.TabIndex = 0;
			this.labelSSN.Text = "SS#";
			this.labelSSN.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(6, 59);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(188, 14);
			this.label11.TabIndex = 0;
			this.label11.Text = "Address";
			this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(6, 80);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(189, 14);
			this.label12.TabIndex = 0;
			this.label12.Text = "Address2";
			this.label12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelCity
			// 
			this.labelCity.Location = new System.Drawing.Point(6, 100);
			this.labelCity.Name = "labelCity";
			this.labelCity.Size = new System.Drawing.Size(187, 14);
			this.labelCity.TabIndex = 0;
			this.labelCity.Text = "City";
			this.labelCity.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelST
			// 
			this.labelST.Location = new System.Drawing.Point(6, 120);
			this.labelST.Name = "labelST";
			this.labelST.Size = new System.Drawing.Size(188, 14);
			this.labelST.TabIndex = 0;
			this.labelST.Text = "ST, Country";
			this.labelST.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// labelZip
			// 
			this.labelZip.Location = new System.Drawing.Point(6, 141);
			this.labelZip.Name = "labelZip";
			this.labelZip.Size = new System.Drawing.Size(188, 14);
			this.labelZip.TabIndex = 0;
			this.labelZip.Text = "Zip";
			this.labelZip.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(6, 38);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(190, 14);
			this.label16.TabIndex = 0;
			this.label16.Text = "Home Phone";
			this.label16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(5, 505);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(154, 14);
			this.label17.TabIndex = 0;
			this.label17.Text = "Work Phone";
			this.label17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label18
			// 
			this.label18.Location = new System.Drawing.Point(5, 484);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(154, 14);
			this.label18.TabIndex = 0;
			this.label18.Text = "Wireless Phone";
			this.label18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textLName
			// 
			this.textLName.Location = new System.Drawing.Point(160, 33);
			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);
			// 
			// textFName
			// 
			this.textFName.Location = new System.Drawing.Point(160, 54);
			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);
			// 
			// textMiddleI
			// 
			this.textMiddleI.Location = new System.Drawing.Point(160, 75);
			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);
			// 
			// textPreferred
			// 
			this.textPreferred.Location = new System.Drawing.Point(160, 96);
			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);
			// 
			// textSSN
			// 
			this.textSSN.Location = new System.Drawing.Point(160, 333);
			this.textSSN.MaxLength = 100;
			this.textSSN.Name = "textSSN";
			this.textSSN.Size = new System.Drawing.Size(82, 20);
			this.textSSN.TabIndex = 11;
			this.textSSN.Validating += new System.ComponentModel.CancelEventHandler(this.textSSN_Validating);
			// 
			// textAddress
			// 
			this.textAddress.Location = new System.Drawing.Point(196, 56);
			this.textAddress.MaxLength = 100;
			this.textAddress.Name = "textAddress";
			this.textAddress.Size = new System.Drawing.Size(254, 20);
			this.textAddress.TabIndex = 3;
			this.textAddress.TextChanged += new System.EventHandler(this.textAddress_TextChanged);
			// 
			// textAddress2
			// 
			this.textAddress2.Location = new System.Drawing.Point(196, 76);
			this.textAddress2.MaxLength = 100;
			this.textAddress2.Name = "textAddress2";
			this.textAddress2.Size = new System.Drawing.Size(253, 20);
			this.textAddress2.TabIndex = 4;
			this.textAddress2.TextChanged += new System.EventHandler(this.textAddress2_TextChanged);
			// 
			// textCity
			// 
			this.textCity.Location = new System.Drawing.Point(196, 96);
			this.textCity.MaxLength = 100;
			this.textCity.Name = "textCity";
			this.textCity.Size = new System.Drawing.Size(191, 20);
			this.textCity.TabIndex = 5;
			this.textCity.TextChanged += new System.EventHandler(this.textCity_TextChanged);
			// 
			// textState
			// 
			this.textState.Location = new System.Drawing.Point(196, 116);
			this.textState.MaxLength = 100;
			this.textState.Name = "textState";
			this.textState.Size = new System.Drawing.Size(61, 20);
			this.textState.TabIndex = 6;
			this.textState.TextChanged += new System.EventHandler(this.textState_TextChanged);
			// 
			// textHmPhone
			// 
			this.textHmPhone.Location = new System.Drawing.Point(196, 36);
			this.textHmPhone.MaxLength = 30;
			this.textHmPhone.Name = "textHmPhone";
			this.textHmPhone.Size = new System.Drawing.Size(174, 20);
			this.textHmPhone.TabIndex = 2;
			this.textHmPhone.TextChanged += new System.EventHandler(this.textHmPhone_TextChanged);
			// 
			// textWkPhone
			// 
			this.textWkPhone.Location = new System.Drawing.Point(160, 501);
			this.textWkPhone.MaxLength = 30;
			this.textWkPhone.Name = "textWkPhone";
			this.textWkPhone.Size = new System.Drawing.Size(174, 20);
			this.textWkPhone.TabIndex = 21;
			this.textWkPhone.TextChanged += new System.EventHandler(this.textWkPhone_TextChanged);
			// 
			// textWirelessPhone
			// 
			this.textWirelessPhone.Location = new System.Drawing.Point(160, 480);
			this.textWirelessPhone.MaxLength = 30;
			this.textWirelessPhone.Name = "textWirelessPhone";
			this.textWirelessPhone.Size = new System.Drawing.Size(150, 20);
			this.textWirelessPhone.TabIndex = 20;
			this.textWirelessPhone.TextChanged += new System.EventHandler(this.textWirelessPhone_TextChanged);
			// 
			// 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(801, 665);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75, 26);
			this.butOK.TabIndex = 34;
			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.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(887, 665);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75, 26);
			this.butCancel.TabIndex = 35;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// label20
			// 
			this.label20.Location = new System.Drawing.Point(243, 297);
			this.label20.Name = "label20";
			this.label20.Size = new System.Drawing.Size(44, 16);
			this.label20.TabIndex = 0;
			this.label20.Text = "Age";
			this.label20.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textAge
			// 
			this.textAge.Location = new System.Drawing.Point(287, 293);
			this.textAge.Name = "textAge";
			this.textAge.ReadOnly = true;
			this.textAge.Size = new System.Drawing.Size(50, 20);
			this.textAge.TabIndex = 0;
			this.textAge.TabStop = false;
			// 
			// textSalutation
			// 
			this.textSalutation.Location = new System.Drawing.Point(160, 138);
			this.textSalutation.MaxLength = 100;
			this.textSalutation.Name = "textSalutation";
			this.textSalutation.Size = new System.Drawing.Size(228, 20);
			this.textSalutation.TabIndex = 6;
			this.textSalutation.TextChanged += new System.EventHandler(this.textSalutation_TextChanged);
			// 
			// label21
			// 
			this.label21.Location = new System.Drawing.Point(5, 142);
			this.label21.Name = "label21";
			this.label21.Size = new System.Drawing.Size(154, 16);
			this.label21.TabIndex = 0;
			this.label21.Text = "Salutation (Dear __)";
			this.label21.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textEmail
			// 
			this.textEmail.Location = new System.Drawing.Point(160, 375);
			this.textEmail.MaxLength = 100;
			this.textEmail.Name = "textEmail";
			this.textEmail.Size = new System.Drawing.Size(226, 20);
			this.textEmail.TabIndex = 13;
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(5, 380);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(153, 14);
			this.label22.TabIndex = 0;
			this.label22.Text = "E-mail";
			this.label22.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label27
			// 
			this.label27.Location = new System.Drawing.Point(6, 160);
			this.label27.Name = "label27";
			this.label27.Size = new System.Drawing.Size(188, 16);
			this.label27.TabIndex = 0;
			this.label27.Text = "Credit Type";
			this.label27.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textCreditType
			// 
			this.textCreditType.Location = new System.Drawing.Point(196, 157);
			this.textCreditType.MaxLength = 1;
			this.textCreditType.Name = "textCreditType";
			this.textCreditType.Size = new System.Drawing.Size(18, 20);
			this.textCreditType.TabIndex = 10;
			this.textCreditType.TextChanged += new System.EventHandler(this.textCreditType_TextChanged);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(6, 179);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(188, 16);
			this.label1.TabIndex = 0;
			this.label1.Text = "Billing Type";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.labelCanadianEligibilityCode);
			this.groupBox2.Controls.Add(this.comboCanadianEligibilityCode);
			this.groupBox2.Controls.Add(this.textSchool);
			this.groupBox2.Controls.Add(this.radioStudentN);
			this.groupBox2.Controls.Add(this.radioStudentP);
			this.groupBox2.Controls.Add(this.radioStudentF);
			this.groupBox2.Controls.Add(this.labelSchoolName);
			this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox2.Location = new System.Drawing.Point(488, 395);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(474, 87);
			this.groupBox2.TabIndex = 32;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "Student Status if Dependent Over 19 (for Ins)";
			// 
			// labelCanadianEligibilityCode
			// 
			this.labelCanadianEligibilityCode.Location = new System.Drawing.Point(9, 63);
			this.labelCanadianEligibilityCode.Name = "labelCanadianEligibilityCode";
			this.labelCanadianEligibilityCode.Size = new System.Drawing.Size(184, 16);
			this.labelCanadianEligibilityCode.TabIndex = 0;
			this.labelCanadianEligibilityCode.Text = "Eligibility Excep. Code";
			this.labelCanadianEligibilityCode.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelCanadianEligibilityCode.Visible = false;
			// 
			// comboCanadianEligibilityCode
			// 
			this.comboCanadianEligibilityCode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCanadianEligibilityCode.FormattingEnabled = true;
			this.comboCanadianEligibilityCode.Location = new System.Drawing.Point(195, 60);
			this.comboCanadianEligibilityCode.Name = "comboCanadianEligibilityCode";
			this.comboCanadianEligibilityCode.Size = new System.Drawing.Size(223, 21);
			this.comboCanadianEligibilityCode.TabIndex = 5;
			this.comboCanadianEligibilityCode.Visible = false;
			// 
			// textSchool
			// 
			this.textSchool.Location = new System.Drawing.Point(194, 37);
			this.textSchool.MaxLength = 255;
			this.textSchool.Name = "textSchool";
			this.textSchool.Size = new System.Drawing.Size(224, 20);
			this.textSchool.TabIndex = 4;
			// 
			// radioStudentN
			// 
			this.radioStudentN.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioStudentN.Location = new System.Drawing.Point(123, 18);
			this.radioStudentN.Name = "radioStudentN";
			this.radioStudentN.Size = new System.Drawing.Size(108, 16);
			this.radioStudentN.TabIndex = 1;
			this.radioStudentN.TabStop = true;
			this.radioStudentN.Text = "Nonstudent";
			this.radioStudentN.Click += new System.EventHandler(this.radioStudentN_Click);
			// 
			// radioStudentP
			// 
			this.radioStudentP.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioStudentP.Location = new System.Drawing.Point(333, 18);
			this.radioStudentP.Name = "radioStudentP";
			this.radioStudentP.Size = new System.Drawing.Size(104, 16);
			this.radioStudentP.TabIndex = 3;
			this.radioStudentP.TabStop = true;
			this.radioStudentP.Text = "Parttime";
			this.radioStudentP.Click += new System.EventHandler(this.radioStudentP_Click);
			// 
			// radioStudentF
			// 
			this.radioStudentF.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.radioStudentF.Location = new System.Drawing.Point(235, 18);
			this.radioStudentF.Name = "radioStudentF";
			this.radioStudentF.Size = new System.Drawing.Size(98, 16);
			this.radioStudentF.TabIndex = 2;
			this.radioStudentF.TabStop = true;
			this.radioStudentF.Text = "Fulltime";
			this.radioStudentF.Click += new System.EventHandler(this.radioStudentF_Click);
			// 
			// labelSchoolName
			// 
			this.labelSchoolName.Location = new System.Drawing.Point(9, 41);
			this.labelSchoolName.Name = "labelSchoolName";
			this.labelSchoolName.Size = new System.Drawing.Size(183, 16);
			this.labelSchoolName.TabIndex = 0;
			this.labelSchoolName.Text = "College Name";
			this.labelSchoolName.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label29
			// 
			this.label29.Location = new System.Drawing.Point(5, 400);
			this.label29.Name = "label29";
			this.label29.Size = new System.Drawing.Size(154, 16);
			this.label29.TabIndex = 0;
			this.label29.Text = "ChartNumber";
			this.label29.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textChartNumber
			// 
			this.textChartNumber.Location = new System.Drawing.Point(160, 396);
			this.textChartNumber.MaxLength = 20;
			this.textChartNumber.Name = "textChartNumber";
			this.textChartNumber.Size = new System.Drawing.Size(99, 20);
			this.textChartNumber.TabIndex = 14;
			// 
			// textBirthdate
			// 
			this.textBirthdate.Location = new System.Drawing.Point(160, 293);
			this.textBirthdate.Name = "textBirthdate";
			this.textBirthdate.Size = new System.Drawing.Size(82, 20);
			this.textBirthdate.TabIndex = 9;
			this.textBirthdate.Validated += new System.EventHandler(this.textBirthdate_Validated);
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.label40);
			this.groupBox1.Controls.Add(this.label39);
			this.groupBox1.Controls.Add(this.label38);
			this.groupBox1.Controls.Add(this.comboFeeSched);
			this.groupBox1.Controls.Add(this.comboSecProv);
			this.groupBox1.Controls.Add(this.comboPriProv);
			this.groupBox1.Controls.Add(this.comboBillType);
			this.groupBox1.Controls.Add(this.textHmPhone);
			this.groupBox1.Controls.Add(this.butEditZip);
			this.groupBox1.Controls.Add(this.textZip);
			this.groupBox1.Controls.Add(this.comboZip);
			this.groupBox1.Controls.Add(this.textBox1);
			this.groupBox1.Controls.Add(this.checkSame);
			this.groupBox1.Controls.Add(this.textCountry);
			this.groupBox1.Controls.Add(this.textState);
			this.groupBox1.Controls.Add(this.labelST);
			this.groupBox1.Controls.Add(this.textAddress);
			this.groupBox1.Controls.Add(this.label27);
			this.groupBox1.Controls.Add(this.textCreditType);
			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.Controls.Add(this.label1);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(488, 1);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(474, 278);
			this.groupBox1.TabIndex = 30;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Address and Phone";
			// 
			// label40
			// 
			this.label40.Location = new System.Drawing.Point(6, 243);
			this.label40.Name = "label40";
			this.label40.Size = new System.Drawing.Size(189, 32);
			this.label40.TabIndex = 0;
			this.label40.Text = "Fee Schedule (rarely used)";
			this.label40.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label39
			// 
			this.label39.Location = new System.Drawing.Point(6, 223);
			this.label39.Name = "label39";
			this.label39.Size = new System.Drawing.Size(188, 16);
			this.label39.TabIndex = 0;
			this.label39.Text = "Secondary Provider";
			this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label38
			// 
			this.label38.Location = new System.Drawing.Point(6, 200);
			this.label38.Name = "label38";
			this.label38.Size = new System.Drawing.Size(188, 16);
			this.label38.TabIndex = 0;
			this.label38.Text = "Primary Provider";
			this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboFeeSched
			// 
			this.comboFeeSched.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboFeeSched.FormattingEnabled = true;
			this.comboFeeSched.Location = new System.Drawing.Point(196, 240);
			this.comboFeeSched.MaxDropDownItems = 30;
			this.comboFeeSched.Name = "comboFeeSched";
			this.comboFeeSched.Size = new System.Drawing.Size(198, 21);
			this.comboFeeSched.TabIndex = 14;
			// 
			// comboSecProv
			// 
			this.comboSecProv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboSecProv.FormattingEnabled = true;
			this.comboSecProv.Location = new System.Drawing.Point(196, 219);
			this.comboSecProv.MaxDropDownItems = 30;
			this.comboSecProv.Name = "comboSecProv";
			this.comboSecProv.Size = new System.Drawing.Size(198, 21);
			this.comboSecProv.TabIndex = 13;
			// 
			// comboPriProv
			// 
			this.comboPriProv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboPriProv.FormattingEnabled = true;
			this.comboPriProv.Location = new System.Drawing.Point(196, 198);
			this.comboPriProv.MaxDropDownItems = 30;
			this.comboPriProv.Name = "comboPriProv";
			this.comboPriProv.Size = new System.Drawing.Size(198, 21);
			this.comboPriProv.TabIndex = 12;
			// 
			// comboBillType
			// 
			this.comboBillType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBillType.FormattingEnabled = true;
			this.comboBillType.Location = new System.Drawing.Point(196, 177);
			this.comboBillType.MaxDropDownItems = 30;
			this.comboBillType.Name = "comboBillType";
			this.comboBillType.Size = new System.Drawing.Size(198, 21);
			this.comboBillType.TabIndex = 11;
			// 
			// butEditZip
			// 
			this.butEditZip.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butEditZip.Autosize = true;
			this.butEditZip.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEditZip.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEditZip.CornerRadius = 4F;
			this.butEditZip.Location = new System.Drawing.Point(396, 136);
			this.butEditZip.Name = "butEditZip";
			this.butEditZip.Size = new System.Drawing.Size(73, 22);
			this.butEditZip.TabIndex = 9;
			this.butEditZip.Text = "&Edit Zip";
			this.butEditZip.Click += new System.EventHandler(this.butEditZip_Click);
			// 
			// textZip
			// 
			this.textZip.Location = new System.Drawing.Point(196, 136);
			this.textZip.MaxLength = 100;
			this.textZip.Name = "textZip";
			this.textZip.Size = new System.Drawing.Size(179, 20);
			this.textZip.TabIndex = 8;
			this.textZip.TextChanged += new System.EventHandler(this.textZip_TextChanged);
			this.textZip.Validating += new System.ComponentModel.CancelEventHandler(this.textZip_Validating);
			// 
			// comboZip
			// 
			this.comboZip.DropDownWidth = 198;
			this.comboZip.Location = new System.Drawing.Point(196, 136);
			this.comboZip.MaxDropDownItems = 20;
			this.comboZip.Name = "comboZip";
			this.comboZip.Size = new System.Drawing.Size(198, 21);
			this.comboZip.TabIndex = 60;
			this.comboZip.TabStop = false;
			this.comboZip.SelectionChangeCommitted += new System.EventHandler(this.comboZip_SelectionChangeCommitted);
			// 
			// textBox1
			// 
			this.textBox1.BackColor = System.Drawing.SystemColors.Control;
			this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.textBox1.Location = new System.Drawing.Point(214, 18);
			this.textBox1.Multiline = true;
			this.textBox1.Name = "textBox1";
			this.textBox1.ReadOnly = true;
			this.textBox1.Size = new System.Drawing.Size(251, 16);
			this.textBox1.TabIndex = 1;
			this.textBox1.Text = "Same for entire family";
			// 
			// checkSame
			// 
			this.checkSame.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkSame.Location = new System.Drawing.Point(196, 15);
			this.checkSame.Name = "checkSame";
			this.checkSame.Size = new System.Drawing.Size(18, 21);
			this.checkSame.TabIndex = 11;
			this.checkSame.TabStop = false;
			// 
			// textCountry
			// 
			this.textCountry.Location = new System.Drawing.Point(258, 116);
			this.textCountry.MaxLength = 100;
			this.textCountry.Name = "textCountry";
			this.textCountry.Size = new System.Drawing.Size(192, 20);
			this.textCountry.TabIndex = 7;
			this.textCountry.TextChanged += new System.EventHandler(this.textState_TextChanged);
			// 
			// groupNotes
			// 
			this.groupNotes.Controls.Add(this.textAddrNotes);
			this.groupNotes.Controls.Add(this.checkNotesSame);
			this.groupNotes.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupNotes.Location = new System.Drawing.Point(488, 283);
			this.groupNotes.Name = "groupNotes";
			this.groupNotes.Size = new System.Drawing.Size(474, 107);
			this.groupNotes.TabIndex = 31;
			this.groupNotes.TabStop = false;
			this.groupNotes.Text = "Address and Phone Notes";
			// 
			// textAddrNotes
			// 
			this.textAddrNotes.AcceptsTab = true;
			this.textAddrNotes.DetectUrls = false;
			this.textAddrNotes.Location = new System.Drawing.Point(137, 42);
			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(224, 59);
			this.textAddrNotes.TabIndex = 0;
			this.textAddrNotes.TabStop = false;
			this.textAddrNotes.Text = "";
			// 
			// checkNotesSame
			// 
			this.checkNotesSame.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkNotesSame.Location = new System.Drawing.Point(137, 22);
			this.checkNotesSame.Name = "checkNotesSame";
			this.checkNotesSame.Size = new System.Drawing.Size(328, 18);
			this.checkNotesSame.TabIndex = 1;
			this.checkNotesSame.Text = "Same for entire family";
			// 
			// textPatNum
			// 
			this.textPatNum.Location = new System.Drawing.Point(160, 12);
			this.textPatNum.MaxLength = 100;
			this.textPatNum.Name = "textPatNum";
			this.textPatNum.ReadOnly = true;
			this.textPatNum.Size = new System.Drawing.Size(228, 20);
			this.textPatNum.TabIndex = 0;
			this.textPatNum.TabStop = false;
			// 
			// label19
			// 
			this.label19.Location = new System.Drawing.Point(5, 15);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(154, 16);
			this.label19.TabIndex = 0;
			this.label19.Text = "Patient Number";
			this.label19.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label32
			// 
			this.label32.Location = new System.Drawing.Point(328, 400);
			this.label32.Name = "label32";
			this.label32.Size = new System.Drawing.Size(142, 35);
			this.label32.TabIndex = 0;
			this.label32.Text = "(if used)";
			// 
			// butAuto
			// 
			this.butAuto.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAuto.Autosize = true;
			this.butAuto.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAuto.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAuto.CornerRadius = 4F;
			this.butAuto.Location = new System.Drawing.Point(261, 395);
			this.butAuto.Name = "butAuto";
			this.butAuto.Size = new System.Drawing.Size(62, 22);
			this.butAuto.TabIndex = 15;
			this.butAuto.Text = "Auto";
			this.butAuto.Click += new System.EventHandler(this.butAuto_Click);
			// 
			// textMedicaidID
			// 
			this.textMedicaidID.Location = new System.Drawing.Point(160, 354);
			this.textMedicaidID.MaxLength = 20;
			this.textMedicaidID.Name = "textMedicaidID";
			this.textMedicaidID.Size = new System.Drawing.Size(99, 20);
			this.textMedicaidID.TabIndex = 12;
			// 
			// label31
			// 
			this.label31.Location = new System.Drawing.Point(5, 359);
			this.label31.Name = "label31";
			this.label31.Size = new System.Drawing.Size(154, 14);
			this.label31.TabIndex = 0;
			this.label31.Text = "Medicaid ID";
			this.label31.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// listStatus
			// 
			this.listStatus.Location = new System.Drawing.Point(12, 218);
			this.listStatus.Name = "listStatus";
			this.listStatus.Size = new System.Drawing.Size(105, 69);
			this.listStatus.TabIndex = 0;
			this.listStatus.TabStop = false;
			// 
			// listGender
			// 
			this.listGender.Location = new System.Drawing.Point(130, 218);
			this.listGender.Name = "listGender";
			this.listGender.Size = new System.Drawing.Size(105, 43);
			this.listGender.TabIndex = 0;
			this.listGender.TabStop = false;
			// 
			// listPosition
			// 
			this.listPosition.Location = new System.Drawing.Point(248, 218);
			this.listPosition.Name = "listPosition";
			this.listPosition.Size = new System.Drawing.Size(105, 69);
			this.listPosition.TabIndex = 0;
			this.listPosition.TabStop = false;
			this.listPosition.SelectedIndexChanged += new System.EventHandler(this.listPosition_SelectedIndexChanged);
			// 
			// textEmployer
			// 
			this.textEmployer.Location = new System.Drawing.Point(160, 459);
			this.textEmployer.MaxLength = 255;
			this.textEmployer.Name = "textEmployer";
			this.textEmployer.Size = new System.Drawing.Size(226, 20);
			this.textEmployer.TabIndex = 19;
			this.textEmployer.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textEmployer_KeyUp);
			this.textEmployer.Leave += new System.EventHandler(this.textEmployer_Leave);
			// 
			// label33
			// 
			this.label33.Location = new System.Drawing.Point(5, 463);
			this.label33.Name = "label33";
			this.label33.Size = new System.Drawing.Size(154, 14);
			this.label33.TabIndex = 0;
			this.label33.Text = "Employer";
			this.label33.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// groupPH
			// 
			this.groupPH.Controls.Add(this.comboBoxMultiRace);
			this.groupPH.Controls.Add(this.comboEthnicity);
			this.groupPH.Controls.Add(this.labelEthnicity);
			this.groupPH.Controls.Add(this.butClearResponsParty);
			this.groupPH.Controls.Add(this.butPickResponsParty);
			this.groupPH.Controls.Add(this.textResponsParty);
			this.groupPH.Controls.Add(this.label34);
			this.groupPH.Controls.Add(this.butPickSite);
			this.groupPH.Controls.Add(this.comboUrgency);
			this.groupPH.Controls.Add(this.comboGradeLevel);
			this.groupPH.Controls.Add(this.textSite);
			this.groupPH.Controls.Add(this.label35);
			this.groupPH.Controls.Add(this.textCounty);
			this.groupPH.Controls.Add(this.label15);
			this.groupPH.Controls.Add(this.label14);
			this.groupPH.Controls.Add(this.label13);
			this.groupPH.Controls.Add(this.labelRaceEthnicity);
			this.groupPH.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupPH.Location = new System.Drawing.Point(488, 487);
			this.groupPH.Name = "groupPH";
			this.groupPH.Size = new System.Drawing.Size(474, 168);
			this.groupPH.TabIndex = 33;
			this.groupPH.TabStop = false;
			this.groupPH.Text = "Public Health";
			// 
			// comboBoxMultiRace
			// 
			this.comboBoxMultiRace.BackColor = System.Drawing.SystemColors.Window;
			this.comboBoxMultiRace.DroppedDown = false;
			this.comboBoxMultiRace.Items = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiRace.Items")));
			this.comboBoxMultiRace.Location = new System.Drawing.Point(195, 17);
			this.comboBoxMultiRace.Name = "comboBoxMultiRace";
			this.comboBoxMultiRace.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiRace.SelectedIndices")));
			this.comboBoxMultiRace.Size = new System.Drawing.Size(155, 21);
			this.comboBoxMultiRace.TabIndex = 1;
			this.comboBoxMultiRace.UseCommas = true;
			// 
			// comboEthnicity
			// 
			this.comboEthnicity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboEthnicity.Location = new System.Drawing.Point(195, 38);
			this.comboEthnicity.MaxDropDownItems = 20;
			this.comboEthnicity.Name = "comboEthnicity";
			this.comboEthnicity.Size = new System.Drawing.Size(156, 21);
			this.comboEthnicity.TabIndex = 2;
			// 
			// labelEthnicity
			// 
			this.labelEthnicity.Location = new System.Drawing.Point(6, 39);
			this.labelEthnicity.Name = "labelEthnicity";
			this.labelEthnicity.Size = new System.Drawing.Size(187, 17);
			this.labelEthnicity.TabIndex = 0;
			this.labelEthnicity.Text = "Ethnicity";
			this.labelEthnicity.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// butClearResponsParty
			// 
			this.butClearResponsParty.AdjustImageLocation = new System.Drawing.Point(1, 1);
			this.butClearResponsParty.Autosize = true;
			this.butClearResponsParty.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butClearResponsParty.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butClearResponsParty.CornerRadius = 4F;
			this.butClearResponsParty.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butClearResponsParty.Location = new System.Drawing.Point(443, 139);
			this.butClearResponsParty.Name = "butClearResponsParty";
			this.butClearResponsParty.Size = new System.Drawing.Size(25, 23);
			this.butClearResponsParty.TabIndex = 0;
			this.butClearResponsParty.TabStop = false;
			this.butClearResponsParty.Click += new System.EventHandler(this.butClearResponsParty_Click);
			// 
			// butPickResponsParty
			// 
			this.butPickResponsParty.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickResponsParty.Autosize = true;
			this.butPickResponsParty.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickResponsParty.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickResponsParty.CornerRadius = 4F;
			this.butPickResponsParty.Location = new System.Drawing.Point(395, 139);
			this.butPickResponsParty.Name = "butPickResponsParty";
			this.butPickResponsParty.Size = new System.Drawing.Size(48, 23);
			this.butPickResponsParty.TabIndex = 8;
			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(195, 141);
			this.textResponsParty.Name = "textResponsParty";
			this.textResponsParty.ReadOnly = true;
			this.textResponsParty.Size = new System.Drawing.Size(198, 20);
			this.textResponsParty.TabIndex = 0;
			this.textResponsParty.TabStop = false;
			// 
			// label34
			// 
			this.label34.Location = new System.Drawing.Point(9, 141);
			this.label34.Name = "label34";
			this.label34.Size = new System.Drawing.Size(184, 17);
			this.label34.TabIndex = 0;
			this.label34.Text = "Responsible Party";
			this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// 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 = 4F;
			this.butPickSite.Location = new System.Drawing.Point(395, 77);
			this.butPickSite.Name = "butPickSite";
			this.butPickSite.Size = new System.Drawing.Size(58, 23);
			this.butPickSite.TabIndex = 5;
			this.butPickSite.Text = "Pick";
			this.butPickSite.Click += new System.EventHandler(this.butPickSite_Click);
			// 
			// comboUrgency
			// 
			this.comboUrgency.BackColor = System.Drawing.SystemColors.Window;
			this.comboUrgency.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboUrgency.Location = new System.Drawing.Point(195, 120);
			this.comboUrgency.Name = "comboUrgency";
			this.comboUrgency.Size = new System.Drawing.Size(155, 21);
			this.comboUrgency.TabIndex = 7;
			// 
			// comboGradeLevel
			// 
			this.comboGradeLevel.BackColor = System.Drawing.SystemColors.Window;
			this.comboGradeLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboGradeLevel.Location = new System.Drawing.Point(195, 99);
			this.comboGradeLevel.MaxDropDownItems = 25;
			this.comboGradeLevel.Name = "comboGradeLevel";
			this.comboGradeLevel.Size = new System.Drawing.Size(155, 21);
			this.comboGradeLevel.TabIndex = 6;
			// 
			// textSite
			// 
			this.textSite.AcceptsReturn = true;
			this.textSite.Location = new System.Drawing.Point(195, 79);
			this.textSite.Name = "textSite";
			this.textSite.Size = new System.Drawing.Size(198, 20);
			this.textSite.TabIndex = 4;
			this.textSite.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textSite_KeyUp);
			this.textSite.Leave += new System.EventHandler(this.textSite_Leave);
			// 
			// label35
			// 
			this.label35.Location = new System.Drawing.Point(9, 119);
			this.label35.Name = "label35";
			this.label35.Size = new System.Drawing.Size(184, 17);
			this.label35.TabIndex = 0;
			this.label35.Text = "Treatment Urgency";
			this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textCounty
			// 
			this.textCounty.AcceptsReturn = true;
			this.textCounty.Location = new System.Drawing.Point(195, 59);
			this.textCounty.Name = "textCounty";
			this.textCounty.Size = new System.Drawing.Size(198, 20);
			this.textCounty.TabIndex = 3;
			this.textCounty.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textCounty_KeyUp);
			this.textCounty.Leave += new System.EventHandler(this.textCounty_Leave);
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(6, 99);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(187, 17);
			this.label15.TabIndex = 0;
			this.label15.Text = "Grade Level";
			this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label14
			// 
			this.label14.Location = new System.Drawing.Point(6, 79);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(187, 17);
			this.label14.TabIndex = 0;
			this.label14.Text = "Site (or Grade School)";
			this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label13
			// 
			this.label13.Location = new System.Drawing.Point(6, 59);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(187, 17);
			this.label13.TabIndex = 0;
			this.label13.Text = "County";
			this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelRaceEthnicity
			// 
			this.labelRaceEthnicity.Location = new System.Drawing.Point(6, 21);
			this.labelRaceEthnicity.Name = "labelRaceEthnicity";
			this.labelRaceEthnicity.Size = new System.Drawing.Size(187, 17);
			this.labelRaceEthnicity.TabIndex = 0;
			this.labelRaceEthnicity.Text = "Race/Ethnicity";
			this.labelRaceEthnicity.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDateFirstVisit
			// 
			this.textDateFirstVisit.Location = new System.Drawing.Point(160, 417);
			this.textDateFirstVisit.Name = "textDateFirstVisit";
			this.textDateFirstVisit.Size = new System.Drawing.Size(82, 20);
			this.textDateFirstVisit.TabIndex = 16;
			// 
			// label36
			// 
			this.label36.Location = new System.Drawing.Point(5, 421);
			this.label36.Name = "label36";
			this.label36.Size = new System.Drawing.Size(153, 14);
			this.label36.TabIndex = 0;
			this.label36.Text = "Date of First Visit";
			this.label36.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label37
			// 
			this.label37.Location = new System.Drawing.Point(264, 358);
			this.label37.Name = "label37";
			this.label37.Size = new System.Drawing.Size(206, 14);
			this.label37.TabIndex = 0;
			this.label37.Text = "(put in InsPlan too)";
			this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(5, 634);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(154, 14);
			this.labelClinic.TabIndex = 0;
			this.labelClinic.Text = "Clinic";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(160, 631);
			this.comboClinic.MaxDropDownItems = 30;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(198, 21);
			this.comboClinic.TabIndex = 27;
			// 
			// textTrophyFolder
			// 
			this.textTrophyFolder.Location = new System.Drawing.Point(160, 588);
			this.textTrophyFolder.MaxLength = 30;
			this.textTrophyFolder.Name = "textTrophyFolder";
			this.textTrophyFolder.Size = new System.Drawing.Size(226, 20);
			this.textTrophyFolder.TabIndex = 25;
			// 
			// labelTrophyFolder
			// 
			this.labelTrophyFolder.Location = new System.Drawing.Point(5, 591);
			this.labelTrophyFolder.Name = "labelTrophyFolder";
			this.labelTrophyFolder.Size = new System.Drawing.Size(154, 14);
			this.labelTrophyFolder.TabIndex = 0;
			this.labelTrophyFolder.Text = "Trophy Folder";
			this.labelTrophyFolder.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textWard
			// 
			this.textWard.Location = new System.Drawing.Point(160, 653);
			this.textWard.MaxLength = 100;
			this.textWard.Name = "textWard";
			this.textWard.Size = new System.Drawing.Size(55, 20);
			this.textWard.TabIndex = 28;
			// 
			// labelWard
			// 
			this.labelWard.Location = new System.Drawing.Point(5, 658);
			this.labelWard.Name = "labelWard";
			this.labelWard.Size = new System.Drawing.Size(154, 14);
			this.labelWard.TabIndex = 0;
			this.labelWard.Text = "Ward";
			this.labelWard.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label28
			// 
			this.label28.Location = new System.Drawing.Point(5, 612);
			this.label28.Name = "label28";
			this.label28.Size = new System.Drawing.Size(153, 14);
			this.label28.TabIndex = 0;
			this.label28.Text = "Language";
			this.label28.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// comboLanguage
			// 
			this.comboLanguage.BackColor = System.Drawing.SystemColors.Window;
			this.comboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboLanguage.Location = new System.Drawing.Point(160, 609);
			this.comboLanguage.MaxDropDownItems = 25;
			this.comboLanguage.Name = "comboLanguage";
			this.comboLanguage.Size = new System.Drawing.Size(226, 21);
			this.comboLanguage.TabIndex = 26;
			// 
			// comboContact
			// 
			this.comboContact.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboContact.FormattingEnabled = true;
			this.comboContact.Location = new System.Drawing.Point(160, 522);
			this.comboContact.MaxDropDownItems = 30;
			this.comboContact.Name = "comboContact";
			this.comboContact.Size = new System.Drawing.Size(174, 21);
			this.comboContact.TabIndex = 22;
			// 
			// label23
			// 
			this.label23.Location = new System.Drawing.Point(5, 524);
			this.label23.Name = "label23";
			this.label23.Size = new System.Drawing.Size(153, 16);
			this.label23.TabIndex = 0;
			this.label23.Text = "Prefer Contact Method";
			this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboConfirm
			// 
			this.comboConfirm.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboConfirm.FormattingEnabled = true;
			this.comboConfirm.Location = new System.Drawing.Point(160, 544);
			this.comboConfirm.MaxDropDownItems = 30;
			this.comboConfirm.Name = "comboConfirm";
			this.comboConfirm.Size = new System.Drawing.Size(174, 21);
			this.comboConfirm.TabIndex = 23;
			// 
			// label24
			// 
			this.label24.Location = new System.Drawing.Point(5, 546);
			this.label24.Name = "label24";
			this.label24.Size = new System.Drawing.Size(153, 16);
			this.label24.TabIndex = 0;
			this.label24.Text = "Prefer Confirm Method";
			this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboRecall
			// 
			this.comboRecall.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboRecall.FormattingEnabled = true;
			this.comboRecall.Location = new System.Drawing.Point(160, 566);
			this.comboRecall.MaxDropDownItems = 30;
			this.comboRecall.Name = "comboRecall";
			this.comboRecall.Size = new System.Drawing.Size(174, 21);
			this.comboRecall.TabIndex = 24;
			// 
			// label25
			// 
			this.label25.Location = new System.Drawing.Point(5, 568);
			this.label25.Name = "label25";
			this.label25.Size = new System.Drawing.Size(153, 16);
			this.label25.TabIndex = 0;
			this.label25.Text = "Prefer Recall Method";
			this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textAdmitDate
			// 
			this.textAdmitDate.Location = new System.Drawing.Point(337, 653);
			this.textAdmitDate.Name = "textAdmitDate";
			this.textAdmitDate.Size = new System.Drawing.Size(82, 20);
			this.textAdmitDate.TabIndex = 29;
			// 
			// labelAdmitDate
			// 
			this.labelAdmitDate.Location = new System.Drawing.Point(221, 657);
			this.labelAdmitDate.Name = "labelAdmitDate";
			this.labelAdmitDate.Size = new System.Drawing.Size(114, 14);
			this.labelAdmitDate.TabIndex = 0;
			this.labelAdmitDate.Text = "Admit Date";
			this.labelAdmitDate.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textTitle
			// 
			this.textTitle.Location = new System.Drawing.Point(160, 117);
			this.textTitle.MaxLength = 100;
			this.textTitle.Name = "textTitle";
			this.textTitle.Size = new System.Drawing.Size(75, 20);
			this.textTitle.TabIndex = 5;
			// 
			// label26
			// 
			this.label26.Location = new System.Drawing.Point(5, 120);
			this.label26.Name = "label26";
			this.label26.Size = new System.Drawing.Size(154, 16);
			this.label26.TabIndex = 0;
			this.label26.Text = "Title (Mr., Ms.)";
			this.label26.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label41
			// 
			this.label41.Location = new System.Drawing.Point(361, 200);
			this.label41.Name = "label41";
			this.label41.Size = new System.Drawing.Size(117, 17);
			this.label41.TabIndex = 0;
			this.label41.Text = "Family Relationships";
			this.label41.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// listRelationships
			// 
			this.listRelationships.FormattingEnabled = true;
			this.listRelationships.Location = new System.Drawing.Point(364, 218);
			this.listRelationships.Name = "listRelationships";
			this.listRelationships.Size = new System.Drawing.Size(114, 69);
			this.listRelationships.TabIndex = 0;
			this.listRelationships.TabStop = false;
			this.listRelationships.DoubleClick += new System.EventHandler(this.listRelationships_DoubleClick);
			// 
			// butAddGuardian
			// 
			this.butAddGuardian.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAddGuardian.Autosize = true;
			this.butAddGuardian.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAddGuardian.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAddGuardian.CornerRadius = 4F;
			this.butAddGuardian.Location = new System.Drawing.Point(364, 290);
			this.butAddGuardian.Name = "butAddGuardian";
			this.butAddGuardian.Size = new System.Drawing.Size(57, 22);
			this.butAddGuardian.TabIndex = 0;
			this.butAddGuardian.TabStop = false;
			this.butAddGuardian.Text = "Add";
			this.butAddGuardian.Click += new System.EventHandler(this.butAddGuardian_Click);
			// 
			// butGuardianDefaults
			// 
			this.butGuardianDefaults.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butGuardianDefaults.Autosize = true;
			this.butGuardianDefaults.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butGuardianDefaults.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butGuardianDefaults.CornerRadius = 4F;
			this.butGuardianDefaults.Location = new System.Drawing.Point(421, 290);
			this.butGuardianDefaults.Name = "butGuardianDefaults";
			this.butGuardianDefaults.Size = new System.Drawing.Size(57, 22);
			this.butGuardianDefaults.TabIndex = 0;
			this.butGuardianDefaults.TabStop = false;
			this.butGuardianDefaults.Text = "Defaults";
			this.butGuardianDefaults.Click += new System.EventHandler(this.butGuardianDefaults_Click);
			// 
			// textAskToArriveEarly
			// 
			this.textAskToArriveEarly.Location = new System.Drawing.Point(160, 438);
			this.textAskToArriveEarly.MaxLength = 100;
			this.textAskToArriveEarly.Name = "textAskToArriveEarly";
			this.textAskToArriveEarly.Size = new System.Drawing.Size(36, 20);
			this.textAskToArriveEarly.TabIndex = 17;
			// 
			// label42
			// 
			this.label42.Location = new System.Drawing.Point(5, 442);
			this.label42.Name = "label42";
			this.label42.Size = new System.Drawing.Size(154, 14);
			this.label42.TabIndex = 0;
			this.label42.Text = "Ask To Arrive Early";
			this.label42.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// checkArriveEarlySame
			// 
			this.checkArriveEarlySame.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkArriveEarlySame.Location = new System.Drawing.Point(270, 440);
			this.checkArriveEarlySame.Name = "checkArriveEarlySame";
			this.checkArriveEarlySame.Size = new System.Drawing.Size(212, 18);
			this.checkArriveEarlySame.TabIndex = 18;
			this.checkArriveEarlySame.Text = "Same for entire family";
			// 
			// label43
			// 
			this.label43.Location = new System.Drawing.Point(196, 441);
			this.label43.Name = "label43";
			this.label43.Size = new System.Drawing.Size(68, 14);
			this.label43.TabIndex = 0;
			this.label43.Text = "(minutes)";
			this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(306, 483);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(68, 14);
			this.label10.TabIndex = 0;
			this.label10.Text = "Text OK";
			this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// listTextOk
			// 
			this.listTextOk.ColumnWidth = 30;
			this.listTextOk.Items.AddRange(new object[] {
            "??",
            "Yes",
            "No"});
			this.listTextOk.Location = new System.Drawing.Point(374, 481);
			this.listTextOk.MultiColumn = true;
			this.listTextOk.Name = "listTextOk";
			this.listTextOk.Size = new System.Drawing.Size(95, 17);
			this.listTextOk.TabIndex = 0;
			this.listTextOk.TabStop = false;
			// 
			// textMotherMaidenFname
			// 
			this.textMotherMaidenFname.Location = new System.Drawing.Point(160, 159);
			this.textMotherMaidenFname.MaxLength = 100;
			this.textMotherMaidenFname.Name = "textMotherMaidenFname";
			this.textMotherMaidenFname.Size = new System.Drawing.Size(228, 20);
			this.textMotherMaidenFname.TabIndex = 7;
			this.textMotherMaidenFname.Visible = false;
			// 
			// labelMotherMaidenFname
			// 
			this.labelMotherMaidenFname.Location = new System.Drawing.Point(5, 161);
			this.labelMotherMaidenFname.Name = "labelMotherMaidenFname";
			this.labelMotherMaidenFname.Size = new System.Drawing.Size(154, 16);
			this.labelMotherMaidenFname.TabIndex = 0;
			this.labelMotherMaidenFname.Text = "Mother\'s Maiden First Name";
			this.labelMotherMaidenFname.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelMotherMaidenFname.Visible = false;
			// 
			// textMotherMaidenLname
			// 
			this.textMotherMaidenLname.Location = new System.Drawing.Point(160, 180);
			this.textMotherMaidenLname.MaxLength = 100;
			this.textMotherMaidenLname.Name = "textMotherMaidenLname";
			this.textMotherMaidenLname.Size = new System.Drawing.Size(228, 20);
			this.textMotherMaidenLname.TabIndex = 8;
			this.textMotherMaidenLname.Visible = false;
			// 
			// labelMotherMaidenLname
			// 
			this.labelMotherMaidenLname.Location = new System.Drawing.Point(5, 182);
			this.labelMotherMaidenLname.Name = "labelMotherMaidenLname";
			this.labelMotherMaidenLname.Size = new System.Drawing.Size(154, 16);
			this.labelMotherMaidenLname.TabIndex = 0;
			this.labelMotherMaidenLname.Text = "Mother\'s Maiden Last Name";
			this.labelMotherMaidenLname.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelMotherMaidenLname.Visible = false;
			// 
			// label30
			// 
			this.label30.Location = new System.Drawing.Point(2, 317);
			this.label30.Name = "label30";
			this.label30.Size = new System.Drawing.Size(156, 14);
			this.label30.TabIndex = 0;
			this.label30.Text = "Date Time Deceased";
			this.label30.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textDateDeceased
			// 
			this.textDateDeceased.Location = new System.Drawing.Point(160, 313);
			this.textDateDeceased.MaxLength = 100;
			this.textDateDeceased.Name = "textDateDeceased";
			this.textDateDeceased.Size = new System.Drawing.Size(177, 20);
			this.textDateDeceased.TabIndex = 10;
			this.textDateDeceased.Validated += new System.EventHandler(this.textDateDeceased_Validated);
			// 
			// FormPatientEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.butCancel;
			this.ClientSize = new System.Drawing.Size(974, 696);
			this.Controls.Add(this.textDateDeceased);
			this.Controls.Add(this.label30);
			this.Controls.Add(this.textMotherMaidenLname);
			this.Controls.Add(this.labelMotherMaidenLname);
			this.Controls.Add(this.textMotherMaidenFname);
			this.Controls.Add(this.labelMotherMaidenFname);
			this.Controls.Add(this.textWirelessPhone);
			this.Controls.Add(this.listTextOk);
			this.Controls.Add(this.label10);
			this.Controls.Add(this.checkArriveEarlySame);
			this.Controls.Add(this.label43);
			this.Controls.Add(this.textAskToArriveEarly);
			this.Controls.Add(this.label42);
			this.Controls.Add(this.butGuardianDefaults);
			this.Controls.Add(this.butAddGuardian);
			this.Controls.Add(this.listRelationships);
			this.Controls.Add(this.label41);
			this.Controls.Add(this.textTitle);
			this.Controls.Add(this.label26);
			this.Controls.Add(this.textAdmitDate);
			this.Controls.Add(this.labelAdmitDate);
			this.Controls.Add(this.comboRecall);
			this.Controls.Add(this.label25);
			this.Controls.Add(this.comboConfirm);
			this.Controls.Add(this.label24);
			this.Controls.Add(this.comboContact);
			this.Controls.Add(this.label23);
			this.Controls.Add(this.comboLanguage);
			this.Controls.Add(this.label28);
			this.Controls.Add(this.textWard);
			this.Controls.Add(this.labelWard);
			this.Controls.Add(this.textTrophyFolder);
			this.Controls.Add(this.labelTrophyFolder);
			this.Controls.Add(this.comboClinic);
			this.Controls.Add(this.labelClinic);
			this.Controls.Add(this.label37);
			this.Controls.Add(this.textDateFirstVisit);
			this.Controls.Add(this.textEmployer);
			this.Controls.Add(this.textMedicaidID);
			this.Controls.Add(this.textPatNum);
			this.Controls.Add(this.textBirthdate);
			this.Controls.Add(this.textChartNumber);
			this.Controls.Add(this.textEmail);
			this.Controls.Add(this.textSalutation);
			this.Controls.Add(this.textAge);
			this.Controls.Add(this.textWkPhone);
			this.Controls.Add(this.textSSN);
			this.Controls.Add(this.textPreferred);
			this.Controls.Add(this.textMiddleI);
			this.Controls.Add(this.textFName);
			this.Controls.Add(this.textLName);
			this.Controls.Add(this.butAuto);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.label36);
			this.Controls.Add(this.groupPH);
			this.Controls.Add(this.label33);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.listPosition);
			this.Controls.Add(this.listGender);
			this.Controls.Add(this.listStatus);
			this.Controls.Add(this.label31);
			this.Controls.Add(this.label32);
			this.Controls.Add(this.label19);
			this.Controls.Add(this.groupNotes);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.label29);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.label22);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.label21);
			this.Controls.Add(this.label20);
			this.Controls.Add(this.label18);
			this.Controls.Add(this.label17);
			this.Controls.Add(this.labelSSN);
			this.Controls.Add(this.label9);
			this.Controls.Add(this.label8);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label2);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormPatientEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Patient Information";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.FormPatientEdit_Closing);
			this.Load += new System.EventHandler(this.FormPatientEdit_Load);
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.groupNotes.ResumeLayout(false);
			this.groupPH.ResumeLayout(false);
			this.groupPH.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpProcNotBilledIns));
     this.butClose             = new OpenDental.UI.Button();
     this.butPrint             = new OpenDental.UI.Button();
     this.checkMedical         = new System.Windows.Forms.CheckBox();
     this.imageListCalendar    = new System.Windows.Forms.ImageList(this.components);
     this.labelClinic          = new System.Windows.Forms.Label();
     this.comboBoxMultiClinics = new OpenDental.UI.ComboBoxMulti();
     this.gridMain             = new OpenDental.UI.ODGrid();
     this.butNewClaims         = new OpenDental.UI.Button();
     this.checkAutoGroupProcs  = new System.Windows.Forms.CheckBox();
     this.butRefresh           = new OpenDental.UI.Button();
     this.butSelectAll         = new OpenDental.UI.Button();
     this.checkShowProcsNoIns  = new System.Windows.Forms.CheckBox();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.dateRangePicker      = new OpenDental.UI.ODDateRangePicker();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // 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.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(917, 662);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 4;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(25, 662);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(75, 26);
     this.butPrint.TabIndex     = 3;
     this.butPrint.Text         = "Print";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // checkMedical
     //
     this.checkMedical.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkMedical.Location   = new System.Drawing.Point(678, 12);
     this.checkMedical.Name       = "checkMedical";
     this.checkMedical.Size       = new System.Drawing.Size(227, 17);
     this.checkMedical.TabIndex   = 11;
     this.checkMedical.Text       = "Include Medical Procedures";
     this.checkMedical.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkMedical.UseVisualStyleBackColor = true;
     this.checkMedical.Visible = false;
     //
     // imageListCalendar
     //
     this.imageListCalendar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListCalendar.ImageStream")));
     this.imageListCalendar.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListCalendar.Images.SetKeyName(0, "arrowDownTriangle.gif");
     this.imageListCalendar.Images.SetKeyName(1, "arrowUpTriangle.gif");
     //
     // labelClinic
     //
     this.labelClinic.Location  = new System.Drawing.Point(461, 36);
     this.labelClinic.Name      = "labelClinic";
     this.labelClinic.Size      = new System.Drawing.Size(55, 16);
     this.labelClinic.TabIndex  = 68;
     this.labelClinic.Text      = "Clinics";
     this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelClinic.Visible   = false;
     //
     // comboBoxMultiClinics
     //
     this.comboBoxMultiClinics.ArraySelectedIndices = new int[0];
     this.comboBoxMultiClinics.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxMultiClinics.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiClinics.Items")));
     this.comboBoxMultiClinics.Location        = new System.Drawing.Point(517, 35);
     this.comboBoxMultiClinics.Name            = "comboBoxMultiClinics";
     this.comboBoxMultiClinics.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiClinics.SelectedIndices")));
     this.comboBoxMultiClinics.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiClinics.TabIndex        = 67;
     this.comboBoxMultiClinics.Visible         = false;
     //
     // 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.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(25, 71);
     this.gridMain.Name            = "gridMain";
     this.gridMain.ScrollValue     = 0;
     this.gridMain.SelectionMode   = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size            = new System.Drawing.Size(967, 588);
     this.gridMain.TabIndex        = 69;
     this.gridMain.Title           = "Procedures Not Billed";
     this.gridMain.TitleFont       = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight     = 18;
     this.gridMain.TranslationName = "TableProcedures";
     //
     // butNewClaims
     //
     this.butNewClaims.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butNewClaims.Anchor                  = System.Windows.Forms.AnchorStyles.Bottom;
     this.butNewClaims.Autosize                = true;
     this.butNewClaims.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butNewClaims.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butNewClaims.CornerRadius            = 4F;
     this.butNewClaims.Location                = new System.Drawing.Point(513, 662);
     this.butNewClaims.Name                    = "butNewClaims";
     this.butNewClaims.Size                    = new System.Drawing.Size(100, 26);
     this.butNewClaims.TabIndex                = 71;
     this.butNewClaims.Text                    = "New Claims";
     this.butNewClaims.UseVisualStyleBackColor = true;
     this.butNewClaims.Click                  += new System.EventHandler(this.butNewClaims_Click);
     //
     // checkAutoGroupProcs
     //
     this.checkAutoGroupProcs.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkAutoGroupProcs.Location   = new System.Drawing.Point(678, 33);
     this.checkAutoGroupProcs.Name       = "checkAutoGroupProcs";
     this.checkAutoGroupProcs.Size       = new System.Drawing.Size(227, 17);
     this.checkAutoGroupProcs.TabIndex   = 72;
     this.checkAutoGroupProcs.Text       = "Automatically Group Procedures";
     this.checkAutoGroupProcs.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkAutoGroupProcs.UseVisualStyleBackColor = true;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize                = true;
     this.butRefresh.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius            = 4F;
     this.butRefresh.Location                = new System.Drawing.Point(942, 38);
     this.butRefresh.Name                    = "butRefresh";
     this.butRefresh.Size                    = new System.Drawing.Size(50, 26);
     this.butRefresh.TabIndex                = 73;
     this.butRefresh.Text                    = "Refresh";
     this.butRefresh.UseVisualStyleBackColor = true;
     this.butRefresh.Click                  += new System.EventHandler(this.butRefresh_Click);
     //
     // butSelectAll
     //
     this.butSelectAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSelectAll.Anchor                  = System.Windows.Forms.AnchorStyles.Bottom;
     this.butSelectAll.Autosize                = true;
     this.butSelectAll.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSelectAll.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSelectAll.CornerRadius            = 4F;
     this.butSelectAll.Location                = new System.Drawing.Point(407, 662);
     this.butSelectAll.Name                    = "butSelectAll";
     this.butSelectAll.Size                    = new System.Drawing.Size(100, 26);
     this.butSelectAll.TabIndex                = 74;
     this.butSelectAll.Text                    = "Select All";
     this.butSelectAll.UseVisualStyleBackColor = true;
     this.butSelectAll.Click                  += new System.EventHandler(this.butSelectAll_Click);
     //
     // checkShowProcsNoIns
     //
     this.checkShowProcsNoIns.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowProcsNoIns.Location   = new System.Drawing.Point(306, 12);
     this.checkShowProcsNoIns.Name       = "checkShowProcsNoIns";
     this.checkShowProcsNoIns.Size       = new System.Drawing.Size(371, 17);
     this.checkShowProcsNoIns.TabIndex   = 75;
     this.checkShowProcsNoIns.Text       = "Show Procedures Completed Before Insurance Added";
     this.checkShowProcsNoIns.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowProcsNoIns.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.checkShowProcsNoIns);
     this.groupBox2.Controls.Add(this.dateRangePicker);
     this.groupBox2.Controls.Add(this.checkMedical);
     this.groupBox2.Controls.Add(this.comboBoxMultiClinics);
     this.groupBox2.Controls.Add(this.checkAutoGroupProcs);
     this.groupBox2.Controls.Add(this.labelClinic);
     this.groupBox2.Location = new System.Drawing.Point(25, 4);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(911, 61);
     this.groupBox2.TabIndex = 77;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Filters";
     //
     // dateRangePicker
     //
     this.dateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.dateRangePicker.DefaultDateTimeFrom = new System.DateTime(2018, 1, 1, 0, 0, 0, 0);
     this.dateRangePicker.DefaultDateTimeTo   = new System.DateTime(2018, 1, 9, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(1, 34);
     this.dateRangePicker.MaximumSize         = new System.Drawing.Size(0, 185);
     this.dateRangePicker.MinimumSize         = new System.Drawing.Size(453, 22);
     this.dateRangePicker.Name     = "dateRangePicker";
     this.dateRangePicker.Size     = new System.Drawing.Size(453, 22);
     this.dateRangePicker.TabIndex = 0;
     //
     // FormRpProcNotBilledIns
     //
     this.AcceptButton = this.butPrint;
     this.ClientSize   = new System.Drawing.Size(1019, 696);
     this.Controls.Add(this.butSelectAll);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.butNewClaims);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.groupBox2);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(1035, 734);
     this.Name          = "FormRpProcNotBilledIns";
     this.ShowInTaskbar = false;
     this.Text          = "Procedures Not Billed to Insurance";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormRpProcNotBilledIns_FormClosing);
     this.Load         += new System.EventHandler(this.FormProcNotAttach_Load);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #5
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(FormRpProcNote));
     this.butClose                   = new OpenDental.UI.Button();
     this.checkNoNotes               = new System.Windows.Forms.CheckBox();
     this.checkUnsignedNote          = new System.Windows.Forms.CheckBox();
     this.labelClin                  = new System.Windows.Forms.Label();
     this.label1                     = new System.Windows.Forms.Label();
     this.groupFilter                = new System.Windows.Forms.GroupBox();
     this.groupBox1                  = new System.Windows.Forms.GroupBox();
     this.radioProcDate              = new System.Windows.Forms.RadioButton();
     this.radioPatient               = new System.Windows.Forms.RadioButton();
     this.radioProc                  = new System.Windows.Forms.RadioButton();
     this.comboBoxMultiClinics       = new OpenDental.UI.ComboBoxClinicMulti();
     this.comboBoxMultiProv          = new OpenDental.UI.ComboBoxMulti();
     this.dateRangePicker            = new OpenDental.UI.ODDateRangePicker();
     this.butRefresh                 = new OpenDental.UI.Button();
     this.gridMain                   = new OpenDental.UI.ODGrid();
     this.contextMenuStrip           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.goToChartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.butExport                  = new OpenDental.UI.Button();
     this.butPrint                   = new OpenDental.UI.Button();
     this.groupFilter.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // 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.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(796, 524);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 4;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // checkNoNotes
     //
     this.checkNoNotes.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkNoNotes.Location   = new System.Drawing.Point(6, 16);
     this.checkNoNotes.Name       = "checkNoNotes";
     this.checkNoNotes.Size       = new System.Drawing.Size(350, 21);
     this.checkNoNotes.TabIndex   = 0;
     this.checkNoNotes.Text       = "Include procedures with no notes on any procedure for the same day";
     this.checkNoNotes.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkNoNotes.UseVisualStyleBackColor = true;
     //
     // checkUnsignedNote
     //
     this.checkUnsignedNote.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkUnsignedNote.Location   = new System.Drawing.Point(6, 38);
     this.checkUnsignedNote.Name       = "checkUnsignedNote";
     this.checkUnsignedNote.Size       = new System.Drawing.Size(350, 21);
     this.checkUnsignedNote.TabIndex   = 1;
     this.checkUnsignedNote.Text       = "Include procedures with a note that is unsigned";
     this.checkUnsignedNote.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkUnsignedNote.UseVisualStyleBackColor = true;
     //
     // labelClin
     //
     this.labelClin.Location  = new System.Drawing.Point(379, 16);
     this.labelClin.Name      = "labelClin";
     this.labelClin.Size      = new System.Drawing.Size(85, 21);
     this.labelClin.TabIndex  = 51;
     this.labelClin.Text      = "Clinics";
     this.labelClin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(379, 38);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(85, 21);
     this.label1.TabIndex  = 49;
     this.label1.Text      = "Providers";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupFilter
     //
     this.groupFilter.Controls.Add(this.groupBox1);
     this.groupFilter.Controls.Add(this.comboBoxMultiClinics);
     this.groupFilter.Controls.Add(this.comboBoxMultiProv);
     this.groupFilter.Controls.Add(this.dateRangePicker);
     this.groupFilter.Controls.Add(this.butRefresh);
     this.groupFilter.Controls.Add(this.checkUnsignedNote);
     this.groupFilter.Controls.Add(this.checkNoNotes);
     this.groupFilter.Controls.Add(this.labelClin);
     this.groupFilter.Controls.Add(this.label1);
     this.groupFilter.Location = new System.Drawing.Point(12, 0);
     this.groupFilter.Name     = "groupFilter";
     this.groupFilter.Size     = new System.Drawing.Size(859, 97);
     this.groupFilter.TabIndex = 0;
     this.groupFilter.TabStop  = false;
     this.groupFilter.Text     = "Filters";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioProcDate);
     this.groupBox1.Controls.Add(this.radioPatient);
     this.groupBox1.Controls.Add(this.radioProc);
     this.groupBox1.Location = new System.Drawing.Point(638, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(125, 79);
     this.groupBox1.TabIndex = 52;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Group By";
     //
     // radioProcDate
     //
     this.radioProcDate.Location = new System.Drawing.Point(8, 53);
     this.radioProcDate.Name     = "radioProcDate";
     this.radioProcDate.Size     = new System.Drawing.Size(111, 18);
     this.radioProcDate.TabIndex = 2;
     this.radioProcDate.Text     = "Date and Patient";
     this.radioProcDate.UseVisualStyleBackColor = true;
     this.radioProcDate.MouseCaptureChanged    += new System.EventHandler(this.radioProcDate_MouseCaptureChanged);
     //
     // radioPatient
     //
     this.radioPatient.Location = new System.Drawing.Point(8, 35);
     this.radioPatient.Name     = "radioPatient";
     this.radioPatient.Size     = new System.Drawing.Size(104, 18);
     this.radioPatient.TabIndex = 1;
     this.radioPatient.Text     = "Patient";
     this.radioPatient.UseVisualStyleBackColor = true;
     this.radioPatient.MouseCaptureChanged    += new System.EventHandler(this.radioPatient_MouseCaptureChanged);
     //
     // radioProc
     //
     this.radioProc.Checked  = true;
     this.radioProc.Location = new System.Drawing.Point(8, 17);
     this.radioProc.Name     = "radioProc";
     this.radioProc.Size     = new System.Drawing.Size(104, 18);
     this.radioProc.TabIndex = 0;
     this.radioProc.TabStop  = true;
     this.radioProc.Text     = "Procedure";
     this.radioProc.UseVisualStyleBackColor = true;
     this.radioProc.MouseCaptureChanged    += new System.EventHandler(this.radioProc_MouseCaptureChanged);
     //
     // comboBoxMultiClinics
     //
     this.comboBoxMultiClinics.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxMultiClinics.Location  = new System.Drawing.Point(468, 17);
     this.comboBoxMultiClinics.Name      = "comboBoxMultiClinics";
     this.comboBoxMultiClinics.Size      = new System.Drawing.Size(160, 21);
     this.comboBoxMultiClinics.TabIndex  = 3;
     //
     // comboBoxMultiProv
     //
     this.comboBoxMultiProv.ArraySelectedIndices = new int[0];
     this.comboBoxMultiProv.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxMultiProv.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.Items")));
     this.comboBoxMultiProv.Location        = new System.Drawing.Point(468, 38);
     this.comboBoxMultiProv.Name            = "comboBoxMultiProv";
     this.comboBoxMultiProv.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.SelectedIndices")));
     this.comboBoxMultiProv.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiProv.TabIndex        = 4;
     //
     // dateRangePicker
     //
     this.dateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.dateRangePicker.DefaultDateTimeFrom = new System.DateTime(2017, 7, 1, 0, 0, 0, 0);
     this.dateRangePicker.DefaultDateTimeTo   = new System.DateTime(2018, 1, 1, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(124, 64);
     this.dateRangePicker.MaximumSize         = new System.Drawing.Size(0, 185);
     this.dateRangePicker.MinimumSize         = new System.Drawing.Size(300, 21);
     this.dateRangePicker.Name     = "dateRangePicker";
     this.dateRangePicker.Size     = new System.Drawing.Size(491, 21);
     this.dateRangePicker.TabIndex = 5;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize     = true;
     this.butRefresh.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location     = new System.Drawing.Point(769, 17);
     this.butRefresh.Name         = "butRefresh";
     this.butRefresh.Size         = new System.Drawing.Size(82, 24);
     this.butRefresh.TabIndex     = 6;
     this.butRefresh.Text         = "&Refresh";
     this.butRefresh.Click       += new System.EventHandler(this.butRefresh_Click);
     //
     // 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.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.ContextMenuStrip    = this.contextMenuStrip;
     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(12, 103);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(859, 415);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "Incomplete Procedure Notes";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableIncompleteProcNotes";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.goToChartToolStripMenuItem
     });
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(125, 26);
     //
     // goToChartToolStripMenuItem
     //
     this.goToChartToolStripMenuItem.Name   = "goToChartToolStripMenuItem";
     this.goToChartToolStripMenuItem.Size   = new System.Drawing.Size(124, 22);
     this.goToChartToolStripMenuItem.Text   = "See Chart";
     this.goToChartToolStripMenuItem.Click += new System.EventHandler(this.goToChartToolStripMenuItem_Click);
     //
     // butExport
     //
     this.butExport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butExport.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butExport.Autosize     = true;
     this.butExport.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butExport.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butExport.CornerRadius = 4F;
     this.butExport.Image        = global::OpenDental.Properties.Resources.butExport;
     this.butExport.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butExport.Location     = new System.Drawing.Point(97, 526);
     this.butExport.Name         = "butExport";
     this.butExport.Size         = new System.Drawing.Size(79, 24);
     this.butExport.TabIndex     = 3;
     this.butExport.Text         = "&Export";
     this.butExport.Click       += new System.EventHandler(this.butExport_Click);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(12, 526);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(79, 24);
     this.butPrint.TabIndex     = 2;
     this.butPrint.Text         = "&Print";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // FormRpProcNote
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(891, 572);
     this.Controls.Add(this.butExport);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.groupFilter);
     this.Controls.Add(this.butClose);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(907, 517);
     this.Name        = "FormRpProcNote";
     this.Text        = "Incomplete Procedure Notes Report";
     this.Load       += new System.EventHandler(this.FormRpProcNote_Load);
     this.groupFilter.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #6
0
        /// <summary>Returns the required height.</summary>
        private int ArrangeControls(Graphics g)
        {
            //calculate width of input section
            int inputW = 300;          //the widest allowed for the input section on the right.

            if (IsQuestionnaire)
            {
                inputW = 450;
            }
            if (panelSlide.Width < 600)
            {
                inputW = panelSlide.Width / 2;
            }
            int promptW = panelSlide.Width - inputW;

            panelSlide.Controls.Clear();
            int yPos  = 5;
            int itemH = 0;          //item height

            labels = new Label[multInputItems.Count];
            inputs = new Control[multInputItems.Count];
            for (int i = 0; i < multInputItems.Count; i++)
            {
                //Calculate height
                itemH = (int)g.MeasureString(((MultInputItem)multInputItems[i]).PromptingText, Font, promptW).Height;
                if (itemH < 20)
                {
                    itemH = 20;
                }
                //promptingText
                labels[i]          = new Label();
                labels[i].Location = new Point(2, yPos);
                //labels[i].Name="Label"+i.ToString();
                labels[i].Size      = new Size(promptW - 5, itemH);
                labels[i].Text      = multInputItems[i].PromptingText;
                labels[i].TextAlign = ContentAlignment.MiddleRight;
                //labels[i].BorderStyle=BorderStyle.FixedSingle;//just used in debugging layout
                panelSlide.Controls.Add(labels[i]);
                if (multInputItems[i].ValueType == FieldValueType.Boolean)
                {
                    //add a checkbox
                    inputs[i]          = new CheckBox();
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    inputs[i].Size     = new Size(inputW - 5, 20);
                    if (multInputItems[i].CurrentValues.Count == 0)
                    {
                        ((CheckBox)inputs[i]).Checked = false;
                    }
                    else
                    {
                        ((CheckBox)inputs[i]).Checked = true;
                    }
                    ((CheckBox)inputs[i]).FlatStyle = FlatStyle.System;
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.Date)
                {
                    //add a validDate box
                    inputs[i]          = new ValidDate();
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    if (inputW < 100)                  //not enough room for a fullsize box
                    {
                        inputs[i].Size = new Size(inputW - 20, 20);
                    }
                    else
                    {
                        inputs[i].Size = new Size(75, 20);
                    }
                    ;
                    if (multInputItems[i].CurrentValues.Count > 0)
                    {
                        DateTime myDate = (DateTime)multInputItems[i].CurrentValues[0];
                        inputs[i].Text = myDate.ToShortDateString();
                    }
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.Def)
                {
                    //add a psuedo combobox filled with visible defs for one category
                    inputs[i] = new ComboBoxMulti();
                    List <Def> listDefs = Defs.GetDefsForCategory(multInputItems[i].DefCategory, true);
                    for (int j = 0; j < listDefs.Count; j++)
                    {
                        ((ComboBoxMulti)inputs[i]).Items.Add(listDefs[j].ItemName);
                        if (multInputItems[i].CurrentValues.Count > 0 &&
                            multInputItems[i].CurrentValues
                            .Contains(listDefs[j].DefNum))
                        {
                            ((ComboBoxMulti)inputs[i]).SetSelected(j, true);
                        }
                    }
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    inputs[i].Size     = new Size(inputW - 5, 20);
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.Enum)
                {
                    //add a psuedo combobox filled with values for one enumeration
                    inputs[i] = new ComboBoxMulti();
                    Type eType = Type.GetType("OpenDental." + multInputItems[i].EnumerationType.ToString());
                    for (int j = 0; j < Enum.GetNames(eType).Length; j++)
                    {
                        ((ComboBoxMulti)inputs[i]).Items.Add(Enum.GetNames(eType)[j]);
                        if (multInputItems[i].CurrentValues.Count > 0 &&
                            multInputItems[i].CurrentValues.Contains((int)(Enum.Parse(eType, Enum.GetNames(eType)[j]))))
                        {
                            ((ComboBoxMulti)inputs[i]).SetSelected(j, true);
                        }
                    }
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    inputs[i].Size     = new Size(inputW - 5, 20);
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.ForeignKey)
                {
                    //add a psuedo combobox filled with values from one table
                    inputs[i] = new ComboBoxMulti();
                    //these two arrays are matched item for item
                    string[] foreignRows = GetFRows(multInputItems[i].FKType);
                    long[]   foreignKeys = GetFKeys(multInputItems[i].FKType);
                    for (int j = 0; j < foreignRows.Length; j++)
                    {
                        ((ComboBoxMulti)inputs[i]).Items.Add(foreignRows[j]);
                        if (multInputItems[i].CurrentValues.Count > 0 &&
                            multInputItems[i].CurrentValues.Contains(foreignKeys[j]))
                        {
                            ((ComboBoxMulti)inputs[i]).SetSelected(j, true);
                        }
                    }
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    inputs[i].Size     = new Size(inputW - 5, 20);
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.Integer)
                {
                    //add a validNumber box
                    inputs[i]          = new ValidNumber();
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    if (inputW < 100)                  //not enough room for a fullsize box
                    {
                        inputs[i].Size = new Size(inputW - 20, 20);
                    }
                    else
                    {
                        inputs[i].Size = new Size(75, 20);
                    }
                    if (multInputItems[i].CurrentValues.Count > 0)
                    {
                        inputs[i].Text = ((int)multInputItems[i].CurrentValues[0]).ToString();
                    }
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.Number)
                {
                    //add a validDouble box
                    inputs[i]          = new ValidDouble();
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    if (inputW < 100)                  //not enough room for a fullsize box
                    {
                        inputs[i].Size = new Size(inputW - 20, 20);
                    }
                    else
                    {
                        inputs[i].Size = new Size(75, 20);
                    }
                    if (multInputItems[i].CurrentValues.Count > 0)
                    {
                        inputs[i].Text = ((double)multInputItems[i].CurrentValues[0]).ToString("n");
                    }
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.String)
                {
                    //add a textbox
                    inputs[i]          = new TextBox();
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    //inputs[i].Name=
                    inputs[i].Size = new Size(inputW - 5, 20);
                    if (multInputItems[i].CurrentValues.Count > 0)
                    {
                        inputs[i].Text = multInputItems[i].CurrentValues[0].ToString();
                    }
                    panelSlide.Controls.Add(inputs[i]);
                }
                else if (multInputItems[i].ValueType == FieldValueType.YesNoUnknown)
                {
                    //add two checkboxes: Yes(1) and No(2).
                    inputs[i] = new ContrYN();
                    if (multInputItems[i].CurrentValues.Count > 0)
                    {
                        ((ContrYN)inputs[i]).CurrentValue = (YN)multInputItems[i].CurrentValues[0];
                    }
                    inputs[i].Location = new Point(promptW, yPos + (itemH - 20) / 2);
                    inputs[i].Size     = new Size(inputW - 5, 20);
                    panelSlide.Controls.Add(inputs[i]);
                }
                yPos += itemH + 5;
                if (yPos > panelMain.Height && !vScrollBar2.Visible)
                {
                    return(yPos);                   //There's not enough room, so stop and make the scrollbar visible.
                }
            }
            panelSlide.Height       = yPos;
            vScrollBar2.Maximum     = panelSlide.Height;
            vScrollBar2.Minimum     = 0;
            vScrollBar2.LargeChange = panelMain.Height;
            vScrollBar2.SmallChange = 5;
            return(-1);
        }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpOutstandingIns));
     this.checkPreauth = new System.Windows.Forms.CheckBox();
     this.labelProv = new System.Windows.Forms.Label();
     this.labelDaysOldMin = new System.Windows.Forms.Label();
     this.labelDaysOldMax = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.butRefresh = new OpenDental.UI.Button();
     this.butExport = new OpenDental.UI.Button();
     this.comboBoxMultiProv = new OpenDental.UI.ComboBoxMulti();
     this.butPrint = new OpenDental.UI.Button();
     this.textDaysOldMax = new OpenDental.ValidNum();
     this.textDaysOldMin = new OpenDental.ValidNum();
     this.butCancel = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // checkPreauth
     //
     this.checkPreauth.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkPreauth.Checked = true;
     this.checkPreauth.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkPreauth.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkPreauth.Location = new System.Drawing.Point(287,9);
     this.checkPreauth.Name = "checkPreauth";
     this.checkPreauth.Size = new System.Drawing.Size(122,18);
     this.checkPreauth.TabIndex = 51;
     this.checkPreauth.Text = "Include Preauths";
     this.checkPreauth.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkPreauth.CheckedChanged += new System.EventHandler(this.checkPreauth_CheckedChanged);
     //
     // labelProv
     //
     this.labelProv.Location = new System.Drawing.Point(405,8);
     this.labelProv.Name = "labelProv";
     this.labelProv.Size = new System.Drawing.Size(87,16);
     this.labelProv.TabIndex = 48;
     this.labelProv.Text = "Providers";
     this.labelProv.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // labelDaysOldMin
     //
     this.labelDaysOldMin.Location = new System.Drawing.Point(9,7);
     this.labelDaysOldMin.Name = "labelDaysOldMin";
     this.labelDaysOldMin.Size = new System.Drawing.Size(93,18);
     this.labelDaysOldMin.TabIndex = 46;
     this.labelDaysOldMin.Text = "Days Old (min)";
     this.labelDaysOldMin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelDaysOldMax
     //
     this.labelDaysOldMax.Location = new System.Drawing.Point(163,7);
     this.labelDaysOldMax.Name = "labelDaysOldMax";
     this.labelDaysOldMax.Size = new System.Drawing.Size(53,18);
     this.labelDaysOldMax.TabIndex = 46;
     this.labelDaysOldMax.Text = "(max)";
     this.labelDaysOldMax.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(100,25);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(175,18);
     this.label1.TabIndex = 54;
     this.label1.Text = "(leave both blank to show all)";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location = new System.Drawing.Point(520,480);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(69,18);
     this.label2.TabIndex = 46;
     this.label2.Text = "Total";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBox1
     //
     this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox1.Location = new System.Drawing.Point(595,479);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(61,20);
     this.textBox1.TabIndex = 56;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize = true;
     this.butRefresh.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location = new System.Drawing.Point(670,5);
     this.butRefresh.Name = "butRefresh";
     this.butRefresh.Size = new System.Drawing.Size(82,24);
     this.butRefresh.TabIndex = 58;
     this.butRefresh.Text = "&Refresh";
     this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
     //
     // butExport
     //
     this.butExport.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butExport.Autosize = true;
     this.butExport.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butExport.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butExport.CornerRadius = 4F;
     this.butExport.Image = global::OpenDental.Properties.Resources.butExport;
     this.butExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butExport.Location = new System.Drawing.Point(97,476);
     this.butExport.Name = "butExport";
     this.butExport.Size = new System.Drawing.Size(79,24);
     this.butExport.TabIndex = 57;
     this.butExport.Text = "&Export";
     this.butExport.Click += new System.EventHandler(this.butExport_Click);
     //
     // comboBoxMultiProv
     //
     this.comboBoxMultiProv.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxMultiProv.DroppedDown = false;
     this.comboBoxMultiProv.Items = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.Items")));
     this.comboBoxMultiProv.Location = new System.Drawing.Point(498,7);
     this.comboBoxMultiProv.Name = "comboBoxMultiProv";
     this.comboBoxMultiProv.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.SelectedIndices")));
     this.comboBoxMultiProv.Size = new System.Drawing.Size(160,21);
     this.comboBoxMultiProv.TabIndex = 53;
     this.comboBoxMultiProv.UseCommas = true;
     this.comboBoxMultiProv.Leave += new System.EventHandler(this.comboBoxMultiProv_Leave);
     //
     // 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.Left)));
     this.butPrint.Autosize = true;
     this.butPrint.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location = new System.Drawing.Point(12,476);
     this.butPrint.Name = "butPrint";
     this.butPrint.Size = new System.Drawing.Size(79,24);
     this.butPrint.TabIndex = 52;
     this.butPrint.Text = "&Print";
     this.butPrint.Click += new System.EventHandler(this.butPrint_Click);
     //
     // textDaysOldMax
     //
     this.textDaysOldMax.Location = new System.Drawing.Point(219,7);
     this.textDaysOldMax.MaxVal = 255;
     this.textDaysOldMax.MinVal = 0;
     this.textDaysOldMax.Name = "textDaysOldMax";
     this.textDaysOldMax.Size = new System.Drawing.Size(60,20);
     this.textDaysOldMax.TabIndex = 47;
     this.textDaysOldMax.TextChanged += new System.EventHandler(this.textDaysOldMax_TextChanged);
     //
     // textDaysOldMin
     //
     this.textDaysOldMin.Location = new System.Drawing.Point(106,7);
     this.textDaysOldMin.MaxVal = 255;
     this.textDaysOldMin.MinVal = 0;
     this.textDaysOldMin.Name = "textDaysOldMin";
     this.textDaysOldMin.Size = new System.Drawing.Size(60,20);
     this.textDaysOldMin.TabIndex = 47;
     this.textDaysOldMin.Text = "30";
     this.textDaysOldMin.TextChanged += new System.EventHandler(this.textDaysOldMin_TextChanged);
     //
     // 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(670,476);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 45;
     this.butCancel.Text = "&Close";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,46);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(740,416);
     this.gridMain.TabIndex = 1;
     this.gridMain.Title = null;
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // FormRpOutstandingIns
     //
     this.ClientSize = new System.Drawing.Size(764,512);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.butExport);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.labelDaysOldMin);
     this.Controls.Add(this.comboBoxMultiProv);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.checkPreauth);
     this.Controls.Add(this.labelProv);
     this.Controls.Add(this.textDaysOldMax);
     this.Controls.Add(this.textDaysOldMin);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.labelDaysOldMax);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.gridMain);
     this.Name = "FormRpOutstandingIns";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Outstanding Insurance Claims";
     this.Load += new System.EventHandler(this.FormRpOutIns_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpTreatmentFinder));
     this.label1 = new System.Windows.Forms.Label();
     this.checkIncludeNoIns = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.comboMonthStart = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.textCodeRange = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.contextRightClick = new System.Windows.Forms.ContextMenu();
     this.menuItemFamily = new System.Windows.Forms.MenuItem();
     this.menuItemAccount = new System.Windows.Forms.MenuItem();
     this.checkIncludePatsWithApts = new System.Windows.Forms.CheckBox();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.buttonExport = new OpenDental.UI.Button();
     this.butLettersPreview = new OpenDental.UI.Button();
     this.butLabelSingle = new OpenDental.UI.Button();
     this.butLabelPreview = new OpenDental.UI.Button();
     this.butGotoAccount = new OpenDental.UI.Button();
     this.butGotoFamily = new OpenDental.UI.Button();
     this.butPrint = new OpenDental.UI.Button();
     this.comboBoxMultiBilling = new OpenDental.UI.ComboBoxMulti();
     this.comboBoxMultiProv = new OpenDental.UI.ComboBoxMulti();
     this.textOverAmount = new OpenDental.ValidDouble();
     this.textDateStart = new OpenDental.ValidDate();
     this.butRefresh = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(22,9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(872,29);
     this.label1.TabIndex = 29;
     this.label1.Text = resources.GetString("label1.Text");
     //
     // checkIncludeNoIns
     //
     this.checkIncludeNoIns.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludeNoIns.Location = new System.Drawing.Point(31,14);
     this.checkIncludeNoIns.Name = "checkIncludeNoIns";
     this.checkIncludeNoIns.Size = new System.Drawing.Size(214,18);
     this.checkIncludeNoIns.TabIndex = 30;
     this.checkIncludeNoIns.Text = "Include patients without insurance";
     this.checkIncludeNoIns.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludeNoIns.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboBoxMultiBilling);
     this.groupBox1.Controls.Add(this.comboBoxMultiProv);
     this.groupBox1.Controls.Add(this.textOverAmount);
     this.groupBox1.Controls.Add(this.comboMonthStart);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.textCodeRange);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.textDateStart);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.butRefresh);
     this.groupBox1.Controls.Add(this.checkIncludePatsWithApts);
     this.groupBox1.Controls.Add(this.checkIncludeNoIns);
     this.groupBox1.Location = new System.Drawing.Point(3,41);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(916,83);
     this.groupBox1.TabIndex = 33;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "View";
     //
     // comboMonthStart
     //
     this.comboMonthStart.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboMonthStart.Items.AddRange(new object[] {
     "Calendar Year",
     "01 - January",
     "02 - February",
     "03 - March",
     "04 - April",
     "05 - May",
     "06 - June",
     "07 - July",
     "08 - August",
     "09 - September",
     "10 - October",
     "11 - November",
     "12 - December"});
     this.comboMonthStart.Location = new System.Drawing.Point(346,32);
     this.comboMonthStart.MaxDropDownItems = 40;
     this.comboMonthStart.Name = "comboMonthStart";
     this.comboMonthStart.Size = new System.Drawing.Size(98,21);
     this.comboMonthStart.TabIndex = 47;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(31,58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(140,14);
     this.label8.TabIndex = 46;
     this.label8.Text = "Amount remaining over";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(445,35);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(70,14);
     this.label7.TabIndex = 43;
     this.label7.Text = "Billing Type";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(758,34);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(150,13);
     this.label5.TabIndex = 41;
     this.label5.Text = "Ex: D1050-D1060";
     //
     // textCodeRange
     //
     this.textCodeRange.Location = new System.Drawing.Point(758,12);
     this.textCodeRange.Name = "textCodeRange";
     this.textCodeRange.Size = new System.Drawing.Size(150,20);
     this.textCodeRange.TabIndex = 39;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(249,36);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(93,14);
     this.label3.TabIndex = 37;
     this.label3.Text = "Ins Month Start";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(679,12);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(77,17);
     this.label6.TabIndex = 40;
     this.label6.Text = "Code Range";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(445,14);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(70,14);
     this.label4.TabIndex = 35;
     this.label4.Text = "Provider";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(246,14);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(119,14);
     this.label2.TabIndex = 33;
     this.label2.Text = "TP Date Since";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // contextRightClick
     //
     this.contextRightClick.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemFamily,
     this.menuItemAccount});
     //
     // menuItemFamily
     //
     this.menuItemFamily.Index = 0;
     this.menuItemFamily.Text = "See Family";
     this.menuItemFamily.Click += new System.EventHandler(this.menuItemFamily_Click);
     //
     // menuItemAccount
     //
     this.menuItemAccount.Index = 1;
     this.menuItemAccount.Text = "See Account";
     this.menuItemAccount.Click += new System.EventHandler(this.menuItemAccount_Click);
     //
     // checkIncludePatsWithApts
     //
     this.checkIncludePatsWithApts.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludePatsWithApts.Location = new System.Drawing.Point(6,33);
     this.checkIncludePatsWithApts.Name = "checkIncludePatsWithApts";
     this.checkIncludePatsWithApts.Size = new System.Drawing.Size(239,18);
     this.checkIncludePatsWithApts.TabIndex = 30;
     this.checkIncludePatsWithApts.Text = "Include patients with upcoming appointments";
     this.checkIncludePatsWithApts.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludePatsWithApts.UseVisualStyleBackColor = true;
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = true;
     this.gridMain.Location = new System.Drawing.Point(3,130);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size = new System.Drawing.Size(917,453);
     this.gridMain.TabIndex = 31;
     this.gridMain.Title = "Treatment Finder";
     this.gridMain.TranslationName = "TableTreatmentFinder";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // buttonExport
     //
     this.buttonExport.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.buttonExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonExport.Autosize = true;
     this.buttonExport.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.buttonExport.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.buttonExport.CornerRadius = 4F;
     this.buttonExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonExport.Location = new System.Drawing.Point(3,613);
     this.buttonExport.Name = "buttonExport";
     this.buttonExport.Size = new System.Drawing.Size(119,24);
     this.buttonExport.TabIndex = 72;
     this.buttonExport.Text = "Export to File";
     this.buttonExport.Click += new System.EventHandler(this.buttonExport_Click);
     //
     // butLettersPreview
     //
     this.butLettersPreview.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butLettersPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLettersPreview.Autosize = true;
     this.butLettersPreview.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLettersPreview.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLettersPreview.CornerRadius = 4F;
     this.butLettersPreview.Image = global::OpenDental.Properties.Resources.butPreview;
     this.butLettersPreview.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLettersPreview.Location = new System.Drawing.Point(3,587);
     this.butLettersPreview.Name = "butLettersPreview";
     this.butLettersPreview.Size = new System.Drawing.Size(119,24);
     this.butLettersPreview.TabIndex = 71;
     this.butLettersPreview.Text = "Letters Preview";
     this.butLettersPreview.Click += new System.EventHandler(this.butLettersPreview_Click);
     //
     // butLabelSingle
     //
     this.butLabelSingle.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butLabelSingle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLabelSingle.Autosize = true;
     this.butLabelSingle.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLabelSingle.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLabelSingle.CornerRadius = 4F;
     this.butLabelSingle.Image = global::OpenDental.Properties.Resources.butLabel;
     this.butLabelSingle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabelSingle.Location = new System.Drawing.Point(128,587);
     this.butLabelSingle.Name = "butLabelSingle";
     this.butLabelSingle.Size = new System.Drawing.Size(119,24);
     this.butLabelSingle.TabIndex = 70;
     this.butLabelSingle.Text = "Single Labels";
     this.butLabelSingle.Click += new System.EventHandler(this.butLabelSingle_Click);
     //
     // butLabelPreview
     //
     this.butLabelPreview.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butLabelPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLabelPreview.Autosize = true;
     this.butLabelPreview.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLabelPreview.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLabelPreview.CornerRadius = 4F;
     this.butLabelPreview.Image = global::OpenDental.Properties.Resources.butLabel;
     this.butLabelPreview.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabelPreview.Location = new System.Drawing.Point(128,613);
     this.butLabelPreview.Name = "butLabelPreview";
     this.butLabelPreview.Size = new System.Drawing.Size(119,24);
     this.butLabelPreview.TabIndex = 69;
     this.butLabelPreview.Text = "Label Preview";
     this.butLabelPreview.Click += new System.EventHandler(this.butLabelPreview_Click);
     //
     // butGotoAccount
     //
     this.butGotoAccount.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butGotoAccount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butGotoAccount.Autosize = true;
     this.butGotoAccount.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butGotoAccount.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butGotoAccount.CornerRadius = 4F;
     this.butGotoAccount.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butGotoAccount.Location = new System.Drawing.Point(661,613);
     this.butGotoAccount.Name = "butGotoAccount";
     this.butGotoAccount.Size = new System.Drawing.Size(96,24);
     this.butGotoAccount.TabIndex = 68;
     this.butGotoAccount.Text = "Go to Account";
     this.butGotoAccount.Click += new System.EventHandler(this.butGotoAccount_Click);
     //
     // butGotoFamily
     //
     this.butGotoFamily.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butGotoFamily.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butGotoFamily.Autosize = true;
     this.butGotoFamily.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butGotoFamily.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butGotoFamily.CornerRadius = 4F;
     this.butGotoFamily.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butGotoFamily.Location = new System.Drawing.Point(661,587);
     this.butGotoFamily.Name = "butGotoFamily";
     this.butGotoFamily.Size = new System.Drawing.Size(96,24);
     this.butGotoFamily.TabIndex = 67;
     this.butGotoFamily.Text = "Go to Family";
     this.butGotoFamily.Click += new System.EventHandler(this.butGotoFamily_Click);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butPrint.Autosize = true;
     this.butPrint.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location = new System.Drawing.Point(418,613);
     this.butPrint.Name = "butPrint";
     this.butPrint.Size = new System.Drawing.Size(87,24);
     this.butPrint.TabIndex = 34;
     this.butPrint.Text = "Print List";
     this.butPrint.Click += new System.EventHandler(this.butPrint_Click);
     //
     // comboBoxMultiBilling
     //
     this.comboBoxMultiBilling.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxMultiBilling.DroppedDown = false;
     this.comboBoxMultiBilling.Items = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiBilling.Items")));
     this.comboBoxMultiBilling.Location = new System.Drawing.Point(515,32);
     this.comboBoxMultiBilling.Name = "comboBoxMultiBilling";
     this.comboBoxMultiBilling.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiBilling.SelectedIndices")));
     this.comboBoxMultiBilling.Size = new System.Drawing.Size(160,21);
     this.comboBoxMultiBilling.TabIndex = 50;
     this.comboBoxMultiBilling.UseCommas = true;
     this.comboBoxMultiBilling.Leave += new System.EventHandler(this.comboBoxMultiBilling_Leave);
     //
     // comboBoxMultiProv
     //
     this.comboBoxMultiProv.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxMultiProv.DroppedDown = false;
     this.comboBoxMultiProv.Items = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.Items")));
     this.comboBoxMultiProv.Location = new System.Drawing.Point(515,10);
     this.comboBoxMultiProv.Name = "comboBoxMultiProv";
     this.comboBoxMultiProv.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.SelectedIndices")));
     this.comboBoxMultiProv.Size = new System.Drawing.Size(160,21);
     this.comboBoxMultiProv.TabIndex = 49;
     this.comboBoxMultiProv.UseCommas = true;
     this.comboBoxMultiProv.Leave += new System.EventHandler(this.comboBoxMultiProv_Leave);
     //
     // textOverAmount
     //
     this.textOverAmount.Location = new System.Drawing.Point(177,55);
     this.textOverAmount.Name = "textOverAmount";
     this.textOverAmount.Size = new System.Drawing.Size(68,20);
     this.textOverAmount.TabIndex = 48;
     //
     // textDateStart
     //
     this.textDateStart.Location = new System.Drawing.Point(367,11);
     this.textDateStart.Name = "textDateStart";
     this.textDateStart.Size = new System.Drawing.Size(77,20);
     this.textDateStart.TabIndex = 34;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize = true;
     this.butRefresh.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location = new System.Drawing.Point(346,55);
     this.butRefresh.Name = "butRefresh";
     this.butRefresh.Size = new System.Drawing.Size(98,24);
     this.butRefresh.TabIndex = 32;
     this.butRefresh.Text = "&Refresh List";
     this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location = new System.Drawing.Point(844,613);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 4;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // FormRpTreatmentFinder
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.ClientSize = new System.Drawing.Size(923,641);
     this.Controls.Add(this.buttonExport);
     this.Controls.Add(this.butLettersPreview);
     this.Controls.Add(this.butLabelSingle);
     this.Controls.Add(this.butLabelPreview);
     this.Controls.Add(this.butGotoAccount);
     this.Controls.Add(this.butGotoFamily);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FormRpTreatmentFinder";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Treatment Finder";
     this.Load += new System.EventHandler(this.FormRpTreatmentFinder_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #9
0
		private void InitializeComponent(){
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormClaimsSend));
			this.label6 = new System.Windows.Forms.Label();
			this.contextMenuStatus = new System.Windows.Forms.ContextMenu();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.calendarTo = new System.Windows.Forms.MonthCalendar();
			this.calendarFrom = new System.Windows.Forms.MonthCalendar();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.panelSplitter = new System.Windows.Forms.Panel();
			this.panelHistory = new System.Windows.Forms.Panel();
			this.gridHistory = new OpenDental.UI.ODGrid();
			this.panel1 = new System.Windows.Forms.Panel();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.contextMenuEclaims = new System.Windows.Forms.ContextMenu();
			this.comboCustomTracking = new System.Windows.Forms.ComboBox();
			this.labelCustomTracking = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.comboHistoryType = new OpenDental.UI.ComboBoxMulti();
			this.ToolBarHistory = new OpenDental.UI.ODToolBar();
			this.butDropTo = new OpenDental.UI.Button();
			this.butDropFrom = new OpenDental.UI.Button();
			this.textDateFrom = new OpenDental.ValidDate();
			this.textDateTo = new OpenDental.ValidDate();
			this.ToolBarMain = new OpenDental.UI.ODToolBar();
			this.panelHistory.SuspendLayout();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// label6
			// 
			this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label6.Location = new System.Drawing.Point(107, -44);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(112, 44);
			this.label6.TabIndex = 21;
			this.label6.Text = "Insurance Claims";
			this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			// 
			// imageList1
			// 
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
			this.imageList1.Images.SetKeyName(0, "");
			this.imageList1.Images.SetKeyName(1, "");
			this.imageList1.Images.SetKeyName(2, "");
			this.imageList1.Images.SetKeyName(3, "");
			this.imageList1.Images.SetKeyName(4, "");
			this.imageList1.Images.SetKeyName(5, "");
			this.imageList1.Images.SetKeyName(6, "");
			// 
			// calendarTo
			// 
			this.calendarTo.Location = new System.Drawing.Point(196, 29);
			this.calendarTo.MaxSelectionCount = 1;
			this.calendarTo.Name = "calendarTo";
			this.calendarTo.TabIndex = 42;
			this.calendarTo.Visible = false;
			this.calendarTo.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarTo_DateSelected);
			// 
			// calendarFrom
			// 
			this.calendarFrom.Location = new System.Drawing.Point(6, 29);
			this.calendarFrom.MaxSelectionCount = 1;
			this.calendarFrom.Name = "calendarFrom";
			this.calendarFrom.TabIndex = 39;
			this.calendarFrom.Visible = false;
			this.calendarFrom.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarFrom_DateSelected);
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(196, 5);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(72, 18);
			this.label2.TabIndex = 36;
			this.label2.Text = "To";
			this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(1, 5);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(75, 18);
			this.label1.TabIndex = 34;
			this.label1.Text = "From";
			this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// panelSplitter
			// 
			this.panelSplitter.Cursor = System.Windows.Forms.Cursors.SizeNS;
			this.panelSplitter.Location = new System.Drawing.Point(2, 398);
			this.panelSplitter.Name = "panelSplitter";
			this.panelSplitter.Size = new System.Drawing.Size(961, 6);
			this.panelSplitter.TabIndex = 50;
			this.panelSplitter.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseDown);
			this.panelSplitter.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseMove);
			this.panelSplitter.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseUp);
			// 
			// panelHistory
			// 
			this.panelHistory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
			this.panelHistory.Controls.Add(this.label4);
			this.panelHistory.Controls.Add(this.comboHistoryType);
			this.panelHistory.Controls.Add(this.calendarFrom);
			this.panelHistory.Controls.Add(this.label1);
			this.panelHistory.Controls.Add(this.calendarTo);
			this.panelHistory.Controls.Add(this.gridHistory);
			this.panelHistory.Controls.Add(this.panel1);
			this.panelHistory.Controls.Add(this.butDropTo);
			this.panelHistory.Controls.Add(this.butDropFrom);
			this.panelHistory.Controls.Add(this.textDateFrom);
			this.panelHistory.Controls.Add(this.label2);
			this.panelHistory.Controls.Add(this.textDateTo);
			this.panelHistory.Location = new System.Drawing.Point(0, 403);
			this.panelHistory.Name = "panelHistory";
			this.panelHistory.Size = new System.Drawing.Size(972, 286);
			this.panelHistory.TabIndex = 51;
			// 
			// gridHistory
			// 
			this.gridHistory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
			this.gridHistory.HScrollVisible = false;
			this.gridHistory.Location = new System.Drawing.Point(4, 31);
			this.gridHistory.Name = "gridHistory";
			this.gridHistory.ScrollValue = 0;
			this.gridHistory.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridHistory.Size = new System.Drawing.Size(959, 252);
			this.gridHistory.TabIndex = 33;
			this.gridHistory.Title = "History";
			this.gridHistory.TranslationName = "TableClaimHistory";
			this.gridHistory.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridHistory_CellDoubleClick);
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panel1.Controls.Add(this.ToolBarHistory);
			this.panel1.Location = new System.Drawing.Point(587, 0);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(376, 27);
			this.panel1.TabIndex = 44;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(74, 26);
			this.comboClinic.MaxDropDownItems = 40;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(160, 21);
			this.comboClinic.TabIndex = 53;
			this.comboClinic.SelectionChangeCommitted += new System.EventHandler(this.comboClinic_SelectionChangeCommitted);
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(7, 29);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(65, 14);
			this.labelClinic.TabIndex = 52;
			this.labelClinic.Text = "Clinic Filter";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// gridMain
			// 
			this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.gridMain.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(4, 49);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridMain.Size = new System.Drawing.Size(959, 350);
			this.gridMain.TabIndex = 32;
			this.gridMain.Title = "Claims Waiting to Send";
			this.gridMain.TranslationName = "TableQueue";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// comboCustomTracking
			// 
			this.comboCustomTracking.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCustomTracking.Location = new System.Drawing.Point(384, 26);
			this.comboCustomTracking.MaxDropDownItems = 40;
			this.comboCustomTracking.Name = "comboCustomTracking";
			this.comboCustomTracking.Size = new System.Drawing.Size(160, 21);
			this.comboCustomTracking.TabIndex = 55;
			this.comboCustomTracking.SelectionChangeCommitted += new System.EventHandler(this.comboCustomTracking_SelectionChangeCommitted);
			// 
			// labelCustomTracking
			// 
			this.labelCustomTracking.Location = new System.Drawing.Point(240, 29);
			this.labelCustomTracking.Name = "labelCustomTracking";
			this.labelCustomTracking.Size = new System.Drawing.Size(142, 14);
			this.labelCustomTracking.TabIndex = 54;
			this.labelCustomTracking.Text = "Custom Tracking Filter";
			this.labelCustomTracking.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(392, 5);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(72, 18);
			this.label4.TabIndex = 47;
			this.label4.Text = "Type";
			this.label4.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// comboHistoryType
			// 
			this.comboHistoryType.BackColor = System.Drawing.SystemColors.Window;
			this.comboHistoryType.DroppedDown = false;
			this.comboHistoryType.Items = ((System.Collections.ArrayList)(resources.GetObject("comboHistoryType.Items")));
			this.comboHistoryType.Location = new System.Drawing.Point(465, 6);
			this.comboHistoryType.Name = "comboHistoryType";
			this.comboHistoryType.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboHistoryType.SelectedIndices")));
			this.comboHistoryType.Size = new System.Drawing.Size(100, 21);
			this.comboHistoryType.TabIndex = 45;
			this.comboHistoryType.UseCommas = false;
			// 
			// ToolBarHistory
			// 
			this.ToolBarHistory.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.ToolBarHistory.BackColor = System.Drawing.SystemColors.Control;
			this.ToolBarHistory.ImageList = this.imageList1;
			this.ToolBarHistory.Location = new System.Drawing.Point(1, 1);
			this.ToolBarHistory.Name = "ToolBarHistory";
			this.ToolBarHistory.Size = new System.Drawing.Size(375, 25);
			this.ToolBarHistory.TabIndex = 43;
			this.ToolBarHistory.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarHistory_ButtonClick);
			// 
			// butDropTo
			// 
			this.butDropTo.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDropTo.Autosize = true;
			this.butDropTo.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDropTo.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDropTo.CornerRadius = 4F;
			this.butDropTo.Location = new System.Drawing.Point(352, 4);
			this.butDropTo.Name = "butDropTo";
			this.butDropTo.Size = new System.Drawing.Size(22, 23);
			this.butDropTo.TabIndex = 41;
			this.butDropTo.Text = "V";
			this.butDropTo.UseVisualStyleBackColor = true;
			this.butDropTo.Click += new System.EventHandler(this.butDropTo_Click);
			// 
			// butDropFrom
			// 
			this.butDropFrom.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDropFrom.Autosize = true;
			this.butDropFrom.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDropFrom.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDropFrom.CornerRadius = 4F;
			this.butDropFrom.Location = new System.Drawing.Point(162, 4);
			this.butDropFrom.Name = "butDropFrom";
			this.butDropFrom.Size = new System.Drawing.Size(22, 23);
			this.butDropFrom.TabIndex = 40;
			this.butDropFrom.Text = "V";
			this.butDropFrom.UseVisualStyleBackColor = true;
			this.butDropFrom.Click += new System.EventHandler(this.butDropFrom_Click);
			// 
			// textDateFrom
			// 
			this.textDateFrom.Location = new System.Drawing.Point(79, 6);
			this.textDateFrom.Name = "textDateFrom";
			this.textDateFrom.Size = new System.Drawing.Size(81, 20);
			this.textDateFrom.TabIndex = 35;
			// 
			// textDateTo
			// 
			this.textDateTo.Location = new System.Drawing.Point(269, 6);
			this.textDateTo.Name = "textDateTo";
			this.textDateTo.Size = new System.Drawing.Size(81, 20);
			this.textDateTo.TabIndex = 37;
			// 
			// ToolBarMain
			// 
			this.ToolBarMain.Dock = System.Windows.Forms.DockStyle.Top;
			this.ToolBarMain.ImageList = this.imageList1;
			this.ToolBarMain.Location = new System.Drawing.Point(0, 0);
			this.ToolBarMain.Name = "ToolBarMain";
			this.ToolBarMain.Size = new System.Drawing.Size(971, 25);
			this.ToolBarMain.TabIndex = 31;
			this.ToolBarMain.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarMain_ButtonClick);
			// 
			// FormClaimsSend
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(971, 691);
			this.Controls.Add(this.comboCustomTracking);
			this.Controls.Add(this.labelCustomTracking);
			this.Controls.Add(this.comboClinic);
			this.Controls.Add(this.labelClinic);
			this.Controls.Add(this.gridMain);
			this.Controls.Add(this.panelHistory);
			this.Controls.Add(this.panelSplitter);
			this.Controls.Add(this.ToolBarMain);
			this.Controls.Add(this.label6);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormClaimsSend";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Send Claims";
			this.Load += new System.EventHandler(this.FormClaimsSend_Load);
			this.Resize += new System.EventHandler(this.FormClaimsSend_Resize);
			this.panelHistory.ResumeLayout(false);
			this.panelHistory.PerformLayout();
			this.panel1.ResumeLayout(false);
			this.ResumeLayout(false);

		}