示例#1
0
        ///<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;
        }
示例#2
0
 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();
 }
示例#3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormSiteEdit));
     this.butCancel         = new OpenDental.UI.Button();
     this.butOK             = new OpenDental.UI.Button();
     this.label1            = new System.Windows.Forms.Label();
     this.textDescription   = new System.Windows.Forms.TextBox();
     this.butDelete         = new OpenDental.UI.Button();
     this.textNote          = new System.Windows.Forms.TextBox();
     this.label3            = new System.Windows.Forms.Label();
     this.butEditZip        = new OpenDental.UI.Button();
     this.textZip           = new System.Windows.Forms.TextBox();
     this.comboZip          = new System.Windows.Forms.ComboBox();
     this.textState         = new System.Windows.Forms.TextBox();
     this.labelST           = new System.Windows.Forms.Label();
     this.textAddress       = new System.Windows.Forms.TextBox();
     this.labelAddress2     = new System.Windows.Forms.Label();
     this.labelCity         = new System.Windows.Forms.Label();
     this.textAddress2      = new System.Windows.Forms.TextBox();
     this.labelZip          = new System.Windows.Forms.Label();
     this.textCity          = new System.Windows.Forms.TextBox();
     this.labelAddress      = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.comboPlaceService = new System.Windows.Forms.ComboBox();
     this.labelPriProv      = new System.Windows.Forms.Label();
     this.comboProv         = new OpenDental.UI.ComboBoxPlus();
     this.butSiteLink       = new OpenDental.UI.Button();
     this.butPickProvider   = new OpenDental.UI.Button();
     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(502, 363);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex = 13;
     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(421, 363);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 12;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(16, 15);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(148, 17);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Description";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDescription
     //
     this.textDescription.Location = new System.Drawing.Point(165, 15);
     this.textDescription.Name     = "textDescription";
     this.textDescription.Size     = new System.Drawing.Size(254, 20);
     this.textDescription.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(12, 363);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(81, 26);
     this.butDelete.TabIndex   = 14;
     this.butDelete.Text       = "Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // textNote
     //
     this.textNote.Location  = new System.Drawing.Point(165, 214);
     this.textNote.MaxLength = 255;
     this.textNote.Multiline = true;
     this.textNote.Name      = "textNote";
     this.textNote.Size      = new System.Drawing.Size(254, 144);
     this.textNote.TabIndex  = 11;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(19, 216);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(144, 17);
     this.label3.TabIndex  = 101;
     this.label3.Text      = "Note";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butEditZip
     //
     this.butEditZip.Location = new System.Drawing.Point(273, 188);
     this.butEditZip.Name     = "butEditZip";
     this.butEditZip.Size     = new System.Drawing.Size(73, 22);
     this.butEditZip.TabIndex = 10;
     this.butEditZip.Text     = "&Edit Zip";
     this.butEditZip.Click   += new System.EventHandler(this.butEditZip_Click);
     //
     // textZip
     //
     this.textZip.Location     = new System.Drawing.Point(165, 189);
     this.textZip.MaxLength    = 100;
     this.textZip.Name         = "textZip";
     this.textZip.Size         = new System.Drawing.Size(87, 20);
     this.textZip.TabIndex     = 9;
     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(165, 189);
     this.comboZip.MaxDropDownItems          = 20;
     this.comboZip.Name                      = "comboZip";
     this.comboZip.Size                      = new System.Drawing.Size(106, 21);
     this.comboZip.TabIndex                  = 15;
     this.comboZip.TabStop                   = false;
     this.comboZip.SelectionChangeCommitted += new System.EventHandler(this.comboZip_SelectionChangeCommitted);
     //
     // textState
     //
     this.textState.Location  = new System.Drawing.Point(165, 165);
     this.textState.MaxLength = 100;
     this.textState.Name      = "textState";
     this.textState.Size      = new System.Drawing.Size(61, 20);
     this.textState.TabIndex  = 8;
     //
     // labelST
     //
     this.labelST.Location  = new System.Drawing.Point(19, 169);
     this.labelST.Name      = "labelST";
     this.labelST.Size      = new System.Drawing.Size(145, 14);
     this.labelST.TabIndex  = 102;
     this.labelST.Text      = "ST";
     this.labelST.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textAddress
     //
     this.textAddress.Location  = new System.Drawing.Point(165, 93);
     this.textAddress.MaxLength = 100;
     this.textAddress.Name      = "textAddress";
     this.textAddress.Size      = new System.Drawing.Size(254, 20);
     this.textAddress.TabIndex  = 5;
     //
     // labelAddress2
     //
     this.labelAddress2.Location  = new System.Drawing.Point(19, 121);
     this.labelAddress2.Name      = "labelAddress2";
     this.labelAddress2.Size      = new System.Drawing.Size(145, 14);
     this.labelAddress2.TabIndex  = 103;
     this.labelAddress2.Text      = "Address2";
     this.labelAddress2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // labelCity
     //
     this.labelCity.Location  = new System.Drawing.Point(19, 145);
     this.labelCity.Name      = "labelCity";
     this.labelCity.Size      = new System.Drawing.Size(145, 14);
     this.labelCity.TabIndex  = 104;
     this.labelCity.Text      = "City";
     this.labelCity.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textAddress2
     //
     this.textAddress2.Location  = new System.Drawing.Point(165, 117);
     this.textAddress2.MaxLength = 100;
     this.textAddress2.Name      = "textAddress2";
     this.textAddress2.Size      = new System.Drawing.Size(254, 20);
     this.textAddress2.TabIndex  = 6;
     //
     // labelZip
     //
     this.labelZip.Location  = new System.Drawing.Point(19, 193);
     this.labelZip.Name      = "labelZip";
     this.labelZip.Size      = new System.Drawing.Size(145, 14);
     this.labelZip.TabIndex  = 105;
     this.labelZip.Text      = "Zip";
     this.labelZip.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textCity
     //
     this.textCity.Location  = new System.Drawing.Point(165, 141);
     this.textCity.MaxLength = 100;
     this.textCity.Name      = "textCity";
     this.textCity.Size      = new System.Drawing.Size(254, 20);
     this.textCity.TabIndex  = 7;
     //
     // labelAddress
     //
     this.labelAddress.Location  = new System.Drawing.Point(19, 97);
     this.labelAddress.Name      = "labelAddress";
     this.labelAddress.Size      = new System.Drawing.Size(145, 14);
     this.labelAddress.TabIndex  = 106;
     this.labelAddress.Text      = "Address";
     this.labelAddress.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(16, 40);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(148, 17);
     this.label2.TabIndex  = 118;
     this.label2.Text      = "Place of Service";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboPlaceService
     //
     this.comboPlaceService.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPlaceService.Location         = new System.Drawing.Point(165, 39);
     this.comboPlaceService.MaxDropDownItems = 30;
     this.comboPlaceService.Name             = "comboPlaceService";
     this.comboPlaceService.Size             = new System.Drawing.Size(254, 21);
     this.comboPlaceService.TabIndex         = 1;
     //
     // labelPriProv
     //
     this.labelPriProv.Location  = new System.Drawing.Point(19, 70);
     this.labelPriProv.Name      = "labelPriProv";
     this.labelPriProv.Size      = new System.Drawing.Size(145, 14);
     this.labelPriProv.TabIndex  = 119;
     this.labelPriProv.Text      = "Provider";
     this.labelPriProv.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboProv
     //
     this.comboProv.Location = new System.Drawing.Point(165, 66);
     this.comboProv.Name     = "comboProv";
     this.comboProv.Size     = new System.Drawing.Size(230, 21);
     this.comboProv.TabIndex = 2;
     //
     // butSiteLink
     //
     this.butSiteLink.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butSiteLink.Location = new System.Drawing.Point(257, 363);
     this.butSiteLink.Name     = "butSiteLink";
     this.butSiteLink.Size     = new System.Drawing.Size(75, 26);
     this.butSiteLink.TabIndex = 120;
     this.butSiteLink.Text     = "Site Link";
     this.butSiteLink.Click   += new System.EventHandler(this.butSiteLink_Click);
     //
     // butPickProvider
     //
     this.butPickProvider.Location = new System.Drawing.Point(399, 65);
     this.butPickProvider.Name     = "butPickProvider";
     this.butPickProvider.Size     = new System.Drawing.Size(20, 22);
     this.butPickProvider.TabIndex = 121;
     this.butPickProvider.Text     = "...";
     this.butPickProvider.Click   += new System.EventHandler(this.butPickProvider_Click);
     //
     // FormSiteEdit
     //
     this.ClientSize = new System.Drawing.Size(589, 401);
     this.Controls.Add(this.butPickProvider);
     this.Controls.Add(this.butSiteLink);
     this.Controls.Add(this.labelPriProv);
     this.Controls.Add(this.comboProv);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.comboPlaceService);
     this.Controls.Add(this.butEditZip);
     this.Controls.Add(this.textZip);
     this.Controls.Add(this.comboZip);
     this.Controls.Add(this.textState);
     this.Controls.Add(this.labelST);
     this.Controls.Add(this.textAddress);
     this.Controls.Add(this.labelAddress2);
     this.Controls.Add(this.labelCity);
     this.Controls.Add(this.textAddress2);
     this.Controls.Add(this.labelZip);
     this.Controls.Add(this.textCity);
     this.Controls.Add(this.labelAddress);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.label3);
     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          = "FormSiteEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Site";
     this.Load         += new System.EventHandler(this.FormSiteEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLetterMerges));
     this.butCancel          = new OpenDental.UI.Button();
     this.listCategories     = new System.Windows.Forms.ListBox();
     this.label1             = new System.Windows.Forms.Label();
     this.butAdd             = new OpenDental.UI.Button();
     this.pd2                = new System.Drawing.Printing.PrintDocument();
     this.butMerge           = new OpenDental.UI.Button();
     this.label3             = new System.Windows.Forms.Label();
     this.listLetters        = new System.Windows.Forms.ListBox();
     this.butEditCats        = new OpenDental.UI.Button();
     this.butCreateData      = new OpenDental.UI.Button();
     this.butEditTemplate    = new OpenDental.UI.Button();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.comboImageCategory = new UI.ComboBoxPlus();
     this.butViewData        = new OpenDental.UI.Button();
     this.butPreview         = new OpenDental.UI.Button();
     this.labelImageCategory = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     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(462, 405);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(79, 24);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Close";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // listCategories
     //
     this.listCategories.Location = new System.Drawing.Point(15, 33);
     this.listCategories.Name     = "listCategories";
     this.listCategories.Size     = new System.Drawing.Size(164, 368);
     this.listCategories.TabIndex = 2;
     this.listCategories.Click   += new System.EventHandler(this.listCategories_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(14, 14);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(124, 14);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Categories";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butAdd
     //
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(206, 408);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(79, 24);
     this.butAdd.TabIndex   = 7;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // butMerge
     //
     this.butMerge.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butMerge.Location   = new System.Drawing.Point(38, 84);
     this.butMerge.Name       = "butMerge";
     this.butMerge.Size       = new System.Drawing.Size(79, 24);
     this.butMerge.TabIndex   = 17;
     this.butMerge.Text       = "Print";
     this.butMerge.Click     += new System.EventHandler(this.butPrint_Click);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(205, 14);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(124, 14);
     this.label3.TabIndex  = 19;
     this.label3.Text      = "Letters";
     this.label3.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listLetters
     //
     this.listLetters.Location     = new System.Drawing.Point(206, 33);
     this.listLetters.Name         = "listLetters";
     this.listLetters.Size         = new System.Drawing.Size(164, 368);
     this.listLetters.TabIndex     = 18;
     this.listLetters.DoubleClick += new System.EventHandler(this.listLetters_DoubleClick);
     this.listLetters.Click       += new System.EventHandler(this.listLetters_Click);
     //
     // butEditCats
     //
     this.butEditCats.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEditCats.Location   = new System.Drawing.Point(14, 408);
     this.butEditCats.Name       = "butEditCats";
     this.butEditCats.Size       = new System.Drawing.Size(98, 24);
     this.butEditCats.TabIndex   = 20;
     this.butEditCats.Text       = "Edit Categories";
     this.butEditCats.Click     += new System.EventHandler(this.butEditCats_Click);
     //
     // butCreateData
     //
     this.butCreateData.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butCreateData.Location   = new System.Drawing.Point(38, 22);
     this.butCreateData.Name       = "butCreateData";
     this.butCreateData.Size       = new System.Drawing.Size(79, 24);
     this.butCreateData.TabIndex   = 21;
     this.butCreateData.Text       = "Data File";
     this.butCreateData.Click     += new System.EventHandler(this.butCreateData_Click);
     //
     // butEditTemplate
     //
     this.butEditTemplate.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butEditTemplate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEditTemplate.Location   = new System.Drawing.Point(449, 348);
     this.butEditTemplate.Name       = "butEditTemplate";
     this.butEditTemplate.Size       = new System.Drawing.Size(92, 24);
     this.butEditTemplate.TabIndex   = 22;
     this.butEditTemplate.Text       = "Edit Template";
     this.butEditTemplate.Click     += new System.EventHandler(this.butEditTemplate_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboImageCategory);
     this.groupBox1.Controls.Add(this.labelImageCategory);
     this.groupBox1.Controls.Add(this.butViewData);
     this.groupBox1.Controls.Add(this.butPreview);
     this.groupBox1.Controls.Add(this.butMerge);
     this.groupBox1.Controls.Add(this.butCreateData);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(415, 128);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(158, 197);
     this.groupBox1.TabIndex  = 23;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Create";
     //
     // comboImageCategory
     //
     this.comboImageCategory.Location = new System.Drawing.Point(15, 164);
     this.comboImageCategory.Name     = "comboImageCategory";
     this.comboImageCategory.Size     = new System.Drawing.Size(137, 21);
     this.comboImageCategory.TabIndex = 37;
     //
     // butViewData
     //
     this.butViewData.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butViewData.Location   = new System.Drawing.Point(38, 53);
     this.butViewData.Name       = "butViewData";
     this.butViewData.Size       = new System.Drawing.Size(79, 24);
     this.butViewData.TabIndex   = 23;
     this.butViewData.Text       = "View Data";
     this.butViewData.Click     += new System.EventHandler(this.butViewData_Click);
     //
     // butPreview
     //
     this.butPreview.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPreview.Location   = new System.Drawing.Point(38, 115);
     this.butPreview.Name       = "butPreview";
     this.butPreview.Size       = new System.Drawing.Size(79, 24);
     this.butPreview.TabIndex   = 22;
     this.butPreview.Text       = "Preview";
     this.butPreview.Click     += new System.EventHandler(this.butPreview_Click);
     //
     // labelImageCategory
     //
     this.labelImageCategory.Location  = new System.Drawing.Point(13, 147);
     this.labelImageCategory.Name      = "labelImageCategory";
     this.labelImageCategory.Size      = new System.Drawing.Size(124, 14);
     this.labelImageCategory.TabIndex  = 38;
     this.labelImageCategory.Text      = "Image Folder";
     this.labelImageCategory.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // FormLetterMerges
     //
     this.ClientSize = new System.Drawing.Size(579, 446);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butEditTemplate);
     this.Controls.Add(this.butEditCats);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.listLetters);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listCategories);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butAdd);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormLetterMerges";
     this.ShowInTaskbar = false;
     this.Text          = "Letter Merge";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormLetterMerges_Closing);
     this.Load         += new System.EventHandler(this.FormLetterMerges_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLetterMergeEdit));
     this.butCancel          = new OpenDental.UI.Button();
     this.butOK              = new OpenDental.UI.Button();
     this.label2             = new System.Windows.Forms.Label();
     this.textDescription    = new System.Windows.Forms.TextBox();
     this.textTemplateName   = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.textDataFileName   = new System.Windows.Forms.TextBox();
     this.label3             = new System.Windows.Forms.Label();
     this.comboCategory      = new System.Windows.Forms.ComboBox();
     this.label4             = new System.Windows.Forms.Label();
     this.textPath           = new System.Windows.Forms.TextBox();
     this.label5             = new System.Windows.Forms.Label();
     this.butEditPaths       = new OpenDental.UI.Button();
     this.butDelete          = new OpenDental.UI.Button();
     this.labelPatient       = new System.Windows.Forms.Label();
     this.listPatSelect      = new System.Windows.Forms.ListBox();
     this.textBox1           = new System.Windows.Forms.TextBox();
     this.butBrowse          = new OpenDental.UI.Button();
     this.openFileDlg        = new System.Windows.Forms.OpenFileDialog();
     this.labelReferredFrom  = new System.Windows.Forms.Label();
     this.listReferral       = new System.Windows.Forms.ListBox();
     this.butNew             = new OpenDental.UI.Button();
     this.label6             = new System.Windows.Forms.Label();
     this.listOther          = new System.Windows.Forms.ListBox();
     this.labelImageCategory = new System.Windows.Forms.Label();
     this.comboImageFolder   = new UI.ComboBoxPlus();
     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(799, 649);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 3;
     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(799, 608);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 2;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(20, 11);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(250, 14);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Description";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDescription
     //
     this.textDescription.Location = new System.Drawing.Point(272, 7);
     this.textDescription.Name     = "textDescription";
     this.textDescription.Size     = new System.Drawing.Size(221, 20);
     this.textDescription.TabIndex = 0;
     //
     // textTemplateName
     //
     this.textTemplateName.Location = new System.Drawing.Point(272, 54);
     this.textTemplateName.Name     = "textTemplateName";
     this.textTemplateName.Size     = new System.Drawing.Size(346, 20);
     this.textTemplateName.TabIndex = 4;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(20, 58);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(250, 14);
     this.label1.TabIndex  = 5;
     this.label1.Text      = "Template File Name (eg MyTemplate.doc)";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDataFileName
     //
     this.textDataFileName.Location = new System.Drawing.Point(272, 77);
     this.textDataFileName.Name     = "textDataFileName";
     this.textDataFileName.Size     = new System.Drawing.Size(346, 20);
     this.textDataFileName.TabIndex = 6;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(20, 82);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(250, 14);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Datafile Name (eg MyTemplate.txt)";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboCategory
     //
     this.comboCategory.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboCategory.Location         = new System.Drawing.Point(272, 100);
     this.comboCategory.MaxDropDownItems = 30;
     this.comboCategory.Name             = "comboCategory";
     this.comboCategory.Size             = new System.Drawing.Size(222, 21);
     this.comboCategory.TabIndex         = 8;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(20, 104);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(250, 14);
     this.label4.TabIndex  = 9;
     this.label4.Text      = "Category";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textPath
     //
     this.textPath.Location = new System.Drawing.Point(272, 30);
     this.textPath.Name     = "textPath";
     this.textPath.ReadOnly = true;
     this.textPath.Size     = new System.Drawing.Size(346, 20);
     this.textPath.TabIndex = 23;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(21, 34);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(250, 14);
     this.label5.TabIndex  = 24;
     this.label5.Text      = "Letter Merge Path";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butEditPaths
     //
     this.butEditPaths.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEditPaths.Location   = new System.Drawing.Point(622, 27);
     this.butEditPaths.Name       = "butEditPaths";
     this.butEditPaths.Size       = new System.Drawing.Size(87, 25);
     this.butEditPaths.TabIndex   = 25;
     this.butEditPaths.Text       = "Edit Paths";
     this.butEditPaths.Click     += new System.EventHandler(this.butEditPaths_Click);
     //
     // butDelete
     //
     this.butDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location   = new System.Drawing.Point(12, 649);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(87, 26);
     this.butDelete.TabIndex   = 26;
     this.butDelete.Text       = "Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // labelPatient
     //
     this.labelPatient.Location  = new System.Drawing.Point(12, 142);
     this.labelPatient.Name      = "labelPatient";
     this.labelPatient.Size      = new System.Drawing.Size(170, 14);
     this.labelPatient.TabIndex  = 28;
     this.labelPatient.Text      = "Patient Fields";
     this.labelPatient.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listPatSelect
     //
     this.listPatSelect.Location      = new System.Drawing.Point(12, 160);
     this.listPatSelect.Name          = "listPatSelect";
     this.listPatSelect.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listPatSelect.Size          = new System.Drawing.Size(170, 472);
     this.listPatSelect.TabIndex      = 27;
     //
     // textBox1
     //
     this.textBox1.BackColor   = System.Drawing.SystemColors.Control;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Location    = new System.Drawing.Point(190, 158);
     this.textBox1.Multiline   = true;
     this.textBox1.Name        = "textBox1";
     this.textBox1.Size        = new System.Drawing.Size(622, 23);
     this.textBox1.TabIndex    = 29;
     this.textBox1.Text        = "Hint: Use the Ctrl key when clicking.  Also you can simply drag the pointer acros" +
                                 "s muliple rows to select quickly.";
     //
     // butBrowse
     //
     this.butBrowse.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butBrowse.Location   = new System.Drawing.Point(622, 53);
     this.butBrowse.Name       = "butBrowse";
     this.butBrowse.Size       = new System.Drawing.Size(87, 25);
     this.butBrowse.TabIndex   = 30;
     this.butBrowse.Text       = "Browse";
     this.butBrowse.Click     += new System.EventHandler(this.butBrowse_Click);
     //
     // labelReferredFrom
     //
     this.labelReferredFrom.Location  = new System.Drawing.Point(206, 182);
     this.labelReferredFrom.Name      = "labelReferredFrom";
     this.labelReferredFrom.Size      = new System.Drawing.Size(170, 14);
     this.labelReferredFrom.TabIndex  = 32;
     this.labelReferredFrom.Text      = "Referred From";
     this.labelReferredFrom.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listReferral
     //
     this.listReferral.Location      = new System.Drawing.Point(206, 199);
     this.listReferral.Name          = "listReferral";
     this.listReferral.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listReferral.Size          = new System.Drawing.Size(170, 433);
     this.listReferral.TabIndex      = 31;
     //
     // butNew
     //
     this.butNew.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butNew.Location   = new System.Drawing.Point(714, 53);
     this.butNew.Name       = "butNew";
     this.butNew.Size       = new System.Drawing.Size(68, 25);
     this.butNew.TabIndex   = 33;
     this.butNew.Text       = "New";
     this.butNew.Click     += new System.EventHandler(this.butNew_Click);
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(400, 182);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(170, 14);
     this.label6.TabIndex  = 35;
     this.label6.Text      = "Other";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listOther
     //
     this.listOther.Location      = new System.Drawing.Point(400, 199);
     this.listOther.Name          = "listOther";
     this.listOther.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listOther.Size          = new System.Drawing.Size(170, 433);
     this.listOther.TabIndex      = 34;
     //
     // labelImageCategory
     //
     this.labelImageCategory.Location  = new System.Drawing.Point(20, 128);
     this.labelImageCategory.Name      = "labelImageCategory";
     this.labelImageCategory.Size      = new System.Drawing.Size(250, 14);
     this.labelImageCategory.TabIndex  = 37;
     this.labelImageCategory.Text      = "Save to Image Folder";
     this.labelImageCategory.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboImageCategory
     //
     this.comboImageFolder.Location = new System.Drawing.Point(272, 124);
     this.comboImageFolder.Name     = "comboImageCategory";
     this.comboImageFolder.Size     = new System.Drawing.Size(222, 21);
     this.comboImageFolder.TabIndex = 36;
     //
     // FormLetterMergeEdit
     //
     this.ClientSize = new System.Drawing.Size(894, 683);
     this.Controls.Add(this.labelImageCategory);
     this.Controls.Add(this.comboImageFolder);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.listOther);
     this.Controls.Add(this.butNew);
     this.Controls.Add(this.labelReferredFrom);
     this.Controls.Add(this.listReferral);
     this.Controls.Add(this.butBrowse);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.labelPatient);
     this.Controls.Add(this.listPatSelect);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.butEditPaths);
     this.Controls.Add(this.textPath);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.comboCategory);
     this.Controls.Add(this.textDataFileName);
     this.Controls.Add(this.textTemplateName);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormLetterMergeEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Letter Merge";
     this.Load         += new System.EventHandler(this.FormLetterMergeEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormOperatoryEdit));
     this.labelApptType       = new System.Windows.Forms.Label();
     this.butPickHyg          = new OpenDental.UI.Button();
     this.butPickProv         = new OpenDental.UI.Button();
     this.label4              = new System.Windows.Forms.Label();
     this.checkIsWebSched     = new System.Windows.Forms.CheckBox();
     this.comboClinic         = new OpenDental.UI.ComboBoxClinicPicker();
     this.label3              = new System.Windows.Forms.Label();
     this.label9              = new System.Windows.Forms.Label();
     this.checkSetProspective = new System.Windows.Forms.CheckBox();
     this.checkIsHygiene      = new System.Windows.Forms.CheckBox();
     this.label8              = new System.Windows.Forms.Label();
     this.comboHyg            = new OpenDental.UI.ComboBoxPlus();
     this.comboProv           = new OpenDental.UI.ComboBoxPlus();
     this.label6              = new System.Windows.Forms.Label();
     this.label7              = new System.Windows.Forms.Label();
     this.checkIsHidden       = new System.Windows.Forms.CheckBox();
     this.textAbbrev          = new System.Windows.Forms.TextBox();
     this.label2              = new System.Windows.Forms.Label();
     this.textOpName          = new System.Windows.Forms.TextBox();
     this.butOK                 = new OpenDental.UI.Button();
     this.butCancel             = new OpenDental.UI.Button();
     this.label1                = new System.Windows.Forms.Label();
     this.groupBoxApptType      = new System.Windows.Forms.GroupBox();
     this.textWSNPAApptTypes    = new System.Windows.Forms.TextBox();
     this.butWSNPAPickApptTypes = new OpenDental.UI.Button();
     this.label10               = new System.Windows.Forms.Label();
     this.butUpdateProvs        = new OpenDental.UI.Button();
     this.label5                = new System.Windows.Forms.Label();
     this.label11               = new System.Windows.Forms.Label();
     this.groupBoxApptType.SuspendLayout();
     this.SuspendLayout();
     //
     // labelApptType
     //
     this.labelApptType.Location  = new System.Drawing.Point(16, 42);
     this.labelApptType.Name      = "labelApptType";
     this.labelApptType.Size      = new System.Drawing.Size(117, 17);
     this.labelApptType.TabIndex  = 126;
     this.labelApptType.Text      = "New Pat Appt Types";
     this.labelApptType.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butPickHyg
     //
     this.butPickHyg.Location = new System.Drawing.Point(412, 123);
     this.butPickHyg.Name     = "butPickHyg";
     this.butPickHyg.Size     = new System.Drawing.Size(23, 21);
     this.butPickHyg.TabIndex = 123;
     this.butPickHyg.Text     = "...";
     this.butPickHyg.Click   += new System.EventHandler(this.butPickHyg_Click);
     //
     // butPickProv
     //
     this.butPickProv.Location = new System.Drawing.Point(412, 102);
     this.butPickProv.Name     = "butPickProv";
     this.butPickProv.Size     = new System.Drawing.Size(23, 21);
     this.butPickProv.TabIndex = 122;
     this.butPickProv.Text     = "...";
     this.butPickProv.Click   += new System.EventHandler(this.butPickProv_Click);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(151, 20);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(358, 16);
     this.label4.TabIndex = 120;
     this.label4.Text     = "This operatory will be available for Web Sched recall appointments.";
     //
     // checkIsWebSched
     //
     this.checkIsWebSched.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsWebSched.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkIsWebSched.Location   = new System.Drawing.Point(11, 19);
     this.checkIsWebSched.Name       = "checkIsWebSched";
     this.checkIsWebSched.Size       = new System.Drawing.Size(135, 16);
     this.checkIsWebSched.TabIndex   = 119;
     this.checkIsWebSched.Text       = "Is Recall";
     this.checkIsWebSched.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboClinic
     //
     this.comboClinic.HqDescription     = "None";
     this.comboClinic.IncludeUnassigned = true;
     this.comboClinic.Location          = new System.Drawing.Point(123, 81);
     this.comboClinic.Name     = "comboClinic";
     this.comboClinic.Size     = new System.Drawing.Size(289, 21);
     this.comboClinic.TabIndex = 3;
     this.comboClinic.SelectionChangeCommitted += new System.EventHandler(this.ComboClinic_SelectionChangeCommitted);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(178, 169);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(363, 16);
     this.label3.TabIndex = 117;
     this.label3.Text     = "Change status of patients in this operatory to prospective.";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(178, 150);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(363, 16);
     this.label9.TabIndex = 117;
     this.label9.Text     = "The hygienist will be considered the main provider for this op.";
     //
     // checkSetProspective
     //
     this.checkSetProspective.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkSetProspective.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkSetProspective.Location   = new System.Drawing.Point(69, 168);
     this.checkSetProspective.Name       = "checkSetProspective";
     this.checkSetProspective.Size       = new System.Drawing.Size(104, 16);
     this.checkSetProspective.TabIndex   = 7;
     this.checkSetProspective.Text       = "Set Prospective";
     this.checkSetProspective.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkIsHygiene
     //
     this.checkIsHygiene.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsHygiene.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkIsHygiene.Location   = new System.Drawing.Point(69, 149);
     this.checkIsHygiene.Name       = "checkIsHygiene";
     this.checkIsHygiene.Size       = new System.Drawing.Size(104, 16);
     this.checkIsHygiene.TabIndex   = 6;
     this.checkIsHygiene.Text       = "Is Hygiene";
     this.checkIsHygiene.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(178, 64);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(316, 16);
     this.label8.TabIndex = 115;
     this.label8.Text     = "(because you can\'t delete an operatory)";
     //
     // comboHyg
     //
     this.comboHyg.Location = new System.Drawing.Point(160, 123);
     this.comboHyg.Name     = "comboHyg";
     this.comboHyg.Size     = new System.Drawing.Size(252, 21);
     this.comboHyg.TabIndex = 5;
     //
     // comboProv
     //
     this.comboProv.Location = new System.Drawing.Point(160, 102);
     this.comboProv.Name     = "comboProv";
     this.comboProv.Size     = new System.Drawing.Size(252, 21);
     this.comboProv.TabIndex = 4;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(36, 125);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(123, 16);
     this.label6.TabIndex  = 112;
     this.label6.Text      = "Hygienist";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(25, 104);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(134, 16);
     this.label7.TabIndex  = 111;
     this.label7.Text      = "Provider";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkIsHidden
     //
     this.checkIsHidden.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsHidden.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkIsHidden.Location   = new System.Drawing.Point(69, 63);
     this.checkIsHidden.Name       = "checkIsHidden";
     this.checkIsHidden.Size       = new System.Drawing.Size(104, 16);
     this.checkIsHidden.TabIndex   = 2;
     this.checkIsHidden.Text       = "Is Hidden";
     this.checkIsHidden.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textAbbrev
     //
     this.textAbbrev.Location  = new System.Drawing.Point(160, 40);
     this.textAbbrev.MaxLength = 5;
     this.textAbbrev.Name      = "textAbbrev";
     this.textAbbrev.Size      = new System.Drawing.Size(78, 20);
     this.textAbbrev.TabIndex  = 1;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 43);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(151, 17);
     this.label2.TabIndex  = 99;
     this.label2.Text      = "Abbrev (max 5 char)";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textOpName
     //
     this.textOpName.Location  = new System.Drawing.Point(160, 20);
     this.textOpName.MaxLength = 255;
     this.textOpName.Name      = "textOpName";
     this.textOpName.Size      = new System.Drawing.Size(252, 20);
     this.textOpName.TabIndex  = 0;
     //
     // 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(396, 354);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     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(487, 354);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex = 9;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_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      = "Op Name";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBoxApptType
     //
     this.groupBoxApptType.Controls.Add(this.textWSNPAApptTypes);
     this.groupBoxApptType.Controls.Add(this.butWSNPAPickApptTypes);
     this.groupBoxApptType.Controls.Add(this.label10);
     this.groupBoxApptType.Controls.Add(this.labelApptType);
     this.groupBoxApptType.Controls.Add(this.label4);
     this.groupBoxApptType.Controls.Add(this.checkIsWebSched);
     this.groupBoxApptType.Location = new System.Drawing.Point(26, 190);
     this.groupBoxApptType.Name     = "groupBoxApptType";
     this.groupBoxApptType.Size     = new System.Drawing.Size(515, 100);
     this.groupBoxApptType.TabIndex = 128;
     this.groupBoxApptType.TabStop  = false;
     this.groupBoxApptType.Text     = "Web Sched Settings";
     //
     // textWSNPAApptTypes
     //
     this.textWSNPAApptTypes.Location  = new System.Drawing.Point(134, 41);
     this.textWSNPAApptTypes.MaxLength = 255;
     this.textWSNPAApptTypes.Name      = "textWSNPAApptTypes";
     this.textWSNPAApptTypes.ReadOnly  = true;
     this.textWSNPAApptTypes.Size      = new System.Drawing.Size(252, 20);
     this.textWSNPAApptTypes.TabIndex  = 129;
     //
     // butWSNPAPickApptTypes
     //
     this.butWSNPAPickApptTypes.Location = new System.Drawing.Point(386, 40);
     this.butWSNPAPickApptTypes.Name     = "butWSNPAPickApptTypes";
     this.butWSNPAPickApptTypes.Size     = new System.Drawing.Size(23, 22);
     this.butWSNPAPickApptTypes.TabIndex = 129;
     this.butWSNPAPickApptTypes.Text     = "...";
     this.butWSNPAPickApptTypes.Click   += new System.EventHandler(this.butWSNPAPickApptTypes_Click);
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(131, 65);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(378, 29);
     this.label10.TabIndex = 128;
     this.label10.Text     = "Only the above appointment types will be allowed within this operatory.\r\nAppt Typ" +
                             "e is required to be considered for Web Sched New Pat Appt.";
     //
     // butUpdateProvs
     //
     this.butUpdateProvs.Location = new System.Drawing.Point(160, 300);
     this.butUpdateProvs.Name     = "butUpdateProvs";
     this.butUpdateProvs.Size     = new System.Drawing.Size(75, 26);
     this.butUpdateProvs.TabIndex = 129;
     this.butUpdateProvs.Text     = "Update All";
     this.butUpdateProvs.Click   += new System.EventHandler(this.ButUpdateProvs_Click);
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(-1, 305);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(160, 17);
     this.label5.TabIndex  = 130;
     this.label5.Text      = "Update Provs on Future Appts";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(240, 307);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(160, 21);
     this.label11.TabIndex = 131;
     this.label11.Text     = "for this operatory.  ";
     //
     // FormOperatoryEdit
     //
     this.ClientSize = new System.Drawing.Size(574, 392);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.butUpdateProvs);
     this.Controls.Add(this.groupBoxApptType);
     this.Controls.Add(this.butPickHyg);
     this.Controls.Add(this.butPickProv);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.checkSetProspective);
     this.Controls.Add(this.checkIsHygiene);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.comboHyg);
     this.Controls.Add(this.comboProv);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.checkIsHidden);
     this.Controls.Add(this.textAbbrev);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textOpName);
     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          = "FormOperatoryEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Operatory";
     this.Load         += new System.EventHandler(this.FormOperatoryEdit_Load);
     this.groupBoxApptType.ResumeLayout(false);
     this.groupBoxApptType.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#7
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.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.comboClinics               = new OpenDental.UI.ComboBoxClinicPicker();
     this.comboProvs                 = new OpenDental.UI.ComboBoxPlus();
     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.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     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;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(384, 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.comboClinics);
     this.groupFilter.Controls.Add(this.comboProvs);
     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.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);
     //
     // comboClinics
     //
     this.comboClinics.IncludeAll        = true;
     this.comboClinics.IncludeUnassigned = true;
     this.comboClinics.Location          = new System.Drawing.Point(431, 17);
     this.comboClinics.Name = "comboClinics";
     this.comboClinics.SelectionModeMulti = true;
     this.comboClinics.Size     = new System.Drawing.Size(197, 21);
     this.comboClinics.TabIndex = 3;
     //
     // comboProvs
     //
     this.comboProvs.BackColor          = System.Drawing.SystemColors.Window;
     this.comboProvs.Location           = new System.Drawing.Point(468, 38);
     this.comboProvs.Name               = "comboProvs";
     this.comboProvs.SelectionModeMulti = true;
     this.comboProvs.Size               = new System.Drawing.Size(160, 21);
     this.comboProvs.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, 27);
     this.dateRangePicker.TabIndex = 5;
     //
     // butRefresh
     //
     this.butRefresh.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     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.ContextMenuStrip = this.contextMenuStrip;
     this.gridMain.Location         = new System.Drawing.Point(12, 103);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(859, 415);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "Incomplete Procedure Notes";
     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.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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);
 }
示例#8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTaskListEdit));
     this.butCancel         = new OpenDental.UI.Button();
     this.butOK             = new OpenDental.UI.Button();
     this.label1            = new System.Windows.Forms.Label();
     this.labelGlobalFilter = new System.Windows.Forms.Label();
     this.comboGlobalFilter = new UI.ComboBoxPlus();
     this.textDescript      = new System.Windows.Forms.TextBox();
     this.label2            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.listDateType      = new System.Windows.Forms.ListBox();
     this.checkFromNum      = new System.Windows.Forms.CheckBox();
     this.textDateTL        = new OpenDental.ValidDate();
     this.listObjectType    = new System.Windows.Forms.ListBox();
     this.label6            = new System.Windows.Forms.Label();
     this.textTaskListNum   = new System.Windows.Forms.TextBox();
     this.labelTaskListNum  = new System.Windows.Forms.Label();
     this.errorProvider1    = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     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(395, 223);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex = 5;
     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(395, 182);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 4;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 18);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(116, 19);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Description";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelGlobalFilter
     //
     this.labelGlobalFilter.Location  = new System.Drawing.Point(8, 227);
     this.labelGlobalFilter.Name      = "labelGlobalFilter";
     this.labelGlobalFilter.Size      = new System.Drawing.Size(116, 19);
     this.labelGlobalFilter.TabIndex  = 138;
     this.labelGlobalFilter.Text      = "Global Filter Override";
     this.labelGlobalFilter.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboGlobalFilter
     //
     this.comboGlobalFilter.Location = new System.Drawing.Point(127, 227);
     this.comboGlobalFilter.Name     = "comboGlobalFilter";
     this.comboGlobalFilter.Size     = new System.Drawing.Size(120, 21);
     this.comboGlobalFilter.TabIndex = 137;
     this.comboGlobalFilter.SelectionChangeCommitted += new System.EventHandler(this.comboGlobalFilter_SelectionChangeCommitted);
     //
     // textDescript
     //
     this.textDescript.Location = new System.Drawing.Point(127, 18);
     this.textDescript.Name     = "textDescript";
     this.textDescript.Size     = new System.Drawing.Size(293, 20);
     this.textDescript.TabIndex = 0;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 50);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(116, 19);
     this.label2.TabIndex  = 4;
     this.label2.Text      = "Date";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(218, 47);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(185, 32);
     this.label3.TabIndex = 6;
     this.label3.Text     = "Leave blank unless you want this list to show on a dated list";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(8, 82);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(116, 19);
     this.label4.TabIndex  = 7;
     this.label4.Text      = "Date Type";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // listDateType
     //
     this.listDateType.Location = new System.Drawing.Point(127, 83);
     this.listDateType.Name     = "listDateType";
     this.listDateType.Size     = new System.Drawing.Size(120, 56);
     this.listDateType.TabIndex = 2;
     //
     // checkFromNum
     //
     this.checkFromNum.CheckAlign = System.Drawing.ContentAlignment.TopRight;
     this.checkFromNum.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkFromNum.Location   = new System.Drawing.Point(8, 149);
     this.checkFromNum.Name       = "checkFromNum";
     this.checkFromNum.Size       = new System.Drawing.Size(133, 21);
     this.checkFromNum.TabIndex   = 3;
     this.checkFromNum.Text       = "Is From Repeating";
     this.checkFromNum.TextAlign  = System.Drawing.ContentAlignment.TopRight;
     //
     // textDateTL
     //
     this.textDateTL.Location = new System.Drawing.Point(127, 50);
     this.textDateTL.Name     = "textDateTL";
     this.textDateTL.Size     = new System.Drawing.Size(87, 20);
     this.textDateTL.TabIndex = 1;
     //
     // listObjectType
     //
     this.listObjectType.Location = new System.Drawing.Point(127, 173);
     this.listObjectType.Name     = "listObjectType";
     this.listObjectType.Size     = new System.Drawing.Size(120, 43);
     this.listObjectType.TabIndex = 15;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(8, 172);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(116, 19);
     this.label6.TabIndex  = 16;
     this.label6.Text      = "Object Type";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textTaskListNum
     //
     this.textTaskListNum.Location = new System.Drawing.Point(366, 94);
     this.textTaskListNum.Name     = "textTaskListNum";
     this.textTaskListNum.ReadOnly = true;
     this.textTaskListNum.Size     = new System.Drawing.Size(54, 20);
     this.textTaskListNum.TabIndex = 136;
     this.textTaskListNum.Visible  = false;
     //
     // labelTaskListNum
     //
     this.labelTaskListNum.Location  = new System.Drawing.Point(276, 95);
     this.labelTaskListNum.Name      = "labelTaskListNum";
     this.labelTaskListNum.Size      = new System.Drawing.Size(88, 16);
     this.labelTaskListNum.TabIndex  = 135;
     this.labelTaskListNum.Text      = "TaskListNum";
     this.labelTaskListNum.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelTaskListNum.Visible   = false;
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle       = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     //
     // FormTaskListEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(503, 274);
     this.Controls.Add(this.labelGlobalFilter);
     this.Controls.Add(this.comboGlobalFilter);
     this.Controls.Add(this.textTaskListNum);
     this.Controls.Add(this.labelTaskListNum);
     this.Controls.Add(this.listObjectType);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.textDateTL);
     this.Controls.Add(this.textDescript);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.checkFromNum);
     this.Controls.Add(this.listDateType);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormTaskListEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Task List";
     this.Load         += new System.EventHandler(this.FormTaskListEdit_Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     OpenDental.UI.Button butDelete;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAutomationEdit));
     this.label1            = new System.Windows.Forms.Label();
     this.textDescription   = new System.Windows.Forms.TextBox();
     this.label2            = new System.Windows.Forms.Label();
     this.textProcCodes     = new System.Windows.Forms.TextBox();
     this.labelProcCodes    = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.labelActionObject = new System.Windows.Forms.Label();
     this.labelMessage      = new System.Windows.Forms.Label();
     this.textMessage       = new System.Windows.Forms.TextBox();
     this.comboTrigger      = new System.Windows.Forms.ComboBox();
     this.comboAction       = new System.Windows.Forms.ComboBox();
     this.comboActionObject = new UI.ComboBoxPlus();
     this.butAdd            = new OpenDental.UI.Button();
     this.gridMain          = new OpenDental.UI.ODGrid();
     this.butProcCode       = new OpenDental.UI.Button();
     this.butOK             = new OpenDental.UI.Button();
     this.butCancel         = new OpenDental.UI.Button();
     butDelete = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // butDelete
     //
     butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     butDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     butDelete.Image      = global::OpenDental.Properties.Resources.deleteX;
     butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     butDelete.Location   = new System.Drawing.Point(48, 393);
     butDelete.Name       = "butDelete";
     butDelete.Size       = new System.Drawing.Size(75, 24);
     butDelete.TabIndex   = 16;
     butDelete.Text       = "&Delete";
     butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(48, 24);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(111, 20);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "Description";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDescription
     //
     this.textDescription.Location = new System.Drawing.Point(161, 25);
     this.textDescription.Name     = "textDescription";
     this.textDescription.Size     = new System.Drawing.Size(316, 20);
     this.textDescription.TabIndex = 0;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(48, 50);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(111, 20);
     this.label2.TabIndex  = 18;
     this.label2.Text      = "Trigger";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textProcCodes
     //
     this.textProcCodes.Location = new System.Drawing.Point(161, 77);
     this.textProcCodes.Name     = "textProcCodes";
     this.textProcCodes.Size     = new System.Drawing.Size(316, 20);
     this.textProcCodes.TabIndex = 2;
     //
     // labelProcCodes
     //
     this.labelProcCodes.Location  = new System.Drawing.Point(13, 76);
     this.labelProcCodes.Name      = "labelProcCodes";
     this.labelProcCodes.Size      = new System.Drawing.Size(146, 29);
     this.labelProcCodes.TabIndex  = 20;
     this.labelProcCodes.Text      = "Procedure Code(s)\r\n(separated with commas)";
     this.labelProcCodes.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(16, 256);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(143, 17);
     this.label4.TabIndex  = 21;
     this.label4.Text      = "Action";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelActionObject
     //
     this.labelActionObject.Location  = new System.Drawing.Point(16, 282);
     this.labelActionObject.Name      = "labelActionObject";
     this.labelActionObject.Size      = new System.Drawing.Size(143, 17);
     this.labelActionObject.TabIndex  = 22;
     this.labelActionObject.Text      = "Action Object";
     this.labelActionObject.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelMessage
     //
     this.labelMessage.Location  = new System.Drawing.Point(16, 307);
     this.labelMessage.Name      = "labelMessage";
     this.labelMessage.Size      = new System.Drawing.Size(143, 17);
     this.labelMessage.TabIndex  = 25;
     this.labelMessage.Text      = "Message";
     this.labelMessage.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textMessage
     //
     this.textMessage.Location  = new System.Drawing.Point(161, 308);
     this.textMessage.Multiline = true;
     this.textMessage.Name      = "textMessage";
     this.textMessage.Size      = new System.Drawing.Size(316, 73);
     this.textMessage.TabIndex  = 26;
     //
     // comboTrigger
     //
     this.comboTrigger.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboTrigger.FormattingEnabled = true;
     this.comboTrigger.Location          = new System.Drawing.Point(161, 50);
     this.comboTrigger.Name                  = "comboTrigger";
     this.comboTrigger.Size                  = new System.Drawing.Size(183, 21);
     this.comboTrigger.TabIndex              = 27;
     this.comboTrigger.SelectedIndexChanged += new System.EventHandler(this.comboTrigger_SelectedIndexChanged);
     //
     // comboAction
     //
     this.comboAction.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboAction.FormattingEnabled = true;
     this.comboAction.Location          = new System.Drawing.Point(161, 255);
     this.comboAction.Name                  = "comboAction";
     this.comboAction.Size                  = new System.Drawing.Size(183, 21);
     this.comboAction.TabIndex              = 28;
     this.comboAction.SelectedIndexChanged += new System.EventHandler(this.comboAction_SelectedIndexChanged);
     //
     // comboActionObject
     //
     this.comboActionObject.Location = new System.Drawing.Point(161, 281);
     this.comboActionObject.Name     = "comboActionObject";
     this.comboActionObject.Size     = new System.Drawing.Size(183, 21);
     this.comboActionObject.TabIndex = 31;
     //
     // butAdd
     //
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(677, 225);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(65, 24);
     this.butAdd.TabIndex   = 35;
     this.butAdd.Text       = "Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // gridMain
     //
     this.gridMain.Location         = new System.Drawing.Point(161, 103);
     this.gridMain.Name             = "gridMain";
     this.gridMain.SelectionMode    = OpenDental.UI.GridSelectionMode.None;
     this.gridMain.Size             = new System.Drawing.Size(510, 146);
     this.gridMain.TabIndex         = 34;
     this.gridMain.Title            = "Conditions";
     this.gridMain.TranslationName  = "TableConditions";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butProcCode
     //
     this.butProcCode.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butProcCode.Location   = new System.Drawing.Point(479, 75);
     this.butProcCode.Name       = "butProcCode";
     this.butProcCode.Size       = new System.Drawing.Size(23, 24);
     this.butProcCode.TabIndex   = 32;
     this.butProcCode.Text       = "...";
     this.butProcCode.Click     += new System.EventHandler(this.butProcCode_Click);
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(589, 393);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex = 4;
     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(677, 393);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex = 5;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_Click);
     //
     // FormAutomationEdit
     //
     this.ClientSize = new System.Drawing.Size(778, 437);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butProcCode);
     this.Controls.Add(this.comboActionObject);
     this.Controls.Add(this.comboAction);
     this.Controls.Add(this.comboTrigger);
     this.Controls.Add(this.textMessage);
     this.Controls.Add(this.labelMessage);
     this.Controls.Add(this.labelActionObject);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.textProcCodes);
     this.Controls.Add(this.labelProcCodes);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(butDelete);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormAutomationEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Automation";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormAutomationEdit_FormClosing);
     this.Load         += new System.EventHandler(this.FormAutomationEdit_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(FormInsFilingCodeEdit));
     this.label1                    = new System.Windows.Forms.Label();
     this.textDescription           = new System.Windows.Forms.TextBox();
     this.textEclaimCode            = new System.Windows.Forms.TextBox();
     this.label2                    = new System.Windows.Forms.Label();
     this.gridInsFilingCodeSubtypes = new OpenDental.UI.ODGrid();
     this.butDelete                 = new OpenDental.UI.Button();
     this.butOK      = new OpenDental.UI.Button();
     this.butCancel  = new OpenDental.UI.Button();
     this.butAdd     = new OpenDental.UI.Button();
     this.label3     = new System.Windows.Forms.Label();
     this.comboGroup = new UI.ComboBoxPlus();
     this.SuspendLayout();
     //
     // 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      = "Description";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDescription
     //
     this.textDescription.Location     = new System.Drawing.Point(160, 20);
     this.textDescription.Name         = "textDescription";
     this.textDescription.Size         = new System.Drawing.Size(291, 20);
     this.textDescription.TabIndex     = 0;
     this.textDescription.TextChanged += new System.EventHandler(this.textDescription_TextChanged);
     //
     // textEclaimCode
     //
     this.textEclaimCode.Location     = new System.Drawing.Point(160, 45);
     this.textEclaimCode.MaxLength    = 255;
     this.textEclaimCode.Name         = "textEclaimCode";
     this.textEclaimCode.Size         = new System.Drawing.Size(157, 20);
     this.textEclaimCode.TabIndex     = 1;
     this.textEclaimCode.TextChanged += new System.EventHandler(this.textEclaimCode_TextChanged);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 48);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(151, 17);
     this.label2.TabIndex  = 99;
     this.label2.Text      = "Eclaim Code";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // gridInsFilingCodeSubtypes
     //
     this.gridInsFilingCodeSubtypes.Location         = new System.Drawing.Point(160, 97);
     this.gridInsFilingCodeSubtypes.Name             = "gridInsFilingCodeSubtypes";
     this.gridInsFilingCodeSubtypes.Size             = new System.Drawing.Size(291, 160);
     this.gridInsFilingCodeSubtypes.TabIndex         = 100;
     this.gridInsFilingCodeSubtypes.Title            = "Insurance Filing Code Subtypes";
     this.gridInsFilingCodeSubtypes.TranslationName  = "TableInsFilingCodeSubtypes";
     this.gridInsFilingCodeSubtypes.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridInsFilingCodeSubtypes_CellDoubleClick);
     //
     // 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, 302);
     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);
     //
     // 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(412, 302);
     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);
     //
     // 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(503, 302);
     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);
     //
     // butAdd
     //
     this.butAdd.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Enabled    = false;
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(160, 263);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(80, 24);
     this.butAdd.TabIndex   = 101;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 73);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(151, 17);
     this.label3.TabIndex  = 103;
     this.label3.Text      = "Group";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboGroup
     //
     this.comboGroup.Location = new System.Drawing.Point(160, 70);
     this.comboGroup.Name     = "comboGroup";
     this.comboGroup.Size     = new System.Drawing.Size(157, 21);
     this.comboGroup.TabIndex = 104;
     //
     // FormInsFilingCodeEdit
     //
     this.ClientSize = new System.Drawing.Size(604, 346);
     this.Controls.Add(this.comboGroup);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.gridInsFilingCodeSubtypes);
     this.Controls.Add(this.textEclaimCode);
     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          = "FormInsFilingCodeEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Claim Filing Code";
     this.Load         += new System.EventHandler(this.FormInsFilingCodeEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }