private void ValidPhone_TextChanged(object sender, System.EventArgs e) { if (sender.GetType() != typeof(ValidPhone)) { return; } if (!IsFormattingEnabled) { return; } ValidPhone textPhone = (ValidPhone)sender; string formattedText = TelephoneNumbers.AutoFormat(textPhone.Text); if (textPhone.Text == formattedText) { return; } //If there are characters that get removed from calling AutoFormat (i.e. spaces) and the cursor was at the start (which happens if/when the //ValidPhone control initially gets filled with a value) the calculated new selection start index would be an invalid value, so Max with 0. //Move cursor forward the difference in text length, i.e. if this adds a '(' character, move the cursor ahead one index. int newSelectionStartPosition = Math.Max(textPhone.SelectionStart + formattedText.Length - textPhone.Text.Length, 0); //remove this event handler from the TextChanged event so that setting the text here doesn't cause this to run again textPhone.TextChanged -= ValidPhone_TextChanged; textPhone.Text = formattedText; //add this event handler back to the TextChanged event textPhone.TextChanged += ValidPhone_TextChanged; textPhone.SelectionStart = newSelectionStartPosition; }
///<summary>Adds the requested controls to the form.</summary> private void AddInputControls() { _listInputControls = new List <Control>(); List <Label> listLabels = new List <Label>(); int curLocationY = 2; int controlWidth = 385; int minWidth = 250; int posX = 32; int itemOrder = 1; foreach (InputBoxParam inputParam in _listInputParams) { if (inputParam == null) { continue; } if (!string.IsNullOrEmpty(inputParam.LabelText)) { Label label = new Label(); label.AutoSize = false; label.Size = new Size(inputParam.ParamSize == Size.Empty ? controlWidth : inputParam.ParamSize.Width, 36); label.Text = inputParam.LabelText; label.Name = "labelPrompt" + itemOrder; label.TextAlign = ContentAlignment.BottomLeft; label.Location = new Point(posX, curLocationY); label.Tag = inputParam; listLabels.Add(label); curLocationY += 38; } Control inputControl; switch (inputParam.ParamType) { case InputBoxType.TextBox: TextBox textBox = new TextBox(); textBox.Name = "textBox" + itemOrder; textBox.Location = new Point(posX, curLocationY); textBox.Size = new Size(controlWidth, 20); textBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; textBox.Text = inputParam.Text; if (!String.IsNullOrEmpty(textBox.Text)) { textBox.SelectionStart = 0; textBox.SelectionLength = textBox.Text.Length; } inputControl = textBox; curLocationY += 22; break; case InputBoxType.TextBoxMultiLine: TextBox textBoxMulti = new TextBox(); textBoxMulti.Name = "textBox" + itemOrder; textBoxMulti.Location = new Point(posX, curLocationY); textBoxMulti.Size = new Size(controlWidth, 100); textBoxMulti.Multiline = true; textBoxMulti.Text = inputParam.Text; this.AcceptButton = null; textBoxMulti.ScrollBars = ScrollBars.Vertical; inputControl = textBoxMulti; curLocationY += 102; break; case InputBoxType.CheckBox: CheckBox checkBox = new CheckBox(); checkBox.Name = "checkBox" + itemOrder; checkBox.Location = new Point(posX + inputParam.Position.X, curLocationY + inputParam.Position.Y); checkBox.Size = inputParam.ParamSize == Size.Empty ? new Size(controlWidth, 20) : inputParam.ParamSize; checkBox.Text = inputParam.Text; checkBox.FlatStyle = FlatStyle.System; inputControl = checkBox; if (inputParam.HasTimeout) { _hasTimeout = true; } curLocationY += checkBox.Size.Height + 2; break; case InputBoxType.ComboSelect: UI.ComboBoxPlus comboBoxPlus = new UI.ComboBoxPlus(); comboBoxPlus.Name = "comboBox" + itemOrder; comboBoxPlus.Location = new Point(posX, curLocationY); comboBoxPlus.Size = inputParam.ParamSize == Size.Empty ? new Size(controlWidth, 21) : inputParam.ParamSize; comboBoxPlus.Items.AddList <string>(inputParam.ListSelections, x => x); if (inputParam.ListSelectedIndices.Count > 0 && inputParam.ListSelectedIndices[0].Between(0, comboBoxPlus.Items.Count - 1)) { comboBoxPlus.SetSelected(inputParam.ListSelectedIndices[0]); //If there is a valid initial selection, select it. } inputControl = comboBoxPlus; curLocationY += 23; break; case InputBoxType.ComboMultiSelect: UI.ComboBoxPlus comboBoxPlus2 = new UI.ComboBoxPlus(); comboBoxPlus2.SelectionModeMulti = true; comboBoxPlus2.Name = "comboBox" + itemOrder; comboBoxPlus2.Location = new Point(posX, curLocationY); comboBoxPlus2.Size = new Size(controlWidth, 21); comboBoxPlus2.BackColor = SystemColors.Window; foreach (string selection in inputParam.ListSelections) { comboBoxPlus2.Items.Add(selection); } foreach (int selection in inputParam.ListSelectedIndices) { if (selection.Between(0, comboBoxPlus2.Items.Count - 1)) { comboBoxPlus2.SetSelected(selection); //If there is a valid initial selection, select it. } } inputControl = comboBoxPlus2; curLocationY += 23; break; case InputBoxType.ValidDate: ValidDate validDate = new ValidDate(); validDate.Name = "validDate" + itemOrder; validDate.Location = new Point(posX, curLocationY); validDate.Size = new Size(100, 20); validDate.Text = inputParam.Text; inputControl = validDate; Label label = new Label(); label.Size = new Size(label.Width, validDate.Height); label.Text = $"({CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern})"; label.Name = "labelDateFormat" + itemOrder; label.TextAlign = ContentAlignment.MiddleLeft; label.Location = new Point(validDate.Location.X + validDate.Width + 12, curLocationY); label.Tag = inputParam; listLabels.Add(label); curLocationY += 22; break; case InputBoxType.ValidTime: ValidTime validTime = new ValidTime(); validTime.Name = "validTime" + itemOrder; validTime.Location = new Point(posX, curLocationY); validTime.Size = new Size(120, 20); inputControl = validTime; curLocationY += 22; break; case InputBoxType.ValidDouble: ValidDouble validDouble = new ValidDouble(); validDouble.Name = "validDouble" + itemOrder; validDouble.Location = new Point(posX, curLocationY); validDouble.Size = new Size(120, 20); inputControl = validDouble; curLocationY += 22; break; case InputBoxType.ValidPhone: ValidPhone validPhone = new ValidPhone(); validPhone.Name = "validPhone" + itemOrder; validPhone.Location = new Point(posX, curLocationY); validPhone.Size = new Size(140, 20); validPhone.Text = inputParam.Text; if (!String.IsNullOrEmpty(validPhone.Text)) { validPhone.SelectionStart = 0; validPhone.SelectionLength = validPhone.Text.Length; } inputControl = validPhone; curLocationY += 22; break; case InputBoxType.ListBoxMulti: ListBox listBox = new ListBox(); listBox.Name = "listBox" + itemOrder; listBox.Location = new Point(posX, curLocationY); listBox.BackColor = SystemColors.Window; listBox.SelectionMode = SelectionMode.MultiSimple; foreach (string selection in inputParam.ListSelections) { listBox.Items.Add(selection); } listBox.Size = new Size(controlWidth, listBox.PreferredHeight); inputControl = listBox; curLocationY += (listBox.PreferredHeight) + 2; break; default: throw new NotImplementedException("InputBoxType: " + inputParam.ParamType + " not implemented."); } inputControl.TabIndex = itemOrder; inputControl.Tag = inputParam; _listInputControls.Add(inputControl); minWidth = Math.Max(minWidth, inputControl.Width + 80); } //Now that we know the minWidth, we can center any controls that need to be centered. foreach (Control inputControl in _listInputControls.Union(listLabels)) { InputBoxParam inputParam = (InputBoxParam)inputControl.Tag; if (inputParam.HorizontalAlign != HorizontalAlignment.Left) { inputControl.Location = new Point((minWidth - inputControl.Width) / 2, inputControl.Location.Y); } } Controls.AddRange(listLabels.ToArray()); Controls.AddRange(_listInputControls.ToArray()); Height = curLocationY + 90; Width = minWidth; }
private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPractice)); this.listBillType = new System.Windows.Forms.ListBox(); this.label12 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.textBankNumber = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label16 = new System.Windows.Forms.Label(); this.textZip = new System.Windows.Forms.TextBox(); this.textST = new System.Windows.Forms.TextBox(); this.textCity = new System.Windows.Forms.TextBox(); this.textAddress2 = new System.Windows.Forms.TextBox(); this.textAddress = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.textPracticeTitle = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.labelPlaceService = new System.Windows.Forms.Label(); this.listPlaceService = new System.Windows.Forms.ListBox(); this.groupBox4 = new System.Windows.Forms.GroupBox(); this.comboInsBillingProv = new OpenDental.UI.ComboBoxPlus(); this.radioInsBillingProvSpecific = new System.Windows.Forms.RadioButton(); this.radioInsBillingProvTreat = new System.Windows.Forms.RadioButton(); this.radioInsBillingProvDefault = new System.Windows.Forms.RadioButton(); this.groupSwiss = new System.Windows.Forms.GroupBox(); this.textBankAddress = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.textBankRouting = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.label18 = new System.Windows.Forms.Label(); this.checkUseBillingAddressOnClaims = new System.Windows.Forms.CheckBox(); this.label7 = new System.Windows.Forms.Label(); this.textBillingZip = new System.Windows.Forms.TextBox(); this.textBillingST = new System.Windows.Forms.TextBox(); this.textBillingCity = new System.Windows.Forms.TextBox(); this.textBillingAddress2 = new System.Windows.Forms.TextBox(); this.textBillingAddress = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.label17 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.textPayToZip = new System.Windows.Forms.TextBox(); this.textPayToST = new System.Windows.Forms.TextBox(); this.textPayToCity = new System.Windows.Forms.TextBox(); this.textPayToAddress2 = new System.Windows.Forms.TextBox(); this.textPayToAddress = new System.Windows.Forms.TextBox(); this.label14 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.checkIsMedicalOnly = new System.Windows.Forms.CheckBox(); this.textFax = new OpenDental.ValidPhone(); this.textPhone = new OpenDental.ValidPhone(); this.label19 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.butCancel = new OpenDental.UI.Button(); this.butOK = new OpenDental.UI.Button(); this.comboProv = new OpenDental.UI.ComboBoxPlus(); this.groupBox2.SuspendLayout(); this.groupBox4.SuspendLayout(); this.groupSwiss.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox3.SuspendLayout(); this.SuspendLayout(); // // listBillType // this.listBillType.Items.AddRange(new object[] { "" }); this.listBillType.Location = new System.Drawing.Point(471, 28); this.listBillType.Name = "listBillType"; this.listBillType.Size = new System.Drawing.Size(144, 147); this.listBillType.TabIndex = 12; // // label12 // this.label12.Location = new System.Drawing.Point(470, 8); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(154, 17); this.label12.TabIndex = 0; this.label12.Text = "Default Billing Type"; this.label12.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // label10 // this.label10.Location = new System.Drawing.Point(643, 132); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(110, 16); this.label10.TabIndex = 0; this.label10.Text = "Default Provider"; this.label10.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // textBankNumber // this.textBankNumber.Location = new System.Drawing.Point(122, 474); this.textBankNumber.Multiline = true; this.textBankNumber.Name = "textBankNumber"; this.textBankNumber.Size = new System.Drawing.Size(317, 49); this.textBankNumber.TabIndex = 7; // // label4 // this.label4.Location = new System.Drawing.Point(4, 473); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(117, 31); this.label4.TabIndex = 0; this.label4.Text = "Bank Deposit Acct Number and Info"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; // // groupBox2 // this.groupBox2.Controls.Add(this.label16); this.groupBox2.Controls.Add(this.textZip); this.groupBox2.Controls.Add(this.textST); this.groupBox2.Controls.Add(this.textCity); this.groupBox2.Controls.Add(this.textAddress2); this.groupBox2.Controls.Add(this.textAddress); this.groupBox2.Controls.Add(this.label5); this.groupBox2.Controls.Add(this.label6); this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox2.Location = new System.Drawing.Point(19, 106); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(429, 87); this.groupBox2.TabIndex = 4; this.groupBox2.TabStop = false; this.groupBox2.Text = "Physical Treating Address"; // // label16 // this.label16.Location = new System.Drawing.Point(5, 36); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(97, 16); this.label16.TabIndex = 0; this.label16.Text = "Address 2"; this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textZip // this.textZip.Location = new System.Drawing.Point(318, 57); this.textZip.Name = "textZip"; this.textZip.Size = new System.Drawing.Size(102, 20); this.textZip.TabIndex = 5; // // textST // this.textST.Location = new System.Drawing.Point(264, 57); this.textST.Name = "textST"; this.textST.Size = new System.Drawing.Size(52, 20); this.textST.TabIndex = 4; // // textCity // this.textCity.Location = new System.Drawing.Point(103, 57); this.textCity.Name = "textCity"; this.textCity.Size = new System.Drawing.Size(159, 20); this.textCity.TabIndex = 3; // // textAddress2 // this.textAddress2.Location = new System.Drawing.Point(103, 35); this.textAddress2.Name = "textAddress2"; this.textAddress2.Size = new System.Drawing.Size(317, 20); this.textAddress2.TabIndex = 2; // // textAddress // this.textAddress.Location = new System.Drawing.Point(103, 13); this.textAddress.Name = "textAddress"; this.textAddress.Size = new System.Drawing.Size(317, 20); this.textAddress.TabIndex = 1; // // label5 // this.label5.Location = new System.Drawing.Point(4, 15); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(98, 14); this.label5.TabIndex = 0; this.label5.Text = "Address"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label6 // this.label6.Location = new System.Drawing.Point(4, 59); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(98, 15); this.label6.TabIndex = 0; this.label6.Text = "City, ST, Zip"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textPracticeTitle // this.textPracticeTitle.Location = new System.Drawing.Point(122, 39); this.textPracticeTitle.Name = "textPracticeTitle"; this.textPracticeTitle.Size = new System.Drawing.Size(317, 20); this.textPracticeTitle.TabIndex = 1; // // label3 // this.label3.Location = new System.Drawing.Point(28, 32); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(96, 28); this.label3.TabIndex = 0; this.label3.Text = "Provider Name or Practice Title"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelPlaceService // this.labelPlaceService.Location = new System.Drawing.Point(468, 186); this.labelPlaceService.Name = "labelPlaceService"; this.labelPlaceService.Size = new System.Drawing.Size(156, 18); this.labelPlaceService.TabIndex = 0; this.labelPlaceService.Text = "Default Proc Place Service"; this.labelPlaceService.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // listPlaceService // this.listPlaceService.Location = new System.Drawing.Point(470, 207); this.listPlaceService.Name = "listPlaceService"; this.listPlaceService.Size = new System.Drawing.Size(145, 160); this.listPlaceService.TabIndex = 13; // // groupBox4 // this.groupBox4.Controls.Add(this.comboInsBillingProv); this.groupBox4.Controls.Add(this.radioInsBillingProvSpecific); this.groupBox4.Controls.Add(this.radioInsBillingProvTreat); this.groupBox4.Controls.Add(this.radioInsBillingProvDefault); this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox4.Location = new System.Drawing.Point(627, 201); this.groupBox4.Name = "groupBox4"; this.groupBox4.Size = new System.Drawing.Size(235, 104); this.groupBox4.TabIndex = 14; this.groupBox4.TabStop = false; this.groupBox4.Text = "Default Insurance Billing Provider"; // // comboInsBillingProv // this.comboInsBillingProv.Location = new System.Drawing.Point(17, 73); this.comboInsBillingProv.Name = "comboInsBillingProv"; this.comboInsBillingProv.Size = new System.Drawing.Size(212, 21); this.comboInsBillingProv.TabIndex = 4; // // radioInsBillingProvSpecific // this.radioInsBillingProvSpecific.FlatStyle = System.Windows.Forms.FlatStyle.System; this.radioInsBillingProvSpecific.Location = new System.Drawing.Point(17, 53); this.radioInsBillingProvSpecific.Name = "radioInsBillingProvSpecific"; this.radioInsBillingProvSpecific.Size = new System.Drawing.Size(186, 19); this.radioInsBillingProvSpecific.TabIndex = 3; this.radioInsBillingProvSpecific.Text = "Specific Provider:"; // // radioInsBillingProvTreat // this.radioInsBillingProvTreat.FlatStyle = System.Windows.Forms.FlatStyle.System; this.radioInsBillingProvTreat.Location = new System.Drawing.Point(17, 34); this.radioInsBillingProvTreat.Name = "radioInsBillingProvTreat"; this.radioInsBillingProvTreat.Size = new System.Drawing.Size(186, 19); this.radioInsBillingProvTreat.TabIndex = 2; this.radioInsBillingProvTreat.Text = "Treating Provider"; // // radioInsBillingProvDefault // this.radioInsBillingProvDefault.Checked = true; this.radioInsBillingProvDefault.FlatStyle = System.Windows.Forms.FlatStyle.System; this.radioInsBillingProvDefault.Location = new System.Drawing.Point(17, 16); this.radioInsBillingProvDefault.Name = "radioInsBillingProvDefault"; this.radioInsBillingProvDefault.Size = new System.Drawing.Size(186, 19); this.radioInsBillingProvDefault.TabIndex = 1; this.radioInsBillingProvDefault.TabStop = true; this.radioInsBillingProvDefault.Text = "Default Practice Provider"; // // groupSwiss // this.groupSwiss.Controls.Add(this.textBankAddress); this.groupSwiss.Controls.Add(this.label2); this.groupSwiss.Controls.Add(this.textBankRouting); this.groupSwiss.Controls.Add(this.label1); this.groupSwiss.Location = new System.Drawing.Point(470, 382); this.groupSwiss.Name = "groupSwiss"; this.groupSwiss.Size = new System.Drawing.Size(392, 146); this.groupSwiss.TabIndex = 8; this.groupSwiss.TabStop = false; this.groupSwiss.Text = "Switzerland"; // // textBankAddress // this.textBankAddress.AcceptsReturn = true; this.textBankAddress.Location = new System.Drawing.Point(103, 43); this.textBankAddress.Multiline = true; this.textBankAddress.Name = "textBankAddress"; this.textBankAddress.Size = new System.Drawing.Size(283, 95); this.textBankAddress.TabIndex = 2; // // label2 // this.label2.Location = new System.Drawing.Point(4, 46); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(98, 40); this.label2.TabIndex = 0; this.label2.Text = "Bank Name and Address"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textBankRouting // this.textBankRouting.Location = new System.Drawing.Point(103, 19); this.textBankRouting.Name = "textBankRouting"; this.textBankRouting.Size = new System.Drawing.Size(283, 20); this.textBankRouting.TabIndex = 1; // // label1 // this.label1.Location = new System.Drawing.Point(4, 22); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(98, 14); this.label1.TabIndex = 0; this.label1.Text = "Bank Routing"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // groupBox1 // this.groupBox1.Controls.Add(this.label18); this.groupBox1.Controls.Add(this.checkUseBillingAddressOnClaims); this.groupBox1.Controls.Add(this.label7); this.groupBox1.Controls.Add(this.textBillingZip); this.groupBox1.Controls.Add(this.textBillingST); this.groupBox1.Controls.Add(this.textBillingCity); this.groupBox1.Controls.Add(this.textBillingAddress2); this.groupBox1.Controls.Add(this.textBillingAddress); this.groupBox1.Controls.Add(this.label8); this.groupBox1.Controls.Add(this.label11); this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox1.Location = new System.Drawing.Point(19, 196); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(429, 140); this.groupBox1.TabIndex = 5; this.groupBox1.TabStop = false; this.groupBox1.Text = "Billing Address"; // // label18 // this.label18.Location = new System.Drawing.Point(100, 14); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(310, 29); this.label18.TabIndex = 0; this.label18.Text = "Optional. Cannot be a PO Box if Use on Claims is checked. Also overrides the pr" + "actice address on EHG statements."; // // checkUseBillingAddressOnClaims // this.checkUseBillingAddressOnClaims.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.checkUseBillingAddressOnClaims.Location = new System.Drawing.Point(6, 46); this.checkUseBillingAddressOnClaims.Name = "checkUseBillingAddressOnClaims"; this.checkUseBillingAddressOnClaims.Size = new System.Drawing.Size(111, 16); this.checkUseBillingAddressOnClaims.TabIndex = 1; this.checkUseBillingAddressOnClaims.Text = "Use on Claims"; this.checkUseBillingAddressOnClaims.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.checkUseBillingAddressOnClaims.UseVisualStyleBackColor = true; // // label7 // this.label7.Location = new System.Drawing.Point(4, 88); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(97, 16); this.label7.TabIndex = 0; this.label7.Text = "Address 2"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBillingZip // this.textBillingZip.Location = new System.Drawing.Point(318, 109); this.textBillingZip.Name = "textBillingZip"; this.textBillingZip.Size = new System.Drawing.Size(102, 20); this.textBillingZip.TabIndex = 6; // // textBillingST // this.textBillingST.Location = new System.Drawing.Point(264, 109); this.textBillingST.Name = "textBillingST"; this.textBillingST.Size = new System.Drawing.Size(52, 20); this.textBillingST.TabIndex = 5; // // textBillingCity // this.textBillingCity.Location = new System.Drawing.Point(103, 109); this.textBillingCity.Name = "textBillingCity"; this.textBillingCity.Size = new System.Drawing.Size(159, 20); this.textBillingCity.TabIndex = 4; // // textBillingAddress2 // this.textBillingAddress2.Location = new System.Drawing.Point(103, 87); this.textBillingAddress2.Name = "textBillingAddress2"; this.textBillingAddress2.Size = new System.Drawing.Size(317, 20); this.textBillingAddress2.TabIndex = 3; // // textBillingAddress // this.textBillingAddress.Location = new System.Drawing.Point(103, 65); this.textBillingAddress.Name = "textBillingAddress"; this.textBillingAddress.Size = new System.Drawing.Size(317, 20); this.textBillingAddress.TabIndex = 2; // // label8 // this.label8.Location = new System.Drawing.Point(3, 67); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(98, 14); this.label8.TabIndex = 0; this.label8.Text = "Address"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label11 // this.label11.Location = new System.Drawing.Point(3, 111); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(98, 15); this.label11.TabIndex = 0; this.label11.Text = "City, ST, Zip"; this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // groupBox3 // this.groupBox3.Controls.Add(this.label17); this.groupBox3.Controls.Add(this.label13); this.groupBox3.Controls.Add(this.textPayToZip); this.groupBox3.Controls.Add(this.textPayToST); this.groupBox3.Controls.Add(this.textPayToCity); this.groupBox3.Controls.Add(this.textPayToAddress2); this.groupBox3.Controls.Add(this.textPayToAddress); this.groupBox3.Controls.Add(this.label14); this.groupBox3.Controls.Add(this.label15); this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox3.Location = new System.Drawing.Point(19, 339); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(429, 122); this.groupBox3.TabIndex = 6; this.groupBox3.TabStop = false; this.groupBox3.Text = "Pay To Address"; // // label17 // this.label17.Location = new System.Drawing.Point(103, 14); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(317, 33); this.label17.TabIndex = 0; this.label17.Text = "Optional for claims. Can be a PO Box. Sent in addition to treating or billing a" + "ddress."; // // label13 // this.label13.Location = new System.Drawing.Point(5, 70); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(97, 16); this.label13.TabIndex = 0; this.label13.Text = "Address 2"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textPayToZip // this.textPayToZip.Location = new System.Drawing.Point(318, 91); this.textPayToZip.Name = "textPayToZip"; this.textPayToZip.Size = new System.Drawing.Size(102, 20); this.textPayToZip.TabIndex = 5; // // textPayToST // this.textPayToST.Location = new System.Drawing.Point(264, 91); this.textPayToST.Name = "textPayToST"; this.textPayToST.Size = new System.Drawing.Size(52, 20); this.textPayToST.TabIndex = 4; // // textPayToCity // this.textPayToCity.Location = new System.Drawing.Point(103, 91); this.textPayToCity.Name = "textPayToCity"; this.textPayToCity.Size = new System.Drawing.Size(159, 20); this.textPayToCity.TabIndex = 3; // // textPayToAddress2 // this.textPayToAddress2.Location = new System.Drawing.Point(103, 69); this.textPayToAddress2.Name = "textPayToAddress2"; this.textPayToAddress2.Size = new System.Drawing.Size(317, 20); this.textPayToAddress2.TabIndex = 2; // // textPayToAddress // this.textPayToAddress.Location = new System.Drawing.Point(103, 47); this.textPayToAddress.Name = "textPayToAddress"; this.textPayToAddress.Size = new System.Drawing.Size(317, 20); this.textPayToAddress.TabIndex = 1; // // label14 // this.label14.Location = new System.Drawing.Point(4, 49); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(98, 14); this.label14.TabIndex = 0; this.label14.Text = "Address"; this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label15 // this.label15.Location = new System.Drawing.Point(4, 93); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(98, 15); this.label15.TabIndex = 0; this.label15.Text = "City, ST, Zip"; this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // checkIsMedicalOnly // this.checkIsMedicalOnly.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.checkIsMedicalOnly.Location = new System.Drawing.Point(7, 12); this.checkIsMedicalOnly.Name = "checkIsMedicalOnly"; this.checkIsMedicalOnly.Size = new System.Drawing.Size(129, 16); this.checkIsMedicalOnly.TabIndex = 0; this.checkIsMedicalOnly.TabStop = false; this.checkIsMedicalOnly.Text = "Practice is Medical"; this.checkIsMedicalOnly.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textFax // this.textFax.IsFormattingEnabled = false; this.textFax.Location = new System.Drawing.Point(122, 83); this.textFax.Name = "textFax"; this.textFax.Size = new System.Drawing.Size(121, 20); this.textFax.TabIndex = 3; // // textPhone // this.textPhone.IsFormattingEnabled = false; this.textPhone.Location = new System.Drawing.Point(122, 61); this.textPhone.Name = "textPhone"; this.textPhone.Size = new System.Drawing.Size(121, 20); this.textPhone.TabIndex = 2; // // label19 // this.label19.Location = new System.Drawing.Point(53, 84); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(68, 17); this.label19.TabIndex = 0; this.label19.Text = "Fax"; this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label9 // this.label9.Location = new System.Drawing.Point(24, 62); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(97, 17); this.label9.TabIndex = 0; this.label9.Text = "Phone"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // butCancel // this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.butCancel.Location = new System.Drawing.Point(785, 547); this.butCancel.Name = "butCancel"; this.butCancel.Size = new System.Drawing.Size(75, 26); this.butCancel.TabIndex = 10; this.butCancel.Text = "&Cancel"; this.butCancel.Click += new System.EventHandler(this.butCancel_Click); // // butOK // this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butOK.Location = new System.Drawing.Point(704, 547); this.butOK.Name = "butOK"; this.butOK.Size = new System.Drawing.Size(75, 26); this.butOK.TabIndex = 9; this.butOK.Text = "&OK"; this.butOK.Click += new System.EventHandler(this.butOK_Click); // // comboProv // this.comboProv.Location = new System.Drawing.Point(644, 152); this.comboProv.Name = "comboProv"; this.comboProv.Size = new System.Drawing.Size(212, 21); this.comboProv.TabIndex = 5; // // FormPractice // this.ClientSize = new System.Drawing.Size(892, 596); this.Controls.Add(this.comboProv); this.Controls.Add(this.textFax); this.Controls.Add(this.textPhone); this.Controls.Add(this.label19); this.Controls.Add(this.label9); this.Controls.Add(this.checkIsMedicalOnly); this.Controls.Add(this.groupBox3); this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupSwiss); this.Controls.Add(this.groupBox4); this.Controls.Add(this.listPlaceService); this.Controls.Add(this.labelPlaceService); this.Controls.Add(this.textBankNumber); this.Controls.Add(this.textPracticeTitle); this.Controls.Add(this.butCancel); this.Controls.Add(this.butOK); this.Controls.Add(this.listBillType); this.Controls.Add(this.label12); this.Controls.Add(this.label10); this.Controls.Add(this.label4); this.Controls.Add(this.groupBox2); this.Controls.Add(this.label3); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormPractice"; this.ShowInTaskbar = false; this.Text = "Edit Practice Info"; this.Load += new System.EventHandler(this.FormPractice_Load); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.groupBox4.ResumeLayout(false); this.groupSwiss.ResumeLayout(false); this.groupSwiss.PerformLayout(); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox3.ResumeLayout(false); this.groupBox3.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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormContactEdit)); this.butCancel = new OpenDental.UI.Button(); this.butOK = new OpenDental.UI.Button(); this.butDelete = new OpenDental.UI.Button(); this.textLName = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.textFName = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.textWkPhone = new ValidPhone(); this.label4 = new System.Windows.Forms.Label(); this.textFax = new ValidPhone(); this.label5 = new System.Windows.Forms.Label(); this.textNotes = new System.Windows.Forms.TextBox(); this.listCategory = new System.Windows.Forms.ListBox(); this.label6 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // butCancel // this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.butCancel.Location = new System.Drawing.Point(591, 450); this.butCancel.Name = "butCancel"; this.butCancel.Size = new System.Drawing.Size(75, 25); this.butCancel.TabIndex = 0; this.butCancel.Text = "&Cancel"; this.butCancel.Click += new System.EventHandler(this.butCancel_Click); // // butOK // this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butOK.Location = new System.Drawing.Point(591, 411); this.butOK.Name = "butOK"; this.butOK.Size = new System.Drawing.Size(75, 25); this.butOK.TabIndex = 1; this.butOK.Text = "&OK"; this.butOK.Click += new System.EventHandler(this.butOK_Click); // // butDelete // this.butDelete.Location = new System.Drawing.Point(42, 450); this.butDelete.Name = "butDelete"; this.butDelete.Size = new System.Drawing.Size(75, 25); this.butDelete.TabIndex = 2; this.butDelete.Text = "&Delete"; this.butDelete.Click += new System.EventHandler(this.butDelete_Click); // // textLName // this.textLName.Location = new System.Drawing.Point(215, 147); this.textLName.Name = "textLName"; this.textLName.Size = new System.Drawing.Size(205, 20); this.textLName.TabIndex = 3; this.textLName.TextChanged += new System.EventHandler(this.textLName_TextChanged); // // label1 // this.label1.Location = new System.Drawing.Point(64, 150); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(151, 17); this.label1.TabIndex = 4; this.label1.Text = "Last Name"; this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label2 // this.label2.Location = new System.Drawing.Point(63, 177); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(151, 17); this.label2.TabIndex = 6; this.label2.Text = "First Name (optional)"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textFName // this.textFName.Location = new System.Drawing.Point(215, 173); this.textFName.Name = "textFName"; this.textFName.Size = new System.Drawing.Size(205, 20); this.textFName.TabIndex = 5; this.textFName.TextChanged += new System.EventHandler(this.textFName_TextChanged); // // label3 // this.label3.Location = new System.Drawing.Point(61, 203); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(151, 17); this.label3.TabIndex = 8; this.label3.Text = "Wk Phone"; this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textWkPhone // this.textWkPhone.Location = new System.Drawing.Point(215, 199); this.textWkPhone.Name = "textWkPhone"; this.textWkPhone.Size = new System.Drawing.Size(205, 20); this.textWkPhone.TabIndex = 7; // // label4 // this.label4.Location = new System.Drawing.Point(61, 228); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(151, 17); this.label4.TabIndex = 10; this.label4.Text = "Fax"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textFax // this.textFax.Location = new System.Drawing.Point(215, 225); this.textFax.Name = "textFax"; this.textFax.Size = new System.Drawing.Size(205, 20); this.textFax.TabIndex = 9; // // label5 // this.label5.Location = new System.Drawing.Point(63, 250); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(151, 17); this.label5.TabIndex = 12; this.label5.Text = "Notes"; this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textNotes // this.textNotes.Location = new System.Drawing.Point(215, 251); this.textNotes.Multiline = true; this.textNotes.Name = "textNotes"; this.textNotes.Size = new System.Drawing.Size(449, 120); this.textNotes.TabIndex = 11; // // listCategory // this.listCategory.Location = new System.Drawing.Point(215, 46); this.listCategory.Name = "listCategory"; this.listCategory.Size = new System.Drawing.Size(120, 95); this.listCategory.TabIndex = 13; // // label6 // this.label6.Location = new System.Drawing.Point(62, 48); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(151, 17); this.label6.TabIndex = 14; this.label6.Text = "Category"; this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight; // // FormContactEdit // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.butCancel; this.ClientSize = new System.Drawing.Size(717, 493); this.Controls.Add(this.label6); this.Controls.Add(this.listCategory); this.Controls.Add(this.label5); this.Controls.Add(this.textNotes); this.Controls.Add(this.textFax); this.Controls.Add(this.textWkPhone); this.Controls.Add(this.textFName); this.Controls.Add(this.textLName); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.butDelete); this.Controls.Add(this.butOK); this.Controls.Add(this.butCancel); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormContactEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Edit Contact"; this.Load += new System.EventHandler(this.FormContactEdit_Load); 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(FormCarriers)); this.butAdd = new OpenDental.UI.Button(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.butCombine = new OpenDental.UI.Button(); this.butItransUpdateCarriers = new OpenDental.UI.Button(); this.butCancel = new OpenDental.UI.Button(); this.gridMain = new OpenDental.UI.ODGrid(); this.checkCDAnet = new System.Windows.Forms.CheckBox(); this.checkShowHidden = new System.Windows.Forms.CheckBox(); this.textCarrier = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.butOK = new OpenDental.UI.Button(); this.textPhone = new ValidPhone(); this.labelPhone = new System.Windows.Forms.Label(); this.butRefresh = new OpenDental.UI.Button(); this.groupItrans = new System.Windows.Forms.GroupBox(); this.checkItransName = new System.Windows.Forms.CheckBox(); this.checkItransAddress = new System.Windows.Forms.CheckBox(); this.checkITransPhone = new System.Windows.Forms.CheckBox(); this.checkItransMissing = new System.Windows.Forms.CheckBox(); this.groupItrans.SuspendLayout(); this.SuspendLayout(); // // butAdd // this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butAdd.Image = global::OpenDental.Properties.Resources.Add; this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.butAdd.Location = new System.Drawing.Point(830, 435); this.butAdd.Name = "butAdd"; this.butAdd.Size = new System.Drawing.Size(90, 26); this.butAdd.TabIndex = 7; this.butAdd.Text = "&Add"; this.butAdd.Click += new System.EventHandler(this.butAdd_Click); // // butCombine // this.butCombine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCombine.Location = new System.Drawing.Point(830, 471); this.butCombine.Name = "butCombine"; this.butCombine.Size = new System.Drawing.Size(90, 26); this.butCombine.TabIndex = 10; this.butCombine.Text = "Co&mbine"; this.toolTip1.SetToolTip(this.butCombine, "Combines multiple Employers"); this.butCombine.Click += new System.EventHandler(this.butCombine_Click); // // butItransUpdateCarriers // this.butItransUpdateCarriers.Location = new System.Drawing.Point(8, 94); this.butItransUpdateCarriers.Name = "butItransUpdateCarriers"; this.butItransUpdateCarriers.Size = new System.Drawing.Size(90, 26); this.butItransUpdateCarriers.TabIndex = 107; this.butItransUpdateCarriers.Text = "Update Carriers"; this.toolTip1.SetToolTip(this.butItransUpdateCarriers, "Updates carriers using iTrans 2.0"); this.butItransUpdateCarriers.Click += new System.EventHandler(this.butItransUpdateCarriers_Click); // // butCancel // this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCancel.Location = new System.Drawing.Point(830, 623); this.butCancel.Name = "butCancel"; this.butCancel.Size = new System.Drawing.Size(90, 26); this.butCancel.TabIndex = 12; 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 = true; this.gridMain.Location = new System.Drawing.Point(11, 29); this.gridMain.Name = "gridMain"; this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended; this.gridMain.Size = new System.Drawing.Size(796, 620); this.gridMain.TabIndex = 13; this.gridMain.Title = "Carriers"; this.gridMain.TranslationName = "TableCarriers"; this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick); this.gridMain.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick); // // checkCDAnet // this.checkCDAnet.FlatStyle = System.Windows.Forms.FlatStyle.System; this.checkCDAnet.Location = new System.Drawing.Point(631, 6); this.checkCDAnet.Name = "checkCDAnet"; this.checkCDAnet.Size = new System.Drawing.Size(96, 17); this.checkCDAnet.TabIndex = 99; this.checkCDAnet.Text = "CDAnet Only"; this.checkCDAnet.Click += new System.EventHandler(this.checkCDAnet_Click); // // checkShowHidden // this.checkShowHidden.FlatStyle = System.Windows.Forms.FlatStyle.System; this.checkShowHidden.Location = new System.Drawing.Point(490, 6); this.checkShowHidden.Name = "checkShowHidden"; this.checkShowHidden.Size = new System.Drawing.Size(96, 17); this.checkShowHidden.TabIndex = 100; this.checkShowHidden.Text = "Show Hidden"; this.checkShowHidden.Click += new System.EventHandler(this.checkShowHidden_Click); // // textCarrier // this.textCarrier.Location = new System.Drawing.Point(118, 4); this.textCarrier.Name = "textCarrier"; this.textCarrier.Size = new System.Drawing.Size(140, 20); this.textCarrier.TabIndex = 101; this.textCarrier.TextChanged += new System.EventHandler(this.textCarrier_TextChanged); // // label2 // this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System; this.label2.Location = new System.Drawing.Point(12, 7); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(100, 17); this.label2.TabIndex = 102; this.label2.Text = "Carrier"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // butOK // this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butOK.Location = new System.Drawing.Point(830, 587); this.butOK.Name = "butOK"; this.butOK.Size = new System.Drawing.Size(90, 26); this.butOK.TabIndex = 103; this.butOK.Text = "OK"; this.butOK.Click += new System.EventHandler(this.butOK_Click); // // textPhone // this.textPhone.Location = new System.Drawing.Point(342, 4); this.textPhone.Name = "textPhone"; this.textPhone.Size = new System.Drawing.Size(140, 20); this.textPhone.TabIndex = 104; this.textPhone.TextChanged += new System.EventHandler(this.textPhone_TextChanged); // // labelPhone // this.labelPhone.FlatStyle = System.Windows.Forms.FlatStyle.System; this.labelPhone.Location = new System.Drawing.Point(264, 7); this.labelPhone.Name = "labelPhone"; this.labelPhone.Size = new System.Drawing.Size(72, 17); this.labelPhone.TabIndex = 105; this.labelPhone.Text = "Phone"; this.labelPhone.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // butRefresh // this.butRefresh.Location = new System.Drawing.Point(732, 2); this.butRefresh.Name = "butRefresh"; this.butRefresh.Size = new System.Drawing.Size(75, 23); this.butRefresh.TabIndex = 106; this.butRefresh.Text = "Refresh"; this.butRefresh.UseVisualStyleBackColor = true; this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click); // // groupItrans // this.groupItrans.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.groupItrans.Controls.Add(this.checkItransMissing); this.groupItrans.Controls.Add(this.checkItransName); this.groupItrans.Controls.Add(this.checkItransAddress); this.groupItrans.Controls.Add(this.checkITransPhone); this.groupItrans.Controls.Add(this.butItransUpdateCarriers); this.groupItrans.Location = new System.Drawing.Point(814, 162); this.groupItrans.Name = "groupItrans"; this.groupItrans.Size = new System.Drawing.Size(106, 125); this.groupItrans.TabIndex = 109; this.groupItrans.TabStop = false; this.groupItrans.Text = "Web Import"; this.groupItrans.Visible = false; // // checkItransName // this.checkItransName.Location = new System.Drawing.Point(8, 19); this.checkItransName.Name = "checkItransName"; this.checkItransName.Size = new System.Drawing.Size(90, 17); this.checkItransName.TabIndex = 110; this.checkItransName.Text = "Name"; this.checkItransName.UseVisualStyleBackColor = true; // // checkItransAddress // this.checkItransAddress.Location = new System.Drawing.Point(8, 37); this.checkItransAddress.Name = "checkItransAddress"; this.checkItransAddress.Size = new System.Drawing.Size(90, 16); this.checkItransAddress.TabIndex = 109; this.checkItransAddress.Text = "Address"; this.checkItransAddress.UseVisualStyleBackColor = true; // // checkITransPhone // this.checkITransPhone.Location = new System.Drawing.Point(8, 55); this.checkITransPhone.Name = "checkITransPhone"; this.checkITransPhone.Size = new System.Drawing.Size(90, 17); this.checkITransPhone.TabIndex = 108; this.checkITransPhone.Text = "Phone"; this.checkITransPhone.UseVisualStyleBackColor = true; // // checkItransMissing // this.checkItransMissing.Location = new System.Drawing.Point(8, 73); this.checkItransMissing.Name = "checkItransMissing"; this.checkItransMissing.Size = new System.Drawing.Size(90, 17); this.checkItransMissing.TabIndex = 111; this.checkItransMissing.Text = "Add Missing"; this.checkItransMissing.UseVisualStyleBackColor = true; // // FormCarriers // this.ClientSize = new System.Drawing.Size(927, 672); this.Controls.Add(this.groupItrans); this.Controls.Add(this.butRefresh); this.Controls.Add(this.textPhone); this.Controls.Add(this.labelPhone); this.Controls.Add(this.butOK); this.Controls.Add(this.textCarrier); this.Controls.Add(this.label2); this.Controls.Add(this.checkShowHidden); this.Controls.Add(this.checkCDAnet); this.Controls.Add(this.gridMain); this.Controls.Add(this.butCancel); this.Controls.Add(this.butCombine); this.Controls.Add(this.butAdd); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormCarriers"; this.ShowInTaskbar = false; this.Text = "Carriers"; this.Load += new System.EventHandler(this.FormCarriers_Load); this.groupItrans.ResumeLayout(false); 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPharmacyEdit)); this.butCancel = new OpenDental.UI.Button(); this.butOK = new OpenDental.UI.Button(); this.label1 = new System.Windows.Forms.Label(); this.textStoreName = new System.Windows.Forms.TextBox(); this.butDelete = new OpenDental.UI.Button(); this.textCity = new System.Windows.Forms.TextBox(); this.textState = new System.Windows.Forms.TextBox(); this.textZip = new System.Windows.Forms.TextBox(); this.textAddress2 = new System.Windows.Forms.TextBox(); this.textAddress = new System.Windows.Forms.TextBox(); this.textPhone = new OpenDental.ValidPhone(); this.label11 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.textFax = new OpenDental.ValidPhone(); this.label5 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.textNote = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.comboClinic = new OpenDental.UI.ComboBoxClinicPicker(); this.SuspendLayout(); // // butCancel // this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCancel.Location = new System.Drawing.Point(456, 286); this.butCancel.Name = "butCancel"; this.butCancel.Size = new System.Drawing.Size(75, 26); this.butCancel.TabIndex = 10; this.butCancel.Text = "&Cancel"; this.butCancel.Click += new System.EventHandler(this.butCancel_Click); // // butOK // this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butOK.Location = new System.Drawing.Point(365, 286); this.butOK.Name = "butOK"; this.butOK.Size = new System.Drawing.Size(75, 26); this.butOK.TabIndex = 9; this.butOK.Text = "&OK"; this.butOK.Click += new System.EventHandler(this.butOK_Click); // // label1 // this.label1.Location = new System.Drawing.Point(9, 21); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(148, 17); this.label1.TabIndex = 2; this.label1.Text = "Store Name"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textStoreName // this.textStoreName.Location = new System.Drawing.Point(160, 20); this.textStoreName.Name = "textStoreName"; this.textStoreName.Size = new System.Drawing.Size(291, 20); this.textStoreName.TabIndex = 0; // // butDelete // this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX; this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.butDelete.Location = new System.Drawing.Point(27, 286); this.butDelete.Name = "butDelete"; this.butDelete.Size = new System.Drawing.Size(81, 26); this.butDelete.TabIndex = 4; this.butDelete.Text = "Delete"; this.butDelete.Click += new System.EventHandler(this.butDelete_Click); // // textCity // this.textCity.Location = new System.Drawing.Point(160, 125); this.textCity.MaxLength = 255; this.textCity.Name = "textCity"; this.textCity.Size = new System.Drawing.Size(155, 20); this.textCity.TabIndex = 5; // // textState // this.textState.Location = new System.Drawing.Point(315, 125); this.textState.MaxLength = 255; this.textState.Name = "textState"; this.textState.Size = new System.Drawing.Size(65, 20); this.textState.TabIndex = 6; // // textZip // this.textZip.Location = new System.Drawing.Point(380, 125); this.textZip.MaxLength = 255; this.textZip.Name = "textZip"; this.textZip.Size = new System.Drawing.Size(71, 20); this.textZip.TabIndex = 7; // // textAddress2 // this.textAddress2.Location = new System.Drawing.Point(160, 104); this.textAddress2.MaxLength = 255; this.textAddress2.Name = "textAddress2"; this.textAddress2.Size = new System.Drawing.Size(291, 20); this.textAddress2.TabIndex = 4; // // textAddress // this.textAddress.Location = new System.Drawing.Point(160, 83); this.textAddress.MaxLength = 255; this.textAddress.Name = "textAddress"; this.textAddress.Size = new System.Drawing.Size(291, 20); this.textAddress.TabIndex = 3; // // textPhone // this.textPhone.Location = new System.Drawing.Point(160, 41); this.textPhone.MaxLength = 255; this.textPhone.Name = "textPhone"; this.textPhone.Size = new System.Drawing.Size(157, 20); this.textPhone.TabIndex = 1; // // label11 // this.label11.Location = new System.Drawing.Point(-5, 129); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(163, 15); this.label11.TabIndex = 105; this.label11.Text = "City, ST, Zip"; this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label4 // this.label4.Location = new System.Drawing.Point(7, 108); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(151, 17); this.label4.TabIndex = 103; this.label4.Text = "Address2"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label3 // this.label3.Location = new System.Drawing.Point(7, 85); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(151, 17); this.label3.TabIndex = 101; this.label3.Text = "Address"; this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label2 // this.label2.Location = new System.Drawing.Point(8, 44); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(151, 17); this.label2.TabIndex = 99; this.label2.Text = "Phone"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label6 // this.label6.Location = new System.Drawing.Point(320, 43); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(144, 18); this.label6.TabIndex = 110; this.label6.Text = "(###)###-####"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // textFax // this.textFax.Location = new System.Drawing.Point(160, 62); this.textFax.MaxLength = 255; this.textFax.Name = "textFax"; this.textFax.Size = new System.Drawing.Size(157, 20); this.textFax.TabIndex = 2; // // label5 // this.label5.Location = new System.Drawing.Point(8, 65); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(151, 17); this.label5.TabIndex = 112; this.label5.Text = "Fax"; this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label7 // this.label7.Location = new System.Drawing.Point(320, 64); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(144, 18); this.label7.TabIndex = 113; this.label7.Text = "(###)###-####"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // textNote // this.textNote.Location = new System.Drawing.Point(160, 168); this.textNote.MaxLength = 255; this.textNote.Multiline = true; this.textNote.Name = "textNote"; this.textNote.Size = new System.Drawing.Size(291, 107); this.textNote.TabIndex = 8; // // label8 // this.label8.Location = new System.Drawing.Point(7, 172); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(151, 17); this.label8.TabIndex = 115; this.label8.Text = "Note"; this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight; // // comboClinic // this.comboClinic.BackColor = System.Drawing.SystemColors.Control; this.comboClinic.IncludeAll = true; this.comboClinic.IncludeUnassigned = true; this.comboClinic.Location = new System.Drawing.Point(123, 146); this.comboClinic.Name = "comboClinic"; this.comboClinic.SelectionModeMulti = true; this.comboClinic.Size = new System.Drawing.Size(195, 21); this.comboClinic.TabIndex = 116; // // FormPharmacyEdit // this.ClientSize = new System.Drawing.Size(557, 330); this.Controls.Add(this.comboClinic); this.Controls.Add(this.textNote); this.Controls.Add(this.label8); this.Controls.Add(this.textFax); this.Controls.Add(this.label5); this.Controls.Add(this.label7); this.Controls.Add(this.textCity); this.Controls.Add(this.textState); this.Controls.Add(this.textZip); this.Controls.Add(this.textAddress2); this.Controls.Add(this.textAddress); this.Controls.Add(this.textPhone); this.Controls.Add(this.label11); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.butDelete); this.Controls.Add(this.textStoreName); this.Controls.Add(this.butOK); this.Controls.Add(this.butCancel); this.Controls.Add(this.label1); this.Controls.Add(this.label6); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormPharmacyEdit"; this.ShowInTaskbar = false; this.Text = "Edit Pharmacy"; this.Load += new System.EventHandler(this.FormPharmacyEdit_Load); 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLaboratoryEdit)); this.label8 = new System.Windows.Forms.Label(); this.textEmail = new System.Windows.Forms.TextBox(); this.textZip = new System.Windows.Forms.TextBox(); this.textState = new System.Windows.Forms.TextBox(); this.textCity = new System.Windows.Forms.TextBox(); this.label7 = new System.Windows.Forms.Label(); this.textAddress = new System.Windows.Forms.TextBox(); this.label6 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.comboSlip = new System.Windows.Forms.ComboBox(); this.label21 = new System.Windows.Forms.Label(); this.textNotes = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.textDescription = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.gridMain = new OpenDental.UI.ODGrid(); this.textWirelessPhone = new OpenDental.ValidPhone(); this.butDeleteTurnaround = new OpenDental.UI.Button(); this.butAdd = new OpenDental.UI.Button(); this.textPhone = new OpenDental.ValidPhone(); this.butDelete = new OpenDental.UI.Button(); this.butOK = new OpenDental.UI.Button(); this.butCancel = new OpenDental.UI.Button(); this.checkIsHidden = new System.Windows.Forms.CheckBox(); this.SuspendLayout(); // // label8 // this.label8.Location = new System.Drawing.Point(-1, 125); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(102, 17); this.label8.TabIndex = 142; this.label8.Text = "Email"; this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textEmail // this.textEmail.Location = new System.Drawing.Point(104, 122); this.textEmail.MaxLength = 255; this.textEmail.Name = "textEmail"; this.textEmail.Size = new System.Drawing.Size(275, 20); this.textEmail.TabIndex = 141; // // textZip // this.textZip.Location = new System.Drawing.Point(320, 99); this.textZip.MaxLength = 255; this.textZip.Name = "textZip"; this.textZip.Size = new System.Drawing.Size(82, 20); this.textZip.TabIndex = 140; // // textState // this.textState.Location = new System.Drawing.Point(267, 99); this.textState.MaxLength = 255; this.textState.Name = "textState"; this.textState.Size = new System.Drawing.Size(47, 20); this.textState.TabIndex = 139; // // textCity // this.textCity.Location = new System.Drawing.Point(104, 99); this.textCity.MaxLength = 255; this.textCity.Name = "textCity"; this.textCity.Size = new System.Drawing.Size(157, 20); this.textCity.TabIndex = 137; // // label7 // this.label7.Location = new System.Drawing.Point(1, 102); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(102, 17); this.label7.TabIndex = 138; this.label7.Text = "City, ST Zip"; this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textAddress // this.textAddress.Location = new System.Drawing.Point(104, 76); this.textAddress.MaxLength = 255; this.textAddress.Name = "textAddress"; this.textAddress.Size = new System.Drawing.Size(241, 20); this.textAddress.TabIndex = 135; // // label6 // this.label6.Location = new System.Drawing.Point(1, 79); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(102, 17); this.label6.TabIndex = 136; this.label6.Text = "Address"; this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label5 // this.label5.Location = new System.Drawing.Point(1, 56); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(102, 17); this.label5.TabIndex = 134; this.label5.Text = "Wireless Phone"; this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label4 // this.label4.Location = new System.Drawing.Point(-1, 285); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(102, 17); this.label4.TabIndex = 132; this.label4.Text = "Lab Slip"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; // // comboSlip // this.comboSlip.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSlip.Location = new System.Drawing.Point(104, 282); this.comboSlip.MaxDropDownItems = 30; this.comboSlip.Name = "comboSlip"; this.comboSlip.Size = new System.Drawing.Size(275, 21); this.comboSlip.TabIndex = 131; // // label21 // this.label21.Location = new System.Drawing.Point(382, 284); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(283, 16); this.label21.TabIndex = 130; this.label21.Text = "(custom lab slips may be added in Sheets)"; this.label21.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // textNotes // this.textNotes.Location = new System.Drawing.Point(104, 146); this.textNotes.MaxLength = 30000; this.textNotes.Multiline = true; this.textNotes.Name = "textNotes"; this.textNotes.Size = new System.Drawing.Size(388, 111); this.textNotes.TabIndex = 2; // // label3 // this.label3.Location = new System.Drawing.Point(0, 148); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(102, 17); this.label3.TabIndex = 101; this.label3.Text = "Notes"; this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight; // // label2 // this.label2.Location = new System.Drawing.Point(1, 33); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(102, 17); this.label2.TabIndex = 99; this.label2.Text = "Phone"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textDescription // this.textDescription.Location = new System.Drawing.Point(104, 7); this.textDescription.Name = "textDescription"; this.textDescription.Size = new System.Drawing.Size(241, 20); this.textDescription.TabIndex = 0; // // label1 // this.label1.Location = new System.Drawing.Point(2, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(99, 17); this.label1.TabIndex = 2; this.label1.Text = "Description"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // gridMain // this.gridMain.EditableEnterMovesDown = false; this.gridMain.Location = new System.Drawing.Point(104, 310); this.gridMain.Name = "gridMain"; this.gridMain.Size = new System.Drawing.Size(561, 261); this.gridMain.TabIndex = 128; this.gridMain.Title = "Turnaround Times"; this.gridMain.TranslationName = "TableLabTurnaround"; this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick); // // textWirelessPhone // this.textWirelessPhone.Location = new System.Drawing.Point(104, 53); this.textWirelessPhone.MaxLength = 255; this.textWirelessPhone.Name = "textWirelessPhone"; this.textWirelessPhone.Size = new System.Drawing.Size(157, 20); this.textWirelessPhone.TabIndex = 133; // // butDeleteTurnaround // this.butDeleteTurnaround.Image = global::OpenDental.Properties.Resources.deleteX; this.butDeleteTurnaround.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.butDeleteTurnaround.Location = new System.Drawing.Point(17, 342); this.butDeleteTurnaround.Name = "butDeleteTurnaround"; this.butDeleteTurnaround.Size = new System.Drawing.Size(81, 24); this.butDeleteTurnaround.TabIndex = 129; this.butDeleteTurnaround.Text = "Delete"; this.butDeleteTurnaround.Click += new System.EventHandler(this.butDeleteTurnaround_Click); // // butAdd // this.butAdd.Image = global::OpenDental.Properties.Resources.Add; this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.butAdd.Location = new System.Drawing.Point(17, 310); this.butAdd.Name = "butAdd"; this.butAdd.Size = new System.Drawing.Size(81, 24); this.butAdd.TabIndex = 127; this.butAdd.Text = "Add"; this.butAdd.Click += new System.EventHandler(this.butAdd_Click); // // textPhone // this.textPhone.Location = new System.Drawing.Point(104, 30); this.textPhone.MaxLength = 255; this.textPhone.Name = "textPhone"; this.textPhone.Size = new System.Drawing.Size(157, 20); this.textPhone.TabIndex = 1; // // butDelete // this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.butDelete.Image = global::OpenDental.Properties.Resources.deleteX; this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.butDelete.Location = new System.Drawing.Point(17, 594); this.butDelete.Name = "butDelete"; this.butDelete.Size = new System.Drawing.Size(81, 24); this.butDelete.TabIndex = 4; this.butDelete.Text = "Delete"; this.butDelete.Click += new System.EventHandler(this.butDelete_Click); // // butOK // this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butOK.Location = new System.Drawing.Point(606, 594); this.butOK.Name = "butOK"; this.butOK.Size = new System.Drawing.Size(75, 24); this.butOK.TabIndex = 8; this.butOK.Text = "&OK"; this.butOK.Click += new System.EventHandler(this.butOK_Click); // // butCancel // this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCancel.Location = new System.Drawing.Point(697, 594); this.butCancel.Name = "butCancel"; this.butCancel.Size = new System.Drawing.Size(75, 24); this.butCancel.TabIndex = 9; this.butCancel.Text = "&Cancel"; this.butCancel.Click += new System.EventHandler(this.butCancel_Click); // // checkIsHidden // this.checkIsHidden.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.checkIsHidden.Location = new System.Drawing.Point(14, 262); this.checkIsHidden.Name = "checkIsHidden"; this.checkIsHidden.Size = new System.Drawing.Size(104, 17); this.checkIsHidden.TabIndex = 143; this.checkIsHidden.Text = "Is Hidden"; this.checkIsHidden.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.checkIsHidden.UseVisualStyleBackColor = true; // // FormLaboratoryEdit // this.ClientSize = new System.Drawing.Size(798, 638); this.Controls.Add(this.checkIsHidden); this.Controls.Add(this.label8); this.Controls.Add(this.textEmail); this.Controls.Add(this.textZip); this.Controls.Add(this.textState); this.Controls.Add(this.textCity); this.Controls.Add(this.label7); this.Controls.Add(this.textAddress); this.Controls.Add(this.label6); this.Controls.Add(this.textWirelessPhone); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.comboSlip); this.Controls.Add(this.label21); this.Controls.Add(this.butDeleteTurnaround); this.Controls.Add(this.gridMain); this.Controls.Add(this.butAdd); this.Controls.Add(this.textNotes); this.Controls.Add(this.textPhone); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.butDelete); this.Controls.Add(this.textDescription); this.Controls.Add(this.butOK); this.Controls.Add(this.butCancel); this.Controls.Add(this.label1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormLaboratoryEdit"; this.ShowInTaskbar = false; this.Text = "Edit Laboratory"; this.Load += new System.EventHandler(this.FormLaboratoryEdit_Load); this.ResumeLayout(false); this.PerformLayout(); }