Example #1
0
 ///<summary>Call before form is Shown. Adds the given controls to the list of filter controls.
 ///We will loop through all the controls in the list to identify the first control that has had its filter change commited for FilterCommitMs.
 ///Once a filter is commited, the filter action will be invoked and the thread will wait for the next filter change to start the thread again.
 ///Controls which are not text-based will commit immediately and will not use a thread (ex checkboxes).</summary>
 protected void SetFilterControlsAndAction(Action action, params Control[] arrayControls)
 {
     if (HasShown)
     {
         return;
     }
     _filterAction = action;
     foreach (Control control in arrayControls)
     {
         //Keep the following if/else block in alphabetical order to it is easy to see which controls are supported.
         if (control.GetType().IsSubclassOf(typeof(CheckBox)) || control.GetType() == typeof(CheckBox))
         {
             CheckBox checkbox = (CheckBox)control;
             checkbox.CheckedChanged += Control_FilterCommitImmediate;
         }
         else if (control.GetType().IsSubclassOf(typeof(ComboBox)) || control.GetType() == typeof(ComboBox))
         {
             ComboBox comboBox = (ComboBox)control;
             comboBox.SelectionChangeCommitted += Control_FilterCommitImmediate;
         }
         else if (control.GetType().IsSubclassOf(typeof(ComboBoxMulti)) || control.GetType() == typeof(ComboBoxMulti))
         {
             ComboBoxMulti comboBoxMulti = (ComboBoxMulti)control;
             comboBoxMulti.SelectionChangeCommitted += Control_FilterCommitImmediate;
         }
         else if (control.GetType().IsSubclassOf(typeof(ODDateRangePicker)) || control.GetType() == typeof(ODDateRangePicker))
         {
             ODDateRangePicker dateRangePicker = (ODDateRangePicker)control;
             dateRangePicker.CalendarSelectionChanged += Control_FilterCommitImmediate;
         }
         else if (control.GetType().IsSubclassOf(typeof(ODDatePicker)) || control.GetType() == typeof(ODDatePicker))
         {
             ODDatePicker datePicker = (ODDatePicker)control;
             datePicker.DateTextChanged += Control_FilterChange;
         }
         else if (control.GetType().IsSubclassOf(typeof(TextBoxBase)) || control.GetType() == typeof(TextBoxBase))
         {
             //This includes TextBox and RichTextBox, therefore also includes ODtextBox, ValidNum, ValidNumber, ValidDouble.
             control.TextChanged += Control_FilterChange;
         }
         else if (control.GetType().IsSubclassOf(typeof(ListBox)) || control.GetType() == typeof(ListBox))
         {
             control.MouseUp += Control_FilterChange;
         }
         else if (control.GetType().IsSubclassOf(typeof(ComboBoxClinicPicker)) || control.GetType() == typeof(ComboBoxClinicPicker))
         {
             ((ComboBoxClinicPicker)control).SelectionChangeCommitted += Control_FilterCommitImmediate;
         }
         else if (control.GetType().IsSubclassOf(typeof(ComboBoxPlus)) || control.GetType() == typeof(ComboBoxPlus))
         {
             ((ComboBoxPlus)control).SelectionChangeCommitted += Control_FilterCommitImmediate;
         }
         else
         {
             throw new NotImplementedException("Filter control of type " + control.GetType().Name + " is undefined.  Define it in ODForm.AddFilterControl().");
         }
         _listFilterControls.Add(control);
     }
 }
Example #2
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);
 }
Example #3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(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.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);
 }
Example #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormUnsched));
     this.butClose       = new OpenDental.UI.Button();
     this.grid           = new OpenDental.UI.ODGrid();
     this.menuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItemSelectPatient  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSeeChart       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSendToPinboard = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemDelete         = new System.Windows.Forms.ToolStripMenuItem();
     this.butPrint               = new OpenDental.UI.Button();
     this.comboOrder             = new System.Windows.Forms.ComboBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.comboProv              = new System.Windows.Forms.ComboBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.butRefresh             = new OpenDental.UI.Button();
     this.comboSite              = new System.Windows.Forms.ComboBox();
     this.labelSite              = new System.Windows.Forms.Label();
     this.checkBrokenAppts       = new System.Windows.Forms.CheckBox();
     this.comboClinic            = new OpenDental.UI.ComboBoxClinicPicker();
     this.label6                 = new System.Windows.Forms.Label();
     this.menuMain               = new System.Windows.Forms.MenuStrip();
     this.setupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dateRangePicker        = new OpenDental.UI.ODDateRangePicker();
     this.codeRangeFilter        = new OpenDental.UI.ODCodeRangeFilter();
     this.menuRightClick.SuspendLayout();
     this.menuMain.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(810, 655);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(87, 24);
     this.butClose.TabIndex     = 7;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // grid
     //
     this.grid.ContextMenuStrip = this.menuRightClick;
     this.grid.Location         = new System.Drawing.Point(10, 102);
     this.grid.Name             = "grid";
     this.grid.SelectionMode    = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.grid.Size             = new System.Drawing.Size(775, 577);
     this.grid.TabIndex         = 8;
     this.grid.Title            = "Unscheduled List";
     this.grid.TranslationName  = "TableUnsched";
     this.grid.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.grid_CellDoubleClick);
     this.grid.MouseUp         += new System.Windows.Forms.MouseEventHandler(this.grid_MouseUp);
     //
     // menuRightClick
     //
     this.menuRightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemSelectPatient,
         this.toolStripMenuItemSeeChart,
         this.toolStripMenuItemSendToPinboard,
         this.toolStripMenuItemDelete
     });
     this.menuRightClick.Name = "menuRightClick";
     this.menuRightClick.Size = new System.Drawing.Size(166, 92);
     //
     // toolStripMenuItemSelectPatient
     //
     this.toolStripMenuItemSelectPatient.Name   = "toolStripMenuItemSelectPatient";
     this.toolStripMenuItemSelectPatient.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSelectPatient.Text   = "Select Patient";
     this.toolStripMenuItemSelectPatient.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemSeeChart
     //
     this.toolStripMenuItemSeeChart.Name   = "toolStripMenuItemSeeChart";
     this.toolStripMenuItemSeeChart.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSeeChart.Text   = "See Chart";
     this.toolStripMenuItemSeeChart.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemSendToPinboard
     //
     this.toolStripMenuItemSendToPinboard.Name   = "toolStripMenuItemSendToPinboard";
     this.toolStripMenuItemSendToPinboard.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSendToPinboard.Text   = "Send to Pinboard";
     this.toolStripMenuItemSendToPinboard.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemDelete
     //
     this.toolStripMenuItemDelete.Name   = "toolStripMenuItemDelete";
     this.toolStripMenuItemDelete.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemDelete.Text   = "Delete";
     this.toolStripMenuItemDelete.Click += new System.EventHandler(this.menuRight_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(812, 607);
     this.butPrint.Name       = "butPrint";
     this.butPrint.Size       = new System.Drawing.Size(87, 24);
     this.butPrint.TabIndex   = 21;
     this.butPrint.Text       = "Print List";
     this.butPrint.Click     += new System.EventHandler(this.butPrint_Click);
     //
     // comboOrder
     //
     this.comboOrder.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboOrder.Location         = new System.Drawing.Point(97, 30);
     this.comboOrder.MaxDropDownItems = 40;
     this.comboOrder.Name             = "comboOrder";
     this.comboOrder.Size             = new System.Drawing.Size(133, 21);
     this.comboOrder.TabIndex         = 35;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(23, 34);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(72, 14);
     this.label1.TabIndex  = 34;
     this.label1.Text      = "Order by";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboProv
     //
     this.comboProv.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboProv.Location         = new System.Drawing.Point(319, 30);
     this.comboProv.MaxDropDownItems = 40;
     this.comboProv.Name             = "comboProv";
     this.comboProv.Size             = new System.Drawing.Size(181, 21);
     this.comboProv.TabIndex         = 33;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(248, 34);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(69, 14);
     this.label4.TabIndex  = 32;
     this.label4.Text      = "Provider";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(813, 30);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(86, 24);
     this.butRefresh.TabIndex = 31;
     this.butRefresh.Text     = "&Refresh";
     this.butRefresh.Click   += new System.EventHandler(this.butRefresh_Click);
     //
     // comboSite
     //
     this.comboSite.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSite.Location         = new System.Drawing.Point(319, 55);
     this.comboSite.MaxDropDownItems = 40;
     this.comboSite.Name             = "comboSite";
     this.comboSite.Size             = new System.Drawing.Size(181, 21);
     this.comboSite.TabIndex         = 37;
     //
     // labelSite
     //
     this.labelSite.Location  = new System.Drawing.Point(241, 58);
     this.labelSite.Name      = "labelSite";
     this.labelSite.Size      = new System.Drawing.Size(77, 14);
     this.labelSite.TabIndex  = 36;
     this.labelSite.Text      = "Site";
     this.labelSite.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkBrokenAppts
     //
     this.checkBrokenAppts.AutoSize   = true;
     this.checkBrokenAppts.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBrokenAppts.Location   = new System.Drawing.Point(65, 57);
     this.checkBrokenAppts.Name       = "checkBrokenAppts";
     this.checkBrokenAppts.Size       = new System.Drawing.Size(165, 17);
     this.checkBrokenAppts.TabIndex   = 38;
     this.checkBrokenAppts.Text       = "Include Broken Appointments";
     this.checkBrokenAppts.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBrokenAppts.UseVisualStyleBackColor = true;
     //
     // comboClinic
     //
     this.comboClinic.IncludeAll        = true;
     this.comboClinic.IncludeUnassigned = true;
     this.comboClinic.Location          = new System.Drawing.Point(547, 30);
     this.comboClinic.Name     = "comboClinic";
     this.comboClinic.Size     = new System.Drawing.Size(217, 21);
     this.comboClinic.TabIndex = 40;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(505, 58);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(77, 17);
     this.label6.TabIndex  = 43;
     this.label6.Text      = "Code Range";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // menuMain
     //
     this.menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.setupToolStripMenuItem
     });
     this.menuMain.Location = new System.Drawing.Point(0, 0);
     this.menuMain.Name     = "menuMain";
     this.menuMain.Size     = new System.Drawing.Size(909, 24);
     this.menuMain.TabIndex = 46;
     //
     // setupToolStripMenuItem
     //
     this.setupToolStripMenuItem.Name   = "setupToolStripMenuItem";
     this.setupToolStripMenuItem.Size   = new System.Drawing.Size(49, 20);
     this.setupToolStripMenuItem.Text   = "Setup";
     this.setupToolStripMenuItem.Click += new System.EventHandler(this.setupToolStripMenuItem_Click);
     //
     // 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, 10, 4, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(57, 79);
     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(487, 22);
     this.dateRangePicker.TabIndex = 47;
     //
     // codeRangeFilter
     //
     this.codeRangeFilter.HideExampleText = false;
     this.codeRangeFilter.Location        = new System.Drawing.Point(584, 57);
     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(160, 37);
     this.codeRangeFilter.TabIndex        = 48;
     //
     // FormUnsched
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(909, 696);
     this.Controls.Add(this.codeRangeFilter);
     this.Controls.Add(this.dateRangePicker);
     this.Controls.Add(this.menuMain);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.checkBrokenAppts);
     this.Controls.Add(this.comboOrder);
     this.Controls.Add(this.comboSite);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.labelSite);
     this.Controls.Add(this.comboProv);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.grid);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.butClose);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "FormUnsched";
     this.Text            = "Unscheduled List";
     this.Load           += new System.EventHandler(this.FormUnsched_Load);
     this.Shown          += new System.EventHandler(this.FormUnsched_Shown);
     this.menuRightClick.ResumeLayout(false);
     this.menuMain.ResumeLayout(false);
     this.menuMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpProcOverpaid));
     this.butClose            = new OpenDental.UI.Button();
     this.butPrint            = new OpenDental.UI.Button();
     this.imageListCalendar   = new System.Windows.Forms.ImageList(this.components);
     this.gridMain            = new OpenDental.UI.ODGrid();
     this.contextMenuGrid     = new System.Windows.Forms.ContextMenu();
     this.menuItemGoToAccount = new System.Windows.Forms.MenuItem();
     this.butRefresh          = new OpenDental.UI.Button();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.butCurrent          = new OpenDental.UI.Button();
     this.butAll               = new OpenDental.UI.Button();
     this.butFind              = new OpenDental.UI.Button();
     this.textPatient          = new System.Windows.Forms.TextBox();
     this.labelPatient         = new System.Windows.Forms.Label();
     this.labelProv            = new System.Windows.Forms.Label();
     this.comboBoxMultiProv    = new OpenDental.UI.ComboBoxMulti();
     this.comboBoxMultiClinics = new OpenDental.UI.ComboBoxClinicPicker();
     this.dateRangePicker      = new OpenDental.UI.ODDateRangePicker();
     this.groupBox2.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(928, 658);
     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.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butPrint.Image      = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location   = new System.Drawing.Point(12, 658);
     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);
     //
     // 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");
     //
     // 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, 71);
     this.gridMain.Name            = "gridMain";
     this.gridMain.Size            = new System.Drawing.Size(991, 581);
     this.gridMain.TabIndex        = 69;
     this.gridMain.Title           = "Procedures Overpaid";
     this.gridMain.TranslationName = "TableProcedures";
     //
     // contextMenuGrid
     //
     this.contextMenuGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemGoToAccount
     });
     //
     // menuItemGoToAccount
     //
     this.menuItemGoToAccount.Index  = 0;
     this.menuItemGoToAccount.Text   = "Go To Account";
     this.menuItemGoToAccount.Click += new System.EventHandler(this.menuItemGridGoToAccount_Click);
     //
     // 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(928, 39);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(75, 26);
     this.butRefresh.TabIndex = 73;
     this.butRefresh.Text     = "Refresh";
     this.butRefresh.UseVisualStyleBackColor = true;
     this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.butCurrent);
     this.groupBox2.Controls.Add(this.butAll);
     this.groupBox2.Controls.Add(this.butFind);
     this.groupBox2.Controls.Add(this.textPatient);
     this.groupBox2.Controls.Add(this.labelPatient);
     this.groupBox2.Controls.Add(this.labelProv);
     this.groupBox2.Controls.Add(this.comboBoxMultiProv);
     this.groupBox2.Controls.Add(this.comboBoxMultiClinics);
     this.groupBox2.Controls.Add(this.dateRangePicker);
     this.groupBox2.Location = new System.Drawing.Point(12, 4);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(910, 61);
     this.groupBox2.TabIndex = 77;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Filters";
     //
     // butCurrent
     //
     this.butCurrent.Location = new System.Drawing.Point(698, 31);
     this.butCurrent.Name     = "butCurrent";
     this.butCurrent.Size     = new System.Drawing.Size(63, 24);
     this.butCurrent.TabIndex = 78;
     this.butCurrent.Text     = "Current";
     this.butCurrent.Click   += new System.EventHandler(this.butCurrent_Click);
     //
     // butAll
     //
     this.butAll.Location = new System.Drawing.Point(841, 31);
     this.butAll.Name     = "butAll";
     this.butAll.Size     = new System.Drawing.Size(63, 24);
     this.butAll.TabIndex = 77;
     this.butAll.Text     = "All";
     this.butAll.Click   += new System.EventHandler(this.butAll_Click);
     //
     // butFind
     //
     this.butFind.Location = new System.Drawing.Point(770, 31);
     this.butFind.Name     = "butFind";
     this.butFind.Size     = new System.Drawing.Size(63, 24);
     this.butFind.TabIndex = 76;
     this.butFind.Text     = "Find";
     this.butFind.Click   += new System.EventHandler(this.butFind_Click);
     //
     // textPatient
     //
     this.textPatient.Location = new System.Drawing.Point(698, 11);
     this.textPatient.Name     = "textPatient";
     this.textPatient.Size     = new System.Drawing.Size(206, 20);
     this.textPatient.TabIndex = 75;
     //
     // labelPatient
     //
     this.labelPatient.Location  = new System.Drawing.Point(631, 15);
     this.labelPatient.Name      = "labelPatient";
     this.labelPatient.Size      = new System.Drawing.Size(65, 13);
     this.labelPatient.TabIndex  = 74;
     this.labelPatient.Text      = "Patient";
     this.labelPatient.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelProv
     //
     this.labelProv.Location  = new System.Drawing.Point(412, 15);
     this.labelProv.Name      = "labelProv";
     this.labelProv.Size      = new System.Drawing.Size(55, 16);
     this.labelProv.TabIndex  = 73;
     this.labelProv.Text      = "Providers";
     this.labelProv.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(469, 12);
     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        = 72;
     this.comboBoxMultiProv.MouseLeave     += new System.EventHandler(this.comboBoxMultiProv_MouseLeave);
     //
     // comboBoxMultiClinics
     //
     this.comboBoxMultiClinics.IncludeAll        = true;
     this.comboBoxMultiClinics.IncludeUnassigned = true;
     this.comboBoxMultiClinics.Location          = new System.Drawing.Point(432, 34);
     this.comboBoxMultiClinics.Name = "comboBoxMultiClinics";
     this.comboBoxMultiClinics.SelectionModeMulti = true;
     this.comboBoxMultiClinics.Size     = new System.Drawing.Size(197, 21);
     this.comboBoxMultiClinics.TabIndex = 71;
     //
     // 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(5, 11);
     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;
     //
     // FormRpProcOverpaid
     //
     this.AcceptButton = this.butPrint;
     this.ClientSize   = new System.Drawing.Size(1015, 696);
     this.Controls.Add(this.butRefresh);
     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(1031, 250);
     this.Name        = "FormRpProcOverpaid";
     this.Text        = "Procedures Overpaid Report";
     this.Load       += new System.EventHandler(this.FormProcOverpaid_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
Example #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTrackNext));
     this.butClose       = new OpenDental.UI.Button();
     this.gridMain       = new OpenDental.UI.ODGrid();
     this.menuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItemSelectPatient  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSeeChart       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSendToPinboard = new System.Windows.Forms.ToolStripMenuItem();
     this.comboProv              = new System.Windows.Forms.ComboBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.butRefresh             = new OpenDental.UI.Button();
     this.comboOrder             = new System.Windows.Forms.ComboBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.butPrint               = new OpenDental.UI.Button();
     this.comboSite              = new System.Windows.Forms.ComboBox();
     this.labelSite              = new System.Windows.Forms.Label();
     this.comboClinic            = new System.Windows.Forms.ComboBox();
     this.labelClinic            = new System.Windows.Forms.Label();
     this.dateRangePicker        = new OpenDental.UI.ODDateRangePicker();
     this.label5                 = new System.Windows.Forms.Label();
     this.textCodeRange          = new System.Windows.Forms.TextBox();
     this.label6                 = new System.Windows.Forms.Label();
     this.menuMain               = new System.Windows.Forms.MenuStrip();
     this.setupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuRightClick.SuspendLayout();
     this.menuMain.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(758, 624);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(87, 24);
     this.butClose.TabIndex     = 0;
     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.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.ContextMenuStrip    = this.menuRightClick;
     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, 107);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(737, 541);
     this.gridMain.TabIndex         = 2;
     this.gridMain.Title            = "Planned Appointments";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "FormTrackNext";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.MouseUp         += new System.Windows.Forms.MouseEventHandler(this.grid_MouseUp);
     //
     // menuRightClick
     //
     this.menuRightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemSelectPatient,
         this.toolStripMenuItemSeeChart,
         this.toolStripMenuItemSendToPinboard
     });
     this.menuRightClick.Name = "menuRightClick";
     this.menuRightClick.Size = new System.Drawing.Size(166, 70);
     //
     // toolStripMenuItemSelectPatient
     //
     this.toolStripMenuItemSelectPatient.Name   = "toolStripMenuItemSelectPatient";
     this.toolStripMenuItemSelectPatient.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSelectPatient.Text   = "Select Patient";
     this.toolStripMenuItemSelectPatient.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemSeeChart
     //
     this.toolStripMenuItemSeeChart.Name   = "toolStripMenuItemSeeChart";
     this.toolStripMenuItemSeeChart.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSeeChart.Text   = "See Chart";
     this.toolStripMenuItemSeeChart.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemSendToPinboard
     //
     this.toolStripMenuItemSendToPinboard.Name   = "toolStripMenuItemSendToPinboard";
     this.toolStripMenuItemSendToPinboard.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSendToPinboard.Text   = "Send to Pinboard";
     this.toolStripMenuItemSendToPinboard.Click += new System.EventHandler(this.menuRight_click);
     //
     // comboProv
     //
     this.comboProv.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboProv.Location         = new System.Drawing.Point(336, 29);
     this.comboProv.MaxDropDownItems = 40;
     this.comboProv.Name             = "comboProv";
     this.comboProv.Size             = new System.Drawing.Size(181, 21);
     this.comboProv.TabIndex         = 26;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(244, 33);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(91, 14);
     this.label4.TabIndex  = 25;
     this.label4.Text      = "Provider";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(758, 29);
     this.butRefresh.Name         = "butRefresh";
     this.butRefresh.Size         = new System.Drawing.Size(87, 24);
     this.butRefresh.TabIndex     = 24;
     this.butRefresh.Text         = "&Refresh";
     this.butRefresh.Click       += new System.EventHandler(this.butRefresh_Click);
     //
     // comboOrder
     //
     this.comboOrder.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboOrder.Location         = new System.Drawing.Point(104, 29);
     this.comboOrder.MaxDropDownItems = 40;
     this.comboOrder.Name             = "comboOrder";
     this.comboOrder.Size             = new System.Drawing.Size(133, 21);
     this.comboOrder.TabIndex         = 30;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(11, 33);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(91, 14);
     this.label1.TabIndex  = 29;
     this.label1.Text      = "Order by";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butPrint
     //
     this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPrint.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butPrint.Autosize     = true;
     this.butPrint.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPrint.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPrint.CornerRadius = 4F;
     this.butPrint.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPrint.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location     = new System.Drawing.Point(758, 576);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(87, 24);
     this.butPrint.TabIndex     = 31;
     this.butPrint.Text         = "Print List";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // comboSite
     //
     this.comboSite.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSite.Location         = new System.Drawing.Point(336, 55);
     this.comboSite.MaxDropDownItems = 40;
     this.comboSite.Name             = "comboSite";
     this.comboSite.Size             = new System.Drawing.Size(181, 21);
     this.comboSite.TabIndex         = 33;
     //
     // labelSite
     //
     this.labelSite.Location  = new System.Drawing.Point(243, 57);
     this.labelSite.Name      = "labelSite";
     this.labelSite.Size      = new System.Drawing.Size(91, 14);
     this.labelSite.TabIndex  = 32;
     this.labelSite.Text      = "Site";
     this.labelSite.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboClinic
     //
     this.comboClinic.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboClinic.Location         = new System.Drawing.Point(613, 29);
     this.comboClinic.MaxDropDownItems = 40;
     this.comboClinic.Name             = "comboClinic";
     this.comboClinic.Size             = new System.Drawing.Size(133, 21);
     this.comboClinic.TabIndex         = 35;
     //
     // labelClinic
     //
     this.labelClinic.Location  = new System.Drawing.Point(520, 33);
     this.labelClinic.Name      = "labelClinic";
     this.labelClinic.Size      = new System.Drawing.Size(91, 14);
     this.labelClinic.TabIndex  = 34;
     this.labelClinic.Text      = "Clinic";
     this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dateRangePicker
     //
     this.dateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.dateRangePicker.DefaultDateTimeFrom = new System.DateTime(2017, 1, 1, 0, 0, 0, 0);
     this.dateRangePicker.DefaultDateTimeTo   = new System.DateTime(2017, 8, 11, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(64, 79);
     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(497, 22);
     this.dateRangePicker.TabIndex = 36;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(613, 77);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(108, 13);
     this.label5.TabIndex = 47;
     this.label5.Text     = "Ex: D2140-D2394";
     //
     // textCodeRange
     //
     this.textCodeRange.Location = new System.Drawing.Point(613, 55);
     this.textCodeRange.Name     = "textCodeRange";
     this.textCodeRange.Size     = new System.Drawing.Size(133, 20);
     this.textCodeRange.TabIndex = 45;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(534, 57);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(77, 17);
     this.label6.TabIndex  = 46;
     this.label6.Text      = "Code Range";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // menuMain
     //
     this.menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.setupToolStripMenuItem
     });
     this.menuMain.Location = new System.Drawing.Point(0, 0);
     this.menuMain.Name     = "menuMain";
     this.menuMain.Size     = new System.Drawing.Size(855, 24);
     this.menuMain.TabIndex = 48;
     //
     // setupToolStripMenuItem
     //
     this.setupToolStripMenuItem.Name   = "setupToolStripMenuItem";
     this.setupToolStripMenuItem.Size   = new System.Drawing.Size(49, 20);
     this.setupToolStripMenuItem.Text   = "Setup";
     this.setupToolStripMenuItem.Click += new System.EventHandler(this.setupToolStripMenuItem_Click);
     //
     // FormTrackNext
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(855, 664);
     this.Controls.Add(this.menuMain);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.textCodeRange);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.dateRangePicker);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.labelClinic);
     this.Controls.Add(this.comboSite);
     this.Controls.Add(this.labelSite);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.comboOrder);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboProv);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(871, 345);
     this.Name            = "FormTrackNext";
     this.Text            = "Track Planned Appointments";
     this.Load           += new System.EventHandler(this.FormTrackNext_Load);
     this.menuRightClick.ResumeLayout(false);
     this.menuMain.ResumeLayout(false);
     this.menuMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTrackNext));
     this.butClose       = new OpenDental.UI.Button();
     this.gridMain       = new OpenDental.UI.ODGrid();
     this.menuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItemSelectPatient  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSeeChart       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSendToPinboard = new System.Windows.Forms.ToolStripMenuItem();
     this.comboProv              = new System.Windows.Forms.ComboBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.butRefresh             = new OpenDental.UI.Button();
     this.comboOrder             = new System.Windows.Forms.ComboBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.butPrint               = new OpenDental.UI.Button();
     this.comboSite              = new System.Windows.Forms.ComboBox();
     this.labelSite              = new System.Windows.Forms.Label();
     this.comboClinic            = new OpenDental.UI.ComboBoxClinicPicker();
     this.dateRangePicker        = new OpenDental.UI.ODDateRangePicker();
     this.label6                 = new System.Windows.Forms.Label();
     this.menuMain               = new System.Windows.Forms.MenuStrip();
     this.setupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.codeRangeFilter        = new OpenDental.UI.ODCodeRangeFilter();
     this.menuRightClick.SuspendLayout();
     this.menuMain.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(758, 624);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(87, 24);
     this.butClose.TabIndex     = 0;
     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.ContextMenuStrip = this.menuRightClick;
     this.gridMain.Location         = new System.Drawing.Point(12, 107);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(737, 541);
     this.gridMain.TabIndex         = 2;
     this.gridMain.Title            = "Planned Appointments";
     this.gridMain.TranslationName  = "FormTrackNext";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.MouseUp         += new System.Windows.Forms.MouseEventHandler(this.grid_MouseUp);
     //
     // menuRightClick
     //
     this.menuRightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemSelectPatient,
         this.toolStripMenuItemSeeChart,
         this.toolStripMenuItemSendToPinboard
     });
     this.menuRightClick.Name = "menuRightClick";
     this.menuRightClick.Size = new System.Drawing.Size(166, 70);
     //
     // toolStripMenuItemSelectPatient
     //
     this.toolStripMenuItemSelectPatient.Name   = "toolStripMenuItemSelectPatient";
     this.toolStripMenuItemSelectPatient.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSelectPatient.Text   = "Select Patient";
     this.toolStripMenuItemSelectPatient.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemSeeChart
     //
     this.toolStripMenuItemSeeChart.Name   = "toolStripMenuItemSeeChart";
     this.toolStripMenuItemSeeChart.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSeeChart.Text   = "See Chart";
     this.toolStripMenuItemSeeChart.Click += new System.EventHandler(this.menuRight_click);
     //
     // toolStripMenuItemSendToPinboard
     //
     this.toolStripMenuItemSendToPinboard.Name   = "toolStripMenuItemSendToPinboard";
     this.toolStripMenuItemSendToPinboard.Size   = new System.Drawing.Size(165, 22);
     this.toolStripMenuItemSendToPinboard.Text   = "Send to Pinboard";
     this.toolStripMenuItemSendToPinboard.Click += new System.EventHandler(this.menuRight_click);
     //
     // comboProv
     //
     this.comboProv.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboProv.Location         = new System.Drawing.Point(300, 29);
     this.comboProv.MaxDropDownItems = 40;
     this.comboProv.Name             = "comboProv";
     this.comboProv.Size             = new System.Drawing.Size(181, 21);
     this.comboProv.TabIndex         = 26;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(229, 33);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(70, 14);
     this.label4.TabIndex  = 25;
     this.label4.Text      = "Provider";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(758, 68);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(87, 24);
     this.butRefresh.TabIndex = 24;
     this.butRefresh.Text     = "&Refresh";
     this.butRefresh.Click   += new System.EventHandler(this.butRefresh_Click);
     //
     // comboOrder
     //
     this.comboOrder.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboOrder.Location         = new System.Drawing.Point(83, 29);
     this.comboOrder.MaxDropDownItems = 40;
     this.comboOrder.Name             = "comboOrder";
     this.comboOrder.Size             = new System.Drawing.Size(133, 21);
     this.comboOrder.TabIndex         = 30;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(15, 33);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(66, 14);
     this.label1.TabIndex  = 29;
     this.label1.Text      = "Order by";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(758, 576);
     this.butPrint.Name       = "butPrint";
     this.butPrint.Size       = new System.Drawing.Size(87, 24);
     this.butPrint.TabIndex   = 31;
     this.butPrint.Text       = "Print List";
     this.butPrint.Click     += new System.EventHandler(this.butPrint_Click);
     //
     // comboSite
     //
     this.comboSite.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSite.Location         = new System.Drawing.Point(300, 55);
     this.comboSite.MaxDropDownItems = 40;
     this.comboSite.Name             = "comboSite";
     this.comboSite.Size             = new System.Drawing.Size(181, 21);
     this.comboSite.TabIndex         = 33;
     //
     // labelSite
     //
     this.labelSite.Location  = new System.Drawing.Point(228, 57);
     this.labelSite.Name      = "labelSite";
     this.labelSite.Size      = new System.Drawing.Size(70, 14);
     this.labelSite.TabIndex  = 32;
     this.labelSite.Text      = "Site";
     this.labelSite.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboClinic
     //
     this.comboClinic.IncludeAll        = true;
     this.comboClinic.IncludeUnassigned = true;
     this.comboClinic.Location          = new System.Drawing.Point(536, 29);
     this.comboClinic.Name     = "comboClinic";
     this.comboClinic.Size     = new System.Drawing.Size(211, 21);
     this.comboClinic.TabIndex = 35;
     //
     // dateRangePicker
     //
     this.dateRangePicker.BackColor           = System.Drawing.SystemColors.Control;
     this.dateRangePicker.DefaultDateTimeFrom = new System.DateTime(2017, 1, 1, 0, 0, 0, 0);
     this.dateRangePicker.DefaultDateTimeTo   = new System.DateTime(2017, 8, 11, 0, 0, 0, 0);
     this.dateRangePicker.EnableWeekButtons   = false;
     this.dateRangePicker.Location            = new System.Drawing.Point(20, 79);
     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(497, 22);
     this.dateRangePicker.TabIndex = 36;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(495, 57);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(77, 17);
     this.label6.TabIndex  = 46;
     this.label6.Text      = "Code Range";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // menuMain
     //
     this.menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.setupToolStripMenuItem
     });
     this.menuMain.Location = new System.Drawing.Point(0, 0);
     this.menuMain.Name     = "menuMain";
     this.menuMain.Size     = new System.Drawing.Size(855, 24);
     this.menuMain.TabIndex = 48;
     //
     // setupToolStripMenuItem
     //
     this.setupToolStripMenuItem.Name   = "setupToolStripMenuItem";
     this.setupToolStripMenuItem.Size   = new System.Drawing.Size(49, 20);
     this.setupToolStripMenuItem.Text   = "Setup";
     this.setupToolStripMenuItem.Click += new System.EventHandler(this.setupToolStripMenuItem_Click);
     //
     // codeRangeFilter
     //
     this.codeRangeFilter.HideExampleText = false;
     this.codeRangeFilter.Location        = new System.Drawing.Point(573, 55);
     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(133, 37);
     this.codeRangeFilter.TabIndex        = 49;
     //
     // FormTrackNext
     //
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(855, 664);
     this.Controls.Add(this.codeRangeFilter);
     this.Controls.Add(this.menuMain);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.dateRangePicker);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.comboSite);
     this.Controls.Add(this.labelSite);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.comboOrder);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboProv);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(871, 345);
     this.Name            = "FormTrackNext";
     this.Text            = "Track Planned Appointments";
     this.Load           += new System.EventHandler(this.FormTrackNext_Load);
     this.Shown          += new System.EventHandler(this.FormTrackNext_Shown);
     this.menuRightClick.ResumeLayout(false);
     this.menuMain.ResumeLayout(false);
     this.menuMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }