예제 #1
0
        private void AddRow(UI.ODGrid grid, ProcedureCode procCode)
        {
            UI.ODGridRow row = new UI.ODGridRow();
            row.Tag = procCode;
            row.Cells.Add(procCode.ProcCode);
            row.Cells.Add(procCode.AbbrDesc);
            row.Cells.Add(Lan.g("enumSubstitutionCondition", procCode.SubstOnlyIf.ToString()));
            row.Cells.Add(procCode.SubstitutionCode);
            ProcedureCode procCodeSubst = _listAllProcCodes.FirstOrDefault(x => x.ProcCode == procCode.SubstitutionCode);

            row.Cells.Add((procCodeSubst == null)?"":procCodeSubst.AbbrDesc);
            grid.Rows.Add(row);
        }
예제 #2
0
        private void SortGridByProc(UI.ODGrid grid)
        {
            List <UI.ODGridRow> listRows = new List <UI.ODGridRow>();

            foreach (UI.ODGridRow row in grid.Rows)
            {
                listRows.Add(row);
            }
            listRows = listRows.OrderBy(x => ((ProcedureCode)x.Tag).ProcCode).ToList();
            grid.Rows.Clear();
            foreach (UI.ODGridRow row in listRows)
            {
                grid.Rows.Add(row);
            }
        }
예제 #3
0
파일: Lan.cs 프로젝트: kjb7749/testImport
 private static void TranslateGrid(Control contr)
 {
     if (contr.GetType() != typeof(UI.ODGrid))
     {
         return;
     }
     UI.ODGrid grid = ((UI.ODGrid)contr);
     grid.Title = Lans.ConvertString(grid.TranslationName, grid.Title);
     foreach (UI.ODGridColumn col in grid.Columns)
     {
         col.Heading = Lans.ConvertString(grid.TranslationName, col.Heading);
     }
     if (grid.ContextMenu != null)
     {
         C(grid.TranslationName, grid.ContextMenu);
     }
     if (grid.ContextMenuStrip != null)
     {
         C(grid.TranslationName, grid.ContextMenuStrip);
     }
 }
예제 #4
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(FormRpProcNotBilledIns));
     this.butClose             = new OpenDental.UI.Button();
     this.butPrint             = new OpenDental.UI.Button();
     this.checkMedical         = new System.Windows.Forms.CheckBox();
     this.imageListCalendar    = new System.Windows.Forms.ImageList(this.components);
     this.labelClinic          = new System.Windows.Forms.Label();
     this.comboBoxMultiClinics = new OpenDental.UI.ComboBoxMulti();
     this.gridMain             = new OpenDental.UI.ODGrid();
     this.butNewClaims         = new OpenDental.UI.Button();
     this.checkAutoGroupProcs  = new System.Windows.Forms.CheckBox();
     this.butRefresh           = new OpenDental.UI.Button();
     this.butSelectAll         = new OpenDental.UI.Button();
     this.checkShowProcsNoIns  = new System.Windows.Forms.CheckBox();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.dateRangePicker      = new OpenDental.UI.ODDateRangePicker();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(917, 662);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 4;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(25, 662);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(75, 26);
     this.butPrint.TabIndex     = 3;
     this.butPrint.Text         = "Print";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // checkMedical
     //
     this.checkMedical.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkMedical.Location   = new System.Drawing.Point(678, 12);
     this.checkMedical.Name       = "checkMedical";
     this.checkMedical.Size       = new System.Drawing.Size(227, 17);
     this.checkMedical.TabIndex   = 11;
     this.checkMedical.Text       = "Include Medical Procedures";
     this.checkMedical.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkMedical.UseVisualStyleBackColor = true;
     this.checkMedical.Visible = false;
     //
     // imageListCalendar
     //
     this.imageListCalendar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListCalendar.ImageStream")));
     this.imageListCalendar.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListCalendar.Images.SetKeyName(0, "arrowDownTriangle.gif");
     this.imageListCalendar.Images.SetKeyName(1, "arrowUpTriangle.gif");
     //
     // labelClinic
     //
     this.labelClinic.Location  = new System.Drawing.Point(461, 36);
     this.labelClinic.Name      = "labelClinic";
     this.labelClinic.Size      = new System.Drawing.Size(55, 16);
     this.labelClinic.TabIndex  = 68;
     this.labelClinic.Text      = "Clinics";
     this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelClinic.Visible   = false;
     //
     // comboBoxMultiClinics
     //
     this.comboBoxMultiClinics.ArraySelectedIndices = new int[0];
     this.comboBoxMultiClinics.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxMultiClinics.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiClinics.Items")));
     this.comboBoxMultiClinics.Location        = new System.Drawing.Point(517, 35);
     this.comboBoxMultiClinics.Name            = "comboBoxMultiClinics";
     this.comboBoxMultiClinics.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiClinics.SelectedIndices")));
     this.comboBoxMultiClinics.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiClinics.TabIndex        = 67;
     this.comboBoxMultiClinics.Visible         = false;
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(25, 71);
     this.gridMain.Name            = "gridMain";
     this.gridMain.ScrollValue     = 0;
     this.gridMain.SelectionMode   = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size            = new System.Drawing.Size(967, 588);
     this.gridMain.TabIndex        = 69;
     this.gridMain.Title           = "Procedures Not Billed";
     this.gridMain.TitleFont       = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight     = 18;
     this.gridMain.TranslationName = "TableProcedures";
     //
     // butNewClaims
     //
     this.butNewClaims.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butNewClaims.Anchor                  = System.Windows.Forms.AnchorStyles.Bottom;
     this.butNewClaims.Autosize                = true;
     this.butNewClaims.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butNewClaims.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butNewClaims.CornerRadius            = 4F;
     this.butNewClaims.Location                = new System.Drawing.Point(513, 662);
     this.butNewClaims.Name                    = "butNewClaims";
     this.butNewClaims.Size                    = new System.Drawing.Size(100, 26);
     this.butNewClaims.TabIndex                = 71;
     this.butNewClaims.Text                    = "New Claims";
     this.butNewClaims.UseVisualStyleBackColor = true;
     this.butNewClaims.Click                  += new System.EventHandler(this.butNewClaims_Click);
     //
     // checkAutoGroupProcs
     //
     this.checkAutoGroupProcs.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkAutoGroupProcs.Location   = new System.Drawing.Point(678, 33);
     this.checkAutoGroupProcs.Name       = "checkAutoGroupProcs";
     this.checkAutoGroupProcs.Size       = new System.Drawing.Size(227, 17);
     this.checkAutoGroupProcs.TabIndex   = 72;
     this.checkAutoGroupProcs.Text       = "Automatically Group Procedures";
     this.checkAutoGroupProcs.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkAutoGroupProcs.UseVisualStyleBackColor = true;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize                = true;
     this.butRefresh.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius            = 4F;
     this.butRefresh.Location                = new System.Drawing.Point(942, 38);
     this.butRefresh.Name                    = "butRefresh";
     this.butRefresh.Size                    = new System.Drawing.Size(50, 26);
     this.butRefresh.TabIndex                = 73;
     this.butRefresh.Text                    = "Refresh";
     this.butRefresh.UseVisualStyleBackColor = true;
     this.butRefresh.Click                  += new System.EventHandler(this.butRefresh_Click);
     //
     // butSelectAll
     //
     this.butSelectAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSelectAll.Anchor                  = System.Windows.Forms.AnchorStyles.Bottom;
     this.butSelectAll.Autosize                = true;
     this.butSelectAll.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSelectAll.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSelectAll.CornerRadius            = 4F;
     this.butSelectAll.Location                = new System.Drawing.Point(407, 662);
     this.butSelectAll.Name                    = "butSelectAll";
     this.butSelectAll.Size                    = new System.Drawing.Size(100, 26);
     this.butSelectAll.TabIndex                = 74;
     this.butSelectAll.Text                    = "Select All";
     this.butSelectAll.UseVisualStyleBackColor = true;
     this.butSelectAll.Click                  += new System.EventHandler(this.butSelectAll_Click);
     //
     // checkShowProcsNoIns
     //
     this.checkShowProcsNoIns.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowProcsNoIns.Location   = new System.Drawing.Point(306, 12);
     this.checkShowProcsNoIns.Name       = "checkShowProcsNoIns";
     this.checkShowProcsNoIns.Size       = new System.Drawing.Size(371, 17);
     this.checkShowProcsNoIns.TabIndex   = 75;
     this.checkShowProcsNoIns.Text       = "Show Procedures Completed Before Insurance Added";
     this.checkShowProcsNoIns.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowProcsNoIns.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.checkShowProcsNoIns);
     this.groupBox2.Controls.Add(this.dateRangePicker);
     this.groupBox2.Controls.Add(this.checkMedical);
     this.groupBox2.Controls.Add(this.comboBoxMultiClinics);
     this.groupBox2.Controls.Add(this.checkAutoGroupProcs);
     this.groupBox2.Controls.Add(this.labelClinic);
     this.groupBox2.Location = new System.Drawing.Point(25, 4);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(911, 61);
     this.groupBox2.TabIndex = 77;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Filters";
     //
     // dateRangePicker
     //
     this.dateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.dateRangePicker.DefaultDateTimeFrom = new System.DateTime(2018, 1, 1, 0, 0, 0, 0);
     this.dateRangePicker.DefaultDateTimeTo   = new System.DateTime(2018, 1, 9, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(1, 34);
     this.dateRangePicker.MaximumSize         = new System.Drawing.Size(0, 185);
     this.dateRangePicker.MinimumSize         = new System.Drawing.Size(453, 22);
     this.dateRangePicker.Name     = "dateRangePicker";
     this.dateRangePicker.Size     = new System.Drawing.Size(453, 22);
     this.dateRangePicker.TabIndex = 0;
     //
     // FormRpProcNotBilledIns
     //
     this.AcceptButton = this.butPrint;
     this.ClientSize   = new System.Drawing.Size(1019, 696);
     this.Controls.Add(this.butSelectAll);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.butNewClaims);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.groupBox2);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(1035, 734);
     this.Name          = "FormRpProcNotBilledIns";
     this.ShowInTaskbar = false;
     this.Text          = "Procedures Not Billed to Insurance";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormRpProcNotBilledIns_FormClosing);
     this.Load         += new System.EventHandler(this.FormProcNotAttach_Load);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #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(FormElectIDs));
     this.gridElectIDs = new OpenDental.UI.ODGrid();
     this.butOK        = new OpenDental.UI.Button();
     this.butCancel    = new OpenDental.UI.Button();
     this.butAdd       = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // gridElectIDs
     //
     this.gridElectIDs.AllowSelection = false;
     this.gridElectIDs.Anchor         = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.gridElectIDs.HScrollVisible   = false;
     this.gridElectIDs.Location         = new System.Drawing.Point(7, 12);
     this.gridElectIDs.Name             = "gridElectIDs";
     this.gridElectIDs.ScrollValue      = 0;
     this.gridElectIDs.Size             = new System.Drawing.Size(879, 617);
     this.gridElectIDs.TabIndex         = 140;
     this.gridElectIDs.Title            = "";
     this.gridElectIDs.TranslationName  = "TableApptProcs";
     this.gridElectIDs.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridElectIDs_CellDoubleClick);
     this.gridElectIDs.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridElectIDs_CellClick);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Autosize            = true;
     this.butOK.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius        = 4F;
     this.butOK.Location            = new System.Drawing.Point(721, 635);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 25);
     this.butOK.TabIndex = 1;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Autosize            = true;
     this.butCancel.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius        = 4F;
     this.butCancel.DialogResult        = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location            = new System.Drawing.Point(808, 635);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex = 0;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Autosize            = true;
     this.butAdd.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius        = 4F;
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(409, 635);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(75, 25);
     this.butAdd.TabIndex   = 141;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // FormElectIDs
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(892, 674);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.gridElectIDs);
     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          = "FormElectIDs";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Electronic Payer ID\'s";
     this.Load         += new System.EventHandler(this.FormElectIDs_Load);
     this.ResumeLayout(false);
 }
예제 #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(FormContacts));
     this.butOK        = new OpenDental.UI.Button();
     this.listCategory = new System.Windows.Forms.ListBox();
     this.label1       = new System.Windows.Forms.Label();
     this.butAdd       = new OpenDental.UI.Button();
     this.gridMain     = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // butOK
     //
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butOK.Location     = new System.Drawing.Point(799, 658);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 25);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "&Close";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // listCategory
     //
     this.listCategory.Location              = new System.Drawing.Point(5, 30);
     this.listCategory.Name                  = "listCategory";
     this.listCategory.Size                  = new System.Drawing.Size(101, 264);
     this.listCategory.TabIndex              = 2;
     this.listCategory.SelectedIndexChanged += new System.EventHandler(this.listCategory_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(5, 12);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Category";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butAdd
     //
     this.butAdd.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Location = new System.Drawing.Point(797, 494);
     this.butAdd.Name     = "butAdd";
     this.butAdd.Size     = new System.Drawing.Size(75, 25);
     this.butAdd.TabIndex = 5;
     this.butAdd.Text     = "&Add";
     this.butAdd.Click   += new System.EventHandler(this.butAdd_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.Location         = new System.Drawing.Point(117, 12);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(669, 671);
     this.gridMain.TabIndex         = 12;
     this.gridMain.Title            = "Contacts";
     this.gridMain.TranslationName  = "TableContact";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // FormContacts
     //
     this.AcceptButton = this.butOK;
     this.CancelButton = this.butOK;
     this.ClientSize   = new System.Drawing.Size(886, 693);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listCategory);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(330, 344);
     this.Name          = "FormContacts";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Contacts";
     this.Load         += new System.EventHandler(this.FormContacts_Load);
     this.ResumeLayout(false);
 }
예제 #7
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProgramLinks));
     this.butClose    = new OpenDental.UI.Button();
     this.butAdd      = new OpenDental.UI.Button();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.gridProgram = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(372, 631);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 38;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(17, 631);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(75, 26);
     this.butAdd.TabIndex     = 41;
     this.butAdd.Text         = "&Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(15, 12);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(293, 27);
     this.label2.TabIndex = 43;
     this.label2.Text     = "Double click on one of the programs in the\r\nlist below to enable it or change its" +
                            " settings";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Location  = new System.Drawing.Point(97, 630);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(200, 29);
     this.label1.TabIndex  = 44;
     this.label1.Text      = "Do not Add unless you have a totally\r\ncustom bridge which we don\'t support.";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridProgram
     //
     this.gridProgram.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.gridProgram.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridProgram.HasAddButton        = false;
     this.gridProgram.HasDropDowns        = false;
     this.gridProgram.HasMultilineHeaders = false;
     this.gridProgram.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridProgram.HeaderHeight        = 15;
     this.gridProgram.HScrollVisible      = false;
     this.gridProgram.Location            = new System.Drawing.Point(18, 42);
     this.gridProgram.Name             = "gridProgram";
     this.gridProgram.ScrollValue      = 0;
     this.gridProgram.Size             = new System.Drawing.Size(429, 575);
     this.gridProgram.TabIndex         = 45;
     this.gridProgram.Title            = "Programs";
     this.gridProgram.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridProgram.TitleHeight      = 18;
     this.gridProgram.TranslationName  = "TablePrograms";
     this.gridProgram.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridProgram_CellDoubleClick);
     //
     // FormProgramLinks
     //
     this.ClientSize = new System.Drawing.Size(464, 669);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.gridProgram);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(405, 195);
     this.Name          = "FormProgramLinks";
     this.ShowInTaskbar = false;
     this.Text          = "Program Links";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormProgramLinks_Closing);
     this.Load         += new System.EventHandler(this.FormProgramLinks_Load);
     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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRxSend));
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butSend = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,12);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size = new System.Drawing.Size(650,388);
     this.gridMain.TabIndex = 33;
     this.gridMain.Title = "Rx Waiting to Send";
     this.gridMain.TranslationName = "TableQueue";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butSend
     //
     this.butSend.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butSend.Autosize = true;
     this.butSend.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSend.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSend.CornerRadius = 4F;
     this.butSend.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSend.Location = new System.Drawing.Point(504,457);
     this.butSend.Name = "butSend";
     this.butSend.Size = new System.Drawing.Size(78,24);
     this.butSend.TabIndex = 248;
     this.butSend.Text = "Send";
     this.butSend.Click += new System.EventHandler(this.butSend_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location = new System.Drawing.Point(588,457);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 2;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.Color.DarkRed;
     this.label1.Location = new System.Drawing.Point(12,411);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(650,37);
     this.label1.TabIndex = 250;
     this.label1.Text = resources.GetString("label1.Text");
     //
     // FormRxSend
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(675,493);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butSend);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butCancel);
     this.Name = "FormRxSend";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Rx Send";
     this.Load += new System.EventHandler(this.FormRxSend_Load);
     this.ResumeLayout(false);
 }
예제 #9
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(FormClearinghouses));
     this.groupBox1               = new System.Windows.Forms.GroupBox();
     this.butEligibility          = new OpenDental.UI.Button();
     this.butDefaultMedical       = new OpenDental.UI.Button();
     this.butDefaultDental        = new OpenDental.UI.Button();
     this.textReportCheckInterval = new System.Windows.Forms.TextBox();
     this.labelReportheckUnits    = new System.Windows.Forms.Label();
     this.butAdd                     = new OpenDental.UI.Button();
     this.butClose                   = new OpenDental.UI.Button();
     this.labelClinic                = new System.Windows.Forms.Label();
     this.comboClinic                = new System.Windows.Forms.ComboBox();
     this.labelGuide                 = new System.Windows.Forms.Label();
     this.gridMain                   = new OpenDental.UI.ODGrid();
     this.radioInterval              = new System.Windows.Forms.RadioButton();
     this.radioTime                  = new System.Windows.Forms.RadioButton();
     this.textReportCheckTime        = new OpenDental.ValidTime();
     this.groupRecieveSettings       = new System.Windows.Forms.GroupBox();
     this.checkReceiveReportsService = new System.Windows.Forms.CheckBox();
     this.textReportComputerName     = new System.Windows.Forms.TextBox();
     this.butThisComputer            = new OpenDental.UI.Button();
     this.labelReportComputerName    = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupRecieveSettings.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox1.Controls.Add(this.butEligibility);
     this.groupBox1.Controls.Add(this.butDefaultMedical);
     this.groupBox1.Controls.Add(this.butDefaultDental);
     this.groupBox1.Location = new System.Drawing.Point(6, 387);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(97, 112);
     this.groupBox1.TabIndex = 9;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Set Default";
     //
     // butEligibility
     //
     this.butEligibility.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butEligibility.Autosize            = true;
     this.butEligibility.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butEligibility.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butEligibility.CornerRadius        = 4F;
     this.butEligibility.Location            = new System.Drawing.Point(15, 79);
     this.butEligibility.Name     = "butEligibility";
     this.butEligibility.Size     = new System.Drawing.Size(75, 24);
     this.butEligibility.TabIndex = 3;
     this.butEligibility.Text     = "Eligibility";
     this.butEligibility.Click   += new System.EventHandler(this.butEligibility_Click);
     //
     // butDefaultMedical
     //
     this.butDefaultMedical.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDefaultMedical.Autosize            = true;
     this.butDefaultMedical.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDefaultMedical.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDefaultMedical.CornerRadius        = 4F;
     this.butDefaultMedical.Location            = new System.Drawing.Point(15, 49);
     this.butDefaultMedical.Name     = "butDefaultMedical";
     this.butDefaultMedical.Size     = new System.Drawing.Size(75, 24);
     this.butDefaultMedical.TabIndex = 2;
     this.butDefaultMedical.Text     = "Medical";
     this.butDefaultMedical.Click   += new System.EventHandler(this.butDefaultMedical_Click);
     //
     // butDefaultDental
     //
     this.butDefaultDental.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDefaultDental.Autosize            = true;
     this.butDefaultDental.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDefaultDental.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDefaultDental.CornerRadius        = 4F;
     this.butDefaultDental.Location            = new System.Drawing.Point(15, 19);
     this.butDefaultDental.Name     = "butDefaultDental";
     this.butDefaultDental.Size     = new System.Drawing.Size(75, 24);
     this.butDefaultDental.TabIndex = 1;
     this.butDefaultDental.Text     = "Dental";
     this.butDefaultDental.Click   += new System.EventHandler(this.butDefaultDental_Click);
     //
     // textReportCheckInterval
     //
     this.textReportCheckInterval.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textReportCheckInterval.Location  = new System.Drawing.Point(237, 66);
     this.textReportCheckInterval.MaxLength = 2147483647;
     this.textReportCheckInterval.Multiline = true;
     this.textReportCheckInterval.Name      = "textReportCheckInterval";
     this.textReportCheckInterval.Size      = new System.Drawing.Size(29, 20);
     this.textReportCheckInterval.TabIndex  = 14;
     //
     // labelReportheckUnits
     //
     this.labelReportheckUnits.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelReportheckUnits.Location  = new System.Drawing.Point(273, 66);
     this.labelReportheckUnits.Name      = "labelReportheckUnits";
     this.labelReportheckUnits.Size      = new System.Drawing.Size(128, 20);
     this.labelReportheckUnits.TabIndex  = 15;
     this.labelReportheckUnits.Text      = "minutes (5 to 60)";
     this.labelReportheckUnits.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(805, 385);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(80, 24);
     this.butAdd.TabIndex     = 8;
     this.butAdd.Text         = "&Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location     = new System.Drawing.Point(805, 466);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 24);
     this.butClose.TabIndex     = 0;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // labelClinic
     //
     this.labelClinic.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelClinic.Location  = new System.Drawing.Point(616, 18);
     this.labelClinic.Name      = "labelClinic";
     this.labelClinic.Size      = new System.Drawing.Size(101, 18);
     this.labelClinic.TabIndex  = 21;
     this.labelClinic.Text      = "Clinic";
     this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelClinic.Visible   = false;
     //
     // comboClinic
     //
     this.comboClinic.Anchor                    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboClinic.DropDownStyle             = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboClinic.Location                  = new System.Drawing.Point(720, 17);
     this.comboClinic.Name                      = "comboClinic";
     this.comboClinic.Size                      = new System.Drawing.Size(165, 21);
     this.comboClinic.TabIndex                  = 20;
     this.comboClinic.Visible                   = false;
     this.comboClinic.SelectionChangeCommitted += new System.EventHandler(this.comboClinic_SelectionChangeCommitted);
     //
     // labelGuide
     //
     this.labelGuide.Location  = new System.Drawing.Point(6, -1);
     this.labelGuide.Name      = "labelGuide";
     this.labelGuide.Size      = new System.Drawing.Size(595, 36);
     this.labelGuide.TabIndex  = 22;
     this.labelGuide.Text      = resources.GetString("labelGuide.Text");
     this.labelGuide.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(6, 39);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(879, 340);
     this.gridMain.TabIndex         = 17;
     this.gridMain.Title            = "Clearinghouses";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableClearinghouses";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // radioInterval
     //
     this.radioInterval.Checked                 = true;
     this.radioInterval.Location                = new System.Drawing.Point(102, 68);
     this.radioInterval.Name                    = "radioInterval";
     this.radioInterval.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.radioInterval.Size                    = new System.Drawing.Size(134, 17);
     this.radioInterval.TabIndex                = 25;
     this.radioInterval.TabStop                 = true;
     this.radioInterval.Text                    = "Receive at an interval";
     this.radioInterval.UseVisualStyleBackColor = true;
     this.radioInterval.CheckedChanged         += new System.EventHandler(this.radioInterval_CheckedChanged);
     //
     // radioTime
     //
     this.radioTime.Location                = new System.Drawing.Point(102, 90);
     this.radioTime.Name                    = "radioTime";
     this.radioTime.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.radioTime.Size                    = new System.Drawing.Size(134, 17);
     this.radioTime.TabIndex                = 26;
     this.radioTime.Text                    = "Receive at a set time";
     this.radioTime.UseVisualStyleBackColor = true;
     //
     // textReportCheckTime
     //
     this.textReportCheckTime.Enabled  = false;
     this.textReportCheckTime.Location = new System.Drawing.Point(237, 89);
     this.textReportCheckTime.Name     = "textReportCheckTime";
     this.textReportCheckTime.Size     = new System.Drawing.Size(119, 20);
     this.textReportCheckTime.TabIndex = 28;
     //
     // groupRecieveSettings
     //
     this.groupRecieveSettings.Controls.Add(this.checkReceiveReportsService);
     this.groupRecieveSettings.Controls.Add(this.textReportComputerName);
     this.groupRecieveSettings.Controls.Add(this.butThisComputer);
     this.groupRecieveSettings.Controls.Add(this.labelReportComputerName);
     this.groupRecieveSettings.Controls.Add(this.radioInterval);
     this.groupRecieveSettings.Controls.Add(this.textReportCheckTime);
     this.groupRecieveSettings.Controls.Add(this.radioTime);
     this.groupRecieveSettings.Controls.Add(this.textReportCheckInterval);
     this.groupRecieveSettings.Controls.Add(this.labelReportheckUnits);
     this.groupRecieveSettings.Location = new System.Drawing.Point(162, 385);
     this.groupRecieveSettings.Name     = "groupRecieveSettings";
     this.groupRecieveSettings.Size     = new System.Drawing.Size(571, 115);
     this.groupRecieveSettings.TabIndex = 29;
     this.groupRecieveSettings.TabStop  = false;
     this.groupRecieveSettings.Text     = "Automatic Report Settings";
     //
     // checkReceiveReportsService
     //
     this.checkReceiveReportsService.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkReceiveReportsService.CheckAlign      = System.Drawing.ContentAlignment.MiddleRight;
     this.checkReceiveReportsService.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.checkReceiveReportsService.Location        = new System.Drawing.Point(22, 17);
     this.checkReceiveReportsService.Name            = "checkReceiveReportsService";
     this.checkReceiveReportsService.Size            = new System.Drawing.Size(227, 17);
     this.checkReceiveReportsService.TabIndex        = 32;
     this.checkReceiveReportsService.TabStop         = false;
     this.checkReceiveReportsService.Text            = "Receive Reports by Service";
     this.checkReceiveReportsService.TextAlign       = System.Drawing.ContentAlignment.MiddleRight;
     this.checkReceiveReportsService.CheckedChanged += new System.EventHandler(this.checkReceiveReportsService_CheckedChanged);
     //
     // textReportComputerName
     //
     this.textReportComputerName.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textReportComputerName.Location  = new System.Drawing.Point(237, 39);
     this.textReportComputerName.MaxLength = 2147483647;
     this.textReportComputerName.Multiline = true;
     this.textReportComputerName.Name      = "textReportComputerName";
     this.textReportComputerName.Size      = new System.Drawing.Size(239, 20);
     this.textReportComputerName.TabIndex  = 29;
     //
     // butThisComputer
     //
     this.butThisComputer.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butThisComputer.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butThisComputer.Autosize     = true;
     this.butThisComputer.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butThisComputer.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butThisComputer.CornerRadius = 4F;
     this.butThisComputer.Location     = new System.Drawing.Point(479, 37);
     this.butThisComputer.Name         = "butThisComputer";
     this.butThisComputer.Size         = new System.Drawing.Size(86, 24);
     this.butThisComputer.TabIndex     = 31;
     this.butThisComputer.Text         = "This Computer";
     this.butThisComputer.Click       += new System.EventHandler(this.butThisComputer_Click);
     //
     // labelReportComputerName
     //
     this.labelReportComputerName.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelReportComputerName.Location  = new System.Drawing.Point(6, 39);
     this.labelReportComputerName.Name      = "labelReportComputerName";
     this.labelReportComputerName.Size      = new System.Drawing.Size(228, 20);
     this.labelReportComputerName.TabIndex  = 30;
     this.labelReportComputerName.Text      = "Computer To Receive Reports Automatically";
     this.labelReportComputerName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormClearinghouses
     //
     this.ClientSize = new System.Drawing.Size(891, 503);
     this.Controls.Add(this.groupRecieveSettings);
     this.Controls.Add(this.labelGuide);
     this.Controls.Add(this.labelClinic);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(850, 500);
     this.Name          = "FormClearinghouses";
     this.ShowInTaskbar = false;
     this.Text          = "E-Claims";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormClearinghouses_Closing);
     this.Load         += new System.EventHandler(this.FormClearinghouses_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupRecieveSettings.ResumeLayout(false);
     this.groupRecieveSettings.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #10
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(FormQuickPaste));
     this.butCancel         = new OpenDental.UI.Button();
     this.butOK             = new OpenDental.UI.Button();
     this.listCat           = new System.Windows.Forms.ListBox();
     this.label1            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.butDownCat        = new OpenDental.UI.Button();
     this.butUpCat          = new OpenDental.UI.Button();
     this.butAddCat         = new OpenDental.UI.Button();
     this.butDeleteCat      = new OpenDental.UI.Button();
     this.butAddNote        = new OpenDental.UI.Button();
     this.butDownNote       = new OpenDental.UI.Button();
     this.butUpNote         = new OpenDental.UI.Button();
     this.butEditNote       = new OpenDental.UI.Button();
     this.butDate           = new OpenDental.UI.Button();
     this.gridMain          = new OpenDental.UI.ODGrid();
     this.butAlphabetize    = new OpenDental.UI.Button();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.radioSortByNote   = new System.Windows.Forms.RadioButton();
     this.radioSortByAbbrev = new System.Windows.Forms.RadioButton();
     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(899, 641);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // 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(818, 641);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 1;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // listCat
     //
     this.listCat.Location     = new System.Drawing.Point(8, 25);
     this.listCat.Name         = "listCat";
     this.listCat.Size         = new System.Drawing.Size(169, 316);
     this.listCat.TabIndex     = 2;
     this.listCat.DoubleClick += new System.EventHandler(this.listCat_DoubleClick);
     this.listCat.MouseDown   += new System.Windows.Forms.MouseEventHandler(this.listCat_MouseDown);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(6, 4);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 19);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Category";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(181, 5);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 19);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "Note";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butDownCat
     //
     this.butDownCat.Image      = global::OpenDental.Properties.Resources.down;
     this.butDownCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDownCat.Location   = new System.Drawing.Point(98, 383);
     this.butDownCat.Name       = "butDownCat";
     this.butDownCat.Size       = new System.Drawing.Size(79, 26);
     this.butDownCat.TabIndex   = 11;
     this.butDownCat.Text       = "Down";
     this.butDownCat.Click     += new System.EventHandler(this.butDownCat_Click);
     //
     // butUpCat
     //
     this.butUpCat.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUpCat.Image      = global::OpenDental.Properties.Resources.up;
     this.butUpCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUpCat.Location   = new System.Drawing.Point(98, 348);
     this.butUpCat.Name       = "butUpCat";
     this.butUpCat.Size       = new System.Drawing.Size(79, 26);
     this.butUpCat.TabIndex   = 10;
     this.butUpCat.Text       = "Up";
     this.butUpCat.Click     += new System.EventHandler(this.butUpCat_Click);
     //
     // butAddCat
     //
     this.butAddCat.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddCat.Location   = new System.Drawing.Point(8, 348);
     this.butAddCat.Name       = "butAddCat";
     this.butAddCat.Size       = new System.Drawing.Size(79, 26);
     this.butAddCat.TabIndex   = 12;
     this.butAddCat.Text       = "Add";
     this.butAddCat.Click     += new System.EventHandler(this.butAddCat_Click);
     //
     // butDeleteCat
     //
     this.butDeleteCat.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDeleteCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDeleteCat.Location   = new System.Drawing.Point(8, 383);
     this.butDeleteCat.Name       = "butDeleteCat";
     this.butDeleteCat.Size       = new System.Drawing.Size(79, 26);
     this.butDeleteCat.TabIndex   = 13;
     this.butDeleteCat.Text       = "Delete";
     this.butDeleteCat.Click     += new System.EventHandler(this.butDeleteCat_Click);
     //
     // butAddNote
     //
     this.butAddNote.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAddNote.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddNote.Location   = new System.Drawing.Point(184, 641);
     this.butAddNote.Name       = "butAddNote";
     this.butAddNote.Size       = new System.Drawing.Size(79, 26);
     this.butAddNote.TabIndex   = 16;
     this.butAddNote.Text       = "Add";
     this.butAddNote.Click     += new System.EventHandler(this.butAddNote_Click);
     //
     // butDownNote
     //
     this.butDownNote.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDownNote.Image      = global::OpenDental.Properties.Resources.down;
     this.butDownNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDownNote.Location   = new System.Drawing.Point(439, 641);
     this.butDownNote.Name       = "butDownNote";
     this.butDownNote.Size       = new System.Drawing.Size(79, 26);
     this.butDownNote.TabIndex   = 15;
     this.butDownNote.Text       = "Down";
     this.butDownNote.Click     += new System.EventHandler(this.butDownNote_Click);
     //
     // butUpNote
     //
     this.butUpNote.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUpNote.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butUpNote.Image      = global::OpenDental.Properties.Resources.up;
     this.butUpNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUpNote.Location   = new System.Drawing.Point(354, 641);
     this.butUpNote.Name       = "butUpNote";
     this.butUpNote.Size       = new System.Drawing.Size(79, 26);
     this.butUpNote.TabIndex   = 14;
     this.butUpNote.Text       = "Up";
     this.butUpNote.Click     += new System.EventHandler(this.butUpNote_Click);
     //
     // butEditNote
     //
     this.butEditNote.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butEditNote.Image      = global::OpenDental.Properties.Resources.editPencil;
     this.butEditNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEditNote.Location   = new System.Drawing.Point(269, 641);
     this.butEditNote.Name       = "butEditNote";
     this.butEditNote.Size       = new System.Drawing.Size(79, 26);
     this.butEditNote.TabIndex   = 17;
     this.butEditNote.Text       = "Edit";
     this.butEditNote.Click     += new System.EventHandler(this.butEditNote_Click);
     //
     // butDate
     //
     this.butDate.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDate.Location = new System.Drawing.Point(737, 641);
     this.butDate.Name     = "butDate";
     this.butDate.Size     = new System.Drawing.Size(75, 26);
     this.butDate.TabIndex = 18;
     this.butDate.Text     = "Date";
     this.butDate.Click   += new System.EventHandler(this.butDate_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.Location         = new System.Drawing.Point(184, 28);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(790, 601);
     this.gridMain.TabIndex         = 19;
     this.gridMain.Title            = "Notes";
     this.gridMain.TranslationName  = "TableNotes";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAlphabetize
     //
     this.butAlphabetize.Location = new System.Drawing.Point(6, 14);
     this.butAlphabetize.Name     = "butAlphabetize";
     this.butAlphabetize.Size     = new System.Drawing.Size(75, 26);
     this.butAlphabetize.TabIndex = 20;
     this.butAlphabetize.Text     = "Alphabetize";
     this.butAlphabetize.Click   += new System.EventHandler(this.butAlphabetize_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox1.Controls.Add(this.radioSortByNote);
     this.groupBox1.Controls.Add(this.radioSortByAbbrev);
     this.groupBox1.Controls.Add(this.butAlphabetize);
     this.groupBox1.Location = new System.Drawing.Point(524, 627);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(207, 46);
     this.groupBox1.TabIndex = 21;
     this.groupBox1.TabStop  = false;
     //
     // radioSortByNote
     //
     this.radioSortByNote.Location = new System.Drawing.Point(88, 26);
     this.radioSortByNote.Name     = "radioSortByNote";
     this.radioSortByNote.Size     = new System.Drawing.Size(85, 17);
     this.radioSortByNote.TabIndex = 22;
     this.radioSortByNote.Text     = "Note";
     this.radioSortByNote.UseVisualStyleBackColor = true;
     //
     // radioSortByAbbrev
     //
     this.radioSortByAbbrev.Checked  = true;
     this.radioSortByAbbrev.Location = new System.Drawing.Point(88, 9);
     this.radioSortByAbbrev.Name     = "radioSortByAbbrev";
     this.radioSortByAbbrev.Size     = new System.Drawing.Size(113, 17);
     this.radioSortByAbbrev.TabIndex = 21;
     this.radioSortByAbbrev.TabStop  = true;
     this.radioSortByAbbrev.Text     = "Abbreviation";
     this.radioSortByAbbrev.UseVisualStyleBackColor = true;
     //
     // FormQuickPaste
     //
     this.ClientSize = new System.Drawing.Size(986, 677);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butDate);
     this.Controls.Add(this.butEditNote);
     this.Controls.Add(this.butAddNote);
     this.Controls.Add(this.butDownNote);
     this.Controls.Add(this.butUpNote);
     this.Controls.Add(this.butDeleteCat);
     this.Controls.Add(this.butAddCat);
     this.Controls.Add(this.butDownCat);
     this.Controls.Add(this.butUpCat);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listCat);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.groupBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(1002, 458);
     this.Name          = "FormQuickPaste";
     this.ShowInTaskbar = false;
     this.Text          = "Quick Paste Notes";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormQuickPaste_FormClosing);
     this.Load         += new System.EventHandler(this.FormQuickPaste_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #11
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(FormPhoneEmpDefaultEdit));
     this.label1                = new System.Windows.Forms.Label();
     this.label2                = new System.Windows.Forms.Label();
     this.listRingGroup         = new System.Windows.Forms.ListBox();
     this.checkIsGraphed        = new System.Windows.Forms.CheckBox();
     this.label5                = new System.Windows.Forms.Label();
     this.checkHasColor         = new System.Windows.Forms.CheckBox();
     this.textEmpName           = new System.Windows.Forms.TextBox();
     this.label6                = new System.Windows.Forms.Label();
     this.textNotes             = new OpenDental.ODtextBox();
     this.label3                = new System.Windows.Forms.Label();
     this.checkIsPrivateScreen  = new System.Windows.Forms.CheckBox();
     this.label7                = new System.Windows.Forms.Label();
     this.label8                = new System.Windows.Forms.Label();
     this.label9                = new System.Windows.Forms.Label();
     this.label10               = new System.Windows.Forms.Label();
     this.label11               = new System.Windows.Forms.Label();
     this.label12               = new System.Windows.Forms.Label();
     this.label13               = new System.Windows.Forms.Label();
     this.label14               = new System.Windows.Forms.Label();
     this.label16               = new System.Windows.Forms.Label();
     this.listStatusOverride    = new System.Windows.Forms.ListBox();
     this.label17               = new System.Windows.Forms.Label();
     this.checkIsTriageOperator = new System.Windows.Forms.CheckBox();
     this.butAddPhoneGraphEntry = new OpenDental.UI.Button();
     this.gridGraph             = new OpenDental.UI.ODGrid();
     this.textPhoneExt          = new OpenDental.ValidNum();
     this.textEmployeeNum       = new OpenDental.ValidNum();
     this.butDelete             = new OpenDental.UI.Button();
     this.butOK     = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.comboSite = new System.Windows.Forms.ComboBox();
     this.label18   = new System.Windows.Forms.Label();
     this.label19   = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(40, 23);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 20);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "EmployeeNum";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(1, 144);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(139, 20);
     this.label2.TabIndex  = 13;
     this.label2.Text      = "Default Queue";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // listRingGroup
     //
     this.listRingGroup.FormattingEnabled = true;
     this.listRingGroup.Location          = new System.Drawing.Point(144, 144);
     this.listRingGroup.Name     = "listRingGroup";
     this.listRingGroup.Size     = new System.Drawing.Size(120, 56);
     this.listRingGroup.TabIndex = 4;
     //
     // checkIsGraphed
     //
     this.checkIsGraphed.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsGraphed.Location   = new System.Drawing.Point(3, 87);
     this.checkIsGraphed.Name       = "checkIsGraphed";
     this.checkIsGraphed.Size       = new System.Drawing.Size(155, 20);
     this.checkIsGraphed.TabIndex   = 2;
     this.checkIsGraphed.Text       = "Is Graphed (default)";
     this.checkIsGraphed.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsGraphed.UseVisualStyleBackColor = true;
     this.checkIsGraphed.Click += new System.EventHandler(this.checkIsGraphed_Click);
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(40, 211);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(100, 20);
     this.label5.TabIndex  = 23;
     this.label5.Text      = "Extension";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkHasColor
     //
     this.checkHasColor.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkHasColor.Location   = new System.Drawing.Point(3, 113);
     this.checkHasColor.Name       = "checkHasColor";
     this.checkHasColor.Size       = new System.Drawing.Size(155, 20);
     this.checkHasColor.TabIndex   = 3;
     this.checkHasColor.Text       = "Has Color";
     this.checkHasColor.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkHasColor.UseVisualStyleBackColor = true;
     this.checkHasColor.Click += new System.EventHandler(this.checkHasColor_Click);
     //
     // textEmpName
     //
     this.textEmpName.Location = new System.Drawing.Point(144, 56);
     this.textEmpName.Name     = "textEmpName";
     this.textEmpName.Size     = new System.Drawing.Size(170, 20);
     this.textEmpName.TabIndex = 1;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(3, 55);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(137, 20);
     this.label6.TabIndex  = 26;
     this.label6.Text      = "Employee First Name";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textNotes
     //
     this.textNotes.AcceptsTab         = true;
     this.textNotes.BackColor          = System.Drawing.SystemColors.Window;
     this.textNotes.DetectLinksEnabled = false;
     this.textNotes.DetectUrls         = false;
     this.textNotes.Location           = new System.Drawing.Point(144, 303);
     this.textNotes.Name           = "textNotes";
     this.textNotes.QuickPasteType = OpenDentBusiness.QuickPasteType.EmployeeStatus;
     this.textNotes.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textNotes.Size           = new System.Drawing.Size(352, 51);
     this.textNotes.TabIndex       = 7;
     this.textNotes.Text           = "";
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(40, 302);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(100, 20);
     this.label3.TabIndex  = 29;
     this.label3.Text      = "Notes";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkIsPrivateScreen
     //
     this.checkIsPrivateScreen.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsPrivateScreen.Enabled    = false;
     this.checkIsPrivateScreen.Location   = new System.Drawing.Point(3, 397);
     this.checkIsPrivateScreen.Name       = "checkIsPrivateScreen";
     this.checkIsPrivateScreen.Size       = new System.Drawing.Size(155, 20);
     this.checkIsPrivateScreen.TabIndex   = 9;
     this.checkIsPrivateScreen.Text       = "Private Screen";
     this.checkIsPrivateScreen.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsPrivateScreen.UseVisualStyleBackColor = true;
     this.checkIsPrivateScreen.Click += new System.EventHandler(this.checkIsPrivateScreen_Click);
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(200, 24);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(366, 20);
     this.label7.TabIndex  = 34;
     this.label7.Text      = "This number must be looked up in the employee table";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(161, 85);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(428, 27);
     this.label8.TabIndex = 35;
     this.label8.Text     = "This employee\'s default \'Graph\' status. Should be checked for most phone techs.\r\n" +
                            "Use Phone Graph Edits grid to create exceptions.";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(161, 112);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(414, 20);
     this.label9.TabIndex  = 36;
     this.label9.Text      = "Show the red and green phone status colors in the phone panel";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(268, 149);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(359, 47);
     this.label10.TabIndex = 37;
     this.label10.Text     = "The normal queue for this employee when clocked in.  If you change this value, th" +
                             "e change will not immediately show on each workstation, but will instead require" +
                             " a restart of OD.";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(204, 205);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(498, 32);
     this.label11.TabIndex = 38;
     this.label11.Text     = "Phone extension for this employee.  Change this number to 0 if you are going to b" +
                             "e floating.  Changing the extension to 0 will allow you to use the manage module" +
                             " to clock in and out.";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(315, 56);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(366, 20);
     this.label12.TabIndex  = 39;
     this.label12.Text      = "This is the name that will show in the phone panel.";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(268, 246);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(321, 20);
     this.label13.TabIndex  = 40;
     this.label13.Text      = "Mark yourself unavailable only if approved by manager";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(502, 302);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(157, 35);
     this.label14.TabIndex = 41;
     this.label14.Text     = "Why unavailable?\r\nWhy offline assist?";
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(161, 394);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(194, 47);
     this.label16.TabIndex = 43;
     this.label16.Text     = "Halts screen captures.  Only used/allowed by managers. ";
     //
     // listStatusOverride
     //
     this.listStatusOverride.FormattingEnabled = true;
     this.listStatusOverride.Location          = new System.Drawing.Point(144, 246);
     this.listStatusOverride.Name     = "listStatusOverride";
     this.listStatusOverride.Size     = new System.Drawing.Size(120, 43);
     this.listStatusOverride.TabIndex = 6;
     //
     // label17
     //
     this.label17.Location  = new System.Drawing.Point(2, 248);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(139, 20);
     this.label17.TabIndex  = 46;
     this.label17.Text      = "StatusOverride";
     this.label17.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkIsTriageOperator
     //
     this.checkIsTriageOperator.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsTriageOperator.Location   = new System.Drawing.Point(3, 423);
     this.checkIsTriageOperator.Name       = "checkIsTriageOperator";
     this.checkIsTriageOperator.Size       = new System.Drawing.Size(155, 20);
     this.checkIsTriageOperator.TabIndex   = 10;
     this.checkIsTriageOperator.Text       = "Triage Operator";
     this.checkIsTriageOperator.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIsTriageOperator.UseVisualStyleBackColor = true;
     //
     // butAddPhoneGraphEntry
     //
     this.butAddPhoneGraphEntry.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddPhoneGraphEntry.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAddPhoneGraphEntry.Autosize     = true;
     this.butAddPhoneGraphEntry.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddPhoneGraphEntry.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddPhoneGraphEntry.CornerRadius = 4F;
     this.butAddPhoneGraphEntry.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAddPhoneGraphEntry.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddPhoneGraphEntry.Location     = new System.Drawing.Point(832, 412);
     this.butAddPhoneGraphEntry.Name         = "butAddPhoneGraphEntry";
     this.butAddPhoneGraphEntry.Size         = new System.Drawing.Size(75, 24);
     this.butAddPhoneGraphEntry.TabIndex     = 48;
     this.butAddPhoneGraphEntry.Text         = "Add";
     this.butAddPhoneGraphEntry.Click       += new System.EventHandler(this.butAddPhoneGraphEntry_Click);
     //
     // gridGraph
     //
     this.gridGraph.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.gridGraph.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridGraph.HasAddButton        = false;
     this.gridGraph.HasDropDowns        = false;
     this.gridGraph.HasMultilineHeaders = false;
     this.gridGraph.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridGraph.HeaderHeight        = 15;
     this.gridGraph.HScrollVisible      = false;
     this.gridGraph.Location            = new System.Drawing.Point(745, 45);
     this.gridGraph.Name             = "gridGraph";
     this.gridGraph.ScrollValue      = 0;
     this.gridGraph.Size             = new System.Drawing.Size(162, 362);
     this.gridGraph.TabIndex         = 47;
     this.gridGraph.Title            = "Phone Graph Edits";
     this.gridGraph.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridGraph.TitleHeight      = 18;
     this.gridGraph.TranslationName  = "TablePhoneGraph";
     this.gridGraph.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridGraph_CellDoubleClick);
     //
     // textPhoneExt
     //
     this.textPhoneExt.Location = new System.Drawing.Point(144, 212);
     this.textPhoneExt.MaxVal   = 99999;
     this.textPhoneExt.MinVal   = 0;
     this.textPhoneExt.Name     = "textPhoneExt";
     this.textPhoneExt.Size     = new System.Drawing.Size(54, 20);
     this.textPhoneExt.TabIndex = 5;
     //
     // textEmployeeNum
     //
     this.textEmployeeNum.Location = new System.Drawing.Point(144, 24);
     this.textEmployeeNum.MaxVal   = 99999;
     this.textEmployeeNum.MinVal   = 0;
     this.textEmployeeNum.Name     = "textEmployeeNum";
     this.textEmployeeNum.Size     = new System.Drawing.Size(54, 20);
     this.textEmployeeNum.TabIndex = 0;
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location     = new System.Drawing.Point(28, 467);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(84, 24);
     this.butDelete.TabIndex     = 13;
     this.butDelete.Text         = "Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(739, 467);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 11;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location     = new System.Drawing.Point(832, 467);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 12;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // comboSite
     //
     this.comboSite.FormattingEnabled = true;
     this.comboSite.Location          = new System.Drawing.Point(144, 367);
     this.comboSite.Name     = "comboSite";
     this.comboSite.Size     = new System.Drawing.Size(213, 21);
     this.comboSite.TabIndex = 49;
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(361, 367);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(359, 30);
     this.label18.TabIndex = 50;
     this.label18.Text     = "Set site to the physical location of the phone associated to the extension above." +
                             "  Used in MapHQ and reserving conference rooms.";
     //
     // label19
     //
     this.label19.Location  = new System.Drawing.Point(41, 366);
     this.label19.Name      = "label19";
     this.label19.Size      = new System.Drawing.Size(100, 20);
     this.label19.TabIndex  = 51;
     this.label19.Text      = "Site";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormPhoneEmpDefaultEdit
     //
     this.ClientSize = new System.Drawing.Size(924, 504);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.comboSite);
     this.Controls.Add(this.butAddPhoneGraphEntry);
     this.Controls.Add(this.gridGraph);
     this.Controls.Add(this.checkIsTriageOperator);
     this.Controls.Add(this.listStatusOverride);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.textPhoneExt);
     this.Controls.Add(this.textEmployeeNum);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.checkIsPrivateScreen);
     this.Controls.Add(this.textNotes);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.textEmpName);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.checkHasColor);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.checkIsGraphed);
     this.Controls.Add(this.listRingGroup);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.label2);
     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          = "FormPhoneEmpDefaultEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Employee Setting";
     this.Load         += new System.EventHandler(this.FormPhoneEmpDefaultEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormEmailTemplateEdit));
     this.butCancel              = new OpenDental.UI.Button();
     this.butOK                  = new OpenDental.UI.Button();
     this.label2                 = new System.Windows.Forms.Label();
     this.textBodyText           = new OpenDental.ODtextBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.butBodyFields          = new OpenDental.UI.Button();
     this.textSubject            = new OpenDental.ODtextBox();
     this.textDescription        = new OpenDental.ODtextBox();
     this.butSubjectFields       = new OpenDental.UI.Button();
     this.butAttach              = new OpenDental.UI.Button();
     this.gridAttachments        = new OpenDental.UI.ODGrid();
     this.contextMenuAttachments = new System.Windows.Forms.ContextMenu();
     this.menuItemOpen           = new System.Windows.Forms.MenuItem();
     this.menuItemRename         = new System.Windows.Forms.MenuItem();
     this.menuItemRemove         = new System.Windows.Forms.MenuItem();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(883, 656);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex     = 6;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(802, 656);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 25);
     this.butOK.TabIndex     = 5;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 65);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 20);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "Subject";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBodyText
     //
     this.textBodyText.AcceptsTab = true;
     this.textBodyText.Anchor     = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.textBodyText.BackColor          = System.Drawing.SystemColors.Window;
     this.textBodyText.DetectLinksEnabled = false;
     this.textBodyText.DetectUrls         = false;
     this.textBodyText.Location           = new System.Drawing.Point(97, 86);
     this.textBodyText.Name           = "textBodyText";
     this.textBodyText.QuickPasteType = OpenDentBusiness.QuickPasteType.Email;
     this.textBodyText.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textBodyText.Size           = new System.Drawing.Size(861, 564);
     this.textBodyText.TabIndex       = 3;
     this.textBodyText.Text           = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 86);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 20);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Body";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 44);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(88, 20);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "Description";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butBodyFields
     //
     this.butBodyFields.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butBodyFields.Autosize            = true;
     this.butBodyFields.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butBodyFields.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butBodyFields.CornerRadius        = 4F;
     this.butBodyFields.Location            = new System.Drawing.Point(182, 23);
     this.butBodyFields.Name     = "butBodyFields";
     this.butBodyFields.Size     = new System.Drawing.Size(82, 20);
     this.butBodyFields.TabIndex = 4;
     this.butBodyFields.Text     = "Body Fields";
     this.butBodyFields.Click   += new System.EventHandler(this.butBodyFields_Click);
     //
     // textSubject
     //
     this.textSubject.AcceptsTab = true;
     this.textSubject.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.textSubject.BackColor          = System.Drawing.SystemColors.Window;
     this.textSubject.DetectLinksEnabled = false;
     this.textSubject.DetectUrls         = false;
     this.textSubject.Location           = new System.Drawing.Point(97, 65);
     this.textSubject.Multiline          = false;
     this.textSubject.Name           = "textSubject";
     this.textSubject.QuickPasteType = OpenDentBusiness.QuickPasteType.Email;
     this.textSubject.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textSubject.Size           = new System.Drawing.Size(635, 20);
     this.textSubject.TabIndex       = 2;
     this.textSubject.Text           = "";
     //
     // textDescription
     //
     this.textDescription.AcceptsTab = true;
     this.textDescription.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textDescription.BackColor          = System.Drawing.SystemColors.Window;
     this.textDescription.DetectLinksEnabled = false;
     this.textDescription.DetectUrls         = false;
     this.textDescription.Location           = new System.Drawing.Point(97, 44);
     this.textDescription.Multiline          = false;
     this.textDescription.Name           = "textDescription";
     this.textDescription.QuickPasteType = OpenDentBusiness.QuickPasteType.Email;
     this.textDescription.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textDescription.Size           = new System.Drawing.Size(635, 20);
     this.textDescription.TabIndex       = 1;
     this.textDescription.Text           = "";
     //
     // butSubjectFields
     //
     this.butSubjectFields.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSubjectFields.Autosize            = true;
     this.butSubjectFields.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSubjectFields.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSubjectFields.CornerRadius        = 4F;
     this.butSubjectFields.Location            = new System.Drawing.Point(97, 23);
     this.butSubjectFields.Name     = "butSubjectFields";
     this.butSubjectFields.Size     = new System.Drawing.Size(82, 20);
     this.butSubjectFields.TabIndex = 7;
     this.butSubjectFields.Text     = "Subject Fields";
     this.butSubjectFields.Click   += new System.EventHandler(this.butSubjectFields_Click);
     //
     // butAttach
     //
     this.butAttach.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAttach.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butAttach.Autosize     = true;
     this.butAttach.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAttach.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAttach.CornerRadius = 4F;
     this.butAttach.Location     = new System.Drawing.Point(738, 2);
     this.butAttach.Name         = "butAttach";
     this.butAttach.Size         = new System.Drawing.Size(82, 20);
     this.butAttach.TabIndex     = 9;
     this.butAttach.Text         = "Attach...";
     this.butAttach.Click       += new System.EventHandler(this.butAttach_Click);
     //
     // gridAttachments
     //
     this.gridAttachments.Anchor              = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridAttachments.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridAttachments.HasAddButton        = false;
     this.gridAttachments.HasDropDowns        = false;
     this.gridAttachments.HasMultilineHeaders = false;
     this.gridAttachments.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridAttachments.HeaderHeight        = 15;
     this.gridAttachments.HScrollVisible      = false;
     this.gridAttachments.Location            = new System.Drawing.Point(738, 23);
     this.gridAttachments.Name             = "gridAttachments";
     this.gridAttachments.ScrollValue      = 0;
     this.gridAttachments.Size             = new System.Drawing.Size(220, 62);
     this.gridAttachments.TabIndex         = 8;
     this.gridAttachments.TabStop          = false;
     this.gridAttachments.Title            = "Attachments";
     this.gridAttachments.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridAttachments.TitleHeight      = 18;
     this.gridAttachments.TranslationName  = "TableAttachments";
     this.gridAttachments.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridAttachments_CellDoubleClick);
     this.gridAttachments.MouseDown       += new System.Windows.Forms.MouseEventHandler(this.gridAttachments_MouseDown);
     //
     // contextMenuAttachments
     //
     this.contextMenuAttachments.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemOpen,
         this.menuItemRename,
         this.menuItemRemove
     });
     this.contextMenuAttachments.Popup += new System.EventHandler(this.contextMenuAttachments_Popup);
     //
     // menuItemOpen
     //
     this.menuItemOpen.Index  = 0;
     this.menuItemOpen.Text   = "Open";
     this.menuItemOpen.Click += new System.EventHandler(this.menuItemOpen_Click);
     //
     // menuItemRename
     //
     this.menuItemRename.Index  = 1;
     this.menuItemRename.Text   = "Rename";
     this.menuItemRename.Click += new System.EventHandler(this.menuItemRename_Click);
     //
     // menuItemRemove
     //
     this.menuItemRemove.Index  = 2;
     this.menuItemRemove.Text   = "Remove";
     this.menuItemRemove.Click += new System.EventHandler(this.menuItemRemove_Click);
     //
     // FormEmailTemplateEdit
     //
     this.ClientSize = new System.Drawing.Size(974, 695);
     this.Controls.Add(this.butAttach);
     this.Controls.Add(this.gridAttachments);
     this.Controls.Add(this.butSubjectFields);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.textSubject);
     this.Controls.Add(this.butBodyFields);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBodyText);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(933, 200);
     this.Name          = "FormEmailTemplateEdit";
     this.ShowInTaskbar = false;
     this.Text          = "Edit Email Template";
     this.Load         += new System.EventHandler(this.FormEmailTemplateEdit_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.butCancel = new OpenDental.UI.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.textFName = new System.Windows.Forms.TextBox();
     this.textLName = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textBirthdate = new OpenDental.ValidDate();
     this.label9 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.butSelect = new OpenDental.UI.Button();
     this.butNew = new OpenDental.UI.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location = new System.Drawing.Point(539,451);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 2;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12,9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(389,20);
     this.label1.TabIndex = 4;
     this.label1.Text = "An exact matching patient could not be found for this submitted web form.";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // gridMain
     //
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(15,162);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(483,161);
     this.gridMain.TabIndex = 5;
     this.gridMain.Title = "Close Matches";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textBirthdate);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.textFName);
     this.groupBox1.Controls.Add(this.textLName);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(15,35);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(350,89);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Submitted Values";
     //
     // textFName
     //
     this.textFName.Location = new System.Drawing.Point(114,41);
     this.textFName.MaxLength = 100;
     this.textFName.Name = "textFName";
     this.textFName.ReadOnly = true;
     this.textFName.Size = new System.Drawing.Size(228,20);
     this.textFName.TabIndex = 5;
     //
     // textLName
     //
     this.textLName.Location = new System.Drawing.Point(114,20);
     this.textLName.MaxLength = 100;
     this.textLName.Name = "textLName";
     this.textLName.ReadOnly = true;
     this.textLName.Size = new System.Drawing.Size(228,20);
     this.textLName.TabIndex = 3;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(4,44);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(108,16);
     this.label3.TabIndex = 6;
     this.label3.Text = "First Name";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(6,22);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106,16);
     this.label2.TabIndex = 4;
     this.label2.Text = "Last Name";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textBirthdate
     //
     this.textBirthdate.Location = new System.Drawing.Point(114,62);
     this.textBirthdate.Name = "textBirthdate";
     this.textBirthdate.ReadOnly = true;
     this.textBirthdate.Size = new System.Drawing.Size(82,20);
     this.textBirthdate.TabIndex = 10;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(7,66);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(105,14);
     this.label9.TabIndex = 9;
     this.label9.Text = "Birthdate";
     this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(12,139);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(389,20);
     this.label4.TabIndex = 7;
     this.label4.Text = "You can choose a patient by double clicking in this list";
     this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12,344);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(389,20);
     this.label5.TabIndex = 8;
     this.label5.Text = "Or, you can select a patient from the main list.";
     this.label5.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butSelect
     //
     this.butSelect.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butSelect.Autosize = true;
     this.butSelect.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSelect.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSelect.CornerRadius = 4F;
     this.butSelect.Location = new System.Drawing.Point(15,368);
     this.butSelect.Name = "butSelect";
     this.butSelect.Size = new System.Drawing.Size(75,24);
     this.butSelect.TabIndex = 9;
     this.butSelect.Text = "Select";
     this.butSelect.Click += new System.EventHandler(this.butSelect_Click);
     //
     // butNew
     //
     this.butNew.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butNew.Autosize = true;
     this.butNew.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butNew.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butNew.CornerRadius = 4F;
     this.butNew.Location = new System.Drawing.Point(15,434);
     this.butNew.Name = "butNew";
     this.butNew.Size = new System.Drawing.Size(75,24);
     this.butNew.TabIndex = 11;
     this.butNew.Text = "New";
     this.butNew.Click += new System.EventHandler(this.butNew_Click);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(12,410);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(389,20);
     this.label6.TabIndex = 10;
     this.label6.Text = "Or, you can create a new patient to attach this form to.";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // FormPatientPickWebForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(626,487);
     this.Controls.Add(this.butNew);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.butSelect);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butCancel);
     this.Name = "FormPatientPickWebForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Pick Patient for Web Form";
     this.Load += new System.EventHandler(this.FormPatientPickWebForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormEhrQuarterlyKeys));
     this.butClose = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textPracticeTitle = new System.Windows.Forms.TextBox();
     this.butAdd = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(397,417);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "Close";
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(41,144);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(311,297);
     this.gridMain.TabIndex = 4;
     this.gridMain.Title = "Keys";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(38,19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(415,72);
     this.label1.TabIndex = 5;
     this.label1.Text = resources.GetString("label1.Text");
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(38,108);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(83,17);
     this.label2.TabIndex = 6;
     this.label2.Text = "Practice Title";
     //
     // textPracticeTitle
     //
     this.textPracticeTitle.Location = new System.Drawing.Point(115,105);
     this.textPracticeTitle.Name = "textPracticeTitle";
     this.textPracticeTitle.ReadOnly = true;
     this.textPracticeTitle.Size = new System.Drawing.Size(338,20);
     this.textPracticeTitle.TabIndex = 7;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location = new System.Drawing.Point(378,144);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(75,24);
     this.butAdd.TabIndex = 8;
     this.butAdd.Text = "Add";
     this.butAdd.UseVisualStyleBackColor = true;
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // FormEhrQuarterlyKeys
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(497,468);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.textPracticeTitle);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.Name = "FormEhrQuarterlyKeys";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Ehr Quarterly Keys";
     this.Load += new System.EventHandler(this.FormEhrQuarterlyKeys_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelFromDate = new System.Windows.Forms.Label();
     this.labelToDate = new System.Windows.Forms.Label();
     this.labelClinic = new System.Windows.Forms.Label();
     this.comboClinic = new System.Windows.Forms.ComboBox();
     this.butRefresh = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.textDateTo = new OpenDental.ValidDate();
     this.butAdd = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.textDateFrom = new OpenDental.ValidDate();
     this.SuspendLayout();
     //
     // labelFromDate
     //
     this.labelFromDate.Location = new System.Drawing.Point(24,18);
     this.labelFromDate.Name = "labelFromDate";
     this.labelFromDate.Size = new System.Drawing.Size(77,14);
     this.labelFromDate.TabIndex = 11;
     this.labelFromDate.Text = "From Date";
     this.labelFromDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelToDate
     //
     this.labelToDate.Location = new System.Drawing.Point(206,17);
     this.labelToDate.Name = "labelToDate";
     this.labelToDate.Size = new System.Drawing.Size(77,14);
     this.labelToDate.TabIndex = 12;
     this.labelToDate.Text = "To Date";
     this.labelToDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelClinic
     //
     this.labelClinic.Location = new System.Drawing.Point(419,19);
     this.labelClinic.Name = "labelClinic";
     this.labelClinic.Size = new System.Drawing.Size(91,14);
     this.labelClinic.TabIndex = 22;
     this.labelClinic.Text = "Clinic";
     this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboClinic
     //
     this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboClinic.Location = new System.Drawing.Point(512,15);
     this.comboClinic.MaxDropDownItems = 40;
     this.comboClinic.Name = "comboClinic";
     this.comboClinic.Size = new System.Drawing.Size(181,21);
     this.comboClinic.TabIndex = 23;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize = true;
     this.butRefresh.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location = new System.Drawing.Point(779,12);
     this.butRefresh.Name = "butRefresh";
     this.butRefresh.Size = new System.Drawing.Size(84,24);
     this.butRefresh.TabIndex = 24;
     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.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,42);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(851,526);
     this.gridMain.TabIndex = 4;
     this.gridMain.Title = "Insurance Payments (EOBs)";
     this.gridMain.TranslationName = "FormClaimPayList";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // textDateTo
     //
     this.textDateTo.Location = new System.Drawing.Point(286,15);
     this.textDateTo.Name = "textDateTo";
     this.textDateTo.Size = new System.Drawing.Size(94,20);
     this.textDateTo.TabIndex = 14;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location = new System.Drawing.Point(12,576);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(75,24);
     this.butAdd.TabIndex = 2;
     this.butAdd.Text = "Add";
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(788,576);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "Close";
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // textDateFrom
     //
     this.textDateFrom.Location = new System.Drawing.Point(104,15);
     this.textDateFrom.Name = "textDateFrom";
     this.textDateFrom.Size = new System.Drawing.Size(94,20);
     this.textDateFrom.TabIndex = 13;
     //
     // FormClaimPayList
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(888,612);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.labelClinic);
     this.Controls.Add(this.textDateTo);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.textDateFrom);
     this.Controls.Add(this.labelToDate);
     this.Controls.Add(this.labelFromDate);
     this.Name = "FormClaimPayList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Batch Insurance Payments";
     this.Load += new System.EventHandler(this.FormClaimPayList_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.butOK = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butProvHygenist = new OpenDental.UI.Button();
     this.butProvDentist = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize = true;
     this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location = new System.Drawing.Point(410,589);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(75,24);
     this.butOK.TabIndex = 3;
     this.butOK.Text = "&OK";
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location = new System.Drawing.Point(410,630);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 2;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,12);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size = new System.Drawing.Size(362,642);
     this.gridMain.TabIndex = 14;
     this.gridMain.Title = "Providers";
     this.gridMain.TranslationName = null;
     //
     // butProvHygenist
     //
     this.butProvHygenist.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butProvHygenist.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butProvHygenist.Autosize = true;
     this.butProvHygenist.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butProvHygenist.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butProvHygenist.CornerRadius = 4F;
     this.butProvHygenist.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butProvHygenist.Location = new System.Drawing.Point(410,149);
     this.butProvHygenist.Name = "butProvHygenist";
     this.butProvHygenist.Size = new System.Drawing.Size(75,24);
     this.butProvHygenist.TabIndex = 90;
     this.butProvHygenist.Text = "Hygienists";
     this.butProvHygenist.Click += new System.EventHandler(this.butProvHygenist_Click);
     //
     // butProvDentist
     //
     this.butProvDentist.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butProvDentist.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butProvDentist.Autosize = true;
     this.butProvDentist.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butProvDentist.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butProvDentist.CornerRadius = 4F;
     this.butProvDentist.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butProvDentist.Location = new System.Drawing.Point(410,108);
     this.butProvDentist.Name = "butProvDentist";
     this.butProvDentist.Size = new System.Drawing.Size(75,24);
     this.butProvDentist.TabIndex = 89;
     this.butProvDentist.Text = "Dentists";
     this.butProvDentist.Click += new System.EventHandler(this.butProvDentist_Click);
     //
     // FormProvidersMultiPick
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(514,670);
     this.Controls.Add(this.butProvHygenist);
     this.Controls.Add(this.butProvDentist);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.KeyPreview = true;
     this.Name = "FormProvidersMultiPick";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Providers";
     this.Load += new System.EventHandler(this.FormProvidersMultiPick_Load);
     this.ResumeLayout(false);
 }
예제 #17
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(FormReferralSelect));
     this.checkHidden      = new System.Windows.Forms.CheckBox();
     this.gridMain         = new OpenDental.UI.ODGrid();
     this.textSearch       = new System.Windows.Forms.TextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.labelResultCount = new System.Windows.Forms.Label();
     this.butAdd           = new OpenDental.UI.Button();
     this.butCancel        = new OpenDental.UI.Button();
     this.butOK            = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // checkHidden
     //
     this.checkHidden.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkHidden.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.checkHidden.Location    = new System.Drawing.Point(844, 6);
     this.checkHidden.Name        = "checkHidden";
     this.checkHidden.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.checkHidden.Size        = new System.Drawing.Size(104, 24);
     this.checkHidden.TabIndex    = 11;
     this.checkHidden.Text        = "Show Hidden  ";
     this.checkHidden.Click      += new System.EventHandler(this.checkHidden_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(8, 34);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(940, 618);
     this.gridMain.TabIndex         = 15;
     this.gridMain.Title            = "Select Referral";
     this.gridMain.TranslationName  = "TableSelectReferral";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // textSearch
     //
     this.textSearch.Location     = new System.Drawing.Point(106, 8);
     this.textSearch.Name         = "textSearch";
     this.textSearch.Size         = new System.Drawing.Size(201, 20);
     this.textSearch.TabIndex     = 0;
     this.textSearch.TextChanged += new System.EventHandler(this.textSearch_TextChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(5, 10);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 17);
     this.label1.TabIndex  = 17;
     this.label1.Text      = "Search";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelResultCount
     //
     this.labelResultCount.Location  = new System.Drawing.Point(313, 10);
     this.labelResultCount.Name      = "labelResultCount";
     this.labelResultCount.Size      = new System.Drawing.Size(129, 17);
     this.labelResultCount.TabIndex  = 18;
     this.labelResultCount.Text      = "# results found";
     this.labelResultCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(8, 661);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(80, 24);
     this.butAdd.TabIndex     = 12;
     this.butAdd.Text         = "&Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.ImageAlign   = System.Drawing.ContentAlignment.TopRight;
     this.butCancel.Location     = new System.Drawing.Point(873, 661);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 6;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(785, 661);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // FormReferralSelect
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(962, 696);
     this.Controls.Add(this.labelResultCount);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textSearch);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.checkHidden);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormReferralSelect";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Referrals";
     this.Load         += new System.EventHandler(this.FormReferralSelect_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelCodeOrDesc = new System.Windows.Forms.Label();
     this.textCode = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butExact = new OpenDental.UI.Button();
     this.butSearch = new OpenDental.UI.Button();
     this.butRxNorm = new OpenDental.UI.Button();
     this.button1 = new OpenDental.UI.Button();
     this.butOK = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // labelCodeOrDesc
     //
     this.labelCodeOrDesc.Location = new System.Drawing.Point(3,10);
     this.labelCodeOrDesc.Name = "labelCodeOrDesc";
     this.labelCodeOrDesc.Size = new System.Drawing.Size(172,16);
     this.labelCodeOrDesc.TabIndex = 21;
     this.labelCodeOrDesc.Text = "Code or Description";
     this.labelCodeOrDesc.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textCode
     //
     this.textCode.Location = new System.Drawing.Point(178,7);
     this.textCode.Name = "textCode";
     this.textCode.Size = new System.Drawing.Size(100,20);
     this.textCode.TabIndex = 20;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(243,666);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(215,23);
     this.label1.TabIndex = 23;
     this.label1.Text = "Creates new RxNorm table in database.";
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(26,34);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(642,599);
     this.gridMain.TabIndex = 4;
     this.gridMain.Title = "RxNorm Codes";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butExact
     //
     this.butExact.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butExact.Autosize = true;
     this.butExact.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butExact.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butExact.CornerRadius = 4F;
     this.butExact.Location = new System.Drawing.Point(365,5);
     this.butExact.Name = "butExact";
     this.butExact.Size = new System.Drawing.Size(75,24);
     this.butExact.TabIndex = 24;
     this.butExact.Text = "Exact";
     this.butExact.Click += new System.EventHandler(this.butExact_Click);
     //
     // butSearch
     //
     this.butSearch.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butSearch.Autosize = true;
     this.butSearch.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSearch.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSearch.CornerRadius = 4F;
     this.butSearch.Location = new System.Drawing.Point(284,5);
     this.butSearch.Name = "butSearch";
     this.butSearch.Size = new System.Drawing.Size(75,24);
     this.butSearch.TabIndex = 22;
     this.butSearch.Text = "Similar";
     this.butSearch.Click += new System.EventHandler(this.butSearch_Click);
     //
     // butRxNorm
     //
     this.butRxNorm.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butRxNorm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butRxNorm.Autosize = true;
     this.butRxNorm.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRxNorm.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRxNorm.CornerRadius = 4F;
     this.butRxNorm.Location = new System.Drawing.Point(139,660);
     this.butRxNorm.Name = "butRxNorm";
     this.butRxNorm.Size = new System.Drawing.Size(98,24);
     this.butRxNorm.TabIndex = 5;
     this.butRxNorm.Text = "Create rxnorm";
     this.butRxNorm.Click += new System.EventHandler(this.butRxNorm_Click);
     //
     // button1
     //
     this.button1.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button1.Autosize = true;
     this.button1.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.button1.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.button1.CornerRadius = 4F;
     this.button1.Location = new System.Drawing.Point(26,660);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75,24);
     this.button1.TabIndex = 3;
     this.button1.Text = "&None";
     this.button1.Click += new System.EventHandler(this.butOK_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize = true;
     this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location = new System.Drawing.Point(512,660);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(75,24);
     this.butOK.TabIndex = 3;
     this.butOK.Text = "&OK";
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location = new System.Drawing.Point(593,660);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 2;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // FormRxNorms
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(693,702);
     this.Controls.Add(this.butExact);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butSearch);
     this.Controls.Add(this.labelCodeOrDesc);
     this.Controls.Add(this.textCode);
     this.Controls.Add(this.butRxNorm);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Name = "FormRxNorms";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "RxNorms";
     this.Load += new System.EventHandler(this.FormRxNorms_Load);
     this.Shown += new System.EventHandler(this.FormRxNorms_Shown);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #19
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormStateAbbrs));
     this.butClose = new OpenDental.UI.Button();
     this.butAdd   = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butOK    = new OpenDental.UI.Button();
     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(245, 473);
     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);
     //
     // butAdd
     //
     this.butAdd.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(16, 473);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(79, 26);
     this.butAdd.TabIndex   = 2;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.gridMain.Location         = new System.Drawing.Point(16, 12);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(304, 443);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "States";
     this.gridMain.TranslationName  = "FormStateAbbrs";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butOK
     //
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butOK.Location     = new System.Drawing.Point(159, 473);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 3;
     this.butOK.Text         = "&OK";
     this.butOK.Visible      = false;
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // FormStateAbbrs
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butClose;
     this.ClientSize        = new System.Drawing.Size(336, 515);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormStateAbbrs";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "State Abbreviations";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormStateAbbrs_Closing);
     this.Load         += new System.EventHandler(this.FormStateAbbrs_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.textDocDateDesc = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.checkDiscontinued = new System.Windows.Forms.CheckBox();
     this.pictBox = new System.Windows.Forms.PictureBox();
     this.gridMeds = new OpenDental.UI.ODGrid();
     this.butPickRxListImage = new OpenDental.UI.Button();
     this.butAdd = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.butAddEvent = new OpenDental.UI.Button();
     this.gridReconcileEvents = new OpenDental.UI.ODGrid();
     this.label2 = new System.Windows.Forms.Label();
     this.butDelete = new OpenDental.UI.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictBox)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // textDocDateDesc
     //
     this.textDocDateDesc.Enabled = false;
     this.textDocDateDesc.Location = new System.Drawing.Point(101,5);
     this.textDocDateDesc.Name = "textDocDateDesc";
     this.textDocDateDesc.Size = new System.Drawing.Size(272,20);
     this.textDocDateDesc.TabIndex = 71;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(1,9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(94,16);
     this.label1.TabIndex = 73;
     this.label1.Text = "Rx List";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkDiscontinued
     //
     this.checkDiscontinued.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.checkDiscontinued.Location = new System.Drawing.Point(609,5);
     this.checkDiscontinued.Name = "checkDiscontinued";
     this.checkDiscontinued.Size = new System.Drawing.Size(212,23);
     this.checkDiscontinued.TabIndex = 70;
     this.checkDiscontinued.Tag = "";
     this.checkDiscontinued.Text = "Show Discontinued Medications";
     this.checkDiscontinued.UseVisualStyleBackColor = true;
     this.checkDiscontinued.KeyUp += new System.Windows.Forms.KeyEventHandler(this.checkDiscontinued_KeyUp);
     this.checkDiscontinued.MouseUp += new System.Windows.Forms.MouseEventHandler(this.checkDiscontinued_MouseUp);
     //
     // pictBox
     //
     this.pictBox.BackColor = System.Drawing.SystemColors.Window;
     this.pictBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.pictBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictBox.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictBox.InitialImage = null;
     this.pictBox.Location = new System.Drawing.Point(0,0);
     this.pictBox.Name = "pictBox";
     this.pictBox.Size = new System.Drawing.Size(460,600);
     this.pictBox.TabIndex = 66;
     this.pictBox.TabStop = false;
     //
     // gridMeds
     //
     this.gridMeds.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMeds.HScrollVisible = false;
     this.gridMeds.Location = new System.Drawing.Point(0,0);
     this.gridMeds.Name = "gridMeds";
     this.gridMeds.ScrollValue = 0;
     this.gridMeds.Size = new System.Drawing.Size(445,395);
     this.gridMeds.TabIndex = 65;
     this.gridMeds.Title = "Medications";
     this.gridMeds.TranslationName = "TableMedications";
     this.gridMeds.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMeds_CellDoubleClick);
     //
     // butPickRxListImage
     //
     this.butPickRxListImage.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butPickRxListImage.Autosize = true;
     this.butPickRxListImage.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPickRxListImage.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPickRxListImage.CornerRadius = 4F;
     this.butPickRxListImage.Location = new System.Drawing.Point(379,3);
     this.butPickRxListImage.Name = "butPickRxListImage";
     this.butPickRxListImage.Size = new System.Drawing.Size(22,24);
     this.butPickRxListImage.TabIndex = 76;
     this.butPickRxListImage.Text = "...";
     this.butPickRxListImage.Click += new System.EventHandler(this.butPickRxListImage_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,1);
     this.butAdd.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location = new System.Drawing.Point(468,4);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(123,23);
     this.butAdd.TabIndex = 75;
     this.butAdd.Text = "&Add Medication";
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(838,640);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "&Close";
     this.butClose.Click += new System.EventHandler(this.butCancel_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Location = new System.Drawing.Point(4,34);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.pictBox);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.butDelete);
     this.splitContainer1.Panel2.Controls.Add(this.butAddEvent);
     this.splitContainer1.Panel2.Controls.Add(this.gridReconcileEvents);
     this.splitContainer1.Panel2.Controls.Add(this.label2);
     this.splitContainer1.Panel2.Controls.Add(this.gridMeds);
     this.splitContainer1.Size = new System.Drawing.Size(909,600);
     this.splitContainer1.SplitterDistance = 460;
     this.splitContainer1.TabIndex = 77;
     //
     // butAddEvent
     //
     this.butAddEvent.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAddEvent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAddEvent.Autosize = true;
     this.butAddEvent.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddEvent.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddEvent.CornerRadius = 4F;
     this.butAddEvent.Location = new System.Drawing.Point(0,398);
     this.butAddEvent.Name = "butAddEvent";
     this.butAddEvent.Size = new System.Drawing.Size(63,24);
     this.butAddEvent.TabIndex = 78;
     this.butAddEvent.Text = "Add";
     this.butAddEvent.Click += new System.EventHandler(this.butAddEvent_Click);
     //
     // gridReconcileEvents
     //
     this.gridReconcileEvents.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridReconcileEvents.HScrollVisible = false;
     this.gridReconcileEvents.Location = new System.Drawing.Point(0,425);
     this.gridReconcileEvents.Name = "gridReconcileEvents";
     this.gridReconcileEvents.ScrollValue = 0;
     this.gridReconcileEvents.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridReconcileEvents.Size = new System.Drawing.Size(445,175);
     this.gridReconcileEvents.TabIndex = 67;
     this.gridReconcileEvents.Title = "Reconciles";
     this.gridReconcileEvents.TranslationName = "gridReconcile";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(133,396);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(311,27);
     this.label2.TabIndex = 66;
     this.label2.Text = "This is a historical record of medication reconciles for this patient.  Delete an" +
     "y entries that are inaccurate.";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDelete.Autosize = true;
     this.butDelete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Location = new System.Drawing.Point(65,398);
     this.butDelete.Name = "butDelete";
     this.butDelete.Size = new System.Drawing.Size(63,24);
     this.butDelete.TabIndex = 78;
     this.butDelete.Text = "Delete";
     this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
     //
     // FormMedicationReconcile
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(918,676);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.butPickRxListImage);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.textDocDateDesc);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.checkDiscontinued);
     this.Controls.Add(this.butClose);
     this.Name = "FormMedicationReconcile";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Medication Reconcile";
     this.Load += new System.EventHandler(this.BasicTemplate_Load);
     this.Resize += new System.EventHandler(this.FormMedicationReconcile_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.pictBox)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.textDateFrom = new System.Windows.Forms.TextBox();
     this.textDateTo = new System.Windows.Forms.TextBox();
     this.checkComplete = new System.Windows.Forms.CheckBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butPrint = new OpenDental.UI.Button();
     this.butRefresh = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // textDateFrom
     //
     this.textDateFrom.Location = new System.Drawing.Point(110,19);
     this.textDateFrom.Name = "textDateFrom";
     this.textDateFrom.Size = new System.Drawing.Size(100,20);
     this.textDateFrom.TabIndex = 5;
     //
     // textDateTo
     //
     this.textDateTo.Location = new System.Drawing.Point(311,19);
     this.textDateTo.Name = "textDateTo";
     this.textDateTo.Size = new System.Drawing.Size(100,20);
     this.textDateTo.TabIndex = 5;
     //
     // checkComplete
     //
     this.checkComplete.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkComplete.Location = new System.Drawing.Point(441,21);
     this.checkComplete.Name = "checkComplete";
     this.checkComplete.Size = new System.Drawing.Size(178,17);
     this.checkComplete.TabIndex = 6;
     this.checkComplete.Text = "Show Completed Procedures";
     this.checkComplete.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkComplete.UseVisualStyleBackColor = true;
     this.checkComplete.Click += new System.EventHandler(this.checkComplete_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4,22);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100,13);
     this.label1.TabIndex = 7;
     this.label1.Text = "Date From";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(216,22);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(89,13);
     this.label2.TabIndex = 7;
     this.label2.Text = "Date To";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(23,55);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(762,411);
     this.gridMain.TabIndex = 4;
     this.gridMain.Title = "Referred Procedures";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrint.Autosize = true;
     this.butPrint.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location = new System.Drawing.Point(23,488);
     this.butPrint.Name = "butPrint";
     this.butPrint.Size = new System.Drawing.Size(79,24);
     this.butPrint.TabIndex = 53;
     this.butPrint.Text = "&Print";
     this.butPrint.Click += new System.EventHandler(this.butPrint_Click);
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize = true;
     this.butRefresh.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location = new System.Drawing.Point(710,15);
     this.butRefresh.Name = "butRefresh";
     this.butRefresh.Size = new System.Drawing.Size(75,24);
     this.butRefresh.TabIndex = 3;
     this.butRefresh.Text = "Refresh";
     this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(710,488);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "&Close";
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // FormReferralProcTrack
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(810,534);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.checkComplete);
     this.Controls.Add(this.textDateTo);
     this.Controls.Add(this.textDateFrom);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.butClose);
     this.Name = "FormReferralProcTrack";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Referred Procedure Tracking";
     this.Load += new System.EventHandler(this.FormReferralProcTrack_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #22
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(FormClaimForms));
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.comboReassign = new System.Windows.Forms.ComboBox();
     this.butReassign   = new OpenDental.UI.Button();
     this.label2        = new System.Windows.Forms.Label();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.butDuplicate  = new OpenDental.UI.Button();
     this.butExport     = new OpenDental.UI.Button();
     this.butAdd        = new OpenDental.UI.Button();
     this.butImport     = new OpenDental.UI.Button();
     this.butDelete     = new OpenDental.UI.Button();
     this.label1        = new System.Windows.Forms.Label();
     this.gridCustom    = new OpenDental.UI.ODGrid();
     this.gridInternal  = new OpenDental.UI.ODGrid();
     this.butCopy       = new OpenDental.UI.Button();
     this.butDefault    = new OpenDental.UI.Button();
     this.butClose      = new OpenDental.UI.Button();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.comboReassign);
     this.groupBox2.Controls.Add(this.butReassign);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Location = new System.Drawing.Point(540, 71);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(232, 122);
     this.groupBox2.TabIndex = 12;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Reassign";
     //
     // comboReassign
     //
     this.comboReassign.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboReassign.FormattingEnabled = true;
     this.comboReassign.Location          = new System.Drawing.Point(15, 64);
     this.comboReassign.MaxDropDownItems  = 20;
     this.comboReassign.Name     = "comboReassign";
     this.comboReassign.Size     = new System.Drawing.Size(169, 21);
     this.comboReassign.TabIndex = 15;
     //
     // butReassign
     //
     this.butReassign.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butReassign.Autosize            = true;
     this.butReassign.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butReassign.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butReassign.CornerRadius        = 4F;
     this.butReassign.Location            = new System.Drawing.Point(15, 87);
     this.butReassign.Name     = "butReassign";
     this.butReassign.Size     = new System.Drawing.Size(87, 23);
     this.butReassign.TabIndex = 13;
     this.butReassign.Text     = "Reassign";
     this.butReassign.Click   += new System.EventHandler(this.butReassign_Click);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(203, 47);
     this.label2.TabIndex = 14;
     this.label2.Text     = "Reassign all insurance plans that use the selected claim form at the left to the " +
                            "claim form below";
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.butDuplicate);
     this.groupBox1.Controls.Add(this.butExport);
     this.groupBox1.Controls.Add(this.butAdd);
     this.groupBox1.Controls.Add(this.butImport);
     this.groupBox1.Controls.Add(this.butDelete);
     this.groupBox1.Location = new System.Drawing.Point(540, 258);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(232, 122);
     this.groupBox1.TabIndex = 11;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Custom Claim Form Options";
     //
     // butDuplicate
     //
     this.butDuplicate.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDuplicate.Autosize            = true;
     this.butDuplicate.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDuplicate.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDuplicate.CornerRadius        = 4F;
     this.butDuplicate.Location            = new System.Drawing.Point(15, 87);
     this.butDuplicate.Name     = "butDuplicate";
     this.butDuplicate.Size     = new System.Drawing.Size(75, 23);
     this.butDuplicate.TabIndex = 4;
     this.butDuplicate.Text     = "Duplicate";
     this.butDuplicate.Click   += new System.EventHandler(this.butDuplicate_Click);
     //
     // butExport
     //
     this.butExport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butExport.Autosize            = true;
     this.butExport.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butExport.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butExport.CornerRadius        = 4F;
     this.butExport.Location            = new System.Drawing.Point(141, 25);
     this.butExport.Name     = "butExport";
     this.butExport.Size     = new System.Drawing.Size(75, 23);
     this.butExport.TabIndex = 9;
     this.butExport.Text     = "Export";
     this.butExport.Click   += new System.EventHandler(this.butExport_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Autosize            = true;
     this.butAdd.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius        = 4F;
     this.butAdd.Location            = new System.Drawing.Point(15, 25);
     this.butAdd.Name     = "butAdd";
     this.butAdd.Size     = new System.Drawing.Size(75, 23);
     this.butAdd.TabIndex = 3;
     this.butAdd.Text     = "&Add";
     this.butAdd.Click   += new System.EventHandler(this.butAdd_Click);
     //
     // butImport
     //
     this.butImport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butImport.Autosize            = true;
     this.butImport.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butImport.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butImport.CornerRadius        = 4F;
     this.butImport.Location            = new System.Drawing.Point(141, 56);
     this.butImport.Name     = "butImport";
     this.butImport.Size     = new System.Drawing.Size(75, 23);
     this.butImport.TabIndex = 10;
     this.butImport.Text     = "Import";
     this.butImport.Click   += new System.EventHandler(this.butImport_Click);
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Autosize            = true;
     this.butDelete.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius        = 4F;
     this.butDelete.Location            = new System.Drawing.Point(15, 56);
     this.butDelete.Name     = "butDelete";
     this.butDelete.Size     = new System.Drawing.Size(75, 23);
     this.butDelete.TabIndex = 5;
     this.butDelete.Text     = "Delete";
     this.butDelete.Click   += new System.EventHandler(this.butDelete_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(5, 7);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(263, 28);
     this.label1.TabIndex = 19;
     this.label1.Text     = "Internal forms cannot be edited or printed. \r\nCopy the form over to a custom form" +
                            " first.";
     //
     // gridCustom
     //
     this.gridCustom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)));
     this.gridCustom.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridCustom.HasAddButton        = false;
     this.gridCustom.HasDropDowns        = false;
     this.gridCustom.HasMultilineHeaders = false;
     this.gridCustom.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridCustom.HeaderHeight        = 15;
     this.gridCustom.HScrollVisible      = false;
     this.gridCustom.Location            = new System.Drawing.Point(274, 38);
     this.gridCustom.Name             = "gridCustom";
     this.gridCustom.ScrollValue      = 0;
     this.gridCustom.Size             = new System.Drawing.Size(260, 372);
     this.gridCustom.TabIndex         = 17;
     this.gridCustom.Title            = "Custom Claim Forms";
     this.gridCustom.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridCustom.TitleHeight      = 18;
     this.gridCustom.TranslationName  = "TableClaimFormsCustom";
     this.gridCustom.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridCustom_CellDoubleClick);
     //
     // gridInternal
     //
     this.gridInternal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)));
     this.gridInternal.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridInternal.HasAddButton        = false;
     this.gridInternal.HasDropDowns        = false;
     this.gridInternal.HasMultilineHeaders = false;
     this.gridInternal.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridInternal.HeaderHeight        = 15;
     this.gridInternal.HScrollVisible      = false;
     this.gridInternal.Location            = new System.Drawing.Point(8, 38);
     this.gridInternal.Name             = "gridInternal";
     this.gridInternal.ScrollValue      = 0;
     this.gridInternal.Size             = new System.Drawing.Size(186, 372);
     this.gridInternal.TabIndex         = 16;
     this.gridInternal.Title            = "Internal Claim Forms";
     this.gridInternal.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridInternal.TitleHeight      = 18;
     this.gridInternal.TranslationName  = "TableClaimFormsInternal";
     this.gridInternal.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridInternal_CellDoubleClick);
     //
     // butCopy
     //
     this.butCopy.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCopy.Autosize            = true;
     this.butCopy.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCopy.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCopy.CornerRadius        = 4F;
     this.butCopy.Image      = global::OpenDental.Properties.Resources.Right;
     this.butCopy.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butCopy.Location   = new System.Drawing.Point(200, 221);
     this.butCopy.Name       = "butCopy";
     this.butCopy.Size       = new System.Drawing.Size(68, 23);
     this.butCopy.TabIndex   = 18;
     this.butCopy.Text       = "Copy";
     this.butCopy.Click     += new System.EventHandler(this.butCopy_Click);
     //
     // butDefault
     //
     this.butDefault.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDefault.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butDefault.Autosize     = true;
     this.butDefault.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDefault.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDefault.CornerRadius = 4F;
     this.butDefault.Location     = new System.Drawing.Point(540, 38);
     this.butDefault.Name         = "butDefault";
     this.butDefault.Size         = new System.Drawing.Size(87, 23);
     this.butDefault.TabIndex     = 12;
     this.butDefault.Text         = "Set Default";
     this.butDefault.Click       += new System.EventHandler(this.butDefault_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(698, 389);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 23);
     this.butClose.TabIndex     = 0;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // FormClaimForms
     //
     this.ClientSize = new System.Drawing.Size(785, 424);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.butCopy);
     this.Controls.Add(this.gridCustom);
     this.Controls.Add(this.gridInternal);
     this.Controls.Add(this.butDefault);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butClose);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(801, 463);
     this.Name            = "FormClaimForms";
     this.ShowInTaskbar   = false;
     this.Text            = "Claim Forms";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.FormClaimForms_Closing);
     this.Load           += new System.EventHandler(this.FormClaimForms_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPatFieldDefs));
     this.toolTip1            = new System.Windows.Forms.ToolTip(this.components);
     this.label1              = new System.Windows.Forms.Label();
     this.gridMain            = new OpenDental.UI.ODGrid();
     this.butClose            = new OpenDental.UI.Button();
     this.butAdd              = new OpenDental.UI.Button();
     this.butDown             = new OpenDental.UI.Button();
     this.butUp               = new OpenDental.UI.Button();
     this.mainMenu1           = new System.Windows.Forms.MainMenu(this.components);
     this.menuItemSetup       = new System.Windows.Forms.MenuItem();
     this.checkDisplayRenamed = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(15, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(373, 39);
     this.label1.TabIndex = 8;
     this.label1.Text     = "This is a list of extra fields that you can setup for patients.  After adding fie" +
                            "lds to this list, you can set the value in the Family module.";
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(18, 72);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(370, 305);
     this.gridMain.TabIndex         = 9;
     this.gridMain.Title            = "Patient Field Defs";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TablePatientDefs";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location     = new System.Drawing.Point(414, 351);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(79, 26);
     this.butClose.TabIndex     = 1;
     this.butClose.Text         = "Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Autosize            = true;
     this.butAdd.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius        = 4F;
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(414, 72);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(79, 26);
     this.butAdd.TabIndex   = 7;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // butDown
     //
     this.butDown.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDown.Autosize            = true;
     this.butDown.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDown.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDown.CornerRadius        = 4F;
     this.butDown.Image      = global::OpenDental.Properties.Resources.down;
     this.butDown.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDown.Location   = new System.Drawing.Point(414, 210);
     this.butDown.Name       = "butDown";
     this.butDown.Size       = new System.Drawing.Size(79, 24);
     this.butDown.TabIndex   = 161;
     this.butDown.Text       = "&Down";
     this.butDown.Click     += new System.EventHandler(this.butDown_Click);
     //
     // butUp
     //
     this.butUp.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUp.Autosize            = true;
     this.butUp.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butUp.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butUp.CornerRadius        = 4F;
     this.butUp.Image      = global::OpenDental.Properties.Resources.up;
     this.butUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUp.Location   = new System.Drawing.Point(414, 180);
     this.butUp.Name       = "butUp";
     this.butUp.Size       = new System.Drawing.Size(79, 24);
     this.butUp.TabIndex   = 160;
     this.butUp.Text       = "&Up";
     this.butUp.Click     += new System.EventHandler(this.butUp_Click);
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemSetup
     });
     //
     // menuItemSetup
     //
     this.menuItemSetup.Index  = 0;
     this.menuItemSetup.Text   = "Setup";
     this.menuItemSetup.Click += new System.EventHandler(this.menuItemSetup_Click);
     //
     // checkDisplayRenamed
     //
     this.checkDisplayRenamed.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
     this.checkDisplayRenamed.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkDisplayRenamed.Location   = new System.Drawing.Point(18, 51);
     this.checkDisplayRenamed.Name       = "checkDisplayRenamed";
     this.checkDisplayRenamed.Size       = new System.Drawing.Size(370, 15);
     this.checkDisplayRenamed.TabIndex   = 162;
     this.checkDisplayRenamed.TabStop    = false;
     this.checkDisplayRenamed.Text       = "Display patient fields that have been renamed";
     //
     // FormPatFieldDefs
     //
     this.ClientSize = new System.Drawing.Size(512, 389);
     this.Controls.Add(this.checkDisplayRenamed);
     this.Controls.Add(this.butDown);
     this.Controls.Add(this.butUp);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.butAdd);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.Menu          = this.mainMenu1;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(528, 400);
     this.Name          = "FormPatFieldDefs";
     this.ShowInTaskbar = false;
     this.Text          = "Patient Field Defs";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormPatFieldDefs_FormClosing);
     this.Load         += new System.EventHandler(this.FormPatFieldDefs_Load);
     this.ResumeLayout(false);
 }
예제 #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.butClose = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butAdd = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(500,354);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "&Close";
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(24,12);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(551,325);
     this.gridMain.TabIndex = 4;
     this.gridMain.Title = "Popups";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location = new System.Drawing.Point(24,354);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(75,24);
     this.butAdd.TabIndex = 2;
     this.butAdd.Text = "Add";
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // FormPopupsForFam
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(600,391);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Name = "FormPopupsForFam";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Popups for Family";
     this.Load += new System.EventHandler(this.FormPopupsForFam_Load);
     this.ResumeLayout(false);
 }
예제 #25
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormZipCodes));
     this.butAdd      = new OpenDental.UI.Button();
     this.butClose    = new OpenDental.UI.Button();
     this.butDelete   = new OpenDental.UI.Button();
     this.gridZipCode = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(615, 374);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(76, 26);
     this.butAdd.TabIndex     = 28;
     this.butAdd.Text         = "&Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(615, 513);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(76, 26);
     this.butClose.TabIndex     = 26;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Location     = new System.Drawing.Point(615, 410);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(76, 26);
     this.butDelete.TabIndex     = 31;
     this.butDelete.Text         = "&Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // gridZipCode
     //
     this.gridZipCode.AllowSortingByColumn = true;
     this.gridZipCode.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.gridZipCode.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridZipCode.HasAddButton        = false;
     this.gridZipCode.HasDropDowns        = false;
     this.gridZipCode.HasMultilineHeaders = false;
     this.gridZipCode.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridZipCode.HeaderHeight        = 15;
     this.gridZipCode.HScrollVisible      = false;
     this.gridZipCode.Location            = new System.Drawing.Point(12, 17);
     this.gridZipCode.Name             = "gridZipCode";
     this.gridZipCode.ScrollValue      = 0;
     this.gridZipCode.Size             = new System.Drawing.Size(581, 522);
     this.gridZipCode.TabIndex         = 32;
     this.gridZipCode.Title            = "Zip Codes";
     this.gridZipCode.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridZipCode.TitleHeight      = 18;
     this.gridZipCode.TranslationName  = "TableZipCodes";
     this.gridZipCode.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridZipCode_CellDoubleClick);
     //
     // FormZipCodes
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(715, 563);
     this.Controls.Add(this.gridZipCode);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormZipCodes";
     this.ShowInTaskbar = false;
     this.Text          = "Zip Codes";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormZipCodes_Closing);
     this.Load         += new System.EventHandler(this.FormZipCodes_Load);
     this.ResumeLayout(false);
 }
예제 #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridPat = new OpenDental.UI.ODGrid();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butAdd = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // gridPat
     //
     this.gridPat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridPat.HScrollVisible = false;
     this.gridPat.Location = new System.Drawing.Point(10,9);
     this.gridPat.Name = "gridPat";
     this.gridPat.ScrollValue = 0;
     this.gridPat.Size = new System.Drawing.Size(916,194);
     this.gridPat.TabIndex = 6;
     this.gridPat.Title = "Patient Fields";
     this.gridPat.TranslationName = null;
     this.gridPat.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridPat_CellDoubleClick);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(10,209);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.OneCell;
     this.gridMain.Size = new System.Drawing.Size(916,418);
     this.gridMain.TabIndex = 5;
     this.gridMain.Title = "Ortho Chart";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Location = new System.Drawing.Point(10,634);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(75,23);
     this.butAdd.TabIndex = 9;
     this.butAdd.Text = "Add Date";
     this.butAdd.UseVisualStyleBackColor = true;
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(851,634);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,23);
     this.butClose.TabIndex = 7;
     this.butClose.Text = "Close";
     this.butClose.UseVisualStyleBackColor = true;
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // label6
     //
     this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label6.Location = new System.Drawing.Point(722,630);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(123,27);
     this.label6.TabIndex = 55;
     this.label6.Text = "(All info is always saved automatically)";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // FormOrthoChart
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(938,665);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.gridPat);
     this.Controls.Add(this.gridMain);
     this.Name = "FormOrthoChart";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Ortho Chart";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormOrthoChart_FormClosing);
     this.Load += new System.EventHandler(this.FormOrthoChart_Load);
     this.ResumeLayout(false);
 }
예제 #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpProcNote));
     this.butClose                   = new OpenDental.UI.Button();
     this.checkNoNotes               = new System.Windows.Forms.CheckBox();
     this.checkUnsignedNote          = new System.Windows.Forms.CheckBox();
     this.labelClin                  = new System.Windows.Forms.Label();
     this.label1                     = new System.Windows.Forms.Label();
     this.groupFilter                = new System.Windows.Forms.GroupBox();
     this.groupBox1                  = new System.Windows.Forms.GroupBox();
     this.radioProcDate              = new System.Windows.Forms.RadioButton();
     this.radioPatient               = new System.Windows.Forms.RadioButton();
     this.radioProc                  = new System.Windows.Forms.RadioButton();
     this.comboBoxMultiClinics       = new OpenDental.UI.ComboBoxClinicMulti();
     this.comboBoxMultiProv          = new OpenDental.UI.ComboBoxMulti();
     this.dateRangePicker            = new OpenDental.UI.ODDateRangePicker();
     this.butRefresh                 = new OpenDental.UI.Button();
     this.gridMain                   = new OpenDental.UI.ODGrid();
     this.contextMenuStrip           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.goToChartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.butExport                  = new OpenDental.UI.Button();
     this.butPrint                   = new OpenDental.UI.Button();
     this.groupFilter.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(796, 524);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 4;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // checkNoNotes
     //
     this.checkNoNotes.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkNoNotes.Location   = new System.Drawing.Point(6, 16);
     this.checkNoNotes.Name       = "checkNoNotes";
     this.checkNoNotes.Size       = new System.Drawing.Size(350, 21);
     this.checkNoNotes.TabIndex   = 0;
     this.checkNoNotes.Text       = "Include procedures with no notes on any procedure for the same day";
     this.checkNoNotes.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkNoNotes.UseVisualStyleBackColor = true;
     //
     // checkUnsignedNote
     //
     this.checkUnsignedNote.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkUnsignedNote.Location   = new System.Drawing.Point(6, 38);
     this.checkUnsignedNote.Name       = "checkUnsignedNote";
     this.checkUnsignedNote.Size       = new System.Drawing.Size(350, 21);
     this.checkUnsignedNote.TabIndex   = 1;
     this.checkUnsignedNote.Text       = "Include procedures with a note that is unsigned";
     this.checkUnsignedNote.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkUnsignedNote.UseVisualStyleBackColor = true;
     //
     // labelClin
     //
     this.labelClin.Location  = new System.Drawing.Point(379, 16);
     this.labelClin.Name      = "labelClin";
     this.labelClin.Size      = new System.Drawing.Size(85, 21);
     this.labelClin.TabIndex  = 51;
     this.labelClin.Text      = "Clinics";
     this.labelClin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(379, 38);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(85, 21);
     this.label1.TabIndex  = 49;
     this.label1.Text      = "Providers";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupFilter
     //
     this.groupFilter.Controls.Add(this.groupBox1);
     this.groupFilter.Controls.Add(this.comboBoxMultiClinics);
     this.groupFilter.Controls.Add(this.comboBoxMultiProv);
     this.groupFilter.Controls.Add(this.dateRangePicker);
     this.groupFilter.Controls.Add(this.butRefresh);
     this.groupFilter.Controls.Add(this.checkUnsignedNote);
     this.groupFilter.Controls.Add(this.checkNoNotes);
     this.groupFilter.Controls.Add(this.labelClin);
     this.groupFilter.Controls.Add(this.label1);
     this.groupFilter.Location = new System.Drawing.Point(12, 0);
     this.groupFilter.Name     = "groupFilter";
     this.groupFilter.Size     = new System.Drawing.Size(859, 97);
     this.groupFilter.TabIndex = 0;
     this.groupFilter.TabStop  = false;
     this.groupFilter.Text     = "Filters";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioProcDate);
     this.groupBox1.Controls.Add(this.radioPatient);
     this.groupBox1.Controls.Add(this.radioProc);
     this.groupBox1.Location = new System.Drawing.Point(638, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(125, 79);
     this.groupBox1.TabIndex = 52;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Group By";
     //
     // radioProcDate
     //
     this.radioProcDate.Location = new System.Drawing.Point(8, 53);
     this.radioProcDate.Name     = "radioProcDate";
     this.radioProcDate.Size     = new System.Drawing.Size(111, 18);
     this.radioProcDate.TabIndex = 2;
     this.radioProcDate.Text     = "Date and Patient";
     this.radioProcDate.UseVisualStyleBackColor = true;
     this.radioProcDate.MouseCaptureChanged    += new System.EventHandler(this.radioProcDate_MouseCaptureChanged);
     //
     // radioPatient
     //
     this.radioPatient.Location = new System.Drawing.Point(8, 35);
     this.radioPatient.Name     = "radioPatient";
     this.radioPatient.Size     = new System.Drawing.Size(104, 18);
     this.radioPatient.TabIndex = 1;
     this.radioPatient.Text     = "Patient";
     this.radioPatient.UseVisualStyleBackColor = true;
     this.radioPatient.MouseCaptureChanged    += new System.EventHandler(this.radioPatient_MouseCaptureChanged);
     //
     // radioProc
     //
     this.radioProc.Checked  = true;
     this.radioProc.Location = new System.Drawing.Point(8, 17);
     this.radioProc.Name     = "radioProc";
     this.radioProc.Size     = new System.Drawing.Size(104, 18);
     this.radioProc.TabIndex = 0;
     this.radioProc.TabStop  = true;
     this.radioProc.Text     = "Procedure";
     this.radioProc.UseVisualStyleBackColor = true;
     this.radioProc.MouseCaptureChanged    += new System.EventHandler(this.radioProc_MouseCaptureChanged);
     //
     // comboBoxMultiClinics
     //
     this.comboBoxMultiClinics.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxMultiClinics.Location  = new System.Drawing.Point(468, 17);
     this.comboBoxMultiClinics.Name      = "comboBoxMultiClinics";
     this.comboBoxMultiClinics.Size      = new System.Drawing.Size(160, 21);
     this.comboBoxMultiClinics.TabIndex  = 3;
     //
     // comboBoxMultiProv
     //
     this.comboBoxMultiProv.ArraySelectedIndices = new int[0];
     this.comboBoxMultiProv.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxMultiProv.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.Items")));
     this.comboBoxMultiProv.Location        = new System.Drawing.Point(468, 38);
     this.comboBoxMultiProv.Name            = "comboBoxMultiProv";
     this.comboBoxMultiProv.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.SelectedIndices")));
     this.comboBoxMultiProv.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiProv.TabIndex        = 4;
     //
     // dateRangePicker
     //
     this.dateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.dateRangePicker.DefaultDateTimeFrom = new System.DateTime(2017, 7, 1, 0, 0, 0, 0);
     this.dateRangePicker.DefaultDateTimeTo   = new System.DateTime(2018, 1, 1, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(124, 64);
     this.dateRangePicker.MaximumSize         = new System.Drawing.Size(0, 185);
     this.dateRangePicker.MinimumSize         = new System.Drawing.Size(300, 21);
     this.dateRangePicker.Name     = "dateRangePicker";
     this.dateRangePicker.Size     = new System.Drawing.Size(491, 21);
     this.dateRangePicker.TabIndex = 5;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize     = true;
     this.butRefresh.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location     = new System.Drawing.Point(769, 17);
     this.butRefresh.Name         = "butRefresh";
     this.butRefresh.Size         = new System.Drawing.Size(82, 24);
     this.butRefresh.TabIndex     = 6;
     this.butRefresh.Text         = "&Refresh";
     this.butRefresh.Click       += new System.EventHandler(this.butRefresh_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.ContextMenuStrip    = this.contextMenuStrip;
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(12, 103);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(859, 415);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "Incomplete Procedure Notes";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableIncompleteProcNotes";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.goToChartToolStripMenuItem
     });
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(125, 26);
     //
     // goToChartToolStripMenuItem
     //
     this.goToChartToolStripMenuItem.Name   = "goToChartToolStripMenuItem";
     this.goToChartToolStripMenuItem.Size   = new System.Drawing.Size(124, 22);
     this.goToChartToolStripMenuItem.Text   = "See Chart";
     this.goToChartToolStripMenuItem.Click += new System.EventHandler(this.goToChartToolStripMenuItem_Click);
     //
     // butExport
     //
     this.butExport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butExport.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butExport.Autosize     = true;
     this.butExport.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butExport.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butExport.CornerRadius = 4F;
     this.butExport.Image        = global::OpenDental.Properties.Resources.butExport;
     this.butExport.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butExport.Location     = new System.Drawing.Point(97, 526);
     this.butExport.Name         = "butExport";
     this.butExport.Size         = new System.Drawing.Size(79, 24);
     this.butExport.TabIndex     = 3;
     this.butExport.Text         = "&Export";
     this.butExport.Click       += new System.EventHandler(this.butExport_Click);
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(12, 526);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(79, 24);
     this.butPrint.TabIndex     = 2;
     this.butPrint.Text         = "&Print";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // FormRpProcNote
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(891, 572);
     this.Controls.Add(this.butExport);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.groupFilter);
     this.Controls.Add(this.butClose);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(907, 517);
     this.Name        = "FormRpProcNote";
     this.Text        = "Incomplete Procedure Notes Report";
     this.Load       += new System.EventHandler(this.FormRpProcNote_Load);
     this.groupFilter.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components   = new System.ComponentModel.Container();
     this.textDateFrom = new System.Windows.Forms.TextBox();
     this.label2       = new System.Windows.Forms.Label();
     this.textDateTo   = new System.Windows.Forms.TextBox();
     this.butRefresh   = new OpenDental.UI.Button();
     this.butAdd       = new OpenDental.UI.Button();
     this.butClose     = new OpenDental.UI.Button();
     this.mainMenu     = new System.Windows.Forms.MainMenu(this.components);
     this.gridMain     = new OpenDental.UI.ODGrid();
     this.butLeft      = new OpenDental.UI.Button();
     this.butRight     = new OpenDental.UI.Button();
     this.butToday     = new OpenDental.UI.Button();
     this.label1       = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // textDateFrom
     //
     this.textDateFrom.Location    = new System.Drawing.Point(150, 52);
     this.textDateFrom.Name        = "textDateFrom";
     this.textDateFrom.Size        = new System.Drawing.Size(69, 20);
     this.textDateFrom.TabIndex    = 74;
     this.textDateFrom.Validating += new System.ComponentModel.CancelEventHandler(this.textDateFrom_Validating);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(218, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(25, 13);
     this.label2.TabIndex  = 77;
     this.label2.Text      = "To";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDateTo
     //
     this.textDateTo.Location    = new System.Drawing.Point(243, 52);
     this.textDateTo.Name        = "textDateTo";
     this.textDateTo.Size        = new System.Drawing.Size(75, 20);
     this.textDateTo.TabIndex    = 76;
     this.textDateTo.Validating += new System.ComponentModel.CancelEventHandler(this.textDateTo_Validating);
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Autosize            = true;
     this.butRefresh.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius        = 4F;
     this.butRefresh.Location            = new System.Drawing.Point(326, 51);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(55, 21);
     this.butRefresh.TabIndex = 78;
     this.butRefresh.Text     = "Refresh";
     this.butRefresh.Click   += new System.EventHandler(this.butRefresh_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(13, 502);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(70, 24);
     this.butAdd.TabIndex     = 79;
     this.butAdd.Text         = "Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butClose.Location     = new System.Drawing.Point(441, 502);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(70, 24);
     this.butClose.TabIndex     = 79;
     this.butClose.Text         = "Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(13, 82);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(499, 402);
     this.gridMain.TabIndex         = 80;
     this.gridMain.Title            = "Screening Groups";
     this.gridMain.TranslationName  = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butLeft
     //
     this.butLeft.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butLeft.Autosize            = true;
     this.butLeft.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLeft.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLeft.CornerRadius        = 4F;
     this.butLeft.Image    = global::OpenDental.Properties.Resources.Left;
     this.butLeft.Location = new System.Drawing.Point(167, 13);
     this.butLeft.Name     = "butLeft";
     this.butLeft.Size     = new System.Drawing.Size(39, 24);
     this.butLeft.TabIndex = 78;
     this.butLeft.Click   += new System.EventHandler(this.butLeft_Click);
     //
     // butRight
     //
     this.butRight.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRight.Autosize            = true;
     this.butRight.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRight.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRight.CornerRadius        = 4F;
     this.butRight.Image    = global::OpenDental.Properties.Resources.Right;
     this.butRight.Location = new System.Drawing.Point(307, 13);
     this.butRight.Name     = "butRight";
     this.butRight.Size     = new System.Drawing.Size(39, 24);
     this.butRight.TabIndex = 78;
     this.butRight.Click   += new System.EventHandler(this.butRight_Click);
     //
     // butToday
     //
     this.butToday.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butToday.Autosize            = true;
     this.butToday.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butToday.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butToday.CornerRadius        = 4F;
     this.butToday.Location            = new System.Drawing.Point(215, 13);
     this.butToday.Name     = "butToday";
     this.butToday.Size     = new System.Drawing.Size(83, 24);
     this.butToday.TabIndex = 78;
     this.butToday.Text     = "Today";
     this.butToday.Click   += new System.EventHandler(this.butToday_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(92, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(57, 13);
     this.label1.TabIndex  = 77;
     this.label1.Text      = "From";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormScreenGroups
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(524, 541);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.textDateFrom);
     this.Controls.Add(this.textDateTo);
     this.Controls.Add(this.butRight);
     this.Controls.Add(this.butLeft);
     this.Controls.Add(this.butToday);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Menu          = this.mainMenu;
     this.Name          = "FormScreenGroups";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Screening Groups";
     this.Load         += new System.EventHandler(this.FormScreenings_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #29
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(FormQuickPaste));
     this.butCancel    = new OpenDental.UI.Button();
     this.butOK        = new OpenDental.UI.Button();
     this.listCat      = new System.Windows.Forms.ListBox();
     this.label1       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.butDownCat   = new OpenDental.UI.Button();
     this.butUpCat     = new OpenDental.UI.Button();
     this.butAddCat    = new OpenDental.UI.Button();
     this.butDeleteCat = new OpenDental.UI.Button();
     this.butAddNote   = new OpenDental.UI.Button();
     this.butDownNote  = new OpenDental.UI.Button();
     this.butUpNote    = new OpenDental.UI.Button();
     this.butEditNote  = new OpenDental.UI.Button();
     this.butDate      = new OpenDental.UI.Button();
     this.gridMain     = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(827, 641);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(734, 641);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // listCat
     //
     this.listCat.Location     = new System.Drawing.Point(8, 25);
     this.listCat.Name         = "listCat";
     this.listCat.Size         = new System.Drawing.Size(169, 316);
     this.listCat.TabIndex     = 2;
     this.listCat.DoubleClick += new System.EventHandler(this.listCat_DoubleClick);
     this.listCat.MouseDown   += new System.Windows.Forms.MouseEventHandler(this.listCat_MouseDown);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(6, 4);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 19);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Category";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(181, 5);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 19);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "Note";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butDownCat
     //
     this.butDownCat.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDownCat.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butDownCat.Autosize     = true;
     this.butDownCat.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDownCat.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDownCat.CornerRadius = 4F;
     this.butDownCat.Image        = global::OpenDental.Properties.Resources.down;
     this.butDownCat.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDownCat.Location     = new System.Drawing.Point(98, 383);
     this.butDownCat.Name         = "butDownCat";
     this.butDownCat.Size         = new System.Drawing.Size(79, 26);
     this.butDownCat.TabIndex     = 11;
     this.butDownCat.Text         = "Down";
     this.butDownCat.Click       += new System.EventHandler(this.butDownCat_Click);
     //
     // butUpCat
     //
     this.butUpCat.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUpCat.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butUpCat.Autosize     = true;
     this.butUpCat.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butUpCat.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butUpCat.CornerRadius = 4F;
     this.butUpCat.Image        = global::OpenDental.Properties.Resources.up;
     this.butUpCat.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUpCat.Location     = new System.Drawing.Point(98, 348);
     this.butUpCat.Name         = "butUpCat";
     this.butUpCat.Size         = new System.Drawing.Size(79, 26);
     this.butUpCat.TabIndex     = 10;
     this.butUpCat.Text         = "Up";
     this.butUpCat.Click       += new System.EventHandler(this.butUpCat_Click);
     //
     // butAddCat
     //
     this.butAddCat.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddCat.Autosize            = true;
     this.butAddCat.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddCat.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddCat.CornerRadius        = 4F;
     this.butAddCat.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddCat.Location   = new System.Drawing.Point(8, 348);
     this.butAddCat.Name       = "butAddCat";
     this.butAddCat.Size       = new System.Drawing.Size(79, 26);
     this.butAddCat.TabIndex   = 12;
     this.butAddCat.Text       = "Add";
     this.butAddCat.Click     += new System.EventHandler(this.butAddCat_Click);
     //
     // butDeleteCat
     //
     this.butDeleteCat.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDeleteCat.Autosize            = true;
     this.butDeleteCat.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDeleteCat.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDeleteCat.CornerRadius        = 4F;
     this.butDeleteCat.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDeleteCat.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDeleteCat.Location   = new System.Drawing.Point(8, 383);
     this.butDeleteCat.Name       = "butDeleteCat";
     this.butDeleteCat.Size       = new System.Drawing.Size(79, 26);
     this.butDeleteCat.TabIndex   = 13;
     this.butDeleteCat.Text       = "Delete";
     this.butDeleteCat.Click     += new System.EventHandler(this.butDeleteCat_Click);
     //
     // butAddNote
     //
     this.butAddNote.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddNote.Autosize            = true;
     this.butAddNote.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddNote.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddNote.CornerRadius        = 4F;
     this.butAddNote.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddNote.Location   = new System.Drawing.Point(180, 641);
     this.butAddNote.Name       = "butAddNote";
     this.butAddNote.Size       = new System.Drawing.Size(79, 26);
     this.butAddNote.TabIndex   = 16;
     this.butAddNote.Text       = "Add";
     this.butAddNote.Click     += new System.EventHandler(this.butAddNote_Click);
     //
     // butDownNote
     //
     this.butDownNote.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDownNote.Autosize            = true;
     this.butDownNote.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDownNote.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDownNote.CornerRadius        = 4F;
     this.butDownNote.Image      = global::OpenDental.Properties.Resources.down;
     this.butDownNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDownNote.Location   = new System.Drawing.Point(468, 641);
     this.butDownNote.Name       = "butDownNote";
     this.butDownNote.Size       = new System.Drawing.Size(79, 26);
     this.butDownNote.TabIndex   = 15;
     this.butDownNote.Text       = "Down";
     this.butDownNote.Click     += new System.EventHandler(this.butDownNote_Click);
     //
     // butUpNote
     //
     this.butUpNote.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUpNote.Autosize            = true;
     this.butUpNote.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butUpNote.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butUpNote.CornerRadius        = 4F;
     this.butUpNote.Image      = global::OpenDental.Properties.Resources.up;
     this.butUpNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUpNote.Location   = new System.Drawing.Point(372, 641);
     this.butUpNote.Name       = "butUpNote";
     this.butUpNote.Size       = new System.Drawing.Size(79, 26);
     this.butUpNote.TabIndex   = 14;
     this.butUpNote.Text       = "Up";
     this.butUpNote.Click     += new System.EventHandler(this.butUpNote_Click);
     //
     // butEditNote
     //
     this.butEditNote.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butEditNote.Autosize            = true;
     this.butEditNote.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butEditNote.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butEditNote.CornerRadius        = 4F;
     this.butEditNote.Image      = global::OpenDental.Properties.Resources.editPencil;
     this.butEditNote.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEditNote.Location   = new System.Drawing.Point(276, 641);
     this.butEditNote.Name       = "butEditNote";
     this.butEditNote.Size       = new System.Drawing.Size(79, 26);
     this.butEditNote.TabIndex   = 17;
     this.butEditNote.Text       = "Edit";
     this.butEditNote.Click     += new System.EventHandler(this.butEditNote_Click);
     //
     // butDate
     //
     this.butDate.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDate.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDate.Autosize     = true;
     this.butDate.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDate.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDate.CornerRadius = 4F;
     this.butDate.Location     = new System.Drawing.Point(639, 641);
     this.butDate.Name         = "butDate";
     this.butDate.Size         = new System.Drawing.Size(75, 26);
     this.butDate.TabIndex     = 18;
     this.butDate.Text         = "Date";
     this.butDate.Click       += new System.EventHandler(this.butDate_Click);
     //
     // gridMain
     //
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(184, 28);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(722, 607);
     this.gridMain.TabIndex         = 19;
     this.gridMain.Title            = "Notes";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableNotes";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // FormQuickPaste
     //
     this.ClientSize = new System.Drawing.Size(918, 677);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butDate);
     this.Controls.Add(this.butEditNote);
     this.Controls.Add(this.butAddNote);
     this.Controls.Add(this.butDownNote);
     this.Controls.Add(this.butUpNote);
     this.Controls.Add(this.butDeleteCat);
     this.Controls.Add(this.butAddCat);
     this.Controls.Add(this.butDownCat);
     this.Controls.Add(this.butUpCat);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listCat);
     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          = "FormQuickPaste";
     this.ShowInTaskbar = false;
     this.Text          = "Quick Paste Notes";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormQuickPaste_FormClosing);
     this.Load         += new System.EventHandler(this.FormQuickPaste_Load);
     this.ResumeLayout(false);
 }
예제 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.checkShowHidden = new System.Windows.Forms.CheckBox();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butAdd = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.butOK = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // checkShowHidden
     //
     this.checkShowHidden.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.checkShowHidden.Location = new System.Drawing.Point(296,148);
     this.checkShowHidden.Name = "checkShowHidden";
     this.checkShowHidden.Size = new System.Drawing.Size(98,24);
     this.checkShowHidden.TabIndex = 5;
     this.checkShowHidden.TabStop = false;
     this.checkShowHidden.Text = "Show Hidden";
     this.checkShowHidden.UseVisualStyleBackColor = true;
     this.checkShowHidden.CheckedChanged += new System.EventHandler(this.checkShowHidden_CheckedChanged);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(26,24);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(242,310);
     this.gridMain.TabIndex = 4;
     this.gridMain.Title = "Allergies";
     this.gridMain.TranslationName = null;
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location = new System.Drawing.Point(296,24);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(75,24);
     this.butAdd.TabIndex = 3;
     this.butAdd.Text = "&Add";
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(296,310);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "&Close";
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize = true;
     this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location = new System.Drawing.Point(296,280);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(75,24);
     this.butOK.TabIndex = 6;
     this.butOK.Text = "&OK";
     this.butOK.Visible = false;
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // FormAllergySetup
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(396,361);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.checkShowHidden);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Name = "FormAllergySetup";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Allergy Setup";
     this.Load += new System.EventHandler(this.FormAllergySetup_Load);
     this.ResumeLayout(false);
 }
예제 #31
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(FormDefinitions));
     this.butClose     = new OpenDental.UI.Button();
     this.label14      = new System.Windows.Forms.Label();
     this.textGuide    = new System.Windows.Forms.TextBox();
     this.groupEdit    = new System.Windows.Forms.GroupBox();
     this.butHide      = new OpenDental.UI.Button();
     this.butDown      = new OpenDental.UI.Button();
     this.butUp        = new OpenDental.UI.Button();
     this.butAdd       = new OpenDental.UI.Button();
     this.listCategory = new System.Windows.Forms.ListBox();
     this.label13      = new System.Windows.Forms.Label();
     this.gridDefs     = new OpenDental.UI.ODGrid();
     this.groupEdit.SuspendLayout();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location     = new System.Drawing.Point(700, 638);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 24);
     this.butClose.TabIndex     = 3;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // label14
     //
     this.label14.Location  = new System.Drawing.Point(78, 602);
     this.label14.Name      = "label14";
     this.label14.Size      = new System.Drawing.Size(100, 18);
     this.label14.TabIndex  = 22;
     this.label14.Text      = "Guidelines";
     this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textGuide
     //
     this.textGuide.Location   = new System.Drawing.Point(184, 602);
     this.textGuide.Multiline  = true;
     this.textGuide.Name       = "textGuide";
     this.textGuide.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textGuide.Size       = new System.Drawing.Size(488, 63);
     this.textGuide.TabIndex   = 2;
     //
     // groupEdit
     //
     this.groupEdit.Controls.Add(this.butHide);
     this.groupEdit.Controls.Add(this.butDown);
     this.groupEdit.Controls.Add(this.butUp);
     this.groupEdit.Controls.Add(this.butAdd);
     this.groupEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupEdit.Location  = new System.Drawing.Point(184, 547);
     this.groupEdit.Name      = "groupEdit";
     this.groupEdit.Size      = new System.Drawing.Size(488, 51);
     this.groupEdit.TabIndex  = 1;
     this.groupEdit.TabStop   = false;
     this.groupEdit.Text      = "Edit Items";
     //
     // butHide
     //
     this.butHide.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butHide.Autosize            = true;
     this.butHide.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butHide.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butHide.CornerRadius        = 4F;
     this.butHide.Location            = new System.Drawing.Point(152, 19);
     this.butHide.Name     = "butHide";
     this.butHide.Size     = new System.Drawing.Size(79, 24);
     this.butHide.TabIndex = 10;
     this.butHide.Text     = "&Hide";
     this.butHide.Click   += new System.EventHandler(this.butHide_Click);
     //
     // butDown
     //
     this.butDown.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDown.Autosize            = true;
     this.butDown.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDown.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDown.CornerRadius        = 4F;
     this.butDown.Image      = global::OpenDental.Properties.Resources.down;
     this.butDown.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDown.Location   = new System.Drawing.Point(360, 19);
     this.butDown.Name       = "butDown";
     this.butDown.Size       = new System.Drawing.Size(79, 24);
     this.butDown.TabIndex   = 9;
     this.butDown.Text       = "&Down";
     this.butDown.Click     += new System.EventHandler(this.butDown_Click);
     //
     // butUp
     //
     this.butUp.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUp.Autosize            = true;
     this.butUp.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butUp.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butUp.CornerRadius        = 4F;
     this.butUp.Image      = global::OpenDental.Properties.Resources.up;
     this.butUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUp.Location   = new System.Drawing.Point(256, 19);
     this.butUp.Name       = "butUp";
     this.butUp.Size       = new System.Drawing.Size(79, 24);
     this.butUp.TabIndex   = 8;
     this.butUp.Text       = "&Up";
     this.butUp.Click     += new System.EventHandler(this.butUp_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Autosize            = true;
     this.butAdd.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius        = 4F;
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(48, 19);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(79, 24);
     this.butAdd.TabIndex   = 6;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // listCategory
     //
     this.listCategory.Location              = new System.Drawing.Point(11, 30);
     this.listCategory.Name                  = "listCategory";
     this.listCategory.Size                  = new System.Drawing.Size(167, 511);
     this.listCategory.TabIndex              = 0;
     this.listCategory.SelectedIndexChanged += new System.EventHandler(this.listCategory_SelectedIndexChanged);
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(11, 12);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(162, 17);
     this.label13.TabIndex  = 17;
     this.label13.Text      = "Select Category:";
     this.label13.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // gridDefs
     //
     this.gridDefs.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridDefs.HasAddButton        = false;
     this.gridDefs.HasDropDowns        = false;
     this.gridDefs.HasMultilineHeaders = false;
     this.gridDefs.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridDefs.HeaderHeight        = 15;
     this.gridDefs.HScrollVisible      = false;
     this.gridDefs.Location            = new System.Drawing.Point(184, 30);
     this.gridDefs.Name             = "gridDefs";
     this.gridDefs.ScrollValue      = 0;
     this.gridDefs.Size             = new System.Drawing.Size(488, 511);
     this.gridDefs.TabIndex         = 23;
     this.gridDefs.Title            = "Definitions";
     this.gridDefs.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridDefs.TitleHeight      = 18;
     this.gridDefs.TranslationName  = "TableDefinitions";
     this.gridDefs.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridDefs_CellDoubleClick);
     //
     // FormDefinitions
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(789, 675);
     this.Controls.Add(this.gridDefs);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.textGuide);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.groupEdit);
     this.Controls.Add(this.listCategory);
     this.Controls.Add(this.label13);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormDefinitions";
     this.ShowInTaskbar = false;
     this.Text          = "Definitions";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormDefinitions_Closing);
     this.Load         += new System.EventHandler(this.FormDefinitions_Load);
     this.groupEdit.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormQueryFavorites));
     this.butOK           = new OpenDental.UI.Button();
     this.butCancel       = new OpenDental.UI.Button();
     this.butAdd          = new OpenDental.UI.Button();
     this.butDelete       = new OpenDental.UI.Button();
     this.butEdit         = new OpenDental.UI.Button();
     this.gridMain        = new OpenDental.UI.ODGrid();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.butShowHide     = new OpenDental.UI.Button();
     this.checkWrapText   = new System.Windows.Forms.CheckBox();
     this.textQuery       = new OpenDental.ODtextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.textSearch      = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(898, 622);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 3;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(979, 622);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 4;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(367, 568);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(82, 24);
     this.butAdd.TabIndex     = 34;
     this.butAdd.Text         = "&New";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize     = true;
     this.butDelete.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.CornerRadius = 4F;
     this.butDelete.Image        = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location     = new System.Drawing.Point(5, 568);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(82, 24);
     this.butDelete.TabIndex     = 35;
     this.butDelete.Text         = "&Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // butEdit
     //
     this.butEdit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butEdit.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butEdit.Autosize     = true;
     this.butEdit.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butEdit.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butEdit.CornerRadius = 4F;
     this.butEdit.Image        = global::OpenDental.Properties.Resources.editPencil;
     this.butEdit.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butEdit.Location     = new System.Drawing.Point(279, 568);
     this.butEdit.Name         = "butEdit";
     this.butEdit.Size         = new System.Drawing.Size(82, 24);
     this.butEdit.TabIndex     = 36;
     this.butEdit.Text         = "Edit";
     this.butEdit.Click       += new System.EventHandler(this.butEdit_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(6, 55);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(443, 509);
     this.gridMain.TabIndex         = 38;
     this.gridMain.Title            = "";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 0;
     this.gridMain.TranslationName  = "TableQueryFavorites";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer1.FixedPanel      = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.IsSplitterFixed = true;
     this.splitContainer1.Location        = new System.Drawing.Point(5, 3);
     this.splitContainer1.Name            = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.label5);
     this.splitContainer1.Panel1.Controls.Add(this.textSearch);
     this.splitContainer1.Panel1.Controls.Add(this.butShowHide);
     this.splitContainer1.Panel1.Controls.Add(this.butDelete);
     this.splitContainer1.Panel1.Controls.Add(this.gridMain);
     this.splitContainer1.Panel1.Controls.Add(this.butAdd);
     this.splitContainer1.Panel1.Controls.Add(this.butEdit);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.checkWrapText);
     this.splitContainer1.Panel2.Controls.Add(this.textQuery);
     this.splitContainer1.Size             = new System.Drawing.Size(1079, 613);
     this.splitContainer1.SplitterDistance = 454;
     this.splitContainer1.SplitterWidth    = 1;
     this.splitContainer1.TabIndex         = 39;
     //
     // butShowHide
     //
     this.butShowHide.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butShowHide.Autosize            = true;
     this.butShowHide.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butShowHide.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butShowHide.CornerRadius        = 4F;
     this.butShowHide.Location            = new System.Drawing.Point(367, 3);
     this.butShowHide.Name     = "butShowHide";
     this.butShowHide.Size     = new System.Drawing.Size(82, 25);
     this.butShowHide.TabIndex = 40;
     this.butShowHide.Text     = "Show Text >";
     this.butShowHide.UseVisualStyleBackColor = true;
     this.butShowHide.Click += new System.EventHandler(this.butShowHide_Click);
     //
     // checkWrapText
     //
     this.checkWrapText.Location = new System.Drawing.Point(0, 8);
     this.checkWrapText.Name     = "checkWrapText";
     this.checkWrapText.Size     = new System.Drawing.Size(227, 24);
     this.checkWrapText.TabIndex = 1;
     this.checkWrapText.Text     = "Wrap Text";
     this.checkWrapText.UseVisualStyleBackColor = true;
     this.checkWrapText.CheckedChanged         += new System.EventHandler(this.checkWrapText_CheckedChanged);
     //
     // textQuery
     //
     this.textQuery.AcceptsTab         = true;
     this.textQuery.BackColor          = System.Drawing.SystemColors.Control;
     this.textQuery.DetectLinksEnabled = false;
     this.textQuery.DetectUrls         = false;
     this.textQuery.Dock           = System.Windows.Forms.DockStyle.Bottom;
     this.textQuery.Location       = new System.Drawing.Point(0, 31);
     this.textQuery.Name           = "textQuery";
     this.textQuery.QuickPasteType = OpenDentBusiness.QuickPasteType.ReadOnly;
     this.textQuery.ReadOnly       = true;
     this.textQuery.ScrollBars     = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textQuery.Size           = new System.Drawing.Size(622, 580);
     this.textQuery.TabIndex       = 0;
     this.textQuery.Text           = "";
     this.textQuery.WordWrap       = false;
     //
     // label5
     //
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(6, 15);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(173, 16);
     this.label5.TabIndex  = 163;
     this.label5.Text      = "Search:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textSearch
     //
     this.textSearch.Location     = new System.Drawing.Point(6, 32);
     this.textSearch.Name         = "textSearch";
     this.textSearch.Size         = new System.Drawing.Size(443, 20);
     this.textSearch.TabIndex     = 162;
     this.textSearch.TextChanged += new System.EventHandler(this.textSearch_TextChanged);
     //
     // FormQueryFavorites
     //
     this.AcceptButton = this.butOK;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(1084, 656);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormQueryFavorites";
     this.ShowInTaskbar = false;
     this.Text          = "Query Favorites";
     this.Load         += new System.EventHandler(this.FormQueryFormulate_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormEmailJobs));
     this.label3                        = new System.Windows.Forms.Label();
     this.label2                        = new System.Windows.Forms.Label();
     this.comboEmailFrom                = new System.Windows.Forms.ComboBox();
     this.menuStrip1                    = new System.Windows.Forms.MenuStrip();
     this.setupToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.editTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label1                        = new System.Windows.Forms.Label();
     this.label4                        = new System.Windows.Forms.Label();
     this.label5                        = new System.Windows.Forms.Label();
     this.gridRecipients                = new OpenDental.UI.ODGrid();
     this.textVersions                  = new OpenDental.ODtextBox();
     this.textDescriptions              = new OpenDental.ODtextBox();
     this.textPledgeTemplate            = new OpenDental.ODtextBox();
     this.textSubject                   = new OpenDental.ODtextBox();
     this.textFromAddress               = new OpenDental.ODtextBox();
     this.textBodyTextTemplate          = new OpenDental.ODtextBox();
     this.butSend                       = new OpenDental.UI.Button();
     this.butCancel                     = new OpenDental.UI.Button();
     this.butExport                     = new OpenDental.UI.Button();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.Location  = new System.Drawing.Point(12, 285);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(88, 14);
     this.label3.TabIndex  = 38;
     this.label3.Text      = "From:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.Location  = new System.Drawing.Point(12, 306);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 14);
     this.label2.TabIndex  = 40;
     this.label2.Text      = "Subject:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboEmailFrom
     //
     this.comboEmailFrom.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.comboEmailFrom.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboEmailFrom.Location         = new System.Drawing.Point(645, 281);
     this.comboEmailFrom.MaxDropDownItems = 40;
     this.comboEmailFrom.Name             = "comboEmailFrom";
     this.comboEmailFrom.Size             = new System.Drawing.Size(359, 21);
     this.comboEmailFrom.TabIndex         = 227;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.setupToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1018, 24);
     this.menuStrip1.TabIndex = 229;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // setupToolStripMenuItem
     //
     this.setupToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.editTemplateToolStripMenuItem
     });
     this.setupToolStripMenuItem.Name = "setupToolStripMenuItem";
     this.setupToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
     this.setupToolStripMenuItem.Text = "Setup";
     //
     // editTemplateToolStripMenuItem
     //
     this.editTemplateToolStripMenuItem.Name   = "editTemplateToolStripMenuItem";
     this.editTemplateToolStripMenuItem.Size   = new System.Drawing.Size(151, 22);
     this.editTemplateToolStripMenuItem.Text   = "Edit Templates";
     this.editTemplateToolStripMenuItem.Click += new System.EventHandler(this.editTemplateToolStripMenuItem_Click);
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Location  = new System.Drawing.Point(11, 559);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 31);
     this.label1.TabIndex  = 232;
     this.label1.Text      = "Feature Description(s):";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label4.Location  = new System.Drawing.Point(12, 528);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(88, 14);
     this.label4.TabIndex  = 233;
     this.label4.Text      = "Pledge:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.Location  = new System.Drawing.Point(771, 533);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(88, 14);
     this.label5.TabIndex  = 234;
     this.label5.Text      = "Version(s):";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // gridRecipients
     //
     this.gridRecipients.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                         | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.gridRecipients.HasMultilineHeaders = true;
     this.gridRecipients.Location            = new System.Drawing.Point(98, 27);
     this.gridRecipients.Name            = "gridRecipients";
     this.gridRecipients.Size            = new System.Drawing.Size(906, 250);
     this.gridRecipients.TabIndex        = 226;
     this.gridRecipients.Title           = "Recipients";
     this.gridRecipients.TranslationName = "FormTaskEdit";
     this.gridRecipients.CellClick      += new OpenDental.UI.ODGridClickEventHandler(this.gridRecipients_CellClick);
     //
     // textVersions
     //
     this.textVersions.AcceptsTab         = true;
     this.textVersions.Anchor             = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.textVersions.BackColor          = System.Drawing.SystemColors.Window;
     this.textVersions.DetectLinksEnabled = false;
     this.textVersions.DetectUrls         = false;
     this.textVersions.Location           = new System.Drawing.Point(857, 529);
     this.textVersions.Multiline          = false;
     this.textVersions.Name                = "textVersions";
     this.textVersions.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textVersions.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textVersions.Size                = new System.Drawing.Size(147, 22);
     this.textVersions.SpellCheckIsEnabled = false;
     this.textVersions.TabIndex            = 235;
     this.textVersions.Text                = "";
     this.textVersions.WordWrap            = false;
     //
     // textDescriptions
     //
     this.textDescriptions.AcceptsTab = true;
     this.textDescriptions.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.textDescriptions.BackColor          = System.Drawing.SystemColors.Window;
     this.textDescriptions.DetectLinksEnabled = false;
     this.textDescriptions.DetectUrls         = false;
     this.textDescriptions.Location           = new System.Drawing.Point(98, 557);
     this.textDescriptions.Name                = "textDescriptions";
     this.textDescriptions.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textDescriptions.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textDescriptions.Size                = new System.Drawing.Size(667, 127);
     this.textDescriptions.SpellCheckIsEnabled = false;
     this.textDescriptions.TabIndex            = 230;
     this.textDescriptions.Text                = "";
     //
     // textPledgeTemplate
     //
     this.textPledgeTemplate.AcceptsTab = true;
     this.textPledgeTemplate.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.textPledgeTemplate.BackColor          = System.Drawing.SystemColors.Control;
     this.textPledgeTemplate.DetectLinksEnabled = false;
     this.textPledgeTemplate.DetectUrls         = false;
     this.textPledgeTemplate.Location           = new System.Drawing.Point(98, 526);
     this.textPledgeTemplate.Name                = "textPledgeTemplate";
     this.textPledgeTemplate.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textPledgeTemplate.ReadOnly            = true;
     this.textPledgeTemplate.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textPledgeTemplate.Size                = new System.Drawing.Size(667, 25);
     this.textPledgeTemplate.SpellCheckIsEnabled = false;
     this.textPledgeTemplate.TabIndex            = 231;
     this.textPledgeTemplate.Text                = "";
     //
     // textSubject
     //
     this.textSubject.AcceptsTab = true;
     this.textSubject.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.textSubject.BackColor          = System.Drawing.SystemColors.Window;
     this.textSubject.DetectLinksEnabled = false;
     this.textSubject.DetectUrls         = false;
     this.textSubject.Location           = new System.Drawing.Point(98, 304);
     this.textSubject.Multiline          = false;
     this.textSubject.Name                = "textSubject";
     this.textSubject.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textSubject.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textSubject.Size                = new System.Drawing.Size(906, 22);
     this.textSubject.SpellCheckIsEnabled = false;
     this.textSubject.TabIndex            = 44;
     this.textSubject.Text                = "";
     this.textSubject.WordWrap            = false;
     //
     // textFromAddress
     //
     this.textFromAddress.AcceptsTab = true;
     this.textFromAddress.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textFromAddress.BackColor          = System.Drawing.SystemColors.Window;
     this.textFromAddress.DetectLinksEnabled = false;
     this.textFromAddress.DetectUrls         = false;
     this.textFromAddress.Location           = new System.Drawing.Point(98, 281);
     this.textFromAddress.Multiline          = false;
     this.textFromAddress.Name                = "textFromAddress";
     this.textFromAddress.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textFromAddress.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textFromAddress.Size                = new System.Drawing.Size(544, 22);
     this.textFromAddress.SpellCheckIsEnabled = false;
     this.textFromAddress.TabIndex            = 41;
     this.textFromAddress.Text                = "";
     this.textFromAddress.WordWrap            = false;
     //
     // textBodyTextTemplate
     //
     this.textBodyTextTemplate.AcceptsTab = true;
     this.textBodyTextTemplate.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBodyTextTemplate.BackColor          = System.Drawing.SystemColors.Control;
     this.textBodyTextTemplate.DetectLinksEnabled = false;
     this.textBodyTextTemplate.DetectUrls         = false;
     this.textBodyTextTemplate.Location           = new System.Drawing.Point(98, 327);
     this.textBodyTextTemplate.Name                = "textBodyTextTemplate";
     this.textBodyTextTemplate.QuickPasteType      = OpenDentBusiness.QuickPasteType.Email;
     this.textBodyTextTemplate.ReadOnly            = true;
     this.textBodyTextTemplate.ScrollBars          = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.textBodyTextTemplate.Size                = new System.Drawing.Size(906, 193);
     this.textBodyTextTemplate.SpellCheckIsEnabled = false;
     this.textBodyTextTemplate.TabIndex            = 46;
     this.textBodyTextTemplate.Text                = "";
     //
     // butSend
     //
     this.butSend.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butSend.Location = new System.Drawing.Point(848, 659);
     this.butSend.Name     = "butSend";
     this.butSend.Size     = new System.Drawing.Size(75, 25);
     this.butSend.TabIndex = 9;
     this.butSend.Text     = "&Send";
     this.butSend.Click   += new System.EventHandler(this.butSend_Click);
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(929, 659);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex     = 10;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butExport
     //
     this.butExport.Location = new System.Drawing.Point(17, 253);
     this.butExport.Name     = "butExport";
     this.butExport.Size     = new System.Drawing.Size(75, 24);
     this.butExport.TabIndex = 236;
     this.butExport.Text     = "Export";
     this.butExport.Click   += new System.EventHandler(this.butExport_Click);
     //
     // FormEmailJobs
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1018, 696);
     this.Controls.Add(this.butExport);
     this.Controls.Add(this.textVersions);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.textDescriptions);
     this.Controls.Add(this.textPledgeTemplate);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboEmailFrom);
     this.Controls.Add(this.gridRecipients);
     this.Controls.Add(this.textSubject);
     this.Controls.Add(this.textFromAddress);
     this.Controls.Add(this.textBodyTextTemplate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butSend);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.menuStrip1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.MinimumSize   = new System.Drawing.Size(875, 735);
     this.Name          = "FormEmailJobs";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Email Message";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormEmailJobs_FormClosing);
     this.Load         += new System.EventHandler(this.FormEmailJobs_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #34
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(FormDefinitions));
     this.butClose       = new OpenDental.UI.Button();
     this.label14        = new System.Windows.Forms.Label();
     this.textGuide      = new System.Windows.Forms.TextBox();
     this.groupEdit      = new System.Windows.Forms.GroupBox();
     this.butAlphabetize = new OpenDental.UI.Button();
     this.butHide        = new OpenDental.UI.Button();
     this.butDown        = new OpenDental.UI.Button();
     this.butUp          = new OpenDental.UI.Button();
     this.butAdd         = new OpenDental.UI.Button();
     this.listCategory   = new System.Windows.Forms.ListBox();
     this.label13        = new System.Windows.Forms.Label();
     this.gridDefs       = new OpenDental.UI.ODGrid();
     this.groupEdit.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(700, 670);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 24);
     this.butClose.TabIndex     = 3;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // label14
     //
     this.label14.Location  = new System.Drawing.Point(78, 631);
     this.label14.Name      = "label14";
     this.label14.Size      = new System.Drawing.Size(100, 18);
     this.label14.TabIndex  = 22;
     this.label14.Text      = "Guidelines";
     this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textGuide
     //
     this.textGuide.Location   = new System.Drawing.Point(184, 631);
     this.textGuide.Multiline  = true;
     this.textGuide.Name       = "textGuide";
     this.textGuide.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textGuide.Size       = new System.Drawing.Size(488, 63);
     this.textGuide.TabIndex   = 2;
     //
     // groupEdit
     //
     this.groupEdit.Controls.Add(this.butAlphabetize);
     this.groupEdit.Controls.Add(this.butHide);
     this.groupEdit.Controls.Add(this.butDown);
     this.groupEdit.Controls.Add(this.butUp);
     this.groupEdit.Controls.Add(this.butAdd);
     this.groupEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupEdit.Location  = new System.Drawing.Point(184, 576);
     this.groupEdit.Name      = "groupEdit";
     this.groupEdit.Size      = new System.Drawing.Size(488, 51);
     this.groupEdit.TabIndex  = 1;
     this.groupEdit.TabStop   = false;
     this.groupEdit.Text      = "Edit Items";
     //
     // butAlphabetize
     //
     this.butAlphabetize.Location = new System.Drawing.Point(395, 20);
     this.butAlphabetize.Name     = "butAlphabetize";
     this.butAlphabetize.Size     = new System.Drawing.Size(75, 24);
     this.butAlphabetize.TabIndex = 21;
     this.butAlphabetize.Text     = "Alphabetize";
     this.butAlphabetize.Click   += new System.EventHandler(this.butAlphabetize_Click);
     //
     // butHide
     //
     this.butHide.Location = new System.Drawing.Point(107, 20);
     this.butHide.Name     = "butHide";
     this.butHide.Size     = new System.Drawing.Size(79, 24);
     this.butHide.TabIndex = 10;
     this.butHide.Text     = "&Hide";
     this.butHide.Click   += new System.EventHandler(this.butHide_Click);
     //
     // butDown
     //
     this.butDown.Image      = global::OpenDental.Properties.Resources.down;
     this.butDown.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDown.Location   = new System.Drawing.Point(299, 20);
     this.butDown.Name       = "butDown";
     this.butDown.Size       = new System.Drawing.Size(79, 24);
     this.butDown.TabIndex   = 9;
     this.butDown.Text       = "&Down";
     this.butDown.Click     += new System.EventHandler(this.butDown_Click);
     //
     // butUp
     //
     this.butUp.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUp.Image      = global::OpenDental.Properties.Resources.up;
     this.butUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUp.Location   = new System.Drawing.Point(203, 20);
     this.butUp.Name       = "butUp";
     this.butUp.Size       = new System.Drawing.Size(79, 24);
     this.butUp.TabIndex   = 8;
     this.butUp.Text       = "&Up";
     this.butUp.Click     += new System.EventHandler(this.butUp_Click);
     //
     // butAdd
     //
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(11, 20);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(79, 24);
     this.butAdd.TabIndex   = 6;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // listCategory
     //
     this.listCategory.Location              = new System.Drawing.Point(11, 30);
     this.listCategory.Name                  = "listCategory";
     this.listCategory.Size                  = new System.Drawing.Size(167, 550);
     this.listCategory.TabIndex              = 0;
     this.listCategory.SelectedIndexChanged += new System.EventHandler(this.listCategory_SelectedIndexChanged);
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(11, 12);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(162, 17);
     this.label13.TabIndex  = 17;
     this.label13.Text      = "Select Category:";
     this.label13.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // gridDefs
     //
     this.gridDefs.Location         = new System.Drawing.Point(184, 30);
     this.gridDefs.Name             = "gridDefs";
     this.gridDefs.Size             = new System.Drawing.Size(488, 537);
     this.gridDefs.TabIndex         = 23;
     this.gridDefs.Title            = "Definitions";
     this.gridDefs.TranslationName  = "TableDefinitions";
     this.gridDefs.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridDefs_CellDoubleClick);
     //
     // FormDefinitions
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(789, 707);
     this.Controls.Add(this.gridDefs);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.textGuide);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.groupEdit);
     this.Controls.Add(this.listCategory);
     this.Controls.Add(this.label13);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormDefinitions";
     this.ShowInTaskbar = false;
     this.Text          = "Definitions";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormDefinitions_Closing);
     this.Load         += new System.EventHandler(this.FormDefinitions_Load);
     this.groupEdit.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #35
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(FormClinics));
     this.groupClinicOrder       = new System.Windows.Forms.GroupBox();
     this.butUp                  = new OpenDental.UI.Button();
     this.butDown                = new OpenDental.UI.Button();
     this.checkOrderAlphabetical = new System.Windows.Forms.CheckBox();
     this.groupMovePats          = new System.Windows.Forms.GroupBox();
     this.butMovePats            = new OpenDental.UI.Button();
     this.butClinicPick          = new OpenDental.UI.Button();
     this.textMoveTo             = new System.Windows.Forms.TextBox();
     this.label2                 = new System.Windows.Forms.Label();
     this.checkShowHidden        = new System.Windows.Forms.CheckBox();
     this.butOK                  = new OpenDental.UI.Button();
     this.gridMain               = new OpenDental.UI.ODGrid();
     this.label1                 = new System.Windows.Forms.Label();
     this.butAdd                 = new OpenDental.UI.Button();
     this.butClose               = new OpenDental.UI.Button();
     this.butSelectAll           = new OpenDental.UI.Button();
     this.butSelectNone          = new OpenDental.UI.Button();
     this.groupClinicOrder.SuspendLayout();
     this.groupMovePats.SuspendLayout();
     this.SuspendLayout();
     //
     // groupClinicOrder
     //
     this.groupClinicOrder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupClinicOrder.Controls.Add(this.butUp);
     this.groupClinicOrder.Controls.Add(this.butDown);
     this.groupClinicOrder.Controls.Add(this.checkOrderAlphabetical);
     this.groupClinicOrder.Location = new System.Drawing.Point(642, 126);
     this.groupClinicOrder.Name     = "groupClinicOrder";
     this.groupClinicOrder.Size     = new System.Drawing.Size(266, 91);
     this.groupClinicOrder.TabIndex = 20;
     this.groupClinicOrder.TabStop  = false;
     this.groupClinicOrder.Text     = "Clinic Order";
     //
     // butUp
     //
     this.butUp.AdjustImageLocation = new System.Drawing.Point(0, 1);
     this.butUp.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butUp.Autosize     = true;
     this.butUp.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butUp.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butUp.CornerRadius = 4F;
     this.butUp.Image        = global::OpenDental.Properties.Resources.up;
     this.butUp.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butUp.Location     = new System.Drawing.Point(6, 19);
     this.butUp.Name         = "butUp";
     this.butUp.Size         = new System.Drawing.Size(75, 26);
     this.butUp.TabIndex     = 4;
     this.butUp.Text         = "&Up";
     this.butUp.Click       += new System.EventHandler(this.butUp_Click);
     //
     // butDown
     //
     this.butDown.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDown.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butDown.Autosize     = true;
     this.butDown.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDown.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDown.CornerRadius = 4F;
     this.butDown.Image        = global::OpenDental.Properties.Resources.down;
     this.butDown.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDown.Location     = new System.Drawing.Point(6, 54);
     this.butDown.Name         = "butDown";
     this.butDown.Size         = new System.Drawing.Size(75, 26);
     this.butDown.TabIndex     = 5;
     this.butDown.Text         = "&Down";
     this.butDown.Click       += new System.EventHandler(this.butDown_Click);
     //
     // checkOrderAlphabetical
     //
     this.checkOrderAlphabetical.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkOrderAlphabetical.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkOrderAlphabetical.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkOrderAlphabetical.Location   = new System.Drawing.Point(128, 40);
     this.checkOrderAlphabetical.Name       = "checkOrderAlphabetical";
     this.checkOrderAlphabetical.Size       = new System.Drawing.Size(132, 18);
     this.checkOrderAlphabetical.TabIndex   = 16;
     this.checkOrderAlphabetical.Text       = "Order Alphabetical";
     this.checkOrderAlphabetical.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkOrderAlphabetical.UseVisualStyleBackColor = true;
     this.checkOrderAlphabetical.Click += new System.EventHandler(this.checkOrderAlphabetical_Click);
     //
     // groupMovePats
     //
     this.groupMovePats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupMovePats.Controls.Add(this.butMovePats);
     this.groupMovePats.Controls.Add(this.butClinicPick);
     this.groupMovePats.Controls.Add(this.textMoveTo);
     this.groupMovePats.Controls.Add(this.label2);
     this.groupMovePats.Location = new System.Drawing.Point(642, 37);
     this.groupMovePats.Name     = "groupMovePats";
     this.groupMovePats.Size     = new System.Drawing.Size(266, 83);
     this.groupMovePats.TabIndex = 18;
     this.groupMovePats.TabStop  = false;
     this.groupMovePats.Text     = "Move Patients";
     //
     // butMovePats
     //
     this.butMovePats.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butMovePats.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butMovePats.Autosize                = true;
     this.butMovePats.BtnShape                = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butMovePats.BtnStyle                = OpenDental.UI.enumType.XPStyle.Silver;
     this.butMovePats.CornerRadius            = 4F;
     this.butMovePats.Location                = new System.Drawing.Point(185, 46);
     this.butMovePats.Name                    = "butMovePats";
     this.butMovePats.Size                    = new System.Drawing.Size(75, 26);
     this.butMovePats.TabIndex                = 15;
     this.butMovePats.Text                    = "&Move";
     this.butMovePats.UseVisualStyleBackColor = true;
     this.butMovePats.Click                  += new System.EventHandler(this.butMovePats_Click);
     //
     // butClinicPick
     //
     this.butClinicPick.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClinicPick.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butClinicPick.Autosize     = true;
     this.butClinicPick.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClinicPick.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClinicPick.CornerRadius = 4F;
     this.butClinicPick.Location     = new System.Drawing.Point(237, 20);
     this.butClinicPick.Name         = "butClinicPick";
     this.butClinicPick.Size         = new System.Drawing.Size(23, 20);
     this.butClinicPick.TabIndex     = 23;
     this.butClinicPick.Text         = "...";
     this.butClinicPick.Click       += new System.EventHandler(this.butClinicPick_Click);
     //
     // textMoveTo
     //
     this.textMoveTo.Location  = new System.Drawing.Point(98, 20);
     this.textMoveTo.MaxLength = 15;
     this.textMoveTo.Name      = "textMoveTo";
     this.textMoveTo.ReadOnly  = true;
     this.textMoveTo.Size      = new System.Drawing.Size(135, 20);
     this.textMoveTo.TabIndex  = 22;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(6, 21);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(91, 18);
     this.label2.TabIndex  = 18;
     this.label2.Text      = "To Clinic";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkShowHidden
     //
     this.checkShowHidden.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkShowHidden.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowHidden.Checked    = true;
     this.checkShowHidden.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkShowHidden.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkShowHidden.Location   = new System.Drawing.Point(512, 12);
     this.checkShowHidden.Name       = "checkShowHidden";
     this.checkShowHidden.Size       = new System.Drawing.Size(124, 18);
     this.checkShowHidden.TabIndex   = 17;
     this.checkShowHidden.Text       = "Show Hidden";
     this.checkShowHidden.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowHidden.UseVisualStyleBackColor = true;
     this.checkShowHidden.CheckedChanged         += new System.EventHandler(this.checkShowHidden_CheckedChanged);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(833, 541);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 13;
     this.butOK.Text         = "&OK";
     this.butOK.Visible      = false;
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(12, 37);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(624, 562);
     this.gridMain.TabIndex         = 12;
     this.gridMain.Title            = "Clinics";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableClinics";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(12, 12);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(351, 18);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "This is usually only used if you have multiple locations";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(833, 223);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(75, 26);
     this.butAdd.TabIndex     = 10;
     this.butAdd.Text         = "&Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location     = new System.Drawing.Point(833, 573);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 0;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butSelectAll
     //
     this.butSelectAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSelectAll.Autosize            = true;
     this.butSelectAll.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSelectAll.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSelectAll.CornerRadius        = 4F;
     this.butSelectAll.Location            = new System.Drawing.Point(642, 311);
     this.butSelectAll.Name     = "butSelectAll";
     this.butSelectAll.Size     = new System.Drawing.Size(81, 26);
     this.butSelectAll.TabIndex = 21;
     this.butSelectAll.Text     = "Select All";
     this.butSelectAll.UseVisualStyleBackColor = true;
     this.butSelectAll.Visible = false;
     this.butSelectAll.Click  += new System.EventHandler(this.butSelectAll_Click);
     //
     // butSelectNone
     //
     this.butSelectNone.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSelectNone.Autosize            = true;
     this.butSelectNone.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSelectNone.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSelectNone.CornerRadius        = 4F;
     this.butSelectNone.Location            = new System.Drawing.Point(642, 343);
     this.butSelectNone.Name     = "butSelectNone";
     this.butSelectNone.Size     = new System.Drawing.Size(81, 26);
     this.butSelectNone.TabIndex = 22;
     this.butSelectNone.Text     = "Select None";
     this.butSelectNone.UseVisualStyleBackColor = true;
     this.butSelectNone.Visible = false;
     this.butSelectNone.Click  += new System.EventHandler(this.butSelectNone_Click);
     //
     // FormClinics
     //
     this.ClientSize = new System.Drawing.Size(920, 611);
     this.Controls.Add(this.butSelectNone);
     this.Controls.Add(this.butSelectAll);
     this.Controls.Add(this.groupClinicOrder);
     this.Controls.Add(this.groupMovePats);
     this.Controls.Add(this.checkShowHidden);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butAdd);
     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(930, 650);
     this.Name          = "FormClinics";
     this.ShowInTaskbar = false;
     this.Text          = "Clinics";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormClinics_Closing);
     this.Load         += new System.EventHandler(this.FormClinics_Load);
     this.groupClinicOrder.ResumeLayout(false);
     this.groupMovePats.ResumeLayout(false);
     this.groupMovePats.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #36
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpTreatmentFinder));
     this.label1                    = new System.Windows.Forms.Label();
     this.checkIncludeNoIns         = new System.Windows.Forms.CheckBox();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.comboClinics              = new OpenDental.UI.ComboBoxClinicPicker();
     this.codeRangeFilter           = new OpenDental.UI.ODCodeRangeFilter();
     this.checkBenefitAssumeGeneral = new System.Windows.Forms.CheckBox();
     this.comboBoxMultiBilling      = new OpenDental.UI.ComboBoxMulti();
     this.comboBoxMultiProv         = new OpenDental.UI.ComboBoxMulti();
     this.textOverAmount            = new OpenDental.ValidDouble();
     this.comboMonthStart           = new System.Windows.Forms.ComboBox();
     this.label8                    = new System.Windows.Forms.Label();
     this.label7                    = new System.Windows.Forms.Label();
     this.label3                    = new System.Windows.Forms.Label();
     this.labelCodeRange            = new System.Windows.Forms.Label();
     this.label4                    = new System.Windows.Forms.Label();
     this.textDateStart             = new OpenDental.ValidDate();
     this.label2                    = new System.Windows.Forms.Label();
     this.butRefresh                = new OpenDental.UI.Button();
     this.checkIncludePatsWithApts  = new System.Windows.Forms.CheckBox();
     this.contextRightClick         = new System.Windows.Forms.ContextMenu();
     this.menuItemFamily            = new System.Windows.Forms.MenuItem();
     this.menuItemAccount           = new System.Windows.Forms.MenuItem();
     this.gridMain                  = new OpenDental.UI.ODGrid();
     this.buttonExport              = new OpenDental.UI.Button();
     this.butLettersPreview         = new OpenDental.UI.Button();
     this.butLabelSingle            = new OpenDental.UI.Button();
     this.butLabelPreview           = new OpenDental.UI.Button();
     this.butGotoAccount            = new OpenDental.UI.Button();
     this.butGotoFamily             = new OpenDental.UI.Button();
     this.butPrint                  = new OpenDental.UI.Button();
     this.butCancel                 = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(22, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(872, 29);
     this.label1.TabIndex = 29;
     this.label1.Text     = resources.GetString("label1.Text");
     //
     // checkIncludeNoIns
     //
     this.checkIncludeNoIns.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludeNoIns.Location   = new System.Drawing.Point(31, 14);
     this.checkIncludeNoIns.Name       = "checkIncludeNoIns";
     this.checkIncludeNoIns.Size       = new System.Drawing.Size(214, 18);
     this.checkIncludeNoIns.TabIndex   = 30;
     this.checkIncludeNoIns.Text       = "Include patients without insurance";
     this.checkIncludeNoIns.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludeNoIns.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboClinics);
     this.groupBox1.Controls.Add(this.codeRangeFilter);
     this.groupBox1.Controls.Add(this.checkBenefitAssumeGeneral);
     this.groupBox1.Controls.Add(this.comboBoxMultiBilling);
     this.groupBox1.Controls.Add(this.comboBoxMultiProv);
     this.groupBox1.Controls.Add(this.textOverAmount);
     this.groupBox1.Controls.Add(this.comboMonthStart);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.labelCodeRange);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.textDateStart);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.butRefresh);
     this.groupBox1.Controls.Add(this.checkIncludePatsWithApts);
     this.groupBox1.Controls.Add(this.checkIncludeNoIns);
     this.groupBox1.Location = new System.Drawing.Point(5, 41);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(1040, 83);
     this.groupBox1.TabIndex = 33;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "View";
     //
     // comboClinics
     //
     this.comboClinics.IncludeUnassigned = true;
     this.comboClinics.Location          = new System.Drawing.Point(478, 54);
     this.comboClinics.Name     = "comboClinics";
     this.comboClinics.Size     = new System.Drawing.Size(197, 21);
     this.comboClinics.TabIndex = 77;
     //
     // codeRangeFilter
     //
     this.codeRangeFilter.HideExampleText = false;
     this.codeRangeFilter.Location        = new System.Drawing.Point(755, 11);
     this.codeRangeFilter.MaximumSize     = new System.Drawing.Size(300, 37);
     this.codeRangeFilter.MinimumSize     = new System.Drawing.Size(0, 20);
     this.codeRangeFilter.Name            = "codeRangeFilter";
     this.codeRangeFilter.Size            = new System.Drawing.Size(150, 37);
     this.codeRangeFilter.TabIndex        = 76;
     //
     // checkBenefitAssumeGeneral
     //
     this.checkBenefitAssumeGeneral.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBenefitAssumeGeneral.Location   = new System.Drawing.Point(682, 50);
     this.checkBenefitAssumeGeneral.Name       = "checkBenefitAssumeGeneral";
     this.checkBenefitAssumeGeneral.Size       = new System.Drawing.Size(226, 18);
     this.checkBenefitAssumeGeneral.TabIndex   = 75;
     this.checkBenefitAssumeGeneral.Text       = "Assume procedures are General";
     this.checkBenefitAssumeGeneral.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBenefitAssumeGeneral.UseVisualStyleBackColor = true;
     //
     // comboBoxMultiBilling
     //
     this.comboBoxMultiBilling.ArraySelectedIndices = new int[0];
     this.comboBoxMultiBilling.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxMultiBilling.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiBilling.Items")));
     this.comboBoxMultiBilling.Location        = new System.Drawing.Point(515, 32);
     this.comboBoxMultiBilling.Name            = "comboBoxMultiBilling";
     this.comboBoxMultiBilling.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiBilling.SelectedIndices")));
     this.comboBoxMultiBilling.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiBilling.TabIndex        = 50;
     this.comboBoxMultiBilling.Leave          += new System.EventHandler(this.comboBoxMultiBilling_Leave);
     //
     // comboBoxMultiProv
     //
     this.comboBoxMultiProv.ArraySelectedIndices = new int[0];
     this.comboBoxMultiProv.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxMultiProv.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.Items")));
     this.comboBoxMultiProv.Location        = new System.Drawing.Point(515, 10);
     this.comboBoxMultiProv.Name            = "comboBoxMultiProv";
     this.comboBoxMultiProv.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxMultiProv.SelectedIndices")));
     this.comboBoxMultiProv.Size            = new System.Drawing.Size(160, 21);
     this.comboBoxMultiProv.TabIndex        = 49;
     this.comboBoxMultiProv.Leave          += new System.EventHandler(this.comboBoxMultiProv_Leave);
     //
     // textOverAmount
     //
     this.textOverAmount.Location = new System.Drawing.Point(177, 55);
     this.textOverAmount.MaxVal   = 100000000D;
     this.textOverAmount.MinVal   = -100000000D;
     this.textOverAmount.Name     = "textOverAmount";
     this.textOverAmount.Size     = new System.Drawing.Size(68, 20);
     this.textOverAmount.TabIndex = 48;
     //
     // comboMonthStart
     //
     this.comboMonthStart.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboMonthStart.Items.AddRange(new object[] {
         "Calendar Year",
         "01 - January",
         "02 - February",
         "03 - March",
         "04 - April",
         "05 - May",
         "06 - June",
         "07 - July",
         "08 - August",
         "09 - September",
         "10 - October",
         "11 - November",
         "12 - December"
     });
     this.comboMonthStart.Location         = new System.Drawing.Point(346, 32);
     this.comboMonthStart.MaxDropDownItems = 40;
     this.comboMonthStart.Name             = "comboMonthStart";
     this.comboMonthStart.Size             = new System.Drawing.Size(98, 21);
     this.comboMonthStart.TabIndex         = 47;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(31, 58);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(140, 14);
     this.label8.TabIndex  = 46;
     this.label8.Text      = "Amount remaining over";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(445, 35);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(70, 14);
     this.label7.TabIndex  = 43;
     this.label7.Text      = "Billing Type";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(249, 36);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(93, 14);
     this.label3.TabIndex  = 37;
     this.label3.Text      = "Ins Month Start";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // labelCodeRange
     //
     this.labelCodeRange.Location  = new System.Drawing.Point(679, 12);
     this.labelCodeRange.Name      = "labelCodeRange";
     this.labelCodeRange.Size      = new System.Drawing.Size(77, 17);
     this.labelCodeRange.TabIndex  = 40;
     this.labelCodeRange.Text      = "Code Range";
     this.labelCodeRange.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(445, 14);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(70, 14);
     this.label4.TabIndex  = 35;
     this.label4.Text      = "Provider";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDateStart
     //
     this.textDateStart.Location = new System.Drawing.Point(367, 11);
     this.textDateStart.Name     = "textDateStart";
     this.textDateStart.Size     = new System.Drawing.Size(77, 20);
     this.textDateStart.TabIndex = 34;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(246, 14);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(119, 14);
     this.label2.TabIndex  = 33;
     this.label2.Text      = "TP Date Since";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // 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(346, 55);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(98, 24);
     this.butRefresh.TabIndex = 32;
     this.butRefresh.Text     = "&Refresh List";
     this.butRefresh.Click   += new System.EventHandler(this.butRefresh_Click);
     //
     // checkIncludePatsWithApts
     //
     this.checkIncludePatsWithApts.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludePatsWithApts.Location   = new System.Drawing.Point(6, 33);
     this.checkIncludePatsWithApts.Name       = "checkIncludePatsWithApts";
     this.checkIncludePatsWithApts.Size       = new System.Drawing.Size(239, 18);
     this.checkIncludePatsWithApts.TabIndex   = 30;
     this.checkIncludePatsWithApts.Text       = "Include patients with upcoming appointments";
     this.checkIncludePatsWithApts.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkIncludePatsWithApts.UseVisualStyleBackColor = true;
     //
     // contextRightClick
     //
     this.contextRightClick.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFamily,
         this.menuItemAccount
     });
     //
     // menuItemFamily
     //
     this.menuItemFamily.Index  = 0;
     this.menuItemFamily.Text   = "See Family";
     this.menuItemFamily.Click += new System.EventHandler(this.menuItemFamily_Click);
     //
     // menuItemAccount
     //
     this.menuItemAccount.Index  = 1;
     this.menuItemAccount.Text   = "See Account";
     this.menuItemAccount.Click += new System.EventHandler(this.menuItemAccount_Click);
     //
     // gridMain
     //
     this.gridMain.AllowSortingByColumn = true;
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.HScrollVisible   = true;
     this.gridMain.Location         = new System.Drawing.Point(3, 130);
     this.gridMain.Name             = "gridMain";
     this.gridMain.SelectionMode    = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size             = new System.Drawing.Size(1043, 453);
     this.gridMain.TabIndex         = 31;
     this.gridMain.Title            = "Treatment Finder";
     this.gridMain.TranslationName  = "TableTreatmentFinder";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // buttonExport
     //
     this.buttonExport.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonExport.Location   = new System.Drawing.Point(7, 613);
     this.buttonExport.Name       = "buttonExport";
     this.buttonExport.Size       = new System.Drawing.Size(119, 24);
     this.buttonExport.TabIndex   = 72;
     this.buttonExport.Text       = "Export to File";
     this.buttonExport.Click     += new System.EventHandler(this.buttonExport_Click);
     //
     // butLettersPreview
     //
     this.butLettersPreview.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butLettersPreview.Image      = global::OpenDental.Properties.Resources.butPreview;
     this.butLettersPreview.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLettersPreview.Location   = new System.Drawing.Point(7, 587);
     this.butLettersPreview.Name       = "butLettersPreview";
     this.butLettersPreview.Size       = new System.Drawing.Size(119, 24);
     this.butLettersPreview.TabIndex   = 71;
     this.butLettersPreview.Text       = "Letters Preview";
     this.butLettersPreview.Click     += new System.EventHandler(this.butLettersPreview_Click);
     //
     // butLabelSingle
     //
     this.butLabelSingle.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butLabelSingle.Image      = global::OpenDental.Properties.Resources.butLabel;
     this.butLabelSingle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabelSingle.Location   = new System.Drawing.Point(132, 587);
     this.butLabelSingle.Name       = "butLabelSingle";
     this.butLabelSingle.Size       = new System.Drawing.Size(119, 24);
     this.butLabelSingle.TabIndex   = 70;
     this.butLabelSingle.Text       = "Single Labels";
     this.butLabelSingle.Click     += new System.EventHandler(this.butLabelSingle_Click);
     //
     // butLabelPreview
     //
     this.butLabelPreview.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butLabelPreview.Image      = global::OpenDental.Properties.Resources.butLabel;
     this.butLabelPreview.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabelPreview.Location   = new System.Drawing.Point(132, 613);
     this.butLabelPreview.Name       = "butLabelPreview";
     this.butLabelPreview.Size       = new System.Drawing.Size(119, 24);
     this.butLabelPreview.TabIndex   = 69;
     this.butLabelPreview.Text       = "Label Preview";
     this.butLabelPreview.Click     += new System.EventHandler(this.butLabelPreview_Click);
     //
     // butGotoAccount
     //
     this.butGotoAccount.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butGotoAccount.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butGotoAccount.Location   = new System.Drawing.Point(787, 613);
     this.butGotoAccount.Name       = "butGotoAccount";
     this.butGotoAccount.Size       = new System.Drawing.Size(96, 24);
     this.butGotoAccount.TabIndex   = 68;
     this.butGotoAccount.Text       = "Go to Account";
     this.butGotoAccount.Click     += new System.EventHandler(this.butGotoAccount_Click);
     //
     // butGotoFamily
     //
     this.butGotoFamily.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butGotoFamily.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butGotoFamily.Location   = new System.Drawing.Point(787, 587);
     this.butGotoFamily.Name       = "butGotoFamily";
     this.butGotoFamily.Size       = new System.Drawing.Size(96, 24);
     this.butGotoFamily.TabIndex   = 67;
     this.butGotoFamily.Text       = "Go to Family";
     this.butGotoFamily.Click     += new System.EventHandler(this.butGotoFamily_Click);
     //
     // butPrint
     //
     this.butPrint.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butPrint.Image      = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location   = new System.Drawing.Point(544, 613);
     this.butPrint.Name       = "butPrint";
     this.butPrint.Size       = new System.Drawing.Size(87, 24);
     this.butPrint.TabIndex   = 34;
     this.butPrint.Text       = "Print List";
     this.butPrint.Click     += new System.EventHandler(this.butPrint_Click);
     //
     // 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(970, 613);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 4;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // FormRpTreatmentFinder
     //
     this.ClientSize = new System.Drawing.Size(1049, 641);
     this.Controls.Add(this.buttonExport);
     this.Controls.Add(this.butLettersPreview);
     this.Controls.Add(this.butLabelSingle);
     this.Controls.Add(this.butLabelPreview);
     this.Controls.Add(this.butGotoAccount);
     this.Controls.Add(this.butGotoFamily);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butCancel);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(1065, 309);
     this.Name        = "FormRpTreatmentFinder";
     this.Text        = "Treatment Finder";
     this.Load       += new System.EventHandler(this.FormRpTreatmentFinder_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #37
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(FormPayPlanSelect));
     this.butCancel = new OpenDental.UI.Button();
     this.butOK     = new OpenDental.UI.Button();
     this.gridMain  = new OpenDental.UI.ODGrid();
     this.butNone   = new OpenDental.UI.Button();
     this.labelExpl = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(422, 208);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 1;
     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(341, 208);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 0;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_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.Location         = new System.Drawing.Point(12, 22);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(490, 180);
     this.gridMain.TabIndex         = 3;
     this.gridMain.Title            = "Payment Plans";
     this.gridMain.TranslationName  = "TablePaymentPlans";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.gridMain_KeyDown);
     //
     // butNone
     //
     this.butNone.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butNone.Location = new System.Drawing.Point(12, 208);
     this.butNone.Name     = "butNone";
     this.butNone.Size     = new System.Drawing.Size(75, 26);
     this.butNone.TabIndex = 4;
     this.butNone.Text     = "None";
     this.butNone.Visible  = false;
     this.butNone.Click   += new System.EventHandler(this.butNone_Click);
     //
     // labelExpl
     //
     this.labelExpl.Location = new System.Drawing.Point(12, 4);
     this.labelExpl.Name     = "labelExpl";
     this.labelExpl.Size     = new System.Drawing.Size(410, 16);
     this.labelExpl.TabIndex = 5;
     this.labelExpl.Text     = "Select a Payment Plan to attach to, or click \'None\'.";
     this.labelExpl.Visible  = false;
     //
     // FormPayPlanSelect
     //
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(509, 246);
     this.Controls.Add(this.labelExpl);
     this.Controls.Add(this.butNone);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MaximumSize   = new System.Drawing.Size(525, 585);
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(525, 285);
     this.Name          = "FormPayPlanSelect";
     this.ShowInTaskbar = false;
     this.Text          = "Select Payment Plan";
     this.Load         += new System.EventHandler(this.FormPayPlanSelect_Load);
     this.ResumeLayout(false);
 }
예제 #38
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(FormRpClaimNotSent));
     this.butCancel         = new OpenDental.UI.Button();
     this.butRunReport      = new OpenDental.UI.Button();
     this.butRefresh        = new OpenDental.UI.Button();
     this.gridMain          = new OpenDental.UI.ODGrid();
     this.groupBoxFilters   = new System.Windows.Forms.GroupBox();
     this.comboClinicMulti  = new OpenDental.UI.ComboBoxClinicPicker();
     this.odDateRangePicker = new OpenDental.UI.ODDateRangePicker();
     this.comboBoxInsFilter = new System.Windows.Forms.ComboBox();
     this.labelClaimFilter  = new System.Windows.Forms.Label();
     this.groupBoxFilters.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(1049, 591);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 4;
     this.butCancel.Text         = "&Close";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butRunReport
     //
     this.butRunReport.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butRunReport.Location = new System.Drawing.Point(12, 591);
     this.butRunReport.Name     = "butRunReport";
     this.butRunReport.Size     = new System.Drawing.Size(75, 26);
     this.butRunReport.TabIndex = 3;
     this.butRunReport.Text     = "&Run Report";
     this.butRunReport.Click   += new System.EventHandler(this.butRunReport_Click);
     //
     // butRefresh
     //
     this.butRefresh.Location = new System.Drawing.Point(1035, 12);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(75, 26);
     this.butRefresh.TabIndex = 60;
     this.butRefresh.Text     = "&Refresh";
     this.butRefresh.UseVisualStyleBackColor = true;
     this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
     //
     // gridMain
     //
     this.gridMain.AllowSortingByColumn = true;
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.Location         = new System.Drawing.Point(12, 65);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(1112, 517);
     this.gridMain.TabIndex         = 61;
     this.gridMain.Title            = "Claims Not Sent";
     this.gridMain.TranslationName  = "TableClaimsNotSent";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // groupBoxFilters
     //
     this.groupBoxFilters.Controls.Add(this.comboClinicMulti);
     this.groupBoxFilters.Controls.Add(this.odDateRangePicker);
     this.groupBoxFilters.Controls.Add(this.comboBoxInsFilter);
     this.groupBoxFilters.Controls.Add(this.butRefresh);
     this.groupBoxFilters.Controls.Add(this.labelClaimFilter);
     this.groupBoxFilters.Location = new System.Drawing.Point(12, 12);
     this.groupBoxFilters.Name     = "groupBoxFilters";
     this.groupBoxFilters.Size     = new System.Drawing.Size(1112, 47);
     this.groupBoxFilters.TabIndex = 63;
     this.groupBoxFilters.TabStop  = false;
     this.groupBoxFilters.Text     = "Filters";
     //
     // comboClinicMulti
     //
     this.comboClinicMulti.IncludeAll         = true;
     this.comboClinicMulti.IncludeUnassigned  = true;
     this.comboClinicMulti.SelectionModeMulti = true;
     this.comboClinicMulti.Location           = new System.Drawing.Point(446, 15);
     this.comboClinicMulti.Name     = "comboClinicMulti";
     this.comboClinicMulti.Size     = new System.Drawing.Size(176, 21);
     this.comboClinicMulti.TabIndex = 67;
     //
     // odDateRangePicker
     //
     this.odDateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.odDateRangePicker.DefaultDateTimeFrom = new System.DateTime(((long)(0)));
     this.odDateRangePicker.DefaultDateTimeTo   = new System.DateTime(((long)(0)));
     this.odDateRangePicker.Location            = new System.Drawing.Point(6, 13);
     this.odDateRangePicker.MaximumSize         = new System.Drawing.Size(0, 185);
     this.odDateRangePicker.MinimumSize         = new System.Drawing.Size(0, 24);
     this.odDateRangePicker.Name     = "odDateRangePicker";
     this.odDateRangePicker.Size     = new System.Drawing.Size(445, 24);
     this.odDateRangePicker.TabIndex = 66;
     //
     // comboBoxInsFilter
     //
     this.comboBoxInsFilter.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxInsFilter.FormattingEnabled = true;
     this.comboBoxInsFilter.Location          = new System.Drawing.Point(741, 15);
     this.comboBoxInsFilter.Name     = "comboBoxInsFilter";
     this.comboBoxInsFilter.Size     = new System.Drawing.Size(121, 21);
     this.comboBoxInsFilter.TabIndex = 65;
     //
     // labelClaimFilter
     //
     this.labelClaimFilter.Location  = new System.Drawing.Point(645, 18);
     this.labelClaimFilter.Name      = "labelClaimFilter";
     this.labelClaimFilter.Size      = new System.Drawing.Size(93, 14);
     this.labelClaimFilter.TabIndex  = 64;
     this.labelClaimFilter.Text      = "Claim Filter";
     this.labelClaimFilter.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormRpClaimNotSent
     //
     this.AcceptButton = this.butRunReport;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(1136, 626);
     this.Controls.Add(this.groupBoxFilters);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butRunReport);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "FormRpClaimNotSent";
     this.Text  = "Claims Not Sent Report";
     this.Load += new System.EventHandler(this.FormClaimNotSent_Load);
     this.groupBoxFilters.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.textCharge = new System.Windows.Forms.TextBox();
     this.butAdd = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.butSave = new OpenDental.UI.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.gridQ = new OpenDental.UI.ODGrid();
     this.butAddQuarterly = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Location = new System.Drawing.Point(69,596);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(240,37);
     this.label1.TabIndex = 195;
     this.label1.Text = "Monthly repeating charge (in addition to the normal repeating charge for office) " +
     "should be";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textCharge
     //
     this.textCharge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textCharge.Location = new System.Drawing.Point(311,603);
     this.textCharge.Name = "textCharge";
     this.textCharge.ReadOnly = true;
     this.textCharge.Size = new System.Drawing.Size(62,20);
     this.textCharge.TabIndex = 196;
     this.textCharge.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize = true;
     this.butAdd.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location = new System.Drawing.Point(9,12);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(75,24);
     this.butAdd.TabIndex = 194;
     this.butAdd.Text = "Add";
     this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize = true;
     this.butClose.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.Location = new System.Drawing.Point(778,602);
     this.butClose.Name = "butClose";
     this.butClose.Size = new System.Drawing.Size(75,24);
     this.butClose.TabIndex = 2;
     this.butClose.Text = "Close";
     this.butClose.Click += new System.EventHandler(this.butClose_Click);
     //
     // butSave
     //
     this.butSave.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butSave.Autosize = true;
     this.butSave.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSave.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSave.CornerRadius = 4F;
     this.butSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSave.Location = new System.Drawing.Point(405,600);
     this.butSave.Name = "butSave";
     this.butSave.Size = new System.Drawing.Size(94,24);
     this.butSave.TabIndex = 197;
     this.butSave.Text = "Save To Images";
     this.butSave.Click += new System.EventHandler(this.butSave_Click);
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.Location = new System.Drawing.Point(505,590);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(125,49);
     this.label2.TabIndex = 198;
     this.label2.Text = "To help archive any changes to this list";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridMain
     //
     this.gridMain.AllowSortingByColumn = true;
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(9,48);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(553,539);
     this.gridMain.TabIndex = 193;
     this.gridMain.Title = "Provider Keys";
     this.gridMain.TranslationName = "";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // gridQ
     //
     this.gridQ.AllowSortingByColumn = true;
     this.gridQ.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.gridQ.HScrollVisible = false;
     this.gridQ.Location = new System.Drawing.Point(568,48);
     this.gridQ.Name = "gridQ";
     this.gridQ.ScrollValue = 0;
     this.gridQ.Size = new System.Drawing.Size(290,539);
     this.gridQ.TabIndex = 199;
     this.gridQ.Title = "Quarterly Keys";
     this.gridQ.TranslationName = "";
     this.gridQ.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridQ_CellDoubleClick);
     //
     // butAddQuarterly
     //
     this.butAddQuarterly.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAddQuarterly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAddQuarterly.Autosize = true;
     this.butAddQuarterly.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddQuarterly.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddQuarterly.CornerRadius = 4F;
     this.butAddQuarterly.Image = global::OpenDental.Properties.Resources.Add;
     this.butAddQuarterly.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddQuarterly.Location = new System.Drawing.Point(568,12);
     this.butAddQuarterly.Name = "butAddQuarterly";
     this.butAddQuarterly.Size = new System.Drawing.Size(75,24);
     this.butAddQuarterly.TabIndex = 200;
     this.butAddQuarterly.Text = "Add";
     this.butAddQuarterly.Click += new System.EventHandler(this.butAddQuarterly_Click);
     //
     // FormEhrProvKeysCustomer
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(865,638);
     this.Controls.Add(this.butAddQuarterly);
     this.Controls.Add(this.gridQ);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butSave);
     this.Controls.Add(this.textCharge);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.Name = "FormEhrProvKeysCustomer";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Provider Keys for This Family";
     this.Load += new System.EventHandler(this.FormEhrProvKeysCustomer_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #40
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(FormReferralSelect));
     this.checkHidden      = new System.Windows.Forms.CheckBox();
     this.gridMain         = new OpenDental.UI.ODGrid();
     this.textSearch       = new System.Windows.Forms.TextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.labelResultCount = new System.Windows.Forms.Label();
     this.butAdd           = new OpenDental.UI.Button();
     this.butCancel        = new OpenDental.UI.Button();
     this.butOK            = new OpenDental.UI.Button();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.checkPreferred   = new System.Windows.Forms.CheckBox();
     this.checkShowOther   = new System.Windows.Forms.CheckBox();
     this.checkShowDoctor  = new System.Windows.Forms.CheckBox();
     this.checkShowPat     = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // checkHidden
     //
     this.checkHidden.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkHidden.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkHidden.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkHidden.Location   = new System.Drawing.Point(815, 17);
     this.checkHidden.Name       = "checkHidden";
     this.checkHidden.Size       = new System.Drawing.Size(104, 16);
     this.checkHidden.TabIndex   = 11;
     this.checkHidden.Text       = "Show Hidden";
     this.checkHidden.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkHidden.Click     += new System.EventHandler(this.checkHidden_Click);
     //
     // gridMain
     //
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(8, 42);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(940, 610);
     this.gridMain.TabIndex         = 15;
     this.gridMain.Title            = "Select Referral";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableSelectReferral";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // textSearch
     //
     this.textSearch.Location     = new System.Drawing.Point(106, 14);
     this.textSearch.Name         = "textSearch";
     this.textSearch.Size         = new System.Drawing.Size(201, 20);
     this.textSearch.TabIndex     = 0;
     this.textSearch.TextChanged += new System.EventHandler(this.textSearch_TextChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(5, 17);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 14);
     this.label1.TabIndex  = 17;
     this.label1.Text      = "Search";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelResultCount
     //
     this.labelResultCount.Location  = new System.Drawing.Point(308, 17);
     this.labelResultCount.Name      = "labelResultCount";
     this.labelResultCount.Size      = new System.Drawing.Size(108, 14);
     this.labelResultCount.TabIndex  = 18;
     this.labelResultCount.Text      = "# results found";
     this.labelResultCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(8, 661);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(80, 24);
     this.butAdd.TabIndex     = 12;
     this.butAdd.Text         = "&Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.ImageAlign   = System.Drawing.ContentAlignment.TopRight;
     this.butCancel.Location     = new System.Drawing.Point(873, 661);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 6;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(785, 661);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 1;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkPreferred);
     this.groupBox1.Controls.Add(this.checkShowOther);
     this.groupBox1.Controls.Add(this.checkShowDoctor);
     this.groupBox1.Controls.Add(this.checkShowPat);
     this.groupBox1.Location = new System.Drawing.Point(399, 3);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(370, 33);
     this.groupBox1.TabIndex = 19;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Show";
     //
     // checkPreferred
     //
     this.checkPreferred.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkPreferred.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkPreferred.Location   = new System.Drawing.Point(261, 13);
     this.checkPreferred.Name       = "checkPreferred";
     this.checkPreferred.Size       = new System.Drawing.Size(94, 16);
     this.checkPreferred.TabIndex   = 23;
     this.checkPreferred.Text       = "Preferred Only";
     this.checkPreferred.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkPreferred.Click     += new System.EventHandler(this.checkPreferred_Click);
     //
     // checkShowOther
     //
     this.checkShowOther.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowOther.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkShowOther.Location   = new System.Drawing.Point(177, 13);
     this.checkShowOther.Name       = "checkShowOther";
     this.checkShowOther.Size       = new System.Drawing.Size(75, 16);
     this.checkShowOther.TabIndex   = 20;
     this.checkShowOther.Text       = "Other";
     this.checkShowOther.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowOther.Click     += new System.EventHandler(this.checkShowOther_Click);
     //
     // checkShowDoctor
     //
     this.checkShowDoctor.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowDoctor.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkShowDoctor.Location   = new System.Drawing.Point(89, 13);
     this.checkShowDoctor.Name       = "checkShowDoctor";
     this.checkShowDoctor.Size       = new System.Drawing.Size(84, 16);
     this.checkShowDoctor.TabIndex   = 21;
     this.checkShowDoctor.Text       = "Doctor";
     this.checkShowDoctor.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowDoctor.Click     += new System.EventHandler(this.checkShowDoctor_Click);
     //
     // checkShowPat
     //
     this.checkShowPat.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowPat.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkShowPat.Location   = new System.Drawing.Point(3, 13);
     this.checkShowPat.Name       = "checkShowPat";
     this.checkShowPat.Size       = new System.Drawing.Size(84, 16);
     this.checkShowPat.TabIndex   = 22;
     this.checkShowPat.Text       = "Patient";
     this.checkShowPat.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkShowPat.Click     += new System.EventHandler(this.checkShowPat_Click);
     //
     // FormReferralSelect
     //
     this.ClientSize = new System.Drawing.Size(962, 696);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.labelResultCount);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textSearch);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.checkHidden);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormReferralSelect";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.Text          = "Referrals";
     this.Load         += new System.EventHandler(this.FormReferralSelect_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #41
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormZipCodes));
     this.butAdd      = new OpenDental.UI.Button();
     this.butClose    = new OpenDental.UI.Button();
     this.butDelete   = new OpenDental.UI.Button();
     this.gridZipCode = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // butAdd
     //
     this.butAdd.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(615, 374);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(76, 26);
     this.butAdd.TabIndex   = 28;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // 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(615, 513);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(76, 26);
     this.butClose.TabIndex     = 26;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // butDelete
     //
     this.butDelete.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butDelete.Location = new System.Drawing.Point(615, 410);
     this.butDelete.Name     = "butDelete";
     this.butDelete.Size     = new System.Drawing.Size(76, 26);
     this.butDelete.TabIndex = 31;
     this.butDelete.Text     = "&Delete";
     this.butDelete.Click   += new System.EventHandler(this.butDelete_Click);
     //
     // gridZipCode
     //
     this.gridZipCode.AllowSortingByColumn = true;
     this.gridZipCode.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.gridZipCode.Location         = new System.Drawing.Point(12, 17);
     this.gridZipCode.Name             = "gridZipCode";
     this.gridZipCode.Size             = new System.Drawing.Size(581, 522);
     this.gridZipCode.TabIndex         = 32;
     this.gridZipCode.Title            = "Zip Codes";
     this.gridZipCode.TranslationName  = "TableZipCodes";
     this.gridZipCode.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridZipCode_CellDoubleClick);
     //
     // FormZipCodes
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(715, 563);
     this.Controls.Add(this.gridZipCode);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormZipCodes";
     this.ShowInTaskbar = false;
     this.Text          = "Zip Codes";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.FormZipCodes_Closing);
     this.Load         += new System.EventHandler(this.FormZipCodes_Load);
     this.ResumeLayout(false);
 }
예제 #42
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(FormRpClaimNotSent));
     this.butCancel         = new OpenDental.UI.Button();
     this.butRunReport      = new OpenDental.UI.Button();
     this.labelClinics      = new System.Windows.Forms.Label();
     this.butRefresh        = new OpenDental.UI.Button();
     this.gridMain          = new OpenDental.UI.ODGrid();
     this.comboBoxClinics   = new ODR.ComboBoxMulti();
     this.groupBoxFilters   = new System.Windows.Forms.GroupBox();
     this.odDateRangePicker = new OpenDental.UI.ODDateRangePicker();
     this.comboBoxInsFilter = new System.Windows.Forms.ComboBox();
     this.labelClaimFilter  = new System.Windows.Forms.Label();
     this.groupBoxFilters.SuspendLayout();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(1043, 588);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 4;
     this.butCancel.Text         = "&Close";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butRunReport
     //
     this.butRunReport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRunReport.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butRunReport.Autosize     = true;
     this.butRunReport.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRunReport.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRunReport.CornerRadius = 4F;
     this.butRunReport.Location     = new System.Drawing.Point(538, 588);
     this.butRunReport.Name         = "butRunReport";
     this.butRunReport.Size         = new System.Drawing.Size(75, 26);
     this.butRunReport.TabIndex     = 3;
     this.butRunReport.Text         = "&Run Report";
     this.butRunReport.Click       += new System.EventHandler(this.butRunReport_Click);
     //
     // labelClinics
     //
     this.labelClinics.Anchor    = System.Windows.Forms.AnchorStyles.None;
     this.labelClinics.Location  = new System.Drawing.Point(30, 64);
     this.labelClinics.Name      = "labelClinics";
     this.labelClinics.Size      = new System.Drawing.Size(86, 14);
     this.labelClinics.TabIndex  = 52;
     this.labelClinics.Text      = "Clinics";
     this.labelClinics.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Autosize            = true;
     this.butRefresh.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius        = 4F;
     this.butRefresh.Location            = new System.Drawing.Point(1049, 86);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(75, 23);
     this.butRefresh.TabIndex = 60;
     this.butRefresh.Text     = "&Refresh";
     this.butRefresh.UseVisualStyleBackColor = true;
     this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
     //
     // gridMain
     //
     this.gridMain.AllowSortingByColumn = true;
     this.gridMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(12, 118);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(1112, 464);
     this.gridMain.TabIndex         = 61;
     this.gridMain.Title            = "Claims Not Sent";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableClaimsNotSent";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // comboBoxClinics
     //
     this.comboBoxClinics.Anchor          = System.Windows.Forms.AnchorStyles.None;
     this.comboBoxClinics.BackColor       = System.Drawing.SystemColors.Window;
     this.comboBoxClinics.DroppedDown     = false;
     this.comboBoxClinics.Items           = ((System.Collections.ArrayList)(resources.GetObject("comboBoxClinics.Items")));
     this.comboBoxClinics.Location        = new System.Drawing.Point(119, 62);
     this.comboBoxClinics.Name            = "comboBoxClinics";
     this.comboBoxClinics.SelectedIndices = ((System.Collections.ArrayList)(resources.GetObject("comboBoxClinics.SelectedIndices")));
     this.comboBoxClinics.Size            = new System.Drawing.Size(120, 21);
     this.comboBoxClinics.TabIndex        = 62;
     //
     // groupBoxFilters
     //
     this.groupBoxFilters.Controls.Add(this.odDateRangePicker);
     this.groupBoxFilters.Controls.Add(this.comboBoxInsFilter);
     this.groupBoxFilters.Controls.Add(this.labelClaimFilter);
     this.groupBoxFilters.Controls.Add(this.comboBoxClinics);
     this.groupBoxFilters.Controls.Add(this.labelClinics);
     this.groupBoxFilters.Location = new System.Drawing.Point(263, 12);
     this.groupBoxFilters.Name     = "groupBoxFilters";
     this.groupBoxFilters.Size     = new System.Drawing.Size(611, 102);
     this.groupBoxFilters.TabIndex = 63;
     this.groupBoxFilters.TabStop  = false;
     this.groupBoxFilters.Text     = "Filters";
     //
     // odDateRangePicker
     //
     this.odDateRangePicker.Anchor              = System.Windows.Forms.AnchorStyles.None;
     this.odDateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.odDateRangePicker.DefaultDateTimeFrom = new System.DateTime(((long)(0)));
     this.odDateRangePicker.DefaultDateTimeTo   = new System.DateTime(((long)(0)));
     this.odDateRangePicker.Location            = new System.Drawing.Point(74, 19);
     this.odDateRangePicker.MaximumSize         = new System.Drawing.Size(0, 185);
     this.odDateRangePicker.MinimumSize         = new System.Drawing.Size(453, 22);
     this.odDateRangePicker.Name     = "odDateRangePicker";
     this.odDateRangePicker.Size     = new System.Drawing.Size(453, 22);
     this.odDateRangePicker.TabIndex = 66;
     //
     // comboBoxInsFilter
     //
     this.comboBoxInsFilter.Anchor            = System.Windows.Forms.AnchorStyles.None;
     this.comboBoxInsFilter.FormattingEnabled = true;
     this.comboBoxInsFilter.Location          = new System.Drawing.Point(354, 62);
     this.comboBoxInsFilter.Name     = "comboBoxInsFilter";
     this.comboBoxInsFilter.Size     = new System.Drawing.Size(121, 21);
     this.comboBoxInsFilter.TabIndex = 65;
     //
     // labelClaimFilter
     //
     this.labelClaimFilter.Anchor    = System.Windows.Forms.AnchorStyles.None;
     this.labelClaimFilter.Location  = new System.Drawing.Point(258, 64);
     this.labelClaimFilter.Name      = "labelClaimFilter";
     this.labelClaimFilter.Size      = new System.Drawing.Size(93, 14);
     this.labelClaimFilter.TabIndex  = 64;
     this.labelClaimFilter.Text      = "Claim Filter";
     this.labelClaimFilter.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormRpClaimNotSent
     //
     this.AcceptButton = this.butRunReport;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(1136, 626);
     this.Controls.Add(this.groupBoxFilters);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butRunReport);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "FormRpClaimNotSent";
     this.Text  = "Claims Not Sent Report";
     this.Load += new System.EventHandler(this.FormClaimNotSent_Load);
     this.groupBoxFilters.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupCounts = new System.Windows.Forms.GroupBox();
     this.labelFailed = new System.Windows.Forms.Label();
     this.labelCharged = new System.Windows.Forms.Label();
     this.labelSelected = new System.Windows.Forms.Label();
     this.labelTotal = new System.Windows.Forms.Label();
     this.butNone = new OpenDental.UI.Button();
     this.butAll = new OpenDental.UI.Button();
     this.butRefresh = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butSend = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.butPrintList = new OpenDental.UI.Button();
     this.groupCounts.SuspendLayout();
     this.SuspendLayout();
     //
     // groupCounts
     //
     this.groupCounts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupCounts.Controls.Add(this.labelFailed);
     this.groupCounts.Controls.Add(this.labelCharged);
     this.groupCounts.Controls.Add(this.labelSelected);
     this.groupCounts.Controls.Add(this.labelTotal);
     this.groupCounts.Location = new System.Drawing.Point(617,196);
     this.groupCounts.Name = "groupCounts";
     this.groupCounts.Size = new System.Drawing.Size(96,103);
     this.groupCounts.TabIndex = 34;
     this.groupCounts.TabStop = false;
     this.groupCounts.Text = "Counts";
     //
     // labelFailed
     //
     this.labelFailed.Location = new System.Drawing.Point(4,76);
     this.labelFailed.Name = "labelFailed";
     this.labelFailed.Size = new System.Drawing.Size(89,16);
     this.labelFailed.TabIndex = 32;
     this.labelFailed.Text = "Failed=0";
     this.labelFailed.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCharged
     //
     this.labelCharged.Location = new System.Drawing.Point(4,57);
     this.labelCharged.Name = "labelCharged";
     this.labelCharged.Size = new System.Drawing.Size(89,16);
     this.labelCharged.TabIndex = 31;
     this.labelCharged.Text = "Charged=0";
     this.labelCharged.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelSelected
     //
     this.labelSelected.Location = new System.Drawing.Point(4,38);
     this.labelSelected.Name = "labelSelected";
     this.labelSelected.Size = new System.Drawing.Size(89,16);
     this.labelSelected.TabIndex = 30;
     this.labelSelected.Text = "Selected=0";
     this.labelSelected.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelTotal
     //
     this.labelTotal.Location = new System.Drawing.Point(4,19);
     this.labelTotal.Name = "labelTotal";
     this.labelTotal.Size = new System.Drawing.Size(89,16);
     this.labelTotal.TabIndex = 29;
     this.labelTotal.Text = "Total=0";
     this.labelTotal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butNone
     //
     this.butNone.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butNone.Autosize = true;
     this.butNone.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butNone.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butNone.CornerRadius = 4F;
     this.butNone.Location = new System.Drawing.Point(102,498);
     this.butNone.Name = "butNone";
     this.butNone.Size = new System.Drawing.Size(75,24);
     this.butNone.TabIndex = 42;
     this.butNone.Text = "&None";
     this.butNone.Click += new System.EventHandler(this.butNone_Click);
     //
     // butAll
     //
     this.butAll.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAll.Autosize = true;
     this.butAll.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAll.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAll.CornerRadius = 4F;
     this.butAll.Location = new System.Drawing.Point(12,498);
     this.butAll.Name = "butAll";
     this.butAll.Size = new System.Drawing.Size(75,24);
     this.butAll.TabIndex = 41;
     this.butAll.Text = "&All";
     this.butAll.Click += new System.EventHandler(this.butAll_Click);
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butRefresh.Autosize = true;
     this.butRefresh.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius = 4F;
     this.butRefresh.Location = new System.Drawing.Point(627,12);
     this.butRefresh.Name = "butRefresh";
     this.butRefresh.Size = new System.Drawing.Size(75,24);
     this.butRefresh.TabIndex = 40;
     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)));
     this.gridMain.AutoScroll = true;
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,12);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size = new System.Drawing.Size(592,474);
     this.gridMain.TabIndex = 29;
     this.gridMain.Title = "Recurring Charges";
     this.gridMain.TranslationName = "TableRecurring";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // butSend
     //
     this.butSend.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butSend.Autosize = true;
     this.butSend.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSend.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSend.CornerRadius = 4F;
     this.butSend.Location = new System.Drawing.Point(627,462);
     this.butSend.Name = "butSend";
     this.butSend.Size = new System.Drawing.Size(75,24);
     this.butSend.TabIndex = 3;
     this.butSend.Text = "&Send";
     this.butSend.Click += new System.EventHandler(this.butSend_Click);
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.Location = new System.Drawing.Point(627,498);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 2;
     this.butCancel.Text = "Close";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // butPrintList
     //
     this.butPrintList.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butPrintList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrintList.Autosize = true;
     this.butPrintList.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrintList.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrintList.CornerRadius = 4F;
     this.butPrintList.Image = global::OpenDental.Properties.Resources.butPrint;
     this.butPrintList.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrintList.Location = new System.Drawing.Point(318,498);
     this.butPrintList.Name = "butPrintList";
     this.butPrintList.Size = new System.Drawing.Size(88,24);
     this.butPrintList.TabIndex = 43;
     this.butPrintList.Text = "Print List";
     this.butPrintList.Click += new System.EventHandler(this.butPrintList_Click);
     //
     // FormCreditRecurringCharges
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(725,534);
     this.Controls.Add(this.butPrintList);
     this.Controls.Add(this.butNone);
     this.Controls.Add(this.butAll);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.groupCounts);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butSend);
     this.Controls.Add(this.butCancel);
     this.Name = "FormCreditRecurringCharges";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Credit Card Recurring Charges";
     this.Load += new System.EventHandler(this.FormRecurringCharges_Load);
     this.groupCounts.ResumeLayout(false);
     this.ResumeLayout(false);
 }