Esempio n. 1
0
		private void butListPatients_Click(object sender,EventArgs e) {
			ODForm form=new ODForm() {
				Size=new Size(500,400),
				Text="Other Patients List",
				FormBorderStyle=FormBorderStyle.FixedSingle
			};
			ODGrid grid=new ODGrid() {
				Size=new Size(475,300),
				Location=new Point(5,5),
				Title="Patients",
				TranslationName=""
			};
			UI.Button butClose=new UI.Button() {
				Size=new Size(75,23),
				Text="Close",
				Location=new Point(form.ClientSize.Width-80,form.ClientSize.Height-28),//Subtract the button's size plus 5 pixel buffer.
			};
			butClose.Click+=(s,ex) => form.Close();//When butClose is pressed, simply close the form.  If more functionality is needed, make a method below.
			form.Controls.Add(grid);
			form.Controls.Add(butClose);
			grid.BeginUpdate();
			grid.Columns.Clear();
			grid.Columns.Add(new ODGridColumn(Lan.g(this,"Name"),0));
			grid.Rows.Clear();
			foreach(string patName in _listPatNames) {
				grid.Rows.Add(new ODGridRow(patName));
			}
			grid.EndUpdate();
			form.ShowDialog();
		}
Esempio n. 2
0
 public static void InitializeOnStartup(ContrChart contrChart, TabControl tabProc, ODGrid gridProg, Panel panelEcw,
                                        TabControl tabControlImages, Size ClientSize,
                                        ODGrid gridPtInfo, ToothChartWrapper toothChart, RichTextBox textTreatmentNotes, OpenDental.UI.Button butECWup,
                                        OpenDental.UI.Button butECWdown, TabPage tabPatInfo, TrackBar trackBar, Label textTrack)
 {
     tabProc.SelectedIndex = 0;
     tabProc.Height        = 259;
     if (UsingEcwTightOrFull())
     {
         toothChart.Location         = new Point(524 + 2, 26);
         trackBar.Location           = new Point(524 + 2 + textTrack.Width, toothChart.Bottom + 1);
         textTrack.Location          = new Point(524 + 2, toothChart.Bottom + 1);
         textTreatmentNotes.Location = new Point(524 + 2, trackBar.Bottom + 1);
         textTreatmentNotes.Size     = new Size(411, 40);         //make it a bit smaller than usual
         gridPtInfo.Visible          = false;
         panelEcw.Visible            = true;
         panelEcw.Location           = new Point(524 + 2, textTreatmentNotes.Bottom + 1);
         panelEcw.Size       = new Size(411, tabControlImages.Top - panelEcw.Top + 1);
         butECWdown.Location = butECWup.Location;              //they will be at the same location, but just hide one or the other.
         butECWdown.Visible  = false;
         tabProc.Location    = new Point(0, 28);
         gridProg.Location   = new Point(0, tabProc.Bottom + 2);
         gridProg.Height     = ClientSize.Height - gridProg.Location.Y - 2;
     }
     else              //normal:
     {
         toothChart.Location         = new Point(0, 26);
         trackBar.Location           = new Point(0 + textTrack.Width, toothChart.Bottom + 1);
         textTrack.Location          = new Point(0, toothChart.Bottom + 1);
         textTreatmentNotes.Location = new Point(0, trackBar.Bottom + 1);
         textTreatmentNotes.Size     = new Size(411, 71);
         gridPtInfo.Visible          = true;
         gridPtInfo.Location         = new Point(0, textTreatmentNotes.Bottom + 1);
         panelEcw.Visible            = false;
         tabProc.Location            = new Point(415, 28);
         gridProg.Location           = new Point(415, tabProc.Bottom + 2);
         gridProg.Height             = ClientSize.Height - gridProg.Location.Y - 2;
         SetToothChartVisibleHelper(toothChart, textTreatmentNotes, trackBar, textTrack);
     }
     if (Programs.UsingOrion)
     {
         textTreatmentNotes.Visible = false;
         contrChart.Controls.Remove(gridPtInfo);
         gridPtInfo.Visible  = true;
         gridPtInfo.Location = new Point(0, 0);
         gridPtInfo.Size     = new Size(tabPatInfo.ClientSize.Width, tabPatInfo.ClientSize.Height);
         gridPtInfo.Anchor   = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom;
         tabPatInfo.Controls.Add(gridPtInfo);
         tabProc.SelectedTab     = tabPatInfo;
         tabProc.Height          = toothChart.Height - 1;
         gridProg.Location       = new Point(0, trackBar.Bottom + 2);
         gridProg.HScrollVisible = true;
         gridProg.Height         = ClientSize.Height - gridProg.Location.Y - 2;
         gridProg.Width          = ClientSize.Width - gridProg.Location.X - 1; //full width
     }
     else
     {
         tabProc.TabPages.Remove(tabPatInfo);
     }
 }
Esempio n. 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(FormReconciles));
     this.grid     = new OpenDental.UI.ODGrid();
     this.butClose = new OpenDental.UI.Button();
     this.butAdd   = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // grid
     //
     this.grid.Location         = new System.Drawing.Point(18, 13);
     this.grid.Name             = "grid";
     this.grid.Size             = new System.Drawing.Size(191, 450);
     this.grid.TabIndex         = 1;
     this.grid.Title            = "Existing Reconciles";
     this.grid.TranslationName  = "TableReconciles";
     this.grid.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.grid_CellDoubleClick);
     //
     // butClose
     //
     this.butClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Location = new System.Drawing.Point(242, 509);
     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);
     //
     // butAdd
     //
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(18, 475);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(77, 26);
     this.butAdd.TabIndex   = 98;
     this.butAdd.Text       = "Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // FormReconciles
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(346, 546);
     this.Controls.Add(this.grid);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.butAdd);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormReconciles";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Reconciles";
     this.Load         += new System.EventHandler(this.FormReconciles_Load);
     this.ResumeLayout(false);
 }
Esempio n. 4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLaboratories));
     this.butClose = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butAdd   = 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.Location = new System.Drawing.Point(592, 469);
     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);
     //
     // gridMain
     //
     this.gridMain.Location         = new System.Drawing.Point(33, 40);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(634, 334);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "Labs";
     this.gridMain.TranslationName  = "TableLabs";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAdd
     //
     this.butAdd.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location   = new System.Drawing.Point(592, 394);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(75, 26);
     this.butAdd.TabIndex   = 2;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // FormLaboratories
     //
     this.ClientSize = new System.Drawing.Size(719, 520);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.gridMain);
     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(735, 515);
     this.Name          = "FormLaboratories";
     this.ShowInTaskbar = false;
     this.Text          = "Laboratories";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormLaboratories_FormClosing);
     this.Load         += new System.EventHandler(this.FormLaboratories_Load);
     this.ResumeLayout(false);
 }
Esempio n. 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(FormPlansForFamily));
     this.butClose = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.label1   = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Location = new System.Drawing.Point(475, 257);
     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);
     //
     // gridMain
     //
     this.gridMain.Location         = new System.Drawing.Point(34, 57);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(516, 181);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "Insurance Plans for Family";
     this.gridMain.TranslationName  = "TableInsPlans";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(31, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(462, 35);
     this.label1.TabIndex = 2;
     this.label1.Text     = "This is a list of all insurance plans for the family.  The main purpose is to vie" +
                            "w inactive plans that have been dropped.";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // FormPlansForFamily
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(585, 300);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormPlansForFamily";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Insurance Plans for Family";
     this.Load         += new System.EventHandler(this.FormPlansForFamily_Load);
     this.ResumeLayout(false);
 }
Esempio n. 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(FormParameterInput));
     this.butCancel  = new OpenDental.UI.Button();
     this.butOK      = new OpenDental.UI.Button();
     this.MultInput2 = new OpenDental.UI.ContrMultInput();
     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(597, 237);
     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(507, 237);
     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);
     //
     // MultInput2
     //
     this.MultInput2.Location     = new System.Drawing.Point(12, 10);
     this.MultInput2.Name         = "MultInput2";
     this.MultInput2.Size         = new System.Drawing.Size(660, 204);
     this.MultInput2.TabIndex     = 2;
     this.MultInput2.SizeChanged += new System.EventHandler(this.MultInput2_SizeChanged);
     //
     // FormParameterInput
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(700, 277);
     this.Controls.Add(this.MultInput2);
     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          = "FormParameterInput";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Enter Parameters";
     this.Load         += new System.EventHandler(this.FormParameterInput_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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormImageSelectClaimAttach));
     this.butOK     = new OpenDental.UI.Button();
     this.butCancel = 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.Location = new System.Drawing.Point(505, 472);
     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);
     //
     // butCancel
     //
     this.butCancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Location = new System.Drawing.Point(505, 513);
     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);
     //
     // gridMain
     //
     this.gridMain.Location         = new System.Drawing.Point(12, 12);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(451, 527);
     this.gridMain.TabIndex         = 2;
     this.gridMain.Title            = "Images";
     this.gridMain.TranslationName  = "FormImageSelect";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // FormImageSelectClaimAttach
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(632, 564);
     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.MinimizeBox   = false;
     this.Name          = "FormImageSelectClaimAttach";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Select Image for Claim Attachment";
     this.Load         += new System.EventHandler(this.FormImageSelect_Load);
     this.ResumeLayout(false);
 }
Esempio n. 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(FormUserGroupPicker));
     this.listGroups = new System.Windows.Forms.ListBox();
     this.butOK      = new OpenDental.UI.Button();
     this.butCancel  = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // listGroups
     //
     this.listGroups.FormattingEnabled = true;
     this.listGroups.Location          = new System.Drawing.Point(12, 12);
     this.listGroups.Name         = "listGroups";
     this.listGroups.Size         = new System.Drawing.Size(183, 355);
     this.listGroups.TabIndex     = 1;
     this.listGroups.DoubleClick += new System.EventHandler(this.listGroups_DoubleClick);
     //
     // 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(211, 313);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex = 5;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Location = new System.Drawing.Point(211, 343);
     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);
     //
     // FormUserGroupPicker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(298, 380);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.listGroups);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormUserGroupPicker";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Select User Group";
     this.Load         += new System.EventHandler(this.FormUserGroupPicker_Load);
     this.ResumeLayout(false);
 }
Esempio n. 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(FormRpPayPlans));
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			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(546,216);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,24);
			this.butCancel.TabIndex = 44;
			this.butCancel.Text = "&Cancel";
			// 
			// 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(546,176);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75,24);
			this.butOK.TabIndex = 43;
			this.butOK.Text = "Report";
			this.butOK.Click += new System.EventHandler(this.butReport_Click);
			// 
			// FormRpPayPlans
			// 
			this.AcceptButton = this.butOK;
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.CancelButton = this.butCancel;
			this.ClientSize = new System.Drawing.Size(660,264);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.butOK);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "FormRpPayPlans";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Payment Plans Report";
			this.Load += new System.EventHandler(this.FormRpPayPlans_Load);
			this.ResumeLayout(false);

		}
Esempio n. 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(FormRpPayPlans));
     this.butCancel = new OpenDental.UI.Button();
     this.butOK     = new OpenDental.UI.Button();
     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(546, 216);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 44;
     this.butCancel.Text         = "&Cancel";
     //
     // 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(546, 176);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex     = 43;
     this.butOK.Text         = "Report";
     this.butOK.Click       += new System.EventHandler(this.butReport_Click);
     //
     // FormRpPayPlans
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(660, 264);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FormRpPayPlans";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Payment Plans Report";
     this.Load         += new System.EventHandler(this.FormRpPayPlans_Load);
     this.ResumeLayout(false);
 }
Esempio n. 11
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTranslation));
     this.butClose = new OpenDental.UI.Button();
     this.gridLan  = new OpenDental.UI.ODGrid();
     this.SuspendLayout();
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     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(847, 671);
     this.butClose.Name     = "butClose";
     this.butClose.Size     = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex = 3;
     this.butClose.Text     = "&Close";
     this.butClose.Click   += new System.EventHandler(this.butClose_Click);
     //
     // gridLan
     //
     this.gridLan.HScrollVisible   = false;
     this.gridLan.Location         = new System.Drawing.Point(18, 12);
     this.gridLan.Name             = "gridLan";
     this.gridLan.ScrollValue      = 0;
     this.gridLan.Size             = new System.Drawing.Size(905, 643);
     this.gridLan.TabIndex         = 7;
     this.gridLan.Title            = "Translations";
     this.gridLan.TranslationName  = "TableLan";
     this.gridLan.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridLan_CellDoubleClick);
     //
     // FormTranslation
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butClose;
     this.ClientSize        = new System.Drawing.Size(958, 708);
     this.Controls.Add(this.gridLan);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormTranslation";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Translation";
     this.Load         += new System.EventHandler(this.FormLanguage_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()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormReqStudentOne));
			this.butCancel = 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.Location = new System.Drawing.Point(738,621);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,26);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Close";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// gridMain
			// 
			this.gridMain.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(19,12);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(698,635);
			this.gridMain.TabIndex = 2;
			this.gridMain.Title = "Student Requirements";
			this.gridMain.TranslationName = "TableReqStudentOne";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// FormReqStudentOne
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(825,665);
			this.Controls.Add(this.gridMain);
			this.Controls.Add(this.butCancel);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormReqStudentOne";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Student Requirements - One";
			this.Load += new System.EventHandler(this.FormReqStudentOne_Load);
			this.ResumeLayout(false);

		}
Esempio n. 13
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(FormReqStudentOne));
     this.butCancel = 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.Location     = new System.Drawing.Point(738, 621);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 0;
     this.butCancel.Text         = "&Close";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(19, 12);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(698, 635);
     this.gridMain.TabIndex         = 2;
     this.gridMain.Title            = "Student Requirements";
     this.gridMain.TranslationName  = "TableReqStudentOne";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // FormReqStudentOne
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(825, 665);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormReqStudentOne";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Student Requirements - One";
     this.Load         += new System.EventHandler(this.FormReqStudentOne_Load);
     this.ResumeLayout(false);
 }
Esempio n. 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(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();
 }
Esempio n. 15
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormOpenDental));
     this.timerTimeIndic = new System.Windows.Forms.Timer(this.components);
     this.mainMenu = new System.Windows.Forms.MainMenu(this.components);
     this.menuItemLogOff = new System.Windows.Forms.MenuItem();
     this.menuItemFile = new System.Windows.Forms.MenuItem();
     this.menuItemPassword = new System.Windows.Forms.MenuItem();
     this.menuItem3 = new System.Windows.Forms.MenuItem();
     this.menuItemPrinter = new System.Windows.Forms.MenuItem();
     this.menuItemGraphics = new System.Windows.Forms.MenuItem();
     this.menuItem6 = new System.Windows.Forms.MenuItem();
     this.menuItemConfig = new System.Windows.Forms.MenuItem();
     this.menuItem7 = new System.Windows.Forms.MenuItem();
     this.menuItemExit = new System.Windows.Forms.MenuItem();
     this.menuItemSettings = new System.Windows.Forms.MenuItem();
     this.menuApptFieldDefs = new System.Windows.Forms.MenuItem();
     this.menuItemApptRules = new System.Windows.Forms.MenuItem();
     this.menuItemApptViews = new System.Windows.Forms.MenuItem();
     this.menuItemAutoCodes = new System.Windows.Forms.MenuItem();
     this.menuItemAutomation = new System.Windows.Forms.MenuItem();
     this.menuItemAutoNotes = new System.Windows.Forms.MenuItem();
     this.menuItemClaimForms = new System.Windows.Forms.MenuItem();
     this.menuItemClearinghouses = new System.Windows.Forms.MenuItem();
     this.menuItemComputers = new System.Windows.Forms.MenuItem();
     this.menuItemDataPath = new System.Windows.Forms.MenuItem();
     this.menuItemDefinitions = new System.Windows.Forms.MenuItem();
     this.menuItemDisplayFields = new System.Windows.Forms.MenuItem();
     this.menuItemEmail = new System.Windows.Forms.MenuItem();
     this.menuItemEHR = new System.Windows.Forms.MenuItem();
     this.menuItemFeeScheds = new System.Windows.Forms.MenuItem();
     this.menuItemImaging = new System.Windows.Forms.MenuItem();
     this.menuItemInsCats = new System.Windows.Forms.MenuItem();
     this.menuItemInsFilingCodes = new System.Windows.Forms.MenuItem();
     this.menuItemLaboratories = new System.Windows.Forms.MenuItem();
     this.menuItemLetters = new System.Windows.Forms.MenuItem();
     this.menuItemMessaging = new System.Windows.Forms.MenuItem();
     this.menuItemMessagingButs = new System.Windows.Forms.MenuItem();
     this.menuItemMisc = new System.Windows.Forms.MenuItem();
     this.menuItemModules = new System.Windows.Forms.MenuItem();
     this.menuItemOperatories = new System.Windows.Forms.MenuItem();
     this.menuItemPatFieldDefs = new System.Windows.Forms.MenuItem();
     this.menuItemPayerIDs = new System.Windows.Forms.MenuItem();
     this.menuItemPractice = new System.Windows.Forms.MenuItem();
     this.menuItemProblems = new System.Windows.Forms.MenuItem();
     this.menuItemProcedureButtons = new System.Windows.Forms.MenuItem();
     this.menuItemLinks = new System.Windows.Forms.MenuItem();
     this.menuItemQuestions = new System.Windows.Forms.MenuItem();
     this.menuItemRecall = new System.Windows.Forms.MenuItem();
     this.menuItemRecallTypes = new System.Windows.Forms.MenuItem();
     this.menuItemReplication = new System.Windows.Forms.MenuItem();
     this.menuItemRequirementsNeeded = new System.Windows.Forms.MenuItem();
     this.menuItemSched = new System.Windows.Forms.MenuItem();
     this.menuItemSecurity = new System.Windows.Forms.MenuItem();
     this.menuItemSheets = new System.Windows.Forms.MenuItem();
     this.menuItemEasy = new System.Windows.Forms.MenuItem();
     this.menuItemTimeCards = new System.Windows.Forms.MenuItem();
     this.menuItemLists = new System.Windows.Forms.MenuItem();
     this.menuItemProcCodes = new System.Windows.Forms.MenuItem();
     this.menuItem5 = new System.Windows.Forms.MenuItem();
     this.menuItemClinics = new System.Windows.Forms.MenuItem();
     this.menuItemContacts = new System.Windows.Forms.MenuItem();
     this.menuItemCounties = new System.Windows.Forms.MenuItem();
     this.menuItemSchoolClass = new System.Windows.Forms.MenuItem();
     this.menuItemSchoolCourses = new System.Windows.Forms.MenuItem();
     this.menuItemEmployees = new System.Windows.Forms.MenuItem();
     this.menuItemEmployers = new System.Windows.Forms.MenuItem();
     this.menuItemCarriers = new System.Windows.Forms.MenuItem();
     this.menuItemInsPlans = new System.Windows.Forms.MenuItem();
     this.menuItemLabCases = new System.Windows.Forms.MenuItem();
     this.menuItemMedications = new System.Windows.Forms.MenuItem();
     this.menuItemPharmacies = new System.Windows.Forms.MenuItem();
     this.menuItemProviders = new System.Windows.Forms.MenuItem();
     this.menuItemPrescriptions = new System.Windows.Forms.MenuItem();
     this.menuItemReferrals = new System.Windows.Forms.MenuItem();
     this.menuItemSchools = new System.Windows.Forms.MenuItem();
     this.menuItemZipCodes = new System.Windows.Forms.MenuItem();
     this.menuItemReports = new System.Windows.Forms.MenuItem();
     this.menuItemCustomReports = new System.Windows.Forms.MenuItem();
     this.menuItemTools = new System.Windows.Forms.MenuItem();
     this.menuItemPrintScreen = new System.Windows.Forms.MenuItem();
     this.menuItem1 = new System.Windows.Forms.MenuItem();
     this.menuTelephone = new System.Windows.Forms.MenuItem();
     this.menuItemCreateAtoZFolders = new System.Windows.Forms.MenuItem();
     this.menuItemImportXML = new System.Windows.Forms.MenuItem();
     this.menuItemMergePatients = new System.Windows.Forms.MenuItem();
     this.menuItemDuplicateBlockouts = new System.Windows.Forms.MenuItem();
     this.menuItemTestLatency = new System.Windows.Forms.MenuItem();
     this.menuItemShutdown = new System.Windows.Forms.MenuItem();
     this.menuItem9 = new System.Windows.Forms.MenuItem();
     this.menuItemAging = new System.Windows.Forms.MenuItem();
     this.menuItemAuditTrail = new System.Windows.Forms.MenuItem();
     this.menuItemFinanceCharge = new System.Windows.Forms.MenuItem();
     this.menuItemCCRecurring = new System.Windows.Forms.MenuItem();
     this.menuItemCustomerManage = new System.Windows.Forms.MenuItem();
     this.menuItemDatabaseMaintenance = new System.Windows.Forms.MenuItem();
     this.menuItemTerminal = new System.Windows.Forms.MenuItem();
     this.menuItemTerminalManager = new System.Windows.Forms.MenuItem();
     this.menuItemTranslation = new System.Windows.Forms.MenuItem();
     this.menuItemMobileSetup = new System.Windows.Forms.MenuItem();
     this.menuItemScreening = new System.Windows.Forms.MenuItem();
     this.menuItemRepeatingCharges = new System.Windows.Forms.MenuItem();
     this.menuItemReqStudents = new System.Windows.Forms.MenuItem();
     this.menuItemWebForms = new System.Windows.Forms.MenuItem();
     this.menuItemHelp = new System.Windows.Forms.MenuItem();
     this.menuItemRemote = new System.Windows.Forms.MenuItem();
     this.menuItemHelpWindows = new System.Windows.Forms.MenuItem();
     this.menuItemHelpContents = new System.Windows.Forms.MenuItem();
     this.menuItemHelpIndex = new System.Windows.Forms.MenuItem();
     this.menuItemRequestFeatures = new System.Windows.Forms.MenuItem();
     this.menuItemUpdate = new System.Windows.Forms.MenuItem();
     this.imageList32 = new System.Windows.Forms.ImageList(this.components);
     this.timerSignals = new System.Windows.Forms.Timer(this.components);
     this.panelSplitter = new System.Windows.Forms.Panel();
     this.menuSplitter = new System.Windows.Forms.ContextMenu();
     this.menuItemDockBottom = new System.Windows.Forms.MenuItem();
     this.menuItemDockRight = new System.Windows.Forms.MenuItem();
     this.imageListMain = new System.Windows.Forms.ImageList(this.components);
     this.menuPatient = new System.Windows.Forms.ContextMenu();
     this.menuLabel = new System.Windows.Forms.ContextMenu();
     this.menuEmail = new System.Windows.Forms.ContextMenu();
     this.menuLetter = new System.Windows.Forms.ContextMenu();
     this.timerDisabledKey = new System.Windows.Forms.Timer(this.components);
     this.timerHeartBeat = new System.Windows.Forms.Timer(this.components);
     this.timerPhoneWebCam = new System.Windows.Forms.Timer(this.components);
     this.timerWebHostSynch = new System.Windows.Forms.Timer(this.components);
     this.butBigPhones = new OpenDental.UI.Button();
     this.lightSignalGrid1 = new OpenDental.UI.LightSignalGrid();
     this.timerLogoff = new System.Windows.Forms.Timer(this.components);
     this.timerReplicationMonitor = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // timerTimeIndic
     //
     this.timerTimeIndic.Interval = 60000;
     this.timerTimeIndic.Tick += new System.EventHandler(this.timerTimeIndic_Tick);
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemLogOff,
     this.menuItemFile,
     this.menuItemSettings,
     this.menuItemLists,
     this.menuItemReports,
     this.menuItemCustomReports,
     this.menuItemTools,
     this.menuItemHelp});
     //
     // menuItemLogOff
     //
     this.menuItemLogOff.Index = 0;
     this.menuItemLogOff.Text = "Log &Off";
     this.menuItemLogOff.Click += new System.EventHandler(this.menuItemLogOff_Click);
     //
     // menuItemFile
     //
     this.menuItemFile.Index = 1;
     this.menuItemFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemPassword,
     this.menuItem3,
     this.menuItemPrinter,
     this.menuItemGraphics,
     this.menuItem6,
     this.menuItemConfig,
     this.menuItem7,
     this.menuItemExit});
     this.menuItemFile.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
     this.menuItemFile.Text = "&File";
     //
     // menuItemPassword
     //
     this.menuItemPassword.Index = 0;
     this.menuItemPassword.Text = "Change Password";
     this.menuItemPassword.Click += new System.EventHandler(this.menuItemPassword_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.Text = "-";
     //
     // menuItemPrinter
     //
     this.menuItemPrinter.Index = 2;
     this.menuItemPrinter.Text = "&Printers";
     this.menuItemPrinter.Click += new System.EventHandler(this.menuItemPrinter_Click);
     //
     // menuItemGraphics
     //
     this.menuItemGraphics.Index = 3;
     this.menuItemGraphics.Text = "Graphics";
     this.menuItemGraphics.Click += new System.EventHandler(this.menuItemGraphics_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 4;
     this.menuItem6.Text = "-";
     //
     // menuItemConfig
     //
     this.menuItemConfig.Index = 5;
     this.menuItemConfig.Text = "&Choose Database";
     this.menuItemConfig.Click += new System.EventHandler(this.menuItemConfig_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 6;
     this.menuItem7.Text = "-";
     //
     // menuItemExit
     //
     this.menuItemExit.Index = 7;
     this.menuItemExit.ShowShortcut = false;
     this.menuItemExit.Text = "E&xit";
     this.menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click);
     //
     // menuItemSettings
     //
     this.menuItemSettings.Index = 2;
     this.menuItemSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuApptFieldDefs,
     this.menuItemApptRules,
     this.menuItemApptViews,
     this.menuItemAutoCodes,
     this.menuItemAutomation,
     this.menuItemAutoNotes,
     this.menuItemClaimForms,
     this.menuItemClearinghouses,
     this.menuItemComputers,
     this.menuItemDataPath,
     this.menuItemDefinitions,
     this.menuItemDisplayFields,
     this.menuItemEmail,
     this.menuItemEHR,
     this.menuItemFeeScheds,
     this.menuItemImaging,
     this.menuItemInsCats,
     this.menuItemInsFilingCodes,
     this.menuItemLaboratories,
     this.menuItemLetters,
     this.menuItemMessaging,
     this.menuItemMessagingButs,
     this.menuItemMisc,
     this.menuItemModules,
     this.menuItemOperatories,
     this.menuItemPatFieldDefs,
     this.menuItemPayerIDs,
     this.menuItemPractice,
     this.menuItemProblems,
     this.menuItemProcedureButtons,
     this.menuItemLinks,
     this.menuItemQuestions,
     this.menuItemRecall,
     this.menuItemRecallTypes,
     this.menuItemReplication,
     this.menuItemRequirementsNeeded,
     this.menuItemSched,
     this.menuItemSecurity,
     this.menuItemSheets,
     this.menuItemEasy,
     this.menuItemTimeCards});
     this.menuItemSettings.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this.menuItemSettings.Text = "&Setup";
     //
     // menuApptFieldDefs
     //
     this.menuApptFieldDefs.Index = 0;
     this.menuApptFieldDefs.Text = "Appointment Field Defs";
     this.menuApptFieldDefs.Click += new System.EventHandler(this.menuItemApptFieldDefs_Click);
     //
     // menuItemApptRules
     //
     this.menuItemApptRules.Index = 1;
     this.menuItemApptRules.Text = "Appointment Rules";
     this.menuItemApptRules.Click += new System.EventHandler(this.menuItemApptRules_Click);
     //
     // menuItemApptViews
     //
     this.menuItemApptViews.Index = 2;
     this.menuItemApptViews.Text = "Appointment Views";
     this.menuItemApptViews.Click += new System.EventHandler(this.menuItemApptViews_Click);
     //
     // menuItemAutoCodes
     //
     this.menuItemAutoCodes.Index = 3;
     this.menuItemAutoCodes.Text = "Auto Codes";
     this.menuItemAutoCodes.Click += new System.EventHandler(this.menuItemAutoCodes_Click);
     //
     // menuItemAutomation
     //
     this.menuItemAutomation.Index = 4;
     this.menuItemAutomation.Text = "Automation";
     this.menuItemAutomation.Click += new System.EventHandler(this.menuItemAutomation_Click);
     //
     // menuItemAutoNotes
     //
     this.menuItemAutoNotes.Index = 5;
     this.menuItemAutoNotes.Text = "Auto Notes";
     this.menuItemAutoNotes.Click += new System.EventHandler(this.menuItemAutoNotes_Click);
     //
     // menuItemClaimForms
     //
     this.menuItemClaimForms.Index = 6;
     this.menuItemClaimForms.Text = "Claim Forms";
     this.menuItemClaimForms.Click += new System.EventHandler(this.menuItemClaimForms_Click);
     //
     // menuItemClearinghouses
     //
     this.menuItemClearinghouses.Index = 7;
     this.menuItemClearinghouses.Text = "Clearinghouses";
     this.menuItemClearinghouses.Click += new System.EventHandler(this.menuItemClearinghouses_Click);
     //
     // menuItemComputers
     //
     this.menuItemComputers.Index = 8;
     this.menuItemComputers.Text = "Computers";
     this.menuItemComputers.Click += new System.EventHandler(this.menuItemComputers_Click);
     //
     // menuItemDataPath
     //
     this.menuItemDataPath.Index = 9;
     this.menuItemDataPath.Text = "Data Paths";
     this.menuItemDataPath.Click += new System.EventHandler(this.menuItemDataPath_Click);
     //
     // menuItemDefinitions
     //
     this.menuItemDefinitions.Index = 10;
     this.menuItemDefinitions.Text = "Definitions";
     this.menuItemDefinitions.Click += new System.EventHandler(this.menuItemDefinitions_Click);
     //
     // menuItemDisplayFields
     //
     this.menuItemDisplayFields.Index = 11;
     this.menuItemDisplayFields.Text = "Display Fields";
     this.menuItemDisplayFields.Click += new System.EventHandler(this.menuItemDisplayFields_Click);
     //
     // menuItemEmail
     //
     this.menuItemEmail.Index = 12;
     this.menuItemEmail.Text = "E-mail";
     this.menuItemEmail.Click += new System.EventHandler(this.menuItemEmail_Click);
     //
     // menuItemEHR
     //
     this.menuItemEHR.Index = 13;
     this.menuItemEHR.Text = "EHR";
     this.menuItemEHR.Click += new System.EventHandler(this.menuItemEHR_Click);
     //
     // menuItemFeeScheds
     //
     this.menuItemFeeScheds.Index = 14;
     this.menuItemFeeScheds.Text = "Fee Schedules";
     this.menuItemFeeScheds.Click += new System.EventHandler(this.menuItemFeeScheds_Click);
     //
     // menuItemImaging
     //
     this.menuItemImaging.Index = 15;
     this.menuItemImaging.Text = "Imaging";
     this.menuItemImaging.Click += new System.EventHandler(this.menuItemImaging_Click);
     //
     // menuItemInsCats
     //
     this.menuItemInsCats.Index = 16;
     this.menuItemInsCats.Text = "Insurance Categories";
     this.menuItemInsCats.Click += new System.EventHandler(this.menuItemInsCats_Click);
     //
     // menuItemInsFilingCodes
     //
     this.menuItemInsFilingCodes.Index = 17;
     this.menuItemInsFilingCodes.Text = "Insurance Filing Codes";
     this.menuItemInsFilingCodes.Click += new System.EventHandler(this.menuItemInsFilingCodes_Click);
     //
     // menuItemLaboratories
     //
     this.menuItemLaboratories.Index = 18;
     this.menuItemLaboratories.Text = "Laboratories";
     this.menuItemLaboratories.Click += new System.EventHandler(this.menuItemLaboratories_Click);
     //
     // menuItemLetters
     //
     this.menuItemLetters.Index = 19;
     this.menuItemLetters.Text = "Letters";
     this.menuItemLetters.Click += new System.EventHandler(this.menuItemLetters_Click);
     //
     // menuItemMessaging
     //
     this.menuItemMessaging.Index = 20;
     this.menuItemMessaging.Text = "Messaging";
     this.menuItemMessaging.Click += new System.EventHandler(this.menuItemMessaging_Click);
     //
     // menuItemMessagingButs
     //
     this.menuItemMessagingButs.Index = 21;
     this.menuItemMessagingButs.Text = "Messaging Buttons";
     this.menuItemMessagingButs.Click += new System.EventHandler(this.menuItemMessagingButs_Click);
     //
     // menuItemMisc
     //
     this.menuItemMisc.Index = 22;
     this.menuItemMisc.Text = "Miscellaneous";
     this.menuItemMisc.Click += new System.EventHandler(this.menuItemMisc_Click);
     //
     // menuItemModules
     //
     this.menuItemModules.Index = 23;
     this.menuItemModules.Text = "Modules";
     this.menuItemModules.Click += new System.EventHandler(this.menuItemModules_Click);
     //
     // menuItemOperatories
     //
     this.menuItemOperatories.Index = 24;
     this.menuItemOperatories.Text = "Operatories";
     this.menuItemOperatories.Click += new System.EventHandler(this.menuItemOperatories_Click);
     //
     // menuItemPatFieldDefs
     //
     this.menuItemPatFieldDefs.Index = 25;
     this.menuItemPatFieldDefs.Text = "Patient Field Defs";
     this.menuItemPatFieldDefs.Click += new System.EventHandler(this.menuItemPatFieldDefs_Click);
     //
     // menuItemPayerIDs
     //
     this.menuItemPayerIDs.Index = 26;
     this.menuItemPayerIDs.Text = "Payer IDs";
     this.menuItemPayerIDs.Click += new System.EventHandler(this.menuItemPayerIDs_Click);
     //
     // menuItemPractice
     //
     this.menuItemPractice.Index = 27;
     this.menuItemPractice.Text = "Practice";
     this.menuItemPractice.Click += new System.EventHandler(this.menuItemPractice_Click);
     //
     // menuItemProblems
     //
     this.menuItemProblems.Index = 28;
     this.menuItemProblems.Text = "Problems";
     this.menuItemProblems.Click += new System.EventHandler(this.menuItemProblems_Click);
     //
     // menuItemProcedureButtons
     //
     this.menuItemProcedureButtons.Index = 29;
     this.menuItemProcedureButtons.Text = "Procedure Buttons";
     this.menuItemProcedureButtons.Click += new System.EventHandler(this.menuItemProcedureButtons_Click);
     //
     // menuItemLinks
     //
     this.menuItemLinks.Index = 30;
     this.menuItemLinks.Text = "Program Links";
     this.menuItemLinks.Click += new System.EventHandler(this.menuItemLinks_Click);
     //
     // menuItemQuestions
     //
     this.menuItemQuestions.Index = 31;
     this.menuItemQuestions.Text = "Questionnaire";
     this.menuItemQuestions.Click += new System.EventHandler(this.menuItemQuestions_Click);
     //
     // menuItemRecall
     //
     this.menuItemRecall.Index = 32;
     this.menuItemRecall.Text = "Recall";
     this.menuItemRecall.Click += new System.EventHandler(this.menuItemRecall_Click);
     //
     // menuItemRecallTypes
     //
     this.menuItemRecallTypes.Index = 33;
     this.menuItemRecallTypes.Text = "RecallTypes";
     this.menuItemRecallTypes.Click += new System.EventHandler(this.menuItemRecallTypes_Click);
     //
     // menuItemReplication
     //
     this.menuItemReplication.Index = 34;
     this.menuItemReplication.Text = "Replication";
     this.menuItemReplication.Click += new System.EventHandler(this.menuItemReplication_Click);
     //
     // menuItemRequirementsNeeded
     //
     this.menuItemRequirementsNeeded.Index = 35;
     this.menuItemRequirementsNeeded.Text = "Requirements Needed";
     this.menuItemRequirementsNeeded.Click += new System.EventHandler(this.menuItemRequirementsNeeded_Click);
     //
     // menuItemSched
     //
     this.menuItemSched.Index = 36;
     this.menuItemSched.Text = "Schedules";
     this.menuItemSched.Click += new System.EventHandler(this.menuItemSched_Click);
     //
     // menuItemSecurity
     //
     this.menuItemSecurity.Index = 37;
     this.menuItemSecurity.Text = "Security";
     this.menuItemSecurity.Click += new System.EventHandler(this.menuItemSecurity_Click);
     //
     // menuItemSheets
     //
     this.menuItemSheets.Index = 38;
     this.menuItemSheets.Text = "Sheets";
     this.menuItemSheets.Click += new System.EventHandler(this.menuItemSheets_Click);
     //
     // menuItemEasy
     //
     this.menuItemEasy.Index = 39;
     this.menuItemEasy.Text = "Show Features";
     this.menuItemEasy.Click += new System.EventHandler(this.menuItemEasy_Click);
     //
     // menuItemTimeCards
     //
     this.menuItemTimeCards.Index = 40;
     this.menuItemTimeCards.Text = "Time Cards";
     this.menuItemTimeCards.Click += new System.EventHandler(this.menuItemTimeCards_Click);
     //
     // menuItemLists
     //
     this.menuItemLists.Index = 3;
     this.menuItemLists.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemProcCodes,
     this.menuItem5,
     this.menuItemClinics,
     this.menuItemContacts,
     this.menuItemCounties,
     this.menuItemSchoolClass,
     this.menuItemSchoolCourses,
     this.menuItemEmployees,
     this.menuItemEmployers,
     this.menuItemCarriers,
     this.menuItemInsPlans,
     this.menuItemLabCases,
     this.menuItemMedications,
     this.menuItemPharmacies,
     this.menuItemProviders,
     this.menuItemPrescriptions,
     this.menuItemReferrals,
     this.menuItemSchools,
     this.menuItemZipCodes});
     this.menuItemLists.Shortcut = System.Windows.Forms.Shortcut.CtrlI;
     this.menuItemLists.Text = "&Lists";
     //
     // menuItemProcCodes
     //
     this.menuItemProcCodes.Index = 0;
     this.menuItemProcCodes.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftF;
     this.menuItemProcCodes.Text = "&Procedure Codes";
     this.menuItemProcCodes.Click += new System.EventHandler(this.menuItemProcCodes_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index = 1;
     this.menuItem5.Text = "-";
     //
     // menuItemClinics
     //
     this.menuItemClinics.Index = 2;
     this.menuItemClinics.Text = "Clinics";
     this.menuItemClinics.Click += new System.EventHandler(this.menuItemClinics_Click);
     //
     // menuItemContacts
     //
     this.menuItemContacts.Index = 3;
     this.menuItemContacts.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftC;
     this.menuItemContacts.Text = "&Contacts";
     this.menuItemContacts.Click += new System.EventHandler(this.menuItemContacts_Click);
     //
     // menuItemCounties
     //
     this.menuItemCounties.Index = 4;
     this.menuItemCounties.Text = "Counties";
     this.menuItemCounties.Click += new System.EventHandler(this.menuItemCounties_Click);
     //
     // menuItemSchoolClass
     //
     this.menuItemSchoolClass.Index = 5;
     this.menuItemSchoolClass.Text = "Dental School Classes";
     this.menuItemSchoolClass.Click += new System.EventHandler(this.menuItemSchoolClass_Click);
     //
     // menuItemSchoolCourses
     //
     this.menuItemSchoolCourses.Index = 6;
     this.menuItemSchoolCourses.Text = "Dental School Courses";
     this.menuItemSchoolCourses.Click += new System.EventHandler(this.menuItemSchoolCourses_Click);
     //
     // menuItemEmployees
     //
     this.menuItemEmployees.Index = 7;
     this.menuItemEmployees.Text = "&Employees";
     this.menuItemEmployees.Click += new System.EventHandler(this.menuItemEmployees_Click);
     //
     // menuItemEmployers
     //
     this.menuItemEmployers.Index = 8;
     this.menuItemEmployers.Text = "Employers";
     this.menuItemEmployers.Click += new System.EventHandler(this.menuItemEmployers_Click);
     //
     // menuItemCarriers
     //
     this.menuItemCarriers.Index = 9;
     this.menuItemCarriers.Text = "Insurance Carriers";
     this.menuItemCarriers.Click += new System.EventHandler(this.menuItemCarriers_Click);
     //
     // menuItemInsPlans
     //
     this.menuItemInsPlans.Index = 10;
     this.menuItemInsPlans.Text = "&Insurance Plans";
     this.menuItemInsPlans.Click += new System.EventHandler(this.menuItemInsPlans_Click);
     //
     // menuItemLabCases
     //
     this.menuItemLabCases.Index = 11;
     this.menuItemLabCases.Text = "Lab Cases";
     this.menuItemLabCases.Click += new System.EventHandler(this.menuItemLabCases_Click);
     //
     // menuItemMedications
     //
     this.menuItemMedications.Index = 12;
     this.menuItemMedications.Text = "&Medications";
     this.menuItemMedications.Click += new System.EventHandler(this.menuItemMedications_Click);
     //
     // menuItemPharmacies
     //
     this.menuItemPharmacies.Index = 13;
     this.menuItemPharmacies.Text = "Pharmacies";
     this.menuItemPharmacies.Click += new System.EventHandler(this.menuItemPharmacies_Click);
     //
     // menuItemProviders
     //
     this.menuItemProviders.Index = 14;
     this.menuItemProviders.Text = "Providers";
     this.menuItemProviders.Click += new System.EventHandler(this.menuItemProviders_Click);
     //
     // menuItemPrescriptions
     //
     this.menuItemPrescriptions.Index = 15;
     this.menuItemPrescriptions.Text = "Pre&scriptions";
     this.menuItemPrescriptions.Click += new System.EventHandler(this.menuItemPrescriptions_Click);
     //
     // menuItemReferrals
     //
     this.menuItemReferrals.Index = 16;
     this.menuItemReferrals.Text = "&Referrals";
     this.menuItemReferrals.Click += new System.EventHandler(this.menuItemReferrals_Click);
     //
     // menuItemSchools
     //
     this.menuItemSchools.Index = 17;
     this.menuItemSchools.Text = "Sites";
     this.menuItemSchools.Click += new System.EventHandler(this.menuItemSites_Click);
     //
     // menuItemZipCodes
     //
     this.menuItemZipCodes.Index = 18;
     this.menuItemZipCodes.Text = "&Zip Codes";
     this.menuItemZipCodes.Click += new System.EventHandler(this.menuItemZipCodes_Click);
     //
     // menuItemReports
     //
     this.menuItemReports.Index = 4;
     this.menuItemReports.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
     this.menuItemReports.Text = "&Reports";
     this.menuItemReports.Click += new System.EventHandler(this.menuItemReports_Click);
     //
     // menuItemCustomReports
     //
     this.menuItemCustomReports.Index = 5;
     this.menuItemCustomReports.Text = "Custom Reports";
     //
     // menuItemTools
     //
     this.menuItemTools.Index = 6;
     this.menuItemTools.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemPrintScreen,
     this.menuItem1,
     this.menuItem9,
     this.menuItemAging,
     this.menuItemAuditTrail,
     this.menuItemFinanceCharge,
     this.menuItemCCRecurring,
     this.menuItemCustomerManage,
     this.menuItemDatabaseMaintenance,
     this.menuItemTerminal,
     this.menuItemTerminalManager,
     this.menuItemTranslation,
     this.menuItemMobileSetup,
     this.menuItemScreening,
     this.menuItemRepeatingCharges,
     this.menuItemReqStudents,
     this.menuItemWebForms});
     this.menuItemTools.Shortcut = System.Windows.Forms.Shortcut.CtrlU;
     this.menuItemTools.Text = "&Tools";
     //
     // menuItemPrintScreen
     //
     this.menuItemPrintScreen.Index = 0;
     this.menuItemPrintScreen.Text = "&Print Screen Tool";
     this.menuItemPrintScreen.Click += new System.EventHandler(this.menuItemPrintScreen_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 1;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuTelephone,
     this.menuItemCreateAtoZFolders,
     this.menuItemImportXML,
     this.menuItemMergePatients,
     this.menuItemDuplicateBlockouts,
     this.menuItemTestLatency,
     this.menuItemShutdown});
     this.menuItem1.Text = "Misc Tools";
     //
     // menuTelephone
     //
     this.menuTelephone.Index = 0;
     this.menuTelephone.Text = "Telephone Numbers";
     this.menuTelephone.Click += new System.EventHandler(this.menuTelephone_Click);
     //
     // menuItemCreateAtoZFolders
     //
     this.menuItemCreateAtoZFolders.Index = 1;
     this.menuItemCreateAtoZFolders.Text = "Create A to Z Folders";
     this.menuItemCreateAtoZFolders.Click += new System.EventHandler(this.menuItemCreateAtoZFolders_Click);
     //
     // menuItemImportXML
     //
     this.menuItemImportXML.Index = 2;
     this.menuItemImportXML.Text = "Import Patient XML";
     this.menuItemImportXML.Click += new System.EventHandler(this.menuItemImportXML_Click);
     //
     // menuItemMergePatients
     //
     this.menuItemMergePatients.Index = 3;
     this.menuItemMergePatients.Text = "Merge Patients";
     this.menuItemMergePatients.Click += new System.EventHandler(this.menuItemMergePatients_Click);
     //
     // menuItemDuplicateBlockouts
     //
     this.menuItemDuplicateBlockouts.Index = 4;
     this.menuItemDuplicateBlockouts.Text = "Clear Duplicate Blockouts";
     this.menuItemDuplicateBlockouts.Click += new System.EventHandler(this.menuItemDuplicateBlockouts_Click);
     //
     // menuItemTestLatency
     //
     this.menuItemTestLatency.Index = 5;
     this.menuItemTestLatency.Text = "Test Latency";
     this.menuItemTestLatency.Click += new System.EventHandler(this.menuItemTestLatency_Click);
     //
     // menuItemShutdown
     //
     this.menuItemShutdown.Index = 6;
     this.menuItemShutdown.Text = "Shutdown All Workstations";
     this.menuItemShutdown.Click += new System.EventHandler(this.menuItemShutdown_Click);
     //
     // menuItem9
     //
     this.menuItem9.Index = 2;
     this.menuItem9.Text = "-";
     //
     // menuItemAging
     //
     this.menuItemAging.Index = 3;
     this.menuItemAging.Text = "&Aging";
     this.menuItemAging.Click += new System.EventHandler(this.menuItemAging_Click);
     //
     // menuItemAuditTrail
     //
     this.menuItemAuditTrail.Index = 4;
     this.menuItemAuditTrail.Text = "Audit Trail";
     this.menuItemAuditTrail.Click += new System.EventHandler(this.menuItemAuditTrail_Click);
     //
     // menuItemFinanceCharge
     //
     this.menuItemFinanceCharge.Index = 5;
     this.menuItemFinanceCharge.Text = "Billing/&Finance Charges";
     this.menuItemFinanceCharge.Click += new System.EventHandler(this.menuItemFinanceCharge_Click);
     //
     // menuItemCCRecurring
     //
     this.menuItemCCRecurring.Index = 6;
     this.menuItemCCRecurring.Text = "CC Recurring Charges";
     this.menuItemCCRecurring.Click += new System.EventHandler(this.menuItemCCRecurring_Click);
     //
     // menuItemCustomerManage
     //
     this.menuItemCustomerManage.Index = 7;
     this.menuItemCustomerManage.Text = "Customer Management";
     this.menuItemCustomerManage.Click += new System.EventHandler(this.menuItemCustomerManage_Click);
     //
     // menuItemDatabaseMaintenance
     //
     this.menuItemDatabaseMaintenance.Index = 8;
     this.menuItemDatabaseMaintenance.Text = "Database Maintenance";
     this.menuItemDatabaseMaintenance.Click += new System.EventHandler(this.menuItemDatabaseMaintenance_Click);
     //
     // menuItemTerminal
     //
     this.menuItemTerminal.Index = 9;
     this.menuItemTerminal.Text = "Kiosk";
     this.menuItemTerminal.Click += new System.EventHandler(this.menuItemTerminal_Click);
     //
     // menuItemTerminalManager
     //
     this.menuItemTerminalManager.Index = 10;
     this.menuItemTerminalManager.Text = "Kiosk Manager";
     this.menuItemTerminalManager.Click += new System.EventHandler(this.menuItemTerminalManager_Click);
     //
     // menuItemTranslation
     //
     this.menuItemTranslation.Index = 11;
     this.menuItemTranslation.Text = "Language Translation";
     this.menuItemTranslation.Click += new System.EventHandler(this.menuItemTranslation_Click);
     //
     // menuItemMobileSetup
     //
     this.menuItemMobileSetup.Index = 12;
     this.menuItemMobileSetup.Text = "Mobile and Patient Portal Synch";
     this.menuItemMobileSetup.Click += new System.EventHandler(this.menuItemMobileSetup_Click);
     //
     // menuItemScreening
     //
     this.menuItemScreening.Index = 13;
     this.menuItemScreening.Text = "Public Health Screening";
     this.menuItemScreening.Click += new System.EventHandler(this.menuItemScreening_Click);
     //
     // menuItemRepeatingCharges
     //
     this.menuItemRepeatingCharges.Index = 14;
     this.menuItemRepeatingCharges.Text = "Repeating Charges";
     this.menuItemRepeatingCharges.Click += new System.EventHandler(this.menuItemRepeatingCharges_Click);
     //
     // menuItemReqStudents
     //
     this.menuItemReqStudents.Index = 15;
     this.menuItemReqStudents.Text = "Student Requirements";
     this.menuItemReqStudents.Click += new System.EventHandler(this.menuItemReqStudents_Click);
     //
     // menuItemWebForms
     //
     this.menuItemWebForms.Index = 16;
     this.menuItemWebForms.Text = "WebForms";
     this.menuItemWebForms.Click += new System.EventHandler(this.menuItemWebForms_Click);
     //
     // menuItemHelp
     //
     this.menuItemHelp.Index = 7;
     this.menuItemHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemRemote,
     this.menuItemHelpWindows,
     this.menuItemHelpContents,
     this.menuItemHelpIndex,
     this.menuItemRequestFeatures,
     this.menuItemUpdate});
     this.menuItemHelp.Text = "&Help";
     //
     // menuItemRemote
     //
     this.menuItemRemote.Index = 0;
     this.menuItemRemote.Text = "Online Support";
     this.menuItemRemote.Click += new System.EventHandler(this.menuItemRemote_Click);
     //
     // menuItemHelpWindows
     //
     this.menuItemHelpWindows.Index = 1;
     this.menuItemHelpWindows.Text = "Local Help-Windows";
     this.menuItemHelpWindows.Click += new System.EventHandler(this.menuItemHelpWindows_Click);
     //
     // menuItemHelpContents
     //
     this.menuItemHelpContents.Index = 2;
     this.menuItemHelpContents.Text = "Online Help - Contents";
     this.menuItemHelpContents.Click += new System.EventHandler(this.menuItemHelpContents_Click);
     //
     // menuItemHelpIndex
     //
     this.menuItemHelpIndex.Index = 3;
     this.menuItemHelpIndex.Shortcut = System.Windows.Forms.Shortcut.ShiftF1;
     this.menuItemHelpIndex.Text = "Online Help - Index";
     this.menuItemHelpIndex.Click += new System.EventHandler(this.menuItemHelpIndex_Click);
     //
     // menuItemRequestFeatures
     //
     this.menuItemRequestFeatures.Index = 4;
     this.menuItemRequestFeatures.Text = "Request Features";
     this.menuItemRequestFeatures.Click += new System.EventHandler(this.menuItemRequestFeatures_Click);
     //
     // menuItemUpdate
     //
     this.menuItemUpdate.Index = 5;
     this.menuItemUpdate.Text = "&Update";
     this.menuItemUpdate.Click += new System.EventHandler(this.menuItemUpdate_Click);
     //
     // imageList32
     //
     this.imageList32.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList32.ImageStream")));
     this.imageList32.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList32.Images.SetKeyName(0,"Appt32.gif");
     this.imageList32.Images.SetKeyName(1,"Family32b.gif");
     this.imageList32.Images.SetKeyName(2,"Account32b.gif");
     this.imageList32.Images.SetKeyName(3,"TreatPlan3D.gif");
     this.imageList32.Images.SetKeyName(4,"chart32.gif");
     this.imageList32.Images.SetKeyName(5,"Images32.gif");
     this.imageList32.Images.SetKeyName(6,"Manage32.gif");
     //
     // timerSignals
     //
     this.timerSignals.Tick += new System.EventHandler(this.timerSignals_Tick);
     //
     // panelSplitter
     //
     this.panelSplitter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSplitter.Cursor = System.Windows.Forms.Cursors.HSplit;
     this.panelSplitter.Location = new System.Drawing.Point(71,542);
     this.panelSplitter.Name = "panelSplitter";
     this.panelSplitter.Size = new System.Drawing.Size(769,7);
     this.panelSplitter.TabIndex = 50;
     this.panelSplitter.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseDown);
     this.panelSplitter.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseMove);
     this.panelSplitter.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseUp);
     //
     // menuSplitter
     //
     this.menuSplitter.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.menuItemDockBottom,
     this.menuItemDockRight});
     //
     // menuItemDockBottom
     //
     this.menuItemDockBottom.Index = 0;
     this.menuItemDockBottom.Text = "Dock to Bottom";
     this.menuItemDockBottom.Click += new System.EventHandler(this.menuItemDockBottom_Click);
     //
     // menuItemDockRight
     //
     this.menuItemDockRight.Index = 1;
     this.menuItemDockRight.Text = "Dock to Right";
     this.menuItemDockRight.Click += new System.EventHandler(this.menuItemDockRight_Click);
     //
     // imageListMain
     //
     this.imageListMain.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListMain.ImageStream")));
     this.imageListMain.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListMain.Images.SetKeyName(0,"Pat.gif");
     this.imageListMain.Images.SetKeyName(1,"commlog.gif");
     this.imageListMain.Images.SetKeyName(2,"email.gif");
     this.imageListMain.Images.SetKeyName(3,"tasksNicer.gif");
     this.imageListMain.Images.SetKeyName(4,"label.gif");
     //
     // menuPatient
     //
     this.menuPatient.Popup += new System.EventHandler(this.menuPatient_Popup);
     //
     // menuLabel
     //
     this.menuLabel.Popup += new System.EventHandler(this.menuLabel_Popup);
     //
     // menuEmail
     //
     this.menuEmail.Popup += new System.EventHandler(this.menuEmail_Popup);
     //
     // menuLetter
     //
     this.menuLetter.Popup += new System.EventHandler(this.menuLetter_Popup);
     //
     // timerDisabledKey
     //
     this.timerDisabledKey.Enabled = true;
     this.timerDisabledKey.Interval = 600000;
     this.timerDisabledKey.Tick += new System.EventHandler(this.timerDisabledKey_Tick);
     //
     // timerHeartBeat
     //
     this.timerHeartBeat.Enabled = true;
     this.timerHeartBeat.Interval = 180000;
     this.timerHeartBeat.Tick += new System.EventHandler(this.timerHeartBeat_Tick);
     //
     // timerPhoneWebCam
     //
     this.timerPhoneWebCam.Interval = 1600;
     this.timerPhoneWebCam.Tick += new System.EventHandler(this.timerPhoneWebCam_Tick);
     //
     // timerWebHostSynch
     //
     this.timerWebHostSynch.Enabled = true;
     this.timerWebHostSynch.Interval = 30000;
     this.timerWebHostSynch.Tick += new System.EventHandler(this.timerWebHostSynch_Tick);
     //
     // butBigPhones
     //
     this.butBigPhones.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butBigPhones.Autosize = true;
     this.butBigPhones.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butBigPhones.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butBigPhones.CornerRadius = 4F;
     this.butBigPhones.Location = new System.Drawing.Point(143,565);
     this.butBigPhones.Name = "butBigPhones";
     this.butBigPhones.Size = new System.Drawing.Size(75,24);
     this.butBigPhones.TabIndex = 52;
     this.butBigPhones.Text = "Big Phones";
     this.butBigPhones.Visible = false;
     this.butBigPhones.Click += new System.EventHandler(this.butBigPhones_Click);
     //
     // lightSignalGrid1
     //
     this.lightSignalGrid1.Location = new System.Drawing.Point(0,463);
     this.lightSignalGrid1.Name = "lightSignalGrid1";
     this.lightSignalGrid1.Size = new System.Drawing.Size(50,206);
     this.lightSignalGrid1.TabIndex = 20;
     this.lightSignalGrid1.Text = "lightSignalGrid1";
     this.lightSignalGrid1.ButtonClick += new OpenDental.UI.ODLightSignalGridClickEventHandler(this.lightSignalGrid1_ButtonClick);
     //
     // timerLogoff
     //
     this.timerLogoff.Interval = 15000;
     this.timerLogoff.Tick += new System.EventHandler(this.timerLogoff_Tick);
     //
     // timerReplicationMonitor
     //
     this.timerReplicationMonitor.Interval = 10000;
     this.timerReplicationMonitor.Tick += new System.EventHandler(this.timerReplicationMonitor_Tick);
     //
     // FormOpenDental
     //
     this.ClientSize = new System.Drawing.Size(982,585);
     this.Controls.Add(this.butBigPhones);
     this.Controls.Add(this.panelSplitter);
     this.Controls.Add(this.lightSignalGrid1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif",8.25F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Menu = this.mainMenu;
     this.Name = "FormOpenDental";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Text = "Open Dental";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormOpenDental_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormOpenDental_FormClosed);
     this.Load += new System.EventHandler(this.FormOpenDental_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormOpenDental_KeyDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FormOpenDental_MouseMove);
     this.Resize += new System.EventHandler(this.FormOpenDental_Resize);
     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()
		{
			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 System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.textComputerName = new System.Windows.Forms.TextBox();
			this.label4 = 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.label15 = 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.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 Ring Group";
			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, 43);
			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, 200);
			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.Location = new System.Drawing.Point(144, 292);
			this.textNotes.Multiline = true;
			this.textNotes.Name = "textNotes";
			this.textNotes.Size = new System.Drawing.Size(352, 51);
			this.textNotes.TabIndex = 7;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(40, 291);
			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;
			// 
			// textComputerName
			// 
			this.textComputerName.Location = new System.Drawing.Point(144, 358);
			this.textComputerName.Name = "textComputerName";
			this.textComputerName.Size = new System.Drawing.Size(213, 20);
			this.textComputerName.TabIndex = 8;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(40, 357);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(100, 20);
			this.label4.TabIndex = 31;
			this.label4.Text = "Computer Name";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsPrivateScreen
			// 
			this.checkIsPrivateScreen.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsPrivateScreen.Location = new System.Drawing.Point(3, 389);
			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(267, 143);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(359, 47);
			this.label10.TabIndex = 37;
			this.label10.Text = "The normal ring group for this employee when clocked in.  If you change this valu" +
    "e, the change will not immediately show on each workstation, but will instead re" +
    "quire a restart of OD.";
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(204, 194);
			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, 235);
			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, 291);
			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?";
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(363, 355);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(350, 48);
			this.label15.TabIndex = 42;
			this.label15.Text = "Do NOT set computer name unless approved by management.  Used when the IP does no" +
    "t match the extension.  Not used by floaters.";
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(161, 386);
			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, 235);
			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, 237);
			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, 415);
			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, 415);
			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.HScrollVisible = false;
			this.gridGraph.Location = new System.Drawing.Point(745, 55);
			this.gridGraph.Name = "gridGraph";
			this.gridGraph.ScrollValue = 0;
			this.gridGraph.Size = new System.Drawing.Size(162, 354);
			this.gridGraph.TabIndex = 47;
			this.gridGraph.Title = "Phone Graph Edits";
			this.gridGraph.TranslationName = "TablePhoneGraph";
			this.gridGraph.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridGraph_CellDoubleClick);
			// 
			// textPhoneExt
			// 
			this.textPhoneExt.Location = new System.Drawing.Point(144, 201);
			this.textPhoneExt.MaxVal = 1000;
			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 = 255;
			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, 474);
			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, 474);
			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, 474);
			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);
			// 
			// FormPhoneEmpDefaultEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(924, 511);
			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.label15);
			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.textComputerName);
			this.Controls.Add(this.label4);
			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.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Employee Setting";
			this.Load += new System.EventHandler(this.FormPhoneEmpDefaultEdit_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 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(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);
 }
Esempio n. 18
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(FormParameterInput));
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.MultInput2 = new OpenDental.UI.ContrMultInput();
			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(597,237);
			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(507,237);
			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);
			// 
			// MultInput2
			// 
			this.MultInput2.Location = new System.Drawing.Point(12,10);
			this.MultInput2.Name = "MultInput2";
			this.MultInput2.Size = new System.Drawing.Size(660,204);
			this.MultInput2.TabIndex = 2;
			this.MultInput2.SizeChanged += new System.EventHandler(this.MultInput2_SizeChanged);
			// 
			// FormParameterInput
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.CancelButton = this.butCancel;
			this.ClientSize = new System.Drawing.Size(700,277);
			this.Controls.Add(this.MultInput2);
			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 = "FormParameterInput";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Enter Parameters";
			this.Load += new System.EventHandler(this.FormParameterInput_Load);
			this.ResumeLayout(false);

		}
Esempio n. 19
0
		private void InitializeComponent(){
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormInsPlanSelect));
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.labelRelat = new System.Windows.Forms.Label();
			this.listRelat = new System.Windows.Forms.ListBox();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.butNone = new OpenDental.UI.Button();
			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(686,330);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(76,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(686,294);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(76,24);
			this.butOK.TabIndex = 5;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// labelRelat
			// 
			this.labelRelat.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.labelRelat.Location = new System.Drawing.Point(580,16);
			this.labelRelat.Name = "labelRelat";
			this.labelRelat.Size = new System.Drawing.Size(206,20);
			this.labelRelat.TabIndex = 8;
			this.labelRelat.Text = "Relationship to Subscriber";
			// 
			// listRelat
			// 
			this.listRelat.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.listRelat.Location = new System.Drawing.Point(582,38);
			this.listRelat.Name = "listRelat";
			this.listRelat.Size = new System.Drawing.Size(180,186);
			this.listRelat.TabIndex = 9;
			// 
			// gridMain
			// 
			this.gridMain.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(22,38);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(527,186);
			this.gridMain.TabIndex = 10;
			this.gridMain.Title = "Insurance Plans for Family";
			this.gridMain.TranslationName = "TableInsPlans";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// 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(22,330);
			this.butNone.Name = "butNone";
			this.butNone.Size = new System.Drawing.Size(76,24);
			this.butNone.TabIndex = 11;
			this.butNone.Text = "None";
			this.butNone.Click += new System.EventHandler(this.butNone_Click);
			// 
			// FormInsPlanSelect
			// 
			this.AcceptButton = this.butOK;
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.CancelButton = this.butCancel;
			this.ClientSize = new System.Drawing.Size(792,374);
			this.Controls.Add(this.butNone);
			this.Controls.Add(this.gridMain);
			this.Controls.Add(this.listRelat);
			this.Controls.Add(this.labelRelat);
			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 = "FormInsPlanSelect";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Select Insurance Plan";
			this.Load += new System.EventHandler(this.FormInsPlansSelect_Load);
			this.ResumeLayout(false);

		}
Esempio n. 20
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(FormNotePick));
     this.butOK     = new OpenDental.UI.Button();
     this.gridMain  = new OpenDental.UI.ODGrid();
     this.label1    = new System.Windows.Forms.Label();
     this.textNote  = new System.Windows.Forms.TextBox();
     this.label2    = new System.Windows.Forms.Label();
     this.butCancel = 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(473, 623);
     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);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(29, 40);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.SelectionMode    = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size             = new System.Drawing.Size(627, 322);
     this.gridMain.TabIndex         = 2;
     this.gridMain.Title            = "Pick Note";
     this.gridMain.TranslationName  = "TableNotePick";
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(29, 2);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(627, 35);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Multiple versions of the note exist.  Please pick or edit one version to retain. " +
                            " This note will apply to ALL similar plans.  You can also pick multiple rows to " +
                            "combine notes.";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textNote
     //
     this.textNote.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.textNote.Location   = new System.Drawing.Point(29, 396);
     this.textNote.Multiline  = true;
     this.textNote.Name       = "textNote";
     this.textNote.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textNote.Size       = new System.Drawing.Size(627, 219);
     this.textNote.TabIndex   = 4;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(29, 365);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(627, 28);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "This is the final note that will be saved for all similar plans.";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // 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(581, 623);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 6;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // FormNotePick
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(692, 656);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormNotePick";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load         += new System.EventHandler(this.FormNotePick_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 21
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(FormMedications));
     this.butCancel          = new OpenDental.UI.Button();
     this.butOK              = new OpenDental.UI.Button();
     this.butAddGeneric      = new OpenDental.UI.Button();
     this.butAddBrand        = new OpenDental.UI.Button();
     this.gridAllMedications = new OpenDental.UI.ODGrid();
     this.textSearch         = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.tabMedications     = new System.Windows.Forms.TabControl();
     this.tabAllMedications  = new System.Windows.Forms.TabPage();
     this.tabMissing         = new System.Windows.Forms.TabPage();
     this.butConvertBrand    = new OpenDental.UI.Button();
     this.butConvertGeneric  = new OpenDental.UI.Button();
     this.gridMissing        = new OpenDental.UI.ODGrid();
     this.tabMedications.SuspendLayout();
     this.tabAllMedications.SuspendLayout();
     this.tabMissing.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(858, 635);
     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(777, 635);
     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);
     //
     // butAddGeneric
     //
     this.butAddGeneric.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddGeneric.Autosize            = true;
     this.butAddGeneric.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddGeneric.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddGeneric.CornerRadius        = 4F;
     this.butAddGeneric.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddGeneric.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddGeneric.Location   = new System.Drawing.Point(6, 6);
     this.butAddGeneric.Name       = "butAddGeneric";
     this.butAddGeneric.Size       = new System.Drawing.Size(113, 26);
     this.butAddGeneric.TabIndex   = 33;
     this.butAddGeneric.Text       = "Add Generic";
     this.butAddGeneric.Click     += new System.EventHandler(this.butAddGeneric_Click);
     //
     // butAddBrand
     //
     this.butAddBrand.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddBrand.Autosize            = true;
     this.butAddBrand.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddBrand.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddBrand.CornerRadius        = 4F;
     this.butAddBrand.Image      = global::OpenDental.Properties.Resources.Add;
     this.butAddBrand.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddBrand.Location   = new System.Drawing.Point(125, 6);
     this.butAddBrand.Name       = "butAddBrand";
     this.butAddBrand.Size       = new System.Drawing.Size(113, 26);
     this.butAddBrand.TabIndex   = 34;
     this.butAddBrand.Text       = "Add Brand";
     this.butAddBrand.Click     += new System.EventHandler(this.butAddBrand_Click);
     //
     // gridAllMedications
     //
     this.gridAllMedications.AllowSortingByColumn = true;
     this.gridAllMedications.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.gridAllMedications.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridAllMedications.HasAddButton        = false;
     this.gridAllMedications.HasDropDowns        = false;
     this.gridAllMedications.HasMultilineHeaders = false;
     this.gridAllMedications.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridAllMedications.HeaderHeight        = 15;
     this.gridAllMedications.HScrollVisible      = false;
     this.gridAllMedications.Location            = new System.Drawing.Point(5, 38);
     this.gridAllMedications.Name             = "gridAllMedications";
     this.gridAllMedications.ScrollValue      = 0;
     this.gridAllMedications.Size             = new System.Drawing.Size(907, 558);
     this.gridAllMedications.TabIndex         = 37;
     this.gridAllMedications.Title            = "All Medications";
     this.gridAllMedications.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridAllMedications.TitleHeight      = 18;
     this.gridAllMedications.TranslationName  = "FormMedications";
     this.gridAllMedications.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridAllMedications_CellDoubleClick);
     this.gridAllMedications.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridAllMedications_CellClick);
     //
     // textSearch
     //
     this.textSearch.Location     = new System.Drawing.Point(367, 9);
     this.textSearch.Name         = "textSearch";
     this.textSearch.Size         = new System.Drawing.Size(195, 20);
     this.textSearch.TabIndex     = 0;
     this.textSearch.TextChanged += new System.EventHandler(this.textSearch_TextChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(239, 12);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(127, 17);
     this.label1.TabIndex  = 39;
     this.label1.Text      = "Search";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // tabMedications
     //
     this.tabMedications.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.tabMedications.Controls.Add(this.tabAllMedications);
     this.tabMedications.Controls.Add(this.tabMissing);
     this.tabMedications.Location              = new System.Drawing.Point(9, 3);
     this.tabMedications.Name                  = "tabMedications";
     this.tabMedications.SelectedIndex         = 0;
     this.tabMedications.Size                  = new System.Drawing.Size(924, 626);
     this.tabMedications.TabIndex              = 40;
     this.tabMedications.SelectedIndexChanged += new System.EventHandler(this.tabMedications_SelectedIndexChanged);
     //
     // tabAllMedications
     //
     this.tabAllMedications.Controls.Add(this.gridAllMedications);
     this.tabAllMedications.Controls.Add(this.textSearch);
     this.tabAllMedications.Controls.Add(this.butAddGeneric);
     this.tabAllMedications.Controls.Add(this.label1);
     this.tabAllMedications.Controls.Add(this.butAddBrand);
     this.tabAllMedications.Location = new System.Drawing.Point(4, 22);
     this.tabAllMedications.Name     = "tabAllMedications";
     this.tabAllMedications.Padding  = new System.Windows.Forms.Padding(3);
     this.tabAllMedications.Size     = new System.Drawing.Size(916, 600);
     this.tabAllMedications.TabIndex = 0;
     this.tabAllMedications.Text     = "All Medications";
     this.tabAllMedications.UseVisualStyleBackColor = true;
     //
     // tabMissing
     //
     this.tabMissing.Controls.Add(this.butConvertBrand);
     this.tabMissing.Controls.Add(this.butConvertGeneric);
     this.tabMissing.Controls.Add(this.gridMissing);
     this.tabMissing.Location = new System.Drawing.Point(4, 22);
     this.tabMissing.Name     = "tabMissing";
     this.tabMissing.Size     = new System.Drawing.Size(916, 600);
     this.tabMissing.TabIndex = 2;
     this.tabMissing.Text     = "Missing Generic/Brand";
     this.tabMissing.UseVisualStyleBackColor = true;
     //
     // butConvertBrand
     //
     this.butConvertBrand.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butConvertBrand.Autosize            = true;
     this.butConvertBrand.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butConvertBrand.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butConvertBrand.CornerRadius        = 4F;
     this.butConvertBrand.Image      = global::OpenDental.Properties.Resources.Add;
     this.butConvertBrand.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butConvertBrand.Location   = new System.Drawing.Point(161, 6);
     this.butConvertBrand.Name       = "butConvertBrand";
     this.butConvertBrand.Size       = new System.Drawing.Size(150, 26);
     this.butConvertBrand.TabIndex   = 40;
     this.butConvertBrand.Text       = "Convert To Brand";
     this.butConvertBrand.Click     += new System.EventHandler(this.butConvertBrand_Click);
     //
     // butConvertGeneric
     //
     this.butConvertGeneric.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butConvertGeneric.Autosize            = true;
     this.butConvertGeneric.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butConvertGeneric.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butConvertGeneric.CornerRadius        = 4F;
     this.butConvertGeneric.Image      = global::OpenDental.Properties.Resources.Add;
     this.butConvertGeneric.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butConvertGeneric.Location   = new System.Drawing.Point(5, 6);
     this.butConvertGeneric.Name       = "butConvertGeneric";
     this.butConvertGeneric.Size       = new System.Drawing.Size(150, 26);
     this.butConvertGeneric.TabIndex   = 39;
     this.butConvertGeneric.Text       = "Convert To Generic";
     this.butConvertGeneric.Click     += new System.EventHandler(this.butConvertGeneric_Click);
     //
     // gridMissing
     //
     this.gridMissing.AllowSortingByColumn = true;
     this.gridMissing.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.gridMissing.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMissing.HasAddButton        = false;
     this.gridMissing.HasDropDowns        = false;
     this.gridMissing.HasMultilineHeaders = false;
     this.gridMissing.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMissing.HeaderHeight        = 15;
     this.gridMissing.HScrollVisible      = false;
     this.gridMissing.Location            = new System.Drawing.Point(5, 38);
     this.gridMissing.Name            = "gridMissing";
     this.gridMissing.ScrollValue     = 0;
     this.gridMissing.Size            = new System.Drawing.Size(907, 559);
     this.gridMissing.TabIndex        = 38;
     this.gridMissing.Title           = "Medications Missing Generic or Brand";
     this.gridMissing.TitleFont       = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMissing.TitleHeight     = 18;
     this.gridMissing.TranslationName = "FormMedications";
     //
     // FormMedications
     //
     this.AcceptButton = this.butOK;
     this.CancelButton = this.butCancel;
     this.ClientSize   = new System.Drawing.Size(941, 671);
     this.Controls.Add(this.tabMedications);
     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.MinimumSize   = new System.Drawing.Size(600, 400);
     this.Name          = "FormMedications";
     this.ShowInTaskbar = false;
     this.Text          = "Medications";
     this.Load         += new System.EventHandler(this.FormMedications_Load);
     this.tabMedications.ResumeLayout(false);
     this.tabAllMedications.ResumeLayout(false);
     this.tabAllMedications.PerformLayout();
     this.tabMissing.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()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormTransactionEdit));
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.textDateTimeEntry = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.textDebit = new System.Windows.Forms.TextBox();
			this.textCredit = new System.Windows.Forms.TextBox();
			this.checkMemoSame = new System.Windows.Forms.CheckBox();
			this.checkSimple = new System.Windows.Forms.CheckBox();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.panelSimple = new System.Windows.Forms.Panel();
			this.butChange = new OpenDental.UI.Button();
			this.textAccount = new System.Windows.Forms.TextBox();
			this.textMemo = new System.Windows.Forms.TextBox();
			this.textCheckNumber = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.textAmount = new OpenDental.ValidDouble();
			this.panelCompound = new System.Windows.Forms.Panel();
			this.butAdd = new OpenDental.UI.Button();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.textSourcePay = new System.Windows.Forms.TextBox();
			this.butAttachPay = new OpenDental.UI.Button();
			this.textSourceDeposit = new System.Windows.Forms.TextBox();
			this.butAttachDep = new OpenDental.UI.Button();
			this.butDelete = new OpenDental.UI.Button();
			this.textDate = new OpenDental.ValidDate();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.labelReconcile = new System.Windows.Forms.Label();
			this.textReconcile = new System.Windows.Forms.TextBox();
			this.panelSimple.SuspendLayout();
			this.panelCompound.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(28,34);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(100,20);
			this.label1.TabIndex = 4;
			this.label1.Text = "Date";
			this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(6,10);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(123,20);
			this.label2.TabIndex = 5;
			this.label2.Text = "Date/Time  Entered";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textDateTimeEntry
			// 
			this.textDateTimeEntry.Location = new System.Drawing.Point(132,7);
			this.textDateTimeEntry.Name = "textDateTimeEntry";
			this.textDateTimeEntry.ReadOnly = true;
			this.textDateTimeEntry.Size = new System.Drawing.Size(147,20);
			this.textDateTimeEntry.TabIndex = 6;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(74,221);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(77,20);
			this.label3.TabIndex = 9;
			this.label3.Text = "Totals";
			this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textDebit
			// 
			this.textDebit.Location = new System.Drawing.Point(153,218);
			this.textDebit.Name = "textDebit";
			this.textDebit.ReadOnly = true;
			this.textDebit.Size = new System.Drawing.Size(70,20);
			this.textDebit.TabIndex = 10;
			// 
			// textCredit
			// 
			this.textCredit.Location = new System.Drawing.Point(223,218);
			this.textCredit.Name = "textCredit";
			this.textCredit.ReadOnly = true;
			this.textCredit.Size = new System.Drawing.Size(70,20);
			this.textCredit.TabIndex = 11;
			// 
			// checkMemoSame
			// 
			this.checkMemoSame.Location = new System.Drawing.Point(328,218);
			this.checkMemoSame.Name = "checkMemoSame";
			this.checkMemoSame.Size = new System.Drawing.Size(165,20);
			this.checkMemoSame.TabIndex = 12;
			this.checkMemoSame.Text = "Memo Same For All";
			this.checkMemoSame.UseVisualStyleBackColor = true;
			// 
			// checkSimple
			// 
			this.checkSimple.Location = new System.Drawing.Point(392,7);
			this.checkSimple.Name = "checkSimple";
			this.checkSimple.Size = new System.Drawing.Size(154,20);
			this.checkSimple.TabIndex = 14;
			this.checkSimple.Text = "Simple";
			this.checkSimple.UseVisualStyleBackColor = true;
			this.checkSimple.Click += new System.EventHandler(this.checkSimple_Click);
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(8,37);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(100,20);
			this.label5.TabIndex = 21;
			this.label5.Text = "Other Account";
			this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(8,65);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(100,20);
			this.label4.TabIndex = 19;
			this.label4.Text = "Memo";
			this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(7,11);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(100,20);
			this.label6.TabIndex = 17;
			this.label6.Text = "Amount";
			this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// panelSimple
			// 
			this.panelSimple.Controls.Add(this.butChange);
			this.panelSimple.Controls.Add(this.textAccount);
			this.panelSimple.Controls.Add(this.textMemo);
			this.panelSimple.Controls.Add(this.textCheckNumber);
			this.panelSimple.Controls.Add(this.label7);
			this.panelSimple.Controls.Add(this.textAmount);
			this.panelSimple.Controls.Add(this.label5);
			this.panelSimple.Controls.Add(this.label6);
			this.panelSimple.Controls.Add(this.label4);
			this.panelSimple.Location = new System.Drawing.Point(21,81);
			this.panelSimple.Name = "panelSimple";
			this.panelSimple.Size = new System.Drawing.Size(494,186);
			this.panelSimple.TabIndex = 16;
			// 
			// butChange
			// 
			this.butChange.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butChange.Autosize = true;
			this.butChange.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butChange.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butChange.CornerRadius = 4F;
			this.butChange.Location = new System.Drawing.Point(347,31);
			this.butChange.Name = "butChange";
			this.butChange.Size = new System.Drawing.Size(75,26);
			this.butChange.TabIndex = 28;
			this.butChange.Text = "Change";
			this.butChange.Click += new System.EventHandler(this.butChange_Click);
			// 
			// textAccount
			// 
			this.textAccount.Location = new System.Drawing.Point(111,34);
			this.textAccount.Name = "textAccount";
			this.textAccount.ReadOnly = true;
			this.textAccount.Size = new System.Drawing.Size(230,20);
			this.textAccount.TabIndex = 27;
			// 
			// textMemo
			// 
			this.textMemo.Location = new System.Drawing.Point(111,62);
			this.textMemo.Multiline = true;
			this.textMemo.Name = "textMemo";
			this.textMemo.Size = new System.Drawing.Size(230,43);
			this.textMemo.TabIndex = 25;
			// 
			// textCheckNumber
			// 
			this.textCheckNumber.Location = new System.Drawing.Point(111,111);
			this.textCheckNumber.Name = "textCheckNumber";
			this.textCheckNumber.Size = new System.Drawing.Size(133,20);
			this.textCheckNumber.TabIndex = 24;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(8,114);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(100,20);
			this.label7.TabIndex = 23;
			this.label7.Text = "Check Number";
			this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textAmount
			// 
			this.textAmount.Location = new System.Drawing.Point(111,8);
			this.textAmount.Name = "textAmount";
			this.textAmount.Size = new System.Drawing.Size(89,20);
			this.textAmount.TabIndex = 18;
			// 
			// panelCompound
			// 
			this.panelCompound.Controls.Add(this.butAdd);
			this.panelCompound.Controls.Add(this.gridMain);
			this.panelCompound.Controls.Add(this.label3);
			this.panelCompound.Controls.Add(this.textDebit);
			this.panelCompound.Controls.Add(this.textCredit);
			this.panelCompound.Controls.Add(this.checkMemoSame);
			this.panelCompound.Location = new System.Drawing.Point(42,81);
			this.panelCompound.Name = "panelCompound";
			this.panelCompound.Size = new System.Drawing.Size(504,262);
			this.panelCompound.TabIndex = 17;
			// 
			// 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(3,216);
			this.butAdd.Name = "butAdd";
			this.butAdd.Size = new System.Drawing.Size(75,26);
			this.butAdd.TabIndex = 13;
			this.butAdd.Text = "Add";
			this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
			// 
			// gridMain
			// 
			this.gridMain.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(3,10);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(490,199);
			this.gridMain.TabIndex = 2;
			this.gridMain.Title = "Splits";
			this.gridMain.TranslationName = "TableTransSplits";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// groupBox1
			// 
			this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.groupBox1.Controls.Add(this.label9);
			this.groupBox1.Controls.Add(this.label8);
			this.groupBox1.Controls.Add(this.textSourcePay);
			this.groupBox1.Controls.Add(this.butAttachPay);
			this.groupBox1.Controls.Add(this.textSourceDeposit);
			this.groupBox1.Controls.Add(this.butAttachDep);
			this.groupBox1.Location = new System.Drawing.Point(119,367);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(416,80);
			this.groupBox1.TabIndex = 18;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Source Documents";
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(6,48);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(87,20);
			this.label9.TabIndex = 12;
			this.label9.Text = "Payment";
			this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(6,19);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(87,20);
			this.label8.TabIndex = 11;
			this.label8.Text = "Deposit";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textSourcePay
			// 
			this.textSourcePay.Location = new System.Drawing.Point(95,49);
			this.textSourcePay.Multiline = true;
			this.textSourcePay.Name = "textSourcePay";
			this.textSourcePay.ReadOnly = true;
			this.textSourcePay.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.textSourcePay.Size = new System.Drawing.Size(231,20);
			this.textSourcePay.TabIndex = 10;
			// 
			// butAttachPay
			// 
			this.butAttachPay.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butAttachPay.Autosize = true;
			this.butAttachPay.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAttachPay.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAttachPay.CornerRadius = 4F;
			this.butAttachPay.Location = new System.Drawing.Point(329,46);
			this.butAttachPay.Name = "butAttachPay";
			this.butAttachPay.Size = new System.Drawing.Size(80,26);
			this.butAttachPay.TabIndex = 9;
			this.butAttachPay.Text = "Attach";
			this.butAttachPay.Click += new System.EventHandler(this.butAttachPay_Click);
			// 
			// textSourceDeposit
			// 
			this.textSourceDeposit.Location = new System.Drawing.Point(95,20);
			this.textSourceDeposit.Name = "textSourceDeposit";
			this.textSourceDeposit.ReadOnly = true;
			this.textSourceDeposit.Size = new System.Drawing.Size(231,20);
			this.textSourceDeposit.TabIndex = 8;
			// 
			// butAttachDep
			// 
			this.butAttachDep.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butAttachDep.Autosize = true;
			this.butAttachDep.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAttachDep.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAttachDep.CornerRadius = 4F;
			this.butAttachDep.Location = new System.Drawing.Point(329,17);
			this.butAttachDep.Name = "butAttachDep";
			this.butAttachDep.Size = new System.Drawing.Size(80,26);
			this.butAttachDep.TabIndex = 7;
			this.butAttachDep.Text = "Attach";
			this.butAttachDep.Click += new System.EventHandler(this.butAttachDep_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(31,414);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(75,26);
			this.butDelete.TabIndex = 8;
			this.butDelete.Text = "Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// textDate
			// 
			this.textDate.Location = new System.Drawing.Point(132,31);
			this.textDate.Name = "textDate";
			this.textDate.Size = new System.Drawing.Size(100,20);
			this.textDate.TabIndex = 3;
			// 
			// 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(568,384);
			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);
			// 
			// 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(568,413);
			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);
			// 
			// labelReconcile
			// 
			this.labelReconcile.Location = new System.Drawing.Point(9,57);
			this.labelReconcile.Name = "labelReconcile";
			this.labelReconcile.Size = new System.Drawing.Size(120,20);
			this.labelReconcile.TabIndex = 19;
			this.labelReconcile.Text = "Reconcile Date";
			this.labelReconcile.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.labelReconcile.Visible = false;
			// 
			// textReconcile
			// 
			this.textReconcile.Location = new System.Drawing.Point(132,54);
			this.textReconcile.Name = "textReconcile";
			this.textReconcile.ReadOnly = true;
			this.textReconcile.Size = new System.Drawing.Size(100,20);
			this.textReconcile.TabIndex = 20;
			this.textReconcile.Visible = false;
			// 
			// FormTransactionEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(677,459);
			this.Controls.Add(this.textReconcile);
			this.Controls.Add(this.labelReconcile);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.panelSimple);
			this.Controls.Add(this.panelCompound);
			this.Controls.Add(this.checkSimple);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.textDateTimeEntry);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.textDate);
			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 = "FormTransactionEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Transaction";
			this.Load += new System.EventHandler(this.FormTransactionEdit_Load);
			this.panelSimple.ResumeLayout(false);
			this.panelSimple.PerformLayout();
			this.panelCompound.ResumeLayout(false);
			this.panelCompound.PerformLayout();
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 23
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(FormInsFilingCodeSubtypeEdit));
			this.label1=new System.Windows.Forms.Label();
			this.textDescription=new System.Windows.Forms.TextBox();
			this.butDelete=new OpenDental.UI.Button();
			this.butOK=new OpenDental.UI.Button();
			this.butCancel=new OpenDental.UI.Button();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location=new System.Drawing.Point(9,21);
			this.label1.Name="label1";
			this.label1.Size=new System.Drawing.Size(148,17);
			this.label1.TabIndex=2;
			this.label1.Text="Description";
			this.label1.TextAlign=System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDescription
			// 
			this.textDescription.Location=new System.Drawing.Point(160,20);
			this.textDescription.Name="textDescription";
			this.textDescription.Size=new System.Drawing.Size(291,20);
			this.textDescription.TabIndex=0;
			// 
			// 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(27,102);
			this.butDelete.Name="butDelete";
			this.butDelete.Size=new System.Drawing.Size(81,26);
			this.butDelete.TabIndex=4;
			this.butDelete.Text="Delete";
			this.butDelete.Click+=new System.EventHandler(this.butDelete_Click);
			// 
			// butOK
			// 
			this.butOK.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(412,102);
			this.butOK.Name="butOK";
			this.butOK.Size=new System.Drawing.Size(75,26);
			this.butOK.TabIndex=9;
			this.butOK.Text="&OK";
			this.butOK.Click+=new System.EventHandler(this.butOK_Click);
			// 
			// butCancel
			// 
			this.butCancel.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(503,102);
			this.butCancel.Name="butCancel";
			this.butCancel.Size=new System.Drawing.Size(75,26);
			this.butCancel.TabIndex=10;
			this.butCancel.Text="&Cancel";
			this.butCancel.Click+=new System.EventHandler(this.butCancel_Click);
			// 
			// FormInsFilingCodeSubtypeEdit
			// 
			this.AutoScaleBaseSize=new System.Drawing.Size(5,13);
			this.ClientSize=new System.Drawing.Size(604,146);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.textDescription);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.label1);
			this.Icon=((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox=false;
			this.MinimizeBox=false;
			this.Name="FormInsFilingCodeSubtypeEdit";
			this.ShowInTaskbar=false;
			this.StartPosition=System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text="Edit Claim Filing Code Subtype";
			this.Load+=new System.EventHandler(this.FormInsFilingCodeEdit_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 24
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormClaimsSend));
     this.label6            = new System.Windows.Forms.Label();
     this.contextMenuStatus = new System.Windows.Forms.ContextMenu();
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.calendarTo        = new System.Windows.Forms.MonthCalendar();
     this.calendarFrom      = new System.Windows.Forms.MonthCalendar();
     this.label2            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.panelSplitter     = new System.Windows.Forms.Panel();
     this.panelHistory      = new System.Windows.Forms.Panel();
     this.gridHistory       = new OpenDental.UI.ODGrid();
     this.panel1            = new System.Windows.Forms.Panel();
     this.ToolBarHistory    = new OpenDental.UI.ODToolBar();
     this.butDropTo         = new OpenDental.UI.Button();
     this.butDropFrom       = new OpenDental.UI.Button();
     this.textDateFrom      = new OpenDental.ValidDate();
     this.textDateTo        = new OpenDental.ValidDate();
     this.gridMain          = new OpenDental.UI.ODGrid();
     this.ToolBarMain       = new OpenDental.UI.ODToolBar();
     this.panelHistory.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label6
     //
     this.label6.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(107, -44);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(112, 44);
     this.label6.TabIndex  = 21;
     this.label6.Text      = "Insurance Claims";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // calendarTo
     //
     this.calendarTo.Location          = new System.Drawing.Point(196, 29);
     this.calendarTo.MaxSelectionCount = 1;
     this.calendarTo.Name          = "calendarTo";
     this.calendarTo.TabIndex      = 42;
     this.calendarTo.Visible       = false;
     this.calendarTo.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarTo_DateSelected);
     //
     // calendarFrom
     //
     this.calendarFrom.Location          = new System.Drawing.Point(6, 29);
     this.calendarFrom.MaxSelectionCount = 1;
     this.calendarFrom.Name          = "calendarFrom";
     this.calendarFrom.TabIndex      = 39;
     this.calendarFrom.Visible       = false;
     this.calendarFrom.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarFrom_DateSelected);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(196, 5);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 18);
     this.label2.TabIndex  = 36;
     this.label2.Text      = "To";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(1, 5);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(75, 18);
     this.label1.TabIndex  = 34;
     this.label1.Text      = "From";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // panelSplitter
     //
     this.panelSplitter.Cursor     = System.Windows.Forms.Cursors.SizeNS;
     this.panelSplitter.Location   = new System.Drawing.Point(2, 398);
     this.panelSplitter.Name       = "panelSplitter";
     this.panelSplitter.Size       = new System.Drawing.Size(961, 6);
     this.panelSplitter.TabIndex   = 50;
     this.panelSplitter.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseDown);
     this.panelSplitter.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseMove);
     this.panelSplitter.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseUp);
     //
     // panelHistory
     //
     this.panelHistory.Controls.Add(this.calendarFrom);
     this.panelHistory.Controls.Add(this.label1);
     this.panelHistory.Controls.Add(this.calendarTo);
     this.panelHistory.Controls.Add(this.gridHistory);
     this.panelHistory.Controls.Add(this.panel1);
     this.panelHistory.Controls.Add(this.butDropTo);
     this.panelHistory.Controls.Add(this.butDropFrom);
     this.panelHistory.Controls.Add(this.textDateFrom);
     this.panelHistory.Controls.Add(this.label2);
     this.panelHistory.Controls.Add(this.textDateTo);
     this.panelHistory.Location = new System.Drawing.Point(0, 403);
     this.panelHistory.Name     = "panelHistory";
     this.panelHistory.Size     = new System.Drawing.Size(972, 286);
     this.panelHistory.TabIndex = 51;
     //
     // gridHistory
     //
     this.gridHistory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.gridHistory.HScrollVisible   = false;
     this.gridHistory.Location         = new System.Drawing.Point(4, 31);
     this.gridHistory.Name             = "gridHistory";
     this.gridHistory.ScrollValue      = 0;
     this.gridHistory.SelectionMode    = System.Windows.Forms.SelectionMode.MultiExtended;
     this.gridHistory.Size             = new System.Drawing.Size(959, 252);
     this.gridHistory.TabIndex         = 33;
     this.gridHistory.Title            = "History";
     this.gridHistory.TranslationName  = "TableClaimHistory";
     this.gridHistory.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridHistory_CellDoubleClick);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
     this.panel1.Controls.Add(this.ToolBarHistory);
     this.panel1.Location = new System.Drawing.Point(387, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(591, 30);
     this.panel1.TabIndex = 44;
     //
     // ToolBarHistory
     //
     this.ToolBarHistory.BackColor    = System.Drawing.SystemColors.Control;
     this.ToolBarHistory.ImageList    = this.imageList1;
     this.ToolBarHistory.Location     = new System.Drawing.Point(1, 1);
     this.ToolBarHistory.Name         = "ToolBarHistory";
     this.ToolBarHistory.Size         = new System.Drawing.Size(584, 29);
     this.ToolBarHistory.TabIndex     = 43;
     this.ToolBarHistory.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarHistory_ButtonClick);
     //
     // butDropTo
     //
     this.butDropTo.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDropTo.Autosize            = true;
     this.butDropTo.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDropTo.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDropTo.Location            = new System.Drawing.Point(352, 4);
     this.butDropTo.Name     = "butDropTo";
     this.butDropTo.Size     = new System.Drawing.Size(22, 23);
     this.butDropTo.TabIndex = 41;
     this.butDropTo.Text     = "V";
     this.butDropTo.UseVisualStyleBackColor = true;
     this.butDropTo.Click += new System.EventHandler(this.butDropTo_Click);
     //
     // butDropFrom
     //
     this.butDropFrom.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDropFrom.Autosize            = true;
     this.butDropFrom.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDropFrom.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDropFrom.Location            = new System.Drawing.Point(162, 4);
     this.butDropFrom.Name     = "butDropFrom";
     this.butDropFrom.Size     = new System.Drawing.Size(22, 23);
     this.butDropFrom.TabIndex = 40;
     this.butDropFrom.Text     = "V";
     this.butDropFrom.UseVisualStyleBackColor = true;
     this.butDropFrom.Click += new System.EventHandler(this.butDropFrom_Click);
     //
     // textDateFrom
     //
     this.textDateFrom.Location = new System.Drawing.Point(79, 6);
     this.textDateFrom.Name     = "textDateFrom";
     this.textDateFrom.Size     = new System.Drawing.Size(81, 20);
     this.textDateFrom.TabIndex = 35;
     //
     // textDateTo
     //
     this.textDateTo.Location = new System.Drawing.Point(269, 6);
     this.textDateTo.Name     = "textDateTo";
     this.textDateTo.Size     = new System.Drawing.Size(81, 20);
     this.textDateTo.TabIndex = 37;
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(4, 31);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.SelectionMode    = System.Windows.Forms.SelectionMode.MultiExtended;
     this.gridMain.Size             = new System.Drawing.Size(959, 368);
     this.gridMain.TabIndex         = 32;
     this.gridMain.Title            = "Claims Waiting to Send";
     this.gridMain.TranslationName  = "TableQueue";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // ToolBarMain
     //
     this.ToolBarMain.Dock         = System.Windows.Forms.DockStyle.Top;
     this.ToolBarMain.ImageList    = this.imageList1;
     this.ToolBarMain.Location     = new System.Drawing.Point(0, 0);
     this.ToolBarMain.Name         = "ToolBarMain";
     this.ToolBarMain.Size         = new System.Drawing.Size(971, 29);
     this.ToolBarMain.TabIndex     = 31;
     this.ToolBarMain.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarMain_ButtonClick);
     //
     // FormClaimsSend
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(971, 691);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.panelHistory);
     this.Controls.Add(this.panelSplitter);
     this.Controls.Add(this.ToolBarMain);
     this.Controls.Add(this.label6);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormClaimsSend";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Send Claims";
     this.Load         += new System.EventHandler(this.FormPendingClaims_Load);
     this.panelHistory.ResumeLayout(false);
     this.panelHistory.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 25
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProvEdit));
     this.checkIsHidden = new System.Windows.Forms.CheckBox();
     this.labelColor = new System.Windows.Forms.Label();
     this.butColor = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.checkIsSecondary = new System.Windows.Forms.CheckBox();
     this.listFeeSched = new System.Windows.Forms.ListBox();
     this.listSpecialty = new System.Windows.Forms.ListBox();
     this.butOK = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.textAbbr = new System.Windows.Forms.TextBox();
     this.textStateLicense = new System.Windows.Forms.TextBox();
     this.textSSN = new System.Windows.Forms.TextBox();
     this.textSuffix = new System.Windows.Forms.TextBox();
     this.textMI = new System.Windows.Forms.TextBox();
     this.textFName = new System.Windows.Forms.TextBox();
     this.textLName = new System.Windows.Forms.TextBox();
     this.textDEANum = new System.Windows.Forms.TextBox();
     this.colorDialog1 = new System.Windows.Forms.ColorDialog();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.radioTIN = new System.Windows.Forms.RadioButton();
     this.radioSSN = new System.Windows.Forms.RadioButton();
     this.checkSigOnFile = new System.Windows.Forms.CheckBox();
     this.textMedicaidID = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.tbProvIdent = new OpenDental.TableProvIdent();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.butAdd = new OpenDental.UI.Button();
     this.butDelete = new OpenDental.UI.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.butOutlineColor = new System.Windows.Forms.Button();
     this.comboSchoolClass = new System.Windows.Forms.ComboBox();
     this.labelSchoolClass = new System.Windows.Forms.Label();
     this.textNationalProvID = new System.Windows.Forms.TextBox();
     this.labelNPI = new System.Windows.Forms.Label();
     this.textCanadianOfficeNum = new System.Windows.Forms.TextBox();
     this.labelCanadianOfficeNum = new System.Windows.Forms.Label();
     this.groupAnesthProvType = new System.Windows.Forms.GroupBox();
     this.radAsstCirc = new System.Windows.Forms.RadioButton();
     this.radAnesthSurg = new System.Windows.Forms.RadioButton();
     this.radNone = new System.Windows.Forms.RadioButton();
     this.labelAnesthProvs = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.textTaxonomyOverride = new System.Windows.Forms.TextBox();
     this.checkIsCDAnet = new System.Windows.Forms.CheckBox();
     this.textEcwID = new System.Windows.Forms.TextBox();
     this.labelEcwID = new System.Windows.Forms.Label();
     this.butEhrKey = new OpenDental.UI.Button();
     this.textEhrKey = new System.Windows.Forms.TextBox();
     this.labelEhrKey = new System.Windows.Forms.Label();
     this.textStateRxID = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.checkEhrHasReportAccess = new System.Windows.Forms.CheckBox();
     this.checkIsNotPerson = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupAnesthProvType.SuspendLayout();
     this.SuspendLayout();
     //
     // checkIsHidden
     //
     this.checkIsHidden.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsHidden.Location = new System.Drawing.Point(371,458);
     this.checkIsHidden.Name = "checkIsHidden";
     this.checkIsHidden.Size = new System.Drawing.Size(158,17);
     this.checkIsHidden.TabIndex = 12;
     this.checkIsHidden.Text = "Hidden";
     //
     // labelColor
     //
     this.labelColor.Location = new System.Drawing.Point(6,422);
     this.labelColor.Name = "labelColor";
     this.labelColor.Size = new System.Drawing.Size(129,16);
     this.labelColor.TabIndex = 10;
     this.labelColor.Text = "Appointment Color";
     this.labelColor.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butColor
     //
     this.butColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.butColor.Location = new System.Drawing.Point(136,419);
     this.butColor.Name = "butColor";
     this.butColor.Size = new System.Drawing.Size(30,20);
     this.butColor.TabIndex = 13;
     this.butColor.Click += new System.EventHandler(this.butColor_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10,39);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(125,14);
     this.label1.TabIndex = 12;
     this.label1.Text = "Abbreviation";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(-1,239);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(137,14);
     this.label3.TabIndex = 14;
     this.label3.Text = "State License Number";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(526,14);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(116,14);
     this.label5.TabIndex = 16;
     this.label5.Text = "Specialty";
     this.label5.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(369,14);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(105,14);
     this.label6.TabIndex = 17;
     this.label6.Text = "Fee Schedule";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(28,108);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(102,14);
     this.label7.TabIndex = 18;
     this.label7.Text = "MI";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(8,85);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(127,14);
     this.label8.TabIndex = 19;
     this.label8.Text = "First Name";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(5,131);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(130,14);
     this.label9.TabIndex = 20;
     this.label9.Text = "Suffix (DMD,DDS)";
     this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(2,62);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(132,14);
     this.label10.TabIndex = 21;
     this.label10.Text = "Last Name";
     this.label10.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(8,262);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(126,14);
     this.label11.TabIndex = 22;
     this.label11.Text = "DEA Number";
     this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkIsSecondary
     //
     this.checkIsSecondary.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsSecondary.Location = new System.Drawing.Point(371,404);
     this.checkIsSecondary.Name = "checkIsSecondary";
     this.checkIsSecondary.Size = new System.Drawing.Size(155,17);
     this.checkIsSecondary.TabIndex = 10;
     this.checkIsSecondary.Text = "Secondary Provider (Hyg)";
     //
     // listFeeSched
     //
     this.listFeeSched.Location = new System.Drawing.Point(371,31);
     this.listFeeSched.Name = "listFeeSched";
     this.listFeeSched.Size = new System.Drawing.Size(108,173);
     this.listFeeSched.TabIndex = 13;
     //
     // listSpecialty
     //
     this.listSpecialty.Items.AddRange(new object[] {
     "Dental General Practice",
     "Dental Hygienist",
     "Endodontics",
     "Pediatric Dentistry",
     "Periodontics",
     "Prosthodontics",
     "Orthodontics",
     "Denturist",
     "Surgery, Oral & Maxillofacial",
     "Dental Assistant",
     "Dental Laboratory Technician",
     "Pathology, Oral & MaxFac",
     "Public Health",
     "Radiology"});
     this.listSpecialty.Location = new System.Drawing.Point(526,31);
     this.listSpecialty.Name = "listSpecialty";
     this.listSpecialty.Size = new System.Drawing.Size(154,186);
     this.listSpecialty.TabIndex = 17;
     //
     // 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(746,582);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(75,24);
     this.butOK.TabIndex = 15;
     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(746,615);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 16;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // textAbbr
     //
     this.textAbbr.Location = new System.Drawing.Point(136,35);
     this.textAbbr.MaxLength = 255;
     this.textAbbr.Name = "textAbbr";
     this.textAbbr.Size = new System.Drawing.Size(121,20);
     this.textAbbr.TabIndex = 0;
     //
     // textStateLicense
     //
     this.textStateLicense.Location = new System.Drawing.Point(136,235);
     this.textStateLicense.MaxLength = 15;
     this.textStateLicense.Name = "textStateLicense";
     this.textStateLicense.Size = new System.Drawing.Size(100,20);
     this.textStateLicense.TabIndex = 5;
     //
     // textSSN
     //
     this.textSSN.Location = new System.Drawing.Point(8,52);
     this.textSSN.Name = "textSSN";
     this.textSSN.Size = new System.Drawing.Size(100,20);
     this.textSSN.TabIndex = 2;
     //
     // textSuffix
     //
     this.textSuffix.Location = new System.Drawing.Point(136,127);
     this.textSuffix.MaxLength = 100;
     this.textSuffix.Name = "textSuffix";
     this.textSuffix.Size = new System.Drawing.Size(104,20);
     this.textSuffix.TabIndex = 4;
     //
     // textMI
     //
     this.textMI.Location = new System.Drawing.Point(136,104);
     this.textMI.MaxLength = 100;
     this.textMI.Name = "textMI";
     this.textMI.Size = new System.Drawing.Size(63,20);
     this.textMI.TabIndex = 3;
     //
     // textFName
     //
     this.textFName.Location = new System.Drawing.Point(136,81);
     this.textFName.MaxLength = 100;
     this.textFName.Name = "textFName";
     this.textFName.Size = new System.Drawing.Size(161,20);
     this.textFName.TabIndex = 2;
     //
     // textLName
     //
     this.textLName.Location = new System.Drawing.Point(136,58);
     this.textLName.MaxLength = 100;
     this.textLName.Name = "textLName";
     this.textLName.Size = new System.Drawing.Size(161,20);
     this.textLName.TabIndex = 1;
     //
     // textDEANum
     //
     this.textDEANum.Location = new System.Drawing.Point(136,258);
     this.textDEANum.MaxLength = 15;
     this.textDEANum.Name = "textDEANum";
     this.textDEANum.Size = new System.Drawing.Size(100,20);
     this.textDEANum.TabIndex = 6;
     //
     // colorDialog1
     //
     this.colorDialog1.FullOpen = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioTIN);
     this.groupBox1.Controls.Add(this.radioSSN);
     this.groupBox1.Controls.Add(this.textSSN);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location = new System.Drawing.Point(128,152);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(156,80);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "SSN or TIN (no dashes)";
     //
     // radioTIN
     //
     this.radioTIN.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radioTIN.Location = new System.Drawing.Point(9,34);
     this.radioTIN.Name = "radioTIN";
     this.radioTIN.Size = new System.Drawing.Size(135,15);
     this.radioTIN.TabIndex = 1;
     this.radioTIN.Text = "TIN";
     this.radioTIN.Click += new System.EventHandler(this.radioTIN_Click);
     //
     // radioSSN
     //
     this.radioSSN.Checked = true;
     this.radioSSN.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radioSSN.Location = new System.Drawing.Point(9,17);
     this.radioSSN.Name = "radioSSN";
     this.radioSSN.Size = new System.Drawing.Size(104,14);
     this.radioSSN.TabIndex = 0;
     this.radioSSN.TabStop = true;
     this.radioSSN.Text = "SSN";
     this.radioSSN.Click += new System.EventHandler(this.radioSSN_Click);
     //
     // checkSigOnFile
     //
     this.checkSigOnFile.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkSigOnFile.Location = new System.Drawing.Point(371,422);
     this.checkSigOnFile.Name = "checkSigOnFile";
     this.checkSigOnFile.Size = new System.Drawing.Size(121,17);
     this.checkSigOnFile.TabIndex = 11;
     this.checkSigOnFile.Text = "Signature on File";
     //
     // textMedicaidID
     //
     this.textMedicaidID.Location = new System.Drawing.Point(136,304);
     this.textMedicaidID.MaxLength = 20;
     this.textMedicaidID.Name = "textMedicaidID";
     this.textMedicaidID.Size = new System.Drawing.Size(100,20);
     this.textMedicaidID.TabIndex = 7;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(5,308);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(130,14);
     this.label13.TabIndex = 42;
     this.label13.Text = "Medicaid ID";
     this.label13.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // tbProvIdent
     //
     this.tbProvIdent.BackColor = System.Drawing.SystemColors.Window;
     this.tbProvIdent.Location = new System.Drawing.Point(7,58);
     this.tbProvIdent.Name = "tbProvIdent";
     this.tbProvIdent.ScrollValue = 211;
     this.tbProvIdent.SelectedIndices = new int[0];
     this.tbProvIdent.SelectionMode = System.Windows.Forms.SelectionMode.One;
     this.tbProvIdent.Size = new System.Drawing.Size(319,88);
     this.tbProvIdent.TabIndex = 43;
     this.tbProvIdent.CellDoubleClicked += new OpenDental.ContrTable.CellEventHandler(this.tbProvIdent_CellDoubleClicked);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.butAdd);
     this.groupBox2.Controls.Add(this.butDelete);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.tbProvIdent);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location = new System.Drawing.Point(128,496);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(496,157);
     this.groupBox2.TabIndex = 16;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Supplemental Provider Identifiers";
     //
     // 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(358,59);
     this.butAdd.Name = "butAdd";
     this.butAdd.Size = new System.Drawing.Size(90,24);
     this.butAdd.TabIndex = 46;
     this.butAdd.Text = "Add";
     this.butAdd.Click += new System.EventHandler(this.butAdd_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.Image = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location = new System.Drawing.Point(358,94);
     this.butDelete.Name = "butDelete";
     this.butDelete.Size = new System.Drawing.Size(90,24);
     this.butDelete.TabIndex = 45;
     this.butDelete.Text = "Delete";
     this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10,20);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(481,32);
     this.label2.TabIndex = 44;
     this.label2.Text = "This is where you store provider IDs assigned by individual insurance companies, " +
     "especially BC/BS.";
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(6,447);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(129,16);
     this.label14.TabIndex = 45;
     this.label14.Text = "Highlight Outline Color";
     this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butOutlineColor
     //
     this.butOutlineColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.butOutlineColor.Location = new System.Drawing.Point(136,444);
     this.butOutlineColor.Name = "butOutlineColor";
     this.butOutlineColor.Size = new System.Drawing.Size(30,20);
     this.butOutlineColor.TabIndex = 14;
     this.butOutlineColor.Click += new System.EventHandler(this.butOutlineColor_Click);
     //
     // comboSchoolClass
     //
     this.comboSchoolClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSchoolClass.Location = new System.Drawing.Point(135,469);
     this.comboSchoolClass.MaxDropDownItems = 30;
     this.comboSchoolClass.Name = "comboSchoolClass";
     this.comboSchoolClass.Size = new System.Drawing.Size(130,21);
     this.comboSchoolClass.TabIndex = 15;
     //
     // labelSchoolClass
     //
     this.labelSchoolClass.Location = new System.Drawing.Point(8,472);
     this.labelSchoolClass.Name = "labelSchoolClass";
     this.labelSchoolClass.Size = new System.Drawing.Size(125,16);
     this.labelSchoolClass.TabIndex = 89;
     this.labelSchoolClass.Text = "Dental School Class";
     this.labelSchoolClass.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textNationalProvID
     //
     this.textNationalProvID.Location = new System.Drawing.Point(136,327);
     this.textNationalProvID.MaxLength = 20;
     this.textNationalProvID.Name = "textNationalProvID";
     this.textNationalProvID.Size = new System.Drawing.Size(100,20);
     this.textNationalProvID.TabIndex = 8;
     //
     // labelNPI
     //
     this.labelNPI.Location = new System.Drawing.Point(5,331);
     this.labelNPI.Name = "labelNPI";
     this.labelNPI.Size = new System.Drawing.Size(130,14);
     this.labelNPI.TabIndex = 92;
     this.labelNPI.Text = "National Provider ID";
     this.labelNPI.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textCanadianOfficeNum
     //
     this.textCanadianOfficeNum.Location = new System.Drawing.Point(136,350);
     this.textCanadianOfficeNum.MaxLength = 20;
     this.textCanadianOfficeNum.Name = "textCanadianOfficeNum";
     this.textCanadianOfficeNum.Size = new System.Drawing.Size(100,20);
     this.textCanadianOfficeNum.TabIndex = 9;
     //
     // labelCanadianOfficeNum
     //
     this.labelCanadianOfficeNum.Location = new System.Drawing.Point(5,354);
     this.labelCanadianOfficeNum.Name = "labelCanadianOfficeNum";
     this.labelCanadianOfficeNum.Size = new System.Drawing.Size(130,14);
     this.labelCanadianOfficeNum.TabIndex = 94;
     this.labelCanadianOfficeNum.Text = "Office Number";
     this.labelCanadianOfficeNum.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // groupAnesthProvType
     //
     this.groupAnesthProvType.Controls.Add(this.radAsstCirc);
     this.groupAnesthProvType.Controls.Add(this.radAnesthSurg);
     this.groupAnesthProvType.Controls.Add(this.radNone);
     this.groupAnesthProvType.Controls.Add(this.labelAnesthProvs);
     this.groupAnesthProvType.Location = new System.Drawing.Point(359,270);
     this.groupAnesthProvType.Name = "groupAnesthProvType";
     this.groupAnesthProvType.Size = new System.Drawing.Size(347,83);
     this.groupAnesthProvType.TabIndex = 95;
     this.groupAnesthProvType.TabStop = false;
     this.groupAnesthProvType.Text = "Anesthesia Provider Groups (optional)";
     //
     // radAsstCirc
     //
     this.radAsstCirc.AutoSize = true;
     this.radAsstCirc.Location = new System.Drawing.Point(12,57);
     this.radAsstCirc.Name = "radAsstCirc";
     this.radAsstCirc.Size = new System.Drawing.Size(116,17);
     this.radAsstCirc.TabIndex = 9;
     this.radAsstCirc.Text = "Assistant/Circulator";
     this.radAsstCirc.UseVisualStyleBackColor = true;
     //
     // radAnesthSurg
     //
     this.radAnesthSurg.AutoSize = true;
     this.radAnesthSurg.Location = new System.Drawing.Point(12,37);
     this.radAnesthSurg.Name = "radAnesthSurg";
     this.radAnesthSurg.Size = new System.Drawing.Size(122,17);
     this.radAnesthSurg.TabIndex = 8;
     this.radAnesthSurg.Text = "Anesthetist/Surgeon";
     this.radAnesthSurg.UseVisualStyleBackColor = true;
     //
     // radNone
     //
     this.radNone.AutoSize = true;
     this.radNone.Checked = true;
     this.radNone.Location = new System.Drawing.Point(12,18);
     this.radNone.Name = "radNone";
     this.radNone.Size = new System.Drawing.Size(51,17);
     this.radNone.TabIndex = 7;
     this.radNone.TabStop = true;
     this.radNone.Text = "None";
     this.radNone.UseVisualStyleBackColor = true;
     //
     // labelAnesthProvs
     //
     this.labelAnesthProvs.Location = new System.Drawing.Point(153,22);
     this.labelAnesthProvs.Name = "labelAnesthProvs";
     this.labelAnesthProvs.Size = new System.Drawing.Size(188,52);
     this.labelAnesthProvs.TabIndex = 4;
     this.labelAnesthProvs.Text = "Assign this user to a group. This will populate the corresponding dropdowns on th" +
     "e Anesthetic Record.";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(523,221);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(154,14);
     this.label4.TabIndex = 96;
     this.label4.Text = "Taxonomy Code Override";
     this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textTaxonomyOverride
     //
     this.textTaxonomyOverride.Location = new System.Drawing.Point(526,237);
     this.textTaxonomyOverride.MaxLength = 255;
     this.textTaxonomyOverride.Name = "textTaxonomyOverride";
     this.textTaxonomyOverride.Size = new System.Drawing.Size(154,20);
     this.textTaxonomyOverride.TabIndex = 97;
     //
     // checkIsCDAnet
     //
     this.checkIsCDAnet.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsCDAnet.Location = new System.Drawing.Point(371,386);
     this.checkIsCDAnet.Name = "checkIsCDAnet";
     this.checkIsCDAnet.Size = new System.Drawing.Size(168,17);
     this.checkIsCDAnet.TabIndex = 99;
     this.checkIsCDAnet.Text = "Is CDAnet Member";
     this.checkIsCDAnet.Visible = false;
     //
     // textEcwID
     //
     this.textEcwID.Location = new System.Drawing.Point(136,12);
     this.textEcwID.MaxLength = 255;
     this.textEcwID.Name = "textEcwID";
     this.textEcwID.ReadOnly = true;
     this.textEcwID.Size = new System.Drawing.Size(121,20);
     this.textEcwID.TabIndex = 100;
     //
     // labelEcwID
     //
     this.labelEcwID.Location = new System.Drawing.Point(10,16);
     this.labelEcwID.Name = "labelEcwID";
     this.labelEcwID.Size = new System.Drawing.Size(125,14);
     this.labelEcwID.TabIndex = 101;
     this.labelEcwID.Text = "eCW ID";
     this.labelEcwID.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butEhrKey
     //
     this.butEhrKey.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butEhrKey.Autosize = true;
     this.butEhrKey.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butEhrKey.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butEhrKey.CornerRadius = 4F;
     this.butEhrKey.Location = new System.Drawing.Point(239,372);
     this.butEhrKey.Name = "butEhrKey";
     this.butEhrKey.Size = new System.Drawing.Size(25,22);
     this.butEhrKey.TabIndex = 102;
     this.butEhrKey.Text = "...";
     this.butEhrKey.Click += new System.EventHandler(this.butEhrKey_Click);
     //
     // textEhrKey
     //
     this.textEhrKey.Location = new System.Drawing.Point(136,373);
     this.textEhrKey.MaxLength = 15;
     this.textEhrKey.Name = "textEhrKey";
     this.textEhrKey.ReadOnly = true;
     this.textEhrKey.Size = new System.Drawing.Size(100,20);
     this.textEhrKey.TabIndex = 103;
     //
     // labelEhrKey
     //
     this.labelEhrKey.Location = new System.Drawing.Point(48,377);
     this.labelEhrKey.Name = "labelEhrKey";
     this.labelEhrKey.Size = new System.Drawing.Size(88,14);
     this.labelEhrKey.TabIndex = 104;
     this.labelEhrKey.Text = "EHR Key";
     this.labelEhrKey.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textStateRxID
     //
     this.textStateRxID.Location = new System.Drawing.Point(136,281);
     this.textStateRxID.MaxLength = 15;
     this.textStateRxID.Name = "textStateRxID";
     this.textStateRxID.Size = new System.Drawing.Size(100,20);
     this.textStateRxID.TabIndex = 105;
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(8,285);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(126,14);
     this.label12.TabIndex = 106;
     this.label12.Text = "State Rx ID";
     this.label12.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkEhrHasReportAccess
     //
     this.checkEhrHasReportAccess.AutoCheck = false;
     this.checkEhrHasReportAccess.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkEhrHasReportAccess.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkEhrHasReportAccess.Location = new System.Drawing.Point(11,398);
     this.checkEhrHasReportAccess.Name = "checkEhrHasReportAccess";
     this.checkEhrHasReportAccess.Size = new System.Drawing.Size(138,17);
     this.checkEhrHasReportAccess.TabIndex = 107;
     this.checkEhrHasReportAccess.Text = "EHR Reports";
     this.checkEhrHasReportAccess.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkEhrHasReportAccess.Visible = false;
     //
     // checkIsNotPerson
     //
     this.checkIsNotPerson.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsNotPerson.Location = new System.Drawing.Point(371,440);
     this.checkIsNotPerson.Name = "checkIsNotPerson";
     this.checkIsNotPerson.Size = new System.Drawing.Size(410,17);
     this.checkIsNotPerson.TabIndex = 108;
     this.checkIsNotPerson.Text = "Not a Person (for example, a dummy provider representing the organization)";
     //
     // FormProvEdit
     //
     this.AcceptButton = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.CancelButton = this.butCancel;
     this.ClientSize = new System.Drawing.Size(849,665);
     this.Controls.Add(this.checkIsNotPerson);
     this.Controls.Add(this.checkEhrHasReportAccess);
     this.Controls.Add(this.textStateRxID);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.textEhrKey);
     this.Controls.Add(this.labelEhrKey);
     this.Controls.Add(this.butEhrKey);
     this.Controls.Add(this.textEcwID);
     this.Controls.Add(this.labelEcwID);
     this.Controls.Add(this.checkIsCDAnet);
     this.Controls.Add(this.textTaxonomyOverride);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.groupAnesthProvType);
     this.Controls.Add(this.textCanadianOfficeNum);
     this.Controls.Add(this.labelCanadianOfficeNum);
     this.Controls.Add(this.textNationalProvID);
     this.Controls.Add(this.labelNPI);
     this.Controls.Add(this.comboSchoolClass);
     this.Controls.Add(this.labelSchoolClass);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.butOutlineColor);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.textMedicaidID);
     this.Controls.Add(this.textDEANum);
     this.Controls.Add(this.textLName);
     this.Controls.Add(this.textFName);
     this.Controls.Add(this.textMI);
     this.Controls.Add(this.textSuffix);
     this.Controls.Add(this.textStateLicense);
     this.Controls.Add(this.textAbbr);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.checkSigOnFile);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.listSpecialty);
     this.Controls.Add(this.listFeeSched);
     this.Controls.Add(this.checkIsSecondary);
     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.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.checkIsHidden);
     this.Controls.Add(this.labelColor);
     this.Controls.Add(this.butColor);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormProvEdit";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Provider";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.FormProvEdit_Closing);
     this.Load += new System.EventHandler(this.FormProvEdit_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupAnesthProvType.ResumeLayout(false);
     this.groupAnesthProvType.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 26
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(FormReferralsPatient));
     this.gridMain = new OpenDental.UI.ODGrid();
     this.butAddFrom = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.butSlip = new OpenDental.UI.Button();
     this.butAddTo = new OpenDental.UI.Button();
     this.checkShowAll = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // 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.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size = new System.Drawing.Size(719,261);
     this.gridMain.TabIndex = 74;
     this.gridMain.Title = "Referrals Attached";
     this.gridMain.TranslationName = "TableRefList";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butAddFrom
     //
     this.butAddFrom.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAddFrom.Autosize = true;
     this.butAddFrom.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddFrom.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddFrom.CornerRadius = 4F;
     this.butAddFrom.Image = global::OpenDental.Properties.Resources.Add;
     this.butAddFrom.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddFrom.Location = new System.Drawing.Point(12,10);
     this.butAddFrom.Name = "butAddFrom";
     this.butAddFrom.Size = new System.Drawing.Size(109,24);
     this.butAddFrom.TabIndex = 72;
     this.butAddFrom.Text = "Referred From";
     this.butAddFrom.Click += new System.EventHandler(this.butAddFrom_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(656,317);
     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);
     //
     // butSlip
     //
     this.butSlip.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butSlip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butSlip.Autosize = true;
     this.butSlip.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSlip.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSlip.CornerRadius = 4F;
     this.butSlip.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSlip.Location = new System.Drawing.Point(12,317);
     this.butSlip.Name = "butSlip";
     this.butSlip.Size = new System.Drawing.Size(86,24);
     this.butSlip.TabIndex = 90;
     this.butSlip.Text = "Referral Slip";
     this.butSlip.Click += new System.EventHandler(this.butSlip_Click);
     //
     // butAddTo
     //
     this.butAddTo.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAddTo.Autosize = true;
     this.butAddTo.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddTo.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddTo.CornerRadius = 4F;
     this.butAddTo.Image = global::OpenDental.Properties.Resources.Add;
     this.butAddTo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddTo.Location = new System.Drawing.Point(127,10);
     this.butAddTo.Name = "butAddTo";
     this.butAddTo.Size = new System.Drawing.Size(94,24);
     this.butAddTo.TabIndex = 91;
     this.butAddTo.Text = "Refer To";
     this.butAddTo.Click += new System.EventHandler(this.butAddTo_Click);
     //
     // checkShowAll
     //
     this.checkShowAll.Location = new System.Drawing.Point(560,18);
     this.checkShowAll.Name = "checkShowAll";
     this.checkShowAll.Size = new System.Drawing.Size(162,20);
     this.checkShowAll.TabIndex = 92;
     this.checkShowAll.Text = "Show All";
     this.checkShowAll.UseVisualStyleBackColor = true;
     this.checkShowAll.Click += new System.EventHandler(this.checkShowAll_Click);
     //
     // FormReferralsPatient
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.ClientSize = new System.Drawing.Size(743,352);
     this.Controls.Add(this.checkShowAll);
     this.Controls.Add(this.butAddTo);
     this.Controls.Add(this.butSlip);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butAddFrom);
     this.Controls.Add(this.butClose);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormReferralsPatient";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Referrals for Patient";
     this.Load += new System.EventHandler(this.FormReferralsPatient_Load);
     this.ResumeLayout(false);
 }
Esempio n. 27
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(FormProcSelect));
     this.gridMain                  = new OpenDental.UI.ODGrid();
     this.butOK                     = new OpenDental.UI.Button();
     this.butCancel                 = new OpenDental.UI.Button();
     this.groupCreditLogic          = new System.Windows.Forms.GroupBox();
     this.radioExcludeAllCredits    = new System.Windows.Forms.RadioButton();
     this.radioOnlyAllocatedCredits = new System.Windows.Forms.RadioButton();
     this.radioIncludeAllCredits    = new System.Windows.Forms.RadioButton();
     this.groupBreakdown            = new System.Windows.Forms.GroupBox();
     this.labelTitleOther           = new System.Windows.Forms.Label();
     this.labelOther                = new System.Windows.Forms.Label();
     this.label12                   = new System.Windows.Forms.Label();
     this.labelCurrentSplits        = new System.Windows.Forms.Label();
     this.label8                    = new System.Windows.Forms.Label();
     this.label9                    = new System.Windows.Forms.Label();
     this.labelAmtEnd               = new System.Windows.Forms.Label();
     this.labelTitleWriteOffEst     = new System.Windows.Forms.Label();
     this.labelWriteOffEst          = new System.Windows.Forms.Label();
     this.label10                   = new System.Windows.Forms.Label();
     this.label4                    = new System.Windows.Forms.Label();
     this.label6                    = new System.Windows.Forms.Label();
     this.labelWriteOff             = new System.Windows.Forms.Label();
     this.labelTitleInsEst          = new System.Windows.Forms.Label();
     this.labelInsEst               = new System.Windows.Forms.Label();
     this.label1                    = new System.Windows.Forms.Label();
     this.labelAmtStart             = new System.Windows.Forms.Label();
     this.labelPaySplits            = new System.Windows.Forms.Label();
     this.labelAmtOriginal          = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.labelPositiveAdjs         = new System.Windows.Forms.Label();
     this.label13                   = new System.Windows.Forms.Label();
     this.label3                    = new System.Windows.Forms.Label();
     this.labelInsPay               = new System.Windows.Forms.Label();
     this.labelNegativeAdjs         = new System.Windows.Forms.Label();
     this.label7                    = new System.Windows.Forms.Label();
     this.labelPayPlanCredits       = new System.Windows.Forms.Label();
     this.label5                    = new System.Windows.Forms.Label();
     this.labelUnallocated          = new System.Windows.Forms.Label();
     this.groupCreditLogic.SuspendLayout();
     this.groupBreakdown.SuspendLayout();
     this.SuspendLayout();
     //
     // 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(15, 76);
     this.gridMain.Name             = "gridMain";
     this.gridMain.Size             = new System.Drawing.Size(675, 503);
     this.gridMain.TabIndex         = 140;
     this.gridMain.Title            = "Procedures";
     this.gridMain.TranslationName  = "TableProcSelect";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     //
     // 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(705, 553);
     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);
     //
     // 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(786, 553);
     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);
     //
     // groupCreditLogic
     //
     this.groupCreditLogic.Controls.Add(this.radioExcludeAllCredits);
     this.groupCreditLogic.Controls.Add(this.radioOnlyAllocatedCredits);
     this.groupCreditLogic.Controls.Add(this.radioIncludeAllCredits);
     this.groupCreditLogic.Location = new System.Drawing.Point(15, 1);
     this.groupCreditLogic.Name     = "groupCreditLogic";
     this.groupCreditLogic.Size     = new System.Drawing.Size(331, 73);
     this.groupCreditLogic.TabIndex = 143;
     this.groupCreditLogic.TabStop  = false;
     this.groupCreditLogic.Text     = "Credit Filter";
     //
     // radioExcludeAllCredits
     //
     this.radioExcludeAllCredits.Location = new System.Drawing.Point(20, 49);
     this.radioExcludeAllCredits.Name     = "radioExcludeAllCredits";
     this.radioExcludeAllCredits.Size     = new System.Drawing.Size(305, 17);
     this.radioExcludeAllCredits.TabIndex = 2;
     this.radioExcludeAllCredits.TabStop  = true;
     this.radioExcludeAllCredits.Text     = "Exclude all credits";
     this.radioExcludeAllCredits.UseVisualStyleBackColor = true;
     this.radioExcludeAllCredits.Click += new System.EventHandler(this.radioCreditCalc_Click);
     //
     // radioOnlyAllocatedCredits
     //
     this.radioOnlyAllocatedCredits.Checked  = true;
     this.radioOnlyAllocatedCredits.Location = new System.Drawing.Point(20, 15);
     this.radioOnlyAllocatedCredits.Name     = "radioOnlyAllocatedCredits";
     this.radioOnlyAllocatedCredits.Size     = new System.Drawing.Size(305, 17);
     this.radioOnlyAllocatedCredits.TabIndex = 0;
     this.radioOnlyAllocatedCredits.TabStop  = true;
     this.radioOnlyAllocatedCredits.Text     = "Only allocated credits";
     this.radioOnlyAllocatedCredits.UseVisualStyleBackColor = true;
     this.radioOnlyAllocatedCredits.Click += new System.EventHandler(this.radioCreditCalc_Click);
     //
     // radioIncludeAllCredits
     //
     this.radioIncludeAllCredits.Location = new System.Drawing.Point(20, 32);
     this.radioIncludeAllCredits.Name     = "radioIncludeAllCredits";
     this.radioIncludeAllCredits.Size     = new System.Drawing.Size(305, 17);
     this.radioIncludeAllCredits.TabIndex = 1;
     this.radioIncludeAllCredits.TabStop  = true;
     this.radioIncludeAllCredits.Text     = "Include all credits";
     this.radioIncludeAllCredits.UseVisualStyleBackColor = true;
     this.radioIncludeAllCredits.Click += new System.EventHandler(this.radioCreditCalc_Click);
     //
     // groupBreakdown
     //
     this.groupBreakdown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBreakdown.Controls.Add(this.labelTitleOther);
     this.groupBreakdown.Controls.Add(this.labelOther);
     this.groupBreakdown.Controls.Add(this.label12);
     this.groupBreakdown.Controls.Add(this.labelCurrentSplits);
     this.groupBreakdown.Controls.Add(this.label8);
     this.groupBreakdown.Controls.Add(this.label9);
     this.groupBreakdown.Controls.Add(this.labelAmtEnd);
     this.groupBreakdown.Controls.Add(this.labelTitleWriteOffEst);
     this.groupBreakdown.Controls.Add(this.labelWriteOffEst);
     this.groupBreakdown.Controls.Add(this.label10);
     this.groupBreakdown.Controls.Add(this.label4);
     this.groupBreakdown.Controls.Add(this.label6);
     this.groupBreakdown.Controls.Add(this.labelWriteOff);
     this.groupBreakdown.Controls.Add(this.labelTitleInsEst);
     this.groupBreakdown.Controls.Add(this.labelInsEst);
     this.groupBreakdown.Controls.Add(this.label1);
     this.groupBreakdown.Controls.Add(this.labelAmtStart);
     this.groupBreakdown.Controls.Add(this.labelPaySplits);
     this.groupBreakdown.Controls.Add(this.labelAmtOriginal);
     this.groupBreakdown.Controls.Add(this.label2);
     this.groupBreakdown.Controls.Add(this.labelPositiveAdjs);
     this.groupBreakdown.Controls.Add(this.label13);
     this.groupBreakdown.Controls.Add(this.label3);
     this.groupBreakdown.Controls.Add(this.labelInsPay);
     this.groupBreakdown.Controls.Add(this.labelNegativeAdjs);
     this.groupBreakdown.Controls.Add(this.label7);
     this.groupBreakdown.Controls.Add(this.labelPayPlanCredits);
     this.groupBreakdown.Controls.Add(this.label5);
     this.groupBreakdown.Location = new System.Drawing.Point(694, 76);
     this.groupBreakdown.Name     = "groupBreakdown";
     this.groupBreakdown.Size     = new System.Drawing.Size(167, 319);
     this.groupBreakdown.TabIndex = 144;
     this.groupBreakdown.TabStop  = false;
     this.groupBreakdown.Text     = "Breakdown";
     //
     // labelTitleOther
     //
     this.labelTitleOther.Location  = new System.Drawing.Point(7, 216);
     this.labelTitleOther.Name      = "labelTitleOther";
     this.labelTitleOther.Size      = new System.Drawing.Size(86, 18);
     this.labelTitleOther.TabIndex  = 154;
     this.labelTitleOther.Text      = "Other:";
     this.labelTitleOther.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelOther
     //
     this.labelOther.Location  = new System.Drawing.Point(99, 216);
     this.labelOther.Name      = "labelOther";
     this.labelOther.Size      = new System.Drawing.Size(61, 18);
     this.labelOther.TabIndex  = 153;
     this.labelOther.Text      = "0.00";
     this.labelOther.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label12
     //
     this.label12.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label12.Location  = new System.Drawing.Point(7, 265);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(86, 18);
     this.label12.TabIndex  = 152;
     this.label12.Text      = "Current Splits:";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCurrentSplits
     //
     this.labelCurrentSplits.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelCurrentSplits.Location  = new System.Drawing.Point(99, 265);
     this.labelCurrentSplits.Name      = "labelCurrentSplits";
     this.labelCurrentSplits.Size      = new System.Drawing.Size(61, 18);
     this.labelCurrentSplits.TabIndex  = 151;
     this.labelCurrentSplits.Text      = "0.00";
     this.labelCurrentSplits.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label8.Location    = new System.Drawing.Point(5, 288);
     this.label8.Name        = "label8";
     this.label8.Size        = new System.Drawing.Size(155, 2);
     this.label8.TabIndex    = 150;
     //
     // label9
     //
     this.label9.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label9.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location  = new System.Drawing.Point(7, 294);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(86, 18);
     this.label9.TabIndex  = 149;
     this.label9.Text      = "Amt End:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelAmtEnd
     //
     this.labelAmtEnd.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelAmtEnd.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelAmtEnd.Location  = new System.Drawing.Point(99, 294);
     this.labelAmtEnd.Name      = "labelAmtEnd";
     this.labelAmtEnd.Size      = new System.Drawing.Size(61, 18);
     this.labelAmtEnd.TabIndex  = 148;
     this.labelAmtEnd.Text      = "0.00";
     this.labelAmtEnd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelTitleWriteOffEst
     //
     this.labelTitleWriteOffEst.Location  = new System.Drawing.Point(7, 194);
     this.labelTitleWriteOffEst.Name      = "labelTitleWriteOffEst";
     this.labelTitleWriteOffEst.Size      = new System.Drawing.Size(86, 18);
     this.labelTitleWriteOffEst.TabIndex  = 147;
     this.labelTitleWriteOffEst.Text      = "WriteOff Ests:";
     this.labelTitleWriteOffEst.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelWriteOffEst
     //
     this.labelWriteOffEst.Location  = new System.Drawing.Point(99, 194);
     this.labelWriteOffEst.Name      = "labelWriteOffEst";
     this.labelWriteOffEst.Size      = new System.Drawing.Size(61, 18);
     this.labelWriteOffEst.TabIndex  = 146;
     this.labelWriteOffEst.Text      = "0.00";
     this.labelWriteOffEst.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(7, 150);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(86, 18);
     this.label10.TabIndex  = 145;
     this.label10.Text      = "WriteOffs:";
     this.label10.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.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label4.Location    = new System.Drawing.Point(5, 237);
     this.label4.Name        = "label4";
     this.label4.Size        = new System.Drawing.Size(155, 2);
     this.label4.TabIndex    = 143;
     //
     // label6
     //
     this.label6.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label6.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(7, 243);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(86, 18);
     this.label6.TabIndex  = 15;
     this.label6.Text      = "Amt Start:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelWriteOff
     //
     this.labelWriteOff.Location  = new System.Drawing.Point(99, 150);
     this.labelWriteOff.Name      = "labelWriteOff";
     this.labelWriteOff.Size      = new System.Drawing.Size(61, 18);
     this.labelWriteOff.TabIndex  = 144;
     this.labelWriteOff.Text      = "0.00";
     this.labelWriteOff.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelTitleInsEst
     //
     this.labelTitleInsEst.Location  = new System.Drawing.Point(7, 172);
     this.labelTitleInsEst.Name      = "labelTitleInsEst";
     this.labelTitleInsEst.Size      = new System.Drawing.Size(86, 18);
     this.labelTitleInsEst.TabIndex  = 23;
     this.labelTitleInsEst.Text      = "Ins Ests:";
     this.labelTitleInsEst.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelInsEst
     //
     this.labelInsEst.Location  = new System.Drawing.Point(99, 172);
     this.labelInsEst.Name      = "labelInsEst";
     this.labelInsEst.Size      = new System.Drawing.Size(61, 18);
     this.labelInsEst.TabIndex  = 22;
     this.labelInsEst.Text      = "0.00";
     this.labelInsEst.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(7, 18);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(86, 18);
     this.label1.TabIndex  = 27;
     this.label1.Text      = "Amt Original:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelAmtStart
     //
     this.labelAmtStart.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelAmtStart.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelAmtStart.Location  = new System.Drawing.Point(99, 243);
     this.labelAmtStart.Name      = "labelAmtStart";
     this.labelAmtStart.Size      = new System.Drawing.Size(61, 18);
     this.labelAmtStart.TabIndex  = 14;
     this.labelAmtStart.Text      = "0.00";
     this.labelAmtStart.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelPaySplits
     //
     this.labelPaySplits.Location  = new System.Drawing.Point(99, 106);
     this.labelPaySplits.Name      = "labelPaySplits";
     this.labelPaySplits.Size      = new System.Drawing.Size(61, 18);
     this.labelPaySplits.TabIndex  = 14;
     this.labelPaySplits.Text      = "0.00";
     this.labelPaySplits.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelAmtOriginal
     //
     this.labelAmtOriginal.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelAmtOriginal.Location  = new System.Drawing.Point(99, 18);
     this.labelAmtOriginal.Name      = "labelAmtOriginal";
     this.labelAmtOriginal.Size      = new System.Drawing.Size(61, 18);
     this.labelAmtOriginal.TabIndex  = 26;
     this.labelAmtOriginal.Text      = "0.00";
     this.labelAmtOriginal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(7, 106);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(86, 18);
     this.label2.TabIndex  = 15;
     this.label2.Text      = "PaySplits:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelPositiveAdjs
     //
     this.labelPositiveAdjs.Location  = new System.Drawing.Point(99, 40);
     this.labelPositiveAdjs.Name      = "labelPositiveAdjs";
     this.labelPositiveAdjs.Size      = new System.Drawing.Size(61, 18);
     this.labelPositiveAdjs.TabIndex  = 16;
     this.labelPositiveAdjs.Text      = "0.00";
     this.labelPositiveAdjs.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(7, 128);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(86, 18);
     this.label13.TabIndex  = 25;
     this.label13.Text      = "Ins Payments:";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(7, 40);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(86, 18);
     this.label3.TabIndex  = 17;
     this.label3.Text      = "Positive Adjs:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelInsPay
     //
     this.labelInsPay.Location  = new System.Drawing.Point(99, 128);
     this.labelInsPay.Name      = "labelInsPay";
     this.labelInsPay.Size      = new System.Drawing.Size(61, 18);
     this.labelInsPay.TabIndex  = 24;
     this.labelInsPay.Text      = "0.00";
     this.labelInsPay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelNegativeAdjs
     //
     this.labelNegativeAdjs.Location  = new System.Drawing.Point(99, 62);
     this.labelNegativeAdjs.Name      = "labelNegativeAdjs";
     this.labelNegativeAdjs.Size      = new System.Drawing.Size(61, 18);
     this.labelNegativeAdjs.TabIndex  = 18;
     this.labelNegativeAdjs.Text      = "0.00";
     this.labelNegativeAdjs.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(7, 62);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(86, 18);
     this.label7.TabIndex  = 19;
     this.label7.Text      = "Negative Adjs:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelPayPlanCredits
     //
     this.labelPayPlanCredits.Location  = new System.Drawing.Point(99, 84);
     this.labelPayPlanCredits.Name      = "labelPayPlanCredits";
     this.labelPayPlanCredits.Size      = new System.Drawing.Size(61, 18);
     this.labelPayPlanCredits.TabIndex  = 20;
     this.labelPayPlanCredits.Text      = "0.00";
     this.labelPayPlanCredits.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(7, 84);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(86, 18);
     this.label5.TabIndex  = 21;
     this.label5.Text      = "PayPlan Credits:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelUnallocated
     //
     this.labelUnallocated.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelUnallocated.Location = new System.Drawing.Point(390, 16);
     this.labelUnallocated.Name     = "labelUnallocated";
     this.labelUnallocated.Size     = new System.Drawing.Size(420, 45);
     this.labelUnallocated.TabIndex = 155;
     this.labelUnallocated.Text     = "This patient has unallocated unearned income. Please select procedures to allocat" +
                                      "e this income towards.";
     this.labelUnallocated.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.labelUnallocated.Visible   = false;
     //
     // FormProcSelect
     //
     this.ClientSize = new System.Drawing.Size(873, 586);
     this.Controls.Add(this.labelUnallocated);
     this.Controls.Add(this.groupBreakdown);
     this.Controls.Add(this.groupCreditLogic);
     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.MinimizeBox   = false;
     this.Name          = "FormProcSelect";
     this.ShowInTaskbar = false;
     this.Text          = "Select Procedure";
     this.Load         += new System.EventHandler(this.FormProcSelect_Load);
     this.groupCreditLogic.ResumeLayout(false);
     this.groupBreakdown.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 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();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormApptEdit));
			this.comboConfirmed = new System.Windows.Forms.ComboBox();
			this.comboUnschedStatus = new System.Windows.Forms.ComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.comboStatus = new System.Windows.Forms.ComboBox();
			this.label5 = new System.Windows.Forms.Label();
			this.labelStatus = new System.Windows.Forms.Label();
			this.label24 = new System.Windows.Forms.Label();
			this.checkIsHygiene = new System.Windows.Forms.CheckBox();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.comboAssistant = new System.Windows.Forms.ComboBox();
			this.comboProvHyg = new System.Windows.Forms.ComboBox();
			this.comboProvNum = new System.Windows.Forms.ComboBox();
			this.label12 = new System.Windows.Forms.Label();
			this.checkIsNewPatient = new System.Windows.Forms.CheckBox();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.labelApptNote = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.textTime = new System.Windows.Forms.TextBox();
			this.butSlider = new System.Windows.Forms.Button();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.checkTimeLocked = new System.Windows.Forms.CheckBox();
			this.contextMenuTimeArrived = new System.Windows.Forms.ContextMenu();
			this.menuItemArrivedNow = new System.Windows.Forms.MenuItem();
			this.contextMenuTimeSeated = new System.Windows.Forms.ContextMenu();
			this.menuItemSeatedNow = new System.Windows.Forms.MenuItem();
			this.contextMenuTimeDismissed = new System.Windows.Forms.ContextMenu();
			this.menuItemDismissedNow = new System.Windows.Forms.MenuItem();
			this.textTimeAskedToArrive = new System.Windows.Forms.TextBox();
			this.label8 = new System.Windows.Forms.Label();
			this.listQuickAdd = new System.Windows.Forms.ListBox();
			this.labelQuickAdd = new System.Windows.Forms.Label();
			this.panel1 = new System.Windows.Forms.Panel();
			this.labelSyndromicObservations = new System.Windows.Forms.Label();
			this.butSyndromicObservations = new OpenDental.UI.Button();
			this.label9 = new System.Windows.Forms.Label();
			this.butColorClear = new OpenDental.UI.Button();
			this.butColor = new System.Windows.Forms.Button();
			this.textRequirement = new System.Windows.Forms.TextBox();
			this.butRequirement = new OpenDental.UI.Button();
			this.butInsPlan2 = new OpenDental.UI.Button();
			this.butInsPlan1 = new OpenDental.UI.Button();
			this.textInsPlan2 = new System.Windows.Forms.TextBox();
			this.labelInsPlan2 = new System.Windows.Forms.Label();
			this.textInsPlan1 = new System.Windows.Forms.TextBox();
			this.labelInsPlan1 = new System.Windows.Forms.Label();
			this.textTimeDismissed = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.textTimeSeated = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.textTimeArrived = new System.Windows.Forms.TextBox();
			this.labelTimeArrived = new System.Windows.Forms.Label();
			this.textLabCase = new System.Windows.Forms.TextBox();
			this.butLab = new OpenDental.UI.Button();
			this.butPickHyg = new OpenDental.UI.Button();
			this.butPickDentist = new OpenDental.UI.Button();
			this.gridFields = new OpenDental.UI.ODGrid();
			this.gridPatient = new OpenDental.UI.ODGrid();
			this.gridComm = new OpenDental.UI.ODGrid();
			this.gridProc = new OpenDental.UI.ODGrid();
			this.butPDF = new OpenDental.UI.Button();
			this.butComplete = new OpenDental.UI.Button();
			this.butDeleteProc = new OpenDental.UI.Button();
			this.butAdd = new OpenDental.UI.Button();
			this.textNote = new OpenDental.ODtextBox();
			this.butAddComm = new OpenDental.UI.Button();
			this.tbTime = new OpenDental.TableTimeBar();
			this.butAudit = new OpenDental.UI.Button();
			this.butTask = new OpenDental.UI.Button();
			this.butDelete = new OpenDental.UI.Button();
			this.butPin = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.butText = new OpenDental.UI.Button();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// comboConfirmed
			// 
			this.comboConfirmed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboConfirmed.Location = new System.Drawing.Point(114, 42);
			this.comboConfirmed.MaxDropDownItems = 30;
			this.comboConfirmed.Name = "comboConfirmed";
			this.comboConfirmed.Size = new System.Drawing.Size(126, 21);
			this.comboConfirmed.TabIndex = 84;
			// 
			// comboUnschedStatus
			// 
			this.comboUnschedStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboUnschedStatus.Location = new System.Drawing.Point(114, 21);
			this.comboUnschedStatus.MaxDropDownItems = 100;
			this.comboUnschedStatus.Name = "comboUnschedStatus";
			this.comboUnschedStatus.Size = new System.Drawing.Size(126, 21);
			this.comboUnschedStatus.TabIndex = 83;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(1, 24);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(111, 15);
			this.label4.TabIndex = 82;
			this.label4.Text = "Unscheduled Status";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboStatus
			// 
			this.comboStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboStatus.Location = new System.Drawing.Point(114, 0);
			this.comboStatus.MaxDropDownItems = 10;
			this.comboStatus.Name = "comboStatus";
			this.comboStatus.Size = new System.Drawing.Size(126, 21);
			this.comboStatus.TabIndex = 81;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(1, 44);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(111, 16);
			this.label5.TabIndex = 80;
			this.label5.Text = "Confirmed";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelStatus
			// 
			this.labelStatus.Location = new System.Drawing.Point(1, 3);
			this.labelStatus.Name = "labelStatus";
			this.labelStatus.Size = new System.Drawing.Size(111, 15);
			this.labelStatus.TabIndex = 79;
			this.labelStatus.Text = "Status";
			this.labelStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label24
			// 
			this.label24.Location = new System.Drawing.Point(128, 148);
			this.label24.Name = "label24";
			this.label24.Size = new System.Drawing.Size(113, 16);
			this.label24.TabIndex = 138;
			this.label24.Text = "(use hyg color)";
			// 
			// checkIsHygiene
			// 
			this.checkIsHygiene.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsHygiene.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsHygiene.Location = new System.Drawing.Point(23, 148);
			this.checkIsHygiene.Name = "checkIsHygiene";
			this.checkIsHygiene.Size = new System.Drawing.Size(104, 16);
			this.checkIsHygiene.TabIndex = 137;
			this.checkIsHygiene.Text = "Is Hygiene";
			this.checkIsHygiene.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(114, 83);
			this.comboClinic.MaxDropDownItems = 100;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(126, 21);
			this.comboClinic.TabIndex = 136;
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(13, 86);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(98, 16);
			this.labelClinic.TabIndex = 135;
			this.labelClinic.Text = "Clinic";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboAssistant
			// 
			this.comboAssistant.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboAssistant.Location = new System.Drawing.Point(114, 164);
			this.comboAssistant.MaxDropDownItems = 30;
			this.comboAssistant.Name = "comboAssistant";
			this.comboAssistant.Size = new System.Drawing.Size(126, 21);
			this.comboAssistant.TabIndex = 133;
			// 
			// comboProvHyg
			// 
			this.comboProvHyg.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProvHyg.Location = new System.Drawing.Point(114, 126);
			this.comboProvHyg.MaxDropDownItems = 30;
			this.comboProvHyg.Name = "comboProvHyg";
			this.comboProvHyg.Size = new System.Drawing.Size(107, 21);
			this.comboProvHyg.TabIndex = 132;
			// 
			// comboProvNum
			// 
			this.comboProvNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProvNum.Location = new System.Drawing.Point(114, 104);
			this.comboProvNum.MaxDropDownItems = 100;
			this.comboProvNum.Name = "comboProvNum";
			this.comboProvNum.Size = new System.Drawing.Size(107, 21);
			this.comboProvNum.TabIndex = 131;
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(13, 167);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(98, 16);
			this.label12.TabIndex = 129;
			this.label12.Text = "Assistant";
			this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkIsNewPatient
			// 
			this.checkIsNewPatient.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIsNewPatient.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkIsNewPatient.Location = new System.Drawing.Point(17, 64);
			this.checkIsNewPatient.Name = "checkIsNewPatient";
			this.checkIsNewPatient.Size = new System.Drawing.Size(110, 17);
			this.checkIsNewPatient.TabIndex = 128;
			this.checkIsNewPatient.Text = "New Patient";
			this.checkIsNewPatient.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(15, 128);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(98, 16);
			this.label3.TabIndex = 127;
			this.label3.Text = "Hygienist";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(14, 107);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(98, 16);
			this.label2.TabIndex = 126;
			this.label2.Text = "Dentist";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelApptNote
			// 
			this.labelApptNote.Location = new System.Drawing.Point(20, 451);
			this.labelApptNote.Name = "labelApptNote";
			this.labelApptNote.Size = new System.Drawing.Size(197, 16);
			this.labelApptNote.TabIndex = 141;
			this.labelApptNote.Text = "Appointment Note";
			this.labelApptNote.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(-1, 190);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(113, 14);
			this.label6.TabIndex = 65;
			this.label6.Text = "Time Length";
			this.label6.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// textTime
			// 
			this.textTime.Location = new System.Drawing.Point(114, 187);
			this.textTime.Name = "textTime";
			this.textTime.ReadOnly = true;
			this.textTime.Size = new System.Drawing.Size(66, 20);
			this.textTime.TabIndex = 62;
			// 
			// butSlider
			// 
			this.butSlider.BackColor = System.Drawing.SystemColors.ControlDark;
			this.butSlider.Location = new System.Drawing.Point(6, 90);
			this.butSlider.Name = "butSlider";
			this.butSlider.Size = new System.Drawing.Size(12, 15);
			this.butSlider.TabIndex = 60;
			this.butSlider.UseVisualStyleBackColor = false;
			this.butSlider.MouseDown += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseDown);
			this.butSlider.MouseMove += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseMove);
			this.butSlider.MouseUp += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseUp);
			// 
			// checkTimeLocked
			// 
			this.checkTimeLocked.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkTimeLocked.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkTimeLocked.Location = new System.Drawing.Point(-1, 210);
			this.checkTimeLocked.Name = "checkTimeLocked";
			this.checkTimeLocked.Size = new System.Drawing.Size(128, 16);
			this.checkTimeLocked.TabIndex = 148;
			this.checkTimeLocked.Text = "Time Locked";
			this.checkTimeLocked.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkTimeLocked.Click += new System.EventHandler(this.checkTimeLocked_Click);
			// 
			// contextMenuTimeArrived
			// 
			this.contextMenuTimeArrived.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemArrivedNow});
			// 
			// menuItemArrivedNow
			// 
			this.menuItemArrivedNow.Index = 0;
			this.menuItemArrivedNow.Text = "Now";
			this.menuItemArrivedNow.Click += new System.EventHandler(this.menuItemArrivedNow_Click);
			// 
			// contextMenuTimeSeated
			// 
			this.contextMenuTimeSeated.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemSeatedNow});
			// 
			// menuItemSeatedNow
			// 
			this.menuItemSeatedNow.Index = 0;
			this.menuItemSeatedNow.Text = "Now";
			this.menuItemSeatedNow.Click += new System.EventHandler(this.menuItemSeatedNow_Click);
			// 
			// contextMenuTimeDismissed
			// 
			this.contextMenuTimeDismissed.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemDismissedNow});
			// 
			// menuItemDismissedNow
			// 
			this.menuItemDismissedNow.Index = 0;
			this.menuItemDismissedNow.Text = "Now";
			this.menuItemDismissedNow.Click += new System.EventHandler(this.menuItemDismissedNow_Click);
			// 
			// textTimeAskedToArrive
			// 
			this.textTimeAskedToArrive.Location = new System.Drawing.Point(114, 245);
			this.textTimeAskedToArrive.Name = "textTimeAskedToArrive";
			this.textTimeAskedToArrive.Size = new System.Drawing.Size(126, 20);
			this.textTimeAskedToArrive.TabIndex = 146;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(-1, 247);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(113, 18);
			this.label8.TabIndex = 160;
			this.label8.Text = "Time Ask To Arrive";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// listQuickAdd
			// 
			this.listQuickAdd.IntegralHeight = false;
			this.listQuickAdd.Location = new System.Drawing.Point(282, 48);
			this.listQuickAdd.Name = "listQuickAdd";
			this.listQuickAdd.Size = new System.Drawing.Size(150, 355);
			this.listQuickAdd.TabIndex = 163;
			this.listQuickAdd.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listQuickAdd_MouseDown);
			// 
			// labelQuickAdd
			// 
			this.labelQuickAdd.Location = new System.Drawing.Point(282, 7);
			this.labelQuickAdd.Name = "labelQuickAdd";
			this.labelQuickAdd.Size = new System.Drawing.Size(143, 39);
			this.labelQuickAdd.TabIndex = 162;
			this.labelQuickAdd.Text = "Single click on items in the list below to add them to this appointment.";
			// 
			// panel1
			// 
			this.panel1.AutoScroll = true;
			this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel1.Controls.Add(this.labelSyndromicObservations);
			this.panel1.Controls.Add(this.butSyndromicObservations);
			this.panel1.Controls.Add(this.label9);
			this.panel1.Controls.Add(this.butColorClear);
			this.panel1.Controls.Add(this.butColor);
			this.panel1.Controls.Add(this.textRequirement);
			this.panel1.Controls.Add(this.butRequirement);
			this.panel1.Controls.Add(this.butInsPlan2);
			this.panel1.Controls.Add(this.butInsPlan1);
			this.panel1.Controls.Add(this.textInsPlan2);
			this.panel1.Controls.Add(this.labelInsPlan2);
			this.panel1.Controls.Add(this.textInsPlan1);
			this.panel1.Controls.Add(this.labelInsPlan1);
			this.panel1.Controls.Add(this.textTimeDismissed);
			this.panel1.Controls.Add(this.label7);
			this.panel1.Controls.Add(this.textTimeSeated);
			this.panel1.Controls.Add(this.label1);
			this.panel1.Controls.Add(this.textTimeArrived);
			this.panel1.Controls.Add(this.labelTimeArrived);
			this.panel1.Controls.Add(this.textLabCase);
			this.panel1.Controls.Add(this.butLab);
			this.panel1.Controls.Add(this.comboStatus);
			this.panel1.Controls.Add(this.checkIsNewPatient);
			this.panel1.Controls.Add(this.comboConfirmed);
			this.panel1.Controls.Add(this.label24);
			this.panel1.Controls.Add(this.textTimeAskedToArrive);
			this.panel1.Controls.Add(this.comboUnschedStatus);
			this.panel1.Controls.Add(this.label8);
			this.panel1.Controls.Add(this.checkIsHygiene);
			this.panel1.Controls.Add(this.comboClinic);
			this.panel1.Controls.Add(this.labelClinic);
			this.panel1.Controls.Add(this.label4);
			this.panel1.Controls.Add(this.comboAssistant);
			this.panel1.Controls.Add(this.butPickHyg);
			this.panel1.Controls.Add(this.comboProvHyg);
			this.panel1.Controls.Add(this.comboProvNum);
			this.panel1.Controls.Add(this.butPickDentist);
			this.panel1.Controls.Add(this.label5);
			this.panel1.Controls.Add(this.label12);
			this.panel1.Controls.Add(this.label3);
			this.panel1.Controls.Add(this.labelStatus);
			this.panel1.Controls.Add(this.label2);
			this.panel1.Controls.Add(this.textTime);
			this.panel1.Controls.Add(this.label6);
			this.panel1.Controls.Add(this.checkTimeLocked);
			this.panel1.Location = new System.Drawing.Point(21, 2);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(260, 447);
			this.panel1.TabIndex = 164;
			// 
			// labelSyndromicObservations
			// 
			this.labelSyndromicObservations.Location = new System.Drawing.Point(63, 462);
			this.labelSyndromicObservations.Name = "labelSyndromicObservations";
			this.labelSyndromicObservations.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
			this.labelSyndromicObservations.Size = new System.Drawing.Size(174, 16);
			this.labelSyndromicObservations.TabIndex = 181;
			this.labelSyndromicObservations.Text = "(Syndromic Observations)";
			this.labelSyndromicObservations.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.labelSyndromicObservations.Visible = false;
			// 
			// butSyndromicObservations
			// 
			this.butSyndromicObservations.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSyndromicObservations.Autosize = true;
			this.butSyndromicObservations.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSyndromicObservations.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSyndromicObservations.CornerRadius = 4F;
			this.butSyndromicObservations.Location = new System.Drawing.Point(15, 460);
			this.butSyndromicObservations.Name = "butSyndromicObservations";
			this.butSyndromicObservations.Size = new System.Drawing.Size(46, 20);
			this.butSyndromicObservations.TabIndex = 180;
			this.butSyndromicObservations.Text = "Obs";
			this.butSyndromicObservations.Visible = false;
			this.butSyndromicObservations.Click += new System.EventHandler(this.butSyndromicObservations_Click);
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(-1, 228);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(113, 14);
			this.label9.TabIndex = 179;
			this.label9.Text = "Color";
			this.label9.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// butColorClear
			// 
			this.butColorClear.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butColorClear.Autosize = true;
			this.butColorClear.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butColorClear.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butColorClear.CornerRadius = 4F;
			this.butColorClear.Location = new System.Drawing.Point(137, 224);
			this.butColorClear.Name = "butColorClear";
			this.butColorClear.Size = new System.Drawing.Size(39, 20);
			this.butColorClear.TabIndex = 178;
			this.butColorClear.Text = "none";
			this.butColorClear.Click += new System.EventHandler(this.butColorClear_Click);
			// 
			// butColor
			// 
			this.butColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.butColor.Location = new System.Drawing.Point(114, 225);
			this.butColor.Name = "butColor";
			this.butColor.Size = new System.Drawing.Size(21, 19);
			this.butColor.TabIndex = 177;
			this.butColor.Click += new System.EventHandler(this.butColor_Click);
			// 
			// textRequirement
			// 
			this.textRequirement.Location = new System.Drawing.Point(63, 408);
			this.textRequirement.Multiline = true;
			this.textRequirement.Name = "textRequirement";
			this.textRequirement.ReadOnly = true;
			this.textRequirement.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.textRequirement.Size = new System.Drawing.Size(177, 53);
			this.textRequirement.TabIndex = 164;
			// 
			// butRequirement
			// 
			this.butRequirement.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butRequirement.Autosize = true;
			this.butRequirement.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butRequirement.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butRequirement.CornerRadius = 4F;
			this.butRequirement.Location = new System.Drawing.Point(15, 408);
			this.butRequirement.Name = "butRequirement";
			this.butRequirement.Size = new System.Drawing.Size(46, 20);
			this.butRequirement.TabIndex = 163;
			this.butRequirement.Text = "Req";
			this.butRequirement.Click += new System.EventHandler(this.butRequirement_Click);
			// 
			// butInsPlan2
			// 
			this.butInsPlan2.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butInsPlan2.Autosize = false;
			this.butInsPlan2.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butInsPlan2.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butInsPlan2.CornerRadius = 2F;
			this.butInsPlan2.Location = new System.Drawing.Point(222, 387);
			this.butInsPlan2.Name = "butInsPlan2";
			this.butInsPlan2.Size = new System.Drawing.Size(18, 20);
			this.butInsPlan2.TabIndex = 176;
			this.butInsPlan2.Text = "...";
			this.butInsPlan2.Click += new System.EventHandler(this.butInsPlan2_Click);
			// 
			// butInsPlan1
			// 
			this.butInsPlan1.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butInsPlan1.Autosize = false;
			this.butInsPlan1.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butInsPlan1.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butInsPlan1.CornerRadius = 2F;
			this.butInsPlan1.Location = new System.Drawing.Point(222, 366);
			this.butInsPlan1.Name = "butInsPlan1";
			this.butInsPlan1.Size = new System.Drawing.Size(18, 20);
			this.butInsPlan1.TabIndex = 175;
			this.butInsPlan1.Text = "...";
			this.butInsPlan1.Click += new System.EventHandler(this.butInsPlan1_Click);
			// 
			// textInsPlan2
			// 
			this.textInsPlan2.Location = new System.Drawing.Point(63, 387);
			this.textInsPlan2.Name = "textInsPlan2";
			this.textInsPlan2.ReadOnly = true;
			this.textInsPlan2.Size = new System.Drawing.Size(158, 20);
			this.textInsPlan2.TabIndex = 174;
			// 
			// labelInsPlan2
			// 
			this.labelInsPlan2.Location = new System.Drawing.Point(2, 389);
			this.labelInsPlan2.Name = "labelInsPlan2";
			this.labelInsPlan2.Size = new System.Drawing.Size(59, 16);
			this.labelInsPlan2.TabIndex = 173;
			this.labelInsPlan2.Text = "InsPlan 2";
			this.labelInsPlan2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textInsPlan1
			// 
			this.textInsPlan1.Location = new System.Drawing.Point(63, 366);
			this.textInsPlan1.Name = "textInsPlan1";
			this.textInsPlan1.ReadOnly = true;
			this.textInsPlan1.Size = new System.Drawing.Size(158, 20);
			this.textInsPlan1.TabIndex = 172;
			// 
			// labelInsPlan1
			// 
			this.labelInsPlan1.Location = new System.Drawing.Point(2, 368);
			this.labelInsPlan1.Name = "labelInsPlan1";
			this.labelInsPlan1.Size = new System.Drawing.Size(59, 16);
			this.labelInsPlan1.TabIndex = 171;
			this.labelInsPlan1.Text = "InsPlan 1";
			this.labelInsPlan1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textTimeDismissed
			// 
			this.textTimeDismissed.Location = new System.Drawing.Point(114, 305);
			this.textTimeDismissed.Name = "textTimeDismissed";
			this.textTimeDismissed.Size = new System.Drawing.Size(126, 20);
			this.textTimeDismissed.TabIndex = 170;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(-1, 307);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(113, 16);
			this.label7.TabIndex = 169;
			this.label7.Text = "Time Dismissed";
			this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textTimeSeated
			// 
			this.textTimeSeated.Location = new System.Drawing.Point(114, 285);
			this.textTimeSeated.Name = "textTimeSeated";
			this.textTimeSeated.Size = new System.Drawing.Size(126, 20);
			this.textTimeSeated.TabIndex = 168;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(-1, 287);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(113, 16);
			this.label1.TabIndex = 166;
			this.label1.Text = "Time Seated";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textTimeArrived
			// 
			this.textTimeArrived.Location = new System.Drawing.Point(114, 265);
			this.textTimeArrived.Name = "textTimeArrived";
			this.textTimeArrived.Size = new System.Drawing.Size(126, 20);
			this.textTimeArrived.TabIndex = 167;
			// 
			// labelTimeArrived
			// 
			this.labelTimeArrived.Location = new System.Drawing.Point(-1, 267);
			this.labelTimeArrived.Name = "labelTimeArrived";
			this.labelTimeArrived.Size = new System.Drawing.Size(113, 16);
			this.labelTimeArrived.TabIndex = 165;
			this.labelTimeArrived.Text = "Time Arrived";
			this.labelTimeArrived.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textLabCase
			// 
			this.textLabCase.AcceptsReturn = true;
			this.textLabCase.Location = new System.Drawing.Point(63, 330);
			this.textLabCase.Multiline = true;
			this.textLabCase.Name = "textLabCase";
			this.textLabCase.ReadOnly = true;
			this.textLabCase.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.textLabCase.Size = new System.Drawing.Size(177, 34);
			this.textLabCase.TabIndex = 162;
			// 
			// butLab
			// 
			this.butLab.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butLab.Autosize = true;
			this.butLab.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butLab.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butLab.CornerRadius = 4F;
			this.butLab.Location = new System.Drawing.Point(15, 330);
			this.butLab.Name = "butLab";
			this.butLab.Size = new System.Drawing.Size(46, 20);
			this.butLab.TabIndex = 161;
			this.butLab.Text = "Lab";
			this.butLab.Click += new System.EventHandler(this.butLab_Click);
			// 
			// butPickHyg
			// 
			this.butPickHyg.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickHyg.Autosize = false;
			this.butPickHyg.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickHyg.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickHyg.CornerRadius = 2F;
			this.butPickHyg.Location = new System.Drawing.Point(222, 127);
			this.butPickHyg.Name = "butPickHyg";
			this.butPickHyg.Size = new System.Drawing.Size(18, 20);
			this.butPickHyg.TabIndex = 158;
			this.butPickHyg.Text = "...";
			this.butPickHyg.Click += new System.EventHandler(this.butPickHyg_Click);
			// 
			// butPickDentist
			// 
			this.butPickDentist.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPickDentist.Autosize = false;
			this.butPickDentist.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPickDentist.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPickDentist.CornerRadius = 2F;
			this.butPickDentist.Location = new System.Drawing.Point(222, 105);
			this.butPickDentist.Name = "butPickDentist";
			this.butPickDentist.Size = new System.Drawing.Size(18, 20);
			this.butPickDentist.TabIndex = 157;
			this.butPickDentist.Text = "...";
			this.butPickDentist.Click += new System.EventHandler(this.butPickDentist_Click);
			// 
			// gridFields
			// 
			this.gridFields.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridFields.HScrollVisible = false;
			this.gridFields.Location = new System.Drawing.Point(21, 578);
			this.gridFields.Name = "gridFields";
			this.gridFields.ScrollValue = 0;
			this.gridFields.Size = new System.Drawing.Size(259, 118);
			this.gridFields.TabIndex = 159;
			this.gridFields.Title = "Appt Fields";
			this.gridFields.TranslationName = "FormApptEdit";
			this.gridFields.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridFields_CellDoubleClick);
			// 
			// gridPatient
			// 
			this.gridPatient.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridPatient.HScrollVisible = false;
			this.gridPatient.Location = new System.Drawing.Point(282, 405);
			this.gridPatient.Name = "gridPatient";
			this.gridPatient.ScrollValue = 0;
			this.gridPatient.Size = new System.Drawing.Size(258, 291);
			this.gridPatient.TabIndex = 0;
			this.gridPatient.Title = "Patient Info";
			this.gridPatient.TranslationName = "TableApptPtInfo";
			this.gridPatient.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridPatient_MouseMove);
			// 
			// gridComm
			// 
			this.gridComm.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.gridComm.HScrollVisible = false;
			this.gridComm.Location = new System.Drawing.Point(542, 405);
			this.gridComm.Name = "gridComm";
			this.gridComm.ScrollValue = 0;
			this.gridComm.Size = new System.Drawing.Size(335, 291);
			this.gridComm.TabIndex = 1;
			this.gridComm.Title = "Communications Log - Appointment Scheduling";
			this.gridComm.TranslationName = "TableCommLog";
			this.gridComm.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridComm_CellDoubleClick);
			this.gridComm.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridComm_MouseMove);
			// 
			// gridProc
			// 
			this.gridProc.AllowSelection = false;
			this.gridProc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.gridProc.HScrollVisible = false;
			this.gridProc.Location = new System.Drawing.Point(434, 28);
			this.gridProc.Name = "gridProc";
			this.gridProc.ScrollValue = 0;
			this.gridProc.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridProc.Size = new System.Drawing.Size(538, 375);
			this.gridProc.TabIndex = 139;
			this.gridProc.Title = "Procedures on this Appointment";
			this.gridProc.TranslationName = "TableApptProcs";
			this.gridProc.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridProc_CellDoubleClick);
			this.gridProc.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridProc_CellClick);
			// 
			// butPDF
			// 
			this.butPDF.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPDF.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butPDF.Autosize = true;
			this.butPDF.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPDF.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPDF.CornerRadius = 4F;
			this.butPDF.Location = new System.Drawing.Point(880, 484);
			this.butPDF.Name = "butPDF";
			this.butPDF.Size = new System.Drawing.Size(92, 24);
			this.butPDF.TabIndex = 161;
			this.butPDF.Text = "Notes PDF";
			this.butPDF.Visible = false;
			this.butPDF.Click += new System.EventHandler(this.butPDF_Click);
			// 
			// butComplete
			// 
			this.butComplete.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butComplete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butComplete.Autosize = true;
			this.butComplete.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butComplete.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butComplete.CornerRadius = 4F;
			this.butComplete.Location = new System.Drawing.Point(880, 510);
			this.butComplete.Name = "butComplete";
			this.butComplete.Size = new System.Drawing.Size(92, 24);
			this.butComplete.TabIndex = 155;
			this.butComplete.Text = "Finish && Send";
			this.butComplete.Visible = false;
			this.butComplete.Click += new System.EventHandler(this.butComplete_Click);
			// 
			// butDeleteProc
			// 
			this.butDeleteProc.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDeleteProc.Autosize = true;
			this.butDeleteProc.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDeleteProc.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDeleteProc.CornerRadius = 4F;
			this.butDeleteProc.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDeleteProc.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDeleteProc.Location = new System.Drawing.Point(434, 2);
			this.butDeleteProc.Name = "butDeleteProc";
			this.butDeleteProc.Size = new System.Drawing.Size(75, 24);
			this.butDeleteProc.TabIndex = 154;
			this.butDeleteProc.Text = "Delete";
			this.butDeleteProc.Click += new System.EventHandler(this.butDeleteProc_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(510, 2);
			this.butAdd.Name = "butAdd";
			this.butAdd.Size = new System.Drawing.Size(75, 24);
			this.butAdd.TabIndex = 152;
			this.butAdd.Text = "Add";
			this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
			// 
			// textNote
			// 
			this.textNote.AcceptsTab = true;
			this.textNote.DetectUrls = false;
			this.textNote.Location = new System.Drawing.Point(21, 469);
			this.textNote.Name = "textNote";
			this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Appointment;
			this.textNote.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.textNote.Size = new System.Drawing.Size(260, 106);
			this.textNote.TabIndex = 142;
			this.textNote.Text = "";
			// 
			// butAddComm
			// 
			this.butAddComm.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAddComm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butAddComm.Autosize = true;
			this.butAddComm.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAddComm.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAddComm.CornerRadius = 4F;
			this.butAddComm.Image = global::OpenDental.Properties.Resources.commlog;
			this.butAddComm.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAddComm.Location = new System.Drawing.Point(880, 405);
			this.butAddComm.Name = "butAddComm";
			this.butAddComm.Size = new System.Drawing.Size(92, 24);
			this.butAddComm.TabIndex = 143;
			this.butAddComm.Text = "Co&mm";
			this.butAddComm.Click += new System.EventHandler(this.butAddComm_Click);
			// 
			// tbTime
			// 
			this.tbTime.BackColor = System.Drawing.SystemColors.Window;
			this.tbTime.Location = new System.Drawing.Point(4, 6);
			this.tbTime.Name = "tbTime";
			this.tbTime.ScrollValue = 150;
			this.tbTime.SelectedIndices = new int[0];
			this.tbTime.SelectionMode = System.Windows.Forms.SelectionMode.None;
			this.tbTime.Size = new System.Drawing.Size(15, 561);
			this.tbTime.TabIndex = 59;
			// 
			// butAudit
			// 
			this.butAudit.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAudit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butAudit.Autosize = true;
			this.butAudit.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAudit.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAudit.CornerRadius = 4F;
			this.butAudit.Location = new System.Drawing.Point(880, 536);
			this.butAudit.Name = "butAudit";
			this.butAudit.Size = new System.Drawing.Size(92, 24);
			this.butAudit.TabIndex = 125;
			this.butAudit.Text = "Audit Trail";
			this.butAudit.Click += new System.EventHandler(this.butAudit_Click);
			// 
			// butTask
			// 
			this.butTask.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butTask.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butTask.Autosize = true;
			this.butTask.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTask.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTask.CornerRadius = 4F;
			this.butTask.Location = new System.Drawing.Point(880, 562);
			this.butTask.Name = "butTask";
			this.butTask.Size = new System.Drawing.Size(92, 24);
			this.butTask.TabIndex = 124;
			this.butTask.Text = "To Task List";
			this.butTask.Click += new System.EventHandler(this.butTask_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.Image = global::OpenDental.Properties.Resources.deleteX;
			this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDelete.Location = new System.Drawing.Point(880, 614);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(92, 24);
			this.butDelete.TabIndex = 123;
			this.butDelete.Text = "&Delete";
			this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
			// 
			// butPin
			// 
			this.butPin.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butPin.Autosize = true;
			this.butPin.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPin.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPin.CornerRadius = 4F;
			this.butPin.Image = ((System.Drawing.Image)(resources.GetObject("butPin.Image")));
			this.butPin.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPin.Location = new System.Drawing.Point(880, 588);
			this.butPin.Name = "butPin";
			this.butPin.Size = new System.Drawing.Size(92, 24);
			this.butPin.TabIndex = 122;
			this.butPin.Text = "&Pinboard";
			this.butPin.Click += new System.EventHandler(this.butPin_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(880, 640);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(92, 24);
			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.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(880, 666);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(92, 24);
			this.butCancel.TabIndex = 0;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butText
			// 
			this.butText.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butText.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butText.Autosize = true;
			this.butText.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butText.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butText.CornerRadius = 4F;
			this.butText.Image = global::OpenDental.Properties.Resources.Text;
			this.butText.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butText.Location = new System.Drawing.Point(880, 431);
			this.butText.Name = "butText";
			this.butText.Size = new System.Drawing.Size(92, 24);
			this.butText.TabIndex = 143;
			this.butText.Text = "Text";
			this.butText.Click += new System.EventHandler(this.butText_Click);
			// 
			// FormApptEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(974, 698);
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.listQuickAdd);
			this.Controls.Add(this.labelQuickAdd);
			this.Controls.Add(this.butPDF);
			this.Controls.Add(this.gridFields);
			this.Controls.Add(this.butComplete);
			this.Controls.Add(this.butDeleteProc);
			this.Controls.Add(this.butAdd);
			this.Controls.Add(this.textNote);
			this.Controls.Add(this.labelApptNote);
			this.Controls.Add(this.butText);
			this.Controls.Add(this.butAddComm);
			this.Controls.Add(this.butSlider);
			this.Controls.Add(this.tbTime);
			this.Controls.Add(this.gridPatient);
			this.Controls.Add(this.gridComm);
			this.Controls.Add(this.gridProc);
			this.Controls.Add(this.butAudit);
			this.Controls.Add(this.butTask);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.butPin);
			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 = "FormApptEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Appointment";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormApptEdit_FormClosing);
			this.Load += new System.EventHandler(this.FormApptEdit_Load);
			this.panel1.ResumeLayout(false);
			this.panel1.PerformLayout();
			this.ResumeLayout(false);

		}
Esempio n. 29
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProcCodeEdit));
     this.label1 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.textProcCode = new System.Windows.Forms.TextBox();
     this.textAbbrev = new System.Windows.Forms.TextBox();
     this.textDescription = new System.Windows.Forms.TextBox();
     this.listTreatArea = new System.Windows.Forms.ListBox();
     this.checkNoBillIns = new System.Windows.Forms.CheckBox();
     this.listCategory = new System.Windows.Forms.ListBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.butSlider = new System.Windows.Forms.Button();
     this.textTime2 = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.checkIsHygiene = new System.Windows.Forms.CheckBox();
     this.textAlternateCode1 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.checkIsProsth = new System.Windows.Forms.CheckBox();
     this.textMedicalCode = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.listPaintType = new System.Windows.Forms.ListBox();
     this.labelColor = new System.Windows.Forms.Label();
     this.butColor = new System.Windows.Forms.Button();
     this.textLaymanTerm = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.checkIsCanadianLab = new System.Windows.Forms.CheckBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBaseUnits = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.textSubstitutionCode = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.comboSubstOnlyIf = new System.Windows.Forms.ComboBox();
     this.checkMultiVisit = new System.Windows.Forms.CheckBox();
     this.butAddNote = new OpenDental.UI.Button();
     this.gridNotes = new OpenDental.UI.ODGrid();
     this.tbTime = new OpenDental.TableTimeBar();
     this.butColorClear = new OpenDental.UI.Button();
     this.gridFees = new OpenDental.UI.ODGrid();
     this.textNote = new OpenDental.ODtextBox();
     this.butCancel = new OpenDental.UI.Button();
     this.butOK = new OpenDental.UI.Button();
     this.labelDrugNDC = new System.Windows.Forms.Label();
     this.labelRevenueCode = new System.Windows.Forms.Label();
     this.textDrugNDC = new System.Windows.Forms.TextBox();
     this.textRevenueCode = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(97,5);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(82,14);
     this.label1.TabIndex = 0;
     this.label1.Text = "Proc Code";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(474,247);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(100,14);
     this.label4.TabIndex = 3;
     this.label4.Text = "Treatment Area";
     this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(600,13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(100,14);
     this.label5.TabIndex = 4;
     this.label5.Text = "Category";
     this.label5.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(2,58);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53,39);
     this.label6.TabIndex = 5;
     this.label6.Text = "Time Pattern";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(83,104);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(94,16);
     this.label7.TabIndex = 6;
     this.label7.Text = "Abbreviation";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(83,85);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(94,14);
     this.label8.TabIndex = 7;
     this.label8.Text = "Description";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(43,354);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(148,14);
     this.label10.TabIndex = 9;
     this.label10.Text = "Default Note";
     this.label10.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textProcCode
     //
     this.textProcCode.Location = new System.Drawing.Point(179,3);
     this.textProcCode.Name = "textProcCode";
     this.textProcCode.ReadOnly = true;
     this.textProcCode.Size = new System.Drawing.Size(100,20);
     this.textProcCode.TabIndex = 14;
     //
     // textAbbrev
     //
     this.textAbbrev.Location = new System.Drawing.Point(179,103);
     this.textAbbrev.MaxLength = 20;
     this.textAbbrev.Name = "textAbbrev";
     this.textAbbrev.Size = new System.Drawing.Size(100,20);
     this.textAbbrev.TabIndex = 1;
     //
     // textDescription
     //
     this.textDescription.Location = new System.Drawing.Point(179,83);
     this.textDescription.MaxLength = 255;
     this.textDescription.Name = "textDescription";
     this.textDescription.Size = new System.Drawing.Size(287,20);
     this.textDescription.TabIndex = 0;
     //
     // listTreatArea
     //
     this.listTreatArea.Items.AddRange(new object[] {
     "Surface",
     "Tooth",
     "Mouth",
     "Quadrant",
     "Sextant",
     "Arch",
     "Tooth Range"});
     this.listTreatArea.Location = new System.Drawing.Point(476,265);
     this.listTreatArea.Name = "listTreatArea";
     this.listTreatArea.Size = new System.Drawing.Size(118,95);
     this.listTreatArea.TabIndex = 2;
     //
     // checkNoBillIns
     //
     this.checkNoBillIns.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkNoBillIns.Location = new System.Drawing.Point(45,278);
     this.checkNoBillIns.Name = "checkNoBillIns";
     this.checkNoBillIns.Size = new System.Drawing.Size(284,18);
     this.checkNoBillIns.TabIndex = 6;
     this.checkNoBillIns.Text = "Do not usually bill to insurance";
     //
     // listCategory
     //
     this.listCategory.Location = new System.Drawing.Point(600,31);
     this.listCategory.Name = "listCategory";
     this.listCategory.Size = new System.Drawing.Size(120,238);
     this.listCategory.TabIndex = 3;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(184,669);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(388,29);
     this.label3.TabIndex = 28;
     this.label3.Text = "There is no way to delete a code once created because it might have been used som" +
     "eplace.  Instead, move it to a category like \"obsolete\"";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(750,670);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(178,28);
     this.label9.TabIndex = 29;
     this.label9.Text = "Even if you press cancel, changes to fees will not be undone.";
     this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butSlider
     //
     this.butSlider.BackColor = System.Drawing.SystemColors.ControlDark;
     this.butSlider.Location = new System.Drawing.Point(12,113);
     this.butSlider.Name = "butSlider";
     this.butSlider.Size = new System.Drawing.Size(12,15);
     this.butSlider.TabIndex = 31;
     this.butSlider.UseVisualStyleBackColor = false;
     this.butSlider.MouseDown += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseDown);
     this.butSlider.MouseMove += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseMove);
     this.butSlider.MouseUp += new System.Windows.Forms.MouseEventHandler(this.butSlider_MouseUp);
     //
     // textTime2
     //
     this.textTime2.Location = new System.Drawing.Point(10,674);
     this.textTime2.Name = "textTime2";
     this.textTime2.Size = new System.Drawing.Size(60,20);
     this.textTime2.TabIndex = 32;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(76,678);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(102,16);
     this.label11.TabIndex = 33;
     this.label11.Text = "Minutes";
     //
     // checkIsHygiene
     //
     this.checkIsHygiene.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsHygiene.Location = new System.Drawing.Point(45,296);
     this.checkIsHygiene.Name = "checkIsHygiene";
     this.checkIsHygiene.Size = new System.Drawing.Size(284,18);
     this.checkIsHygiene.TabIndex = 7;
     this.checkIsHygiene.Text = "Is Hygiene procedure";
     //
     // textAlternateCode1
     //
     this.textAlternateCode1.Location = new System.Drawing.Point(179,23);
     this.textAlternateCode1.MaxLength = 15;
     this.textAlternateCode1.Name = "textAlternateCode1";
     this.textAlternateCode1.Size = new System.Drawing.Size(100,20);
     this.textAlternateCode1.TabIndex = 38;
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(100,25);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(79,14);
     this.label12.TabIndex = 37;
     this.label12.Text = "Alt Code";
     this.label12.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(285,25);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(161,19);
     this.label13.TabIndex = 39;
     this.label13.Text = "(For some Medicaid)";
     //
     // checkIsProsth
     //
     this.checkIsProsth.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsProsth.Location = new System.Drawing.Point(45,314);
     this.checkIsProsth.Name = "checkIsProsth";
     this.checkIsProsth.Size = new System.Drawing.Size(284,18);
     this.checkIsProsth.TabIndex = 41;
     this.checkIsProsth.Text = "Is Prosthesis (Crown,Bridge,Denture,RPD)";
     //
     // textMedicalCode
     //
     this.textMedicalCode.Location = new System.Drawing.Point(179,43);
     this.textMedicalCode.MaxLength = 15;
     this.textMedicalCode.Name = "textMedicalCode";
     this.textMedicalCode.Size = new System.Drawing.Size(100,20);
     this.textMedicalCode.TabIndex = 43;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(100,45);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(79,14);
     this.label14.TabIndex = 42;
     this.label14.Text = "Medical Code";
     this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(474,10);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(100,18);
     this.label15.TabIndex = 46;
     this.label15.Text = "Paint Type";
     this.label15.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listPaintType
     //
     this.listPaintType.Location = new System.Drawing.Point(476,31);
     this.listPaintType.Name = "listPaintType";
     this.listPaintType.Size = new System.Drawing.Size(118,212);
     this.listPaintType.TabIndex = 45;
     //
     // labelColor
     //
     this.labelColor.Location = new System.Drawing.Point(75,218);
     this.labelColor.Name = "labelColor";
     this.labelColor.Size = new System.Drawing.Size(293,16);
     this.labelColor.TabIndex = 48;
     this.labelColor.Text = "Color override instead of using status colors.";
     this.labelColor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butColor
     //
     this.butColor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.butColor.Location = new System.Drawing.Point(44,215);
     this.butColor.Name = "butColor";
     this.butColor.Size = new System.Drawing.Size(30,20);
     this.butColor.TabIndex = 47;
     this.butColor.Click += new System.EventHandler(this.butColor_Click);
     //
     // textLaymanTerm
     //
     this.textLaymanTerm.Location = new System.Drawing.Point(179,123);
     this.textLaymanTerm.MaxLength = 255;
     this.textLaymanTerm.Name = "textLaymanTerm";
     this.textLaymanTerm.Size = new System.Drawing.Size(178,20);
     this.textLaymanTerm.TabIndex = 50;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(53,124);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(124,16);
     this.label2.TabIndex = 51;
     this.label2.Text = "Layman\'s Term";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkIsCanadianLab
     //
     this.checkIsCanadianLab.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIsCanadianLab.Location = new System.Drawing.Point(45,332);
     this.checkIsCanadianLab.Name = "checkIsCanadianLab";
     this.checkIsCanadianLab.Size = new System.Drawing.Size(284,18);
     this.checkIsCanadianLab.TabIndex = 52;
     this.checkIsCanadianLab.Text = "Is Lab Fee";
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(74,146);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(103,13);
     this.label16.TabIndex = 53;
     this.label16.Text = "Base Units";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBaseUnits
     //
     this.textBaseUnits.Location = new System.Drawing.Point(179,143);
     this.textBaseUnits.Name = "textBaseUnits";
     this.textBaseUnits.Size = new System.Drawing.Size(30,20);
     this.textBaseUnits.TabIndex = 54;
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(215,146);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(251,17);
     this.label17.TabIndex = 55;
     this.label17.Text = "(zero unless for some medical claims)";
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(56,66);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(121,13);
     this.label18.TabIndex = 56;
     this.label18.Text = "Ins. Subst Code";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textSubstitutionCode
     //
     this.textSubstitutionCode.Location = new System.Drawing.Point(179,63);
     this.textSubstitutionCode.MaxLength = 255;
     this.textSubstitutionCode.Name = "textSubstitutionCode";
     this.textSubstitutionCode.Size = new System.Drawing.Size(100,20);
     this.textSubstitutionCode.TabIndex = 57;
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(280,64);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(46,18);
     this.label19.TabIndex = 58;
     this.label19.Text = "Only if";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboSubstOnlyIf
     //
     this.comboSubstOnlyIf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSubstOnlyIf.FormattingEnabled = true;
     this.comboSubstOnlyIf.Location = new System.Drawing.Point(321,62);
     this.comboSubstOnlyIf.Name = "comboSubstOnlyIf";
     this.comboSubstOnlyIf.Size = new System.Drawing.Size(145,21);
     this.comboSubstOnlyIf.TabIndex = 61;
     //
     // checkMultiVisit
     //
     this.checkMultiVisit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkMultiVisit.Location = new System.Drawing.Point(45,260);
     this.checkMultiVisit.Name = "checkMultiVisit";
     this.checkMultiVisit.Size = new System.Drawing.Size(284,18);
     this.checkMultiVisit.TabIndex = 62;
     this.checkMultiVisit.Text = "Multi Visit";
     this.checkMultiVisit.UseVisualStyleBackColor = true;
     //
     // 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(600,450);
     this.butAddNote.Name = "butAddNote";
     this.butAddNote.Size = new System.Drawing.Size(88,26);
     this.butAddNote.TabIndex = 60;
     this.butAddNote.Text = "Add Note";
     this.butAddNote.Click += new System.EventHandler(this.butAddNote_Click);
     //
     // gridNotes
     //
     this.gridNotes.HScrollVisible = false;
     this.gridNotes.Location = new System.Drawing.Point(44,482);
     this.gridNotes.Name = "gridNotes";
     this.gridNotes.ScrollValue = 0;
     this.gridNotes.Size = new System.Drawing.Size(676,180);
     this.gridNotes.TabIndex = 59;
     this.gridNotes.Title = "Notes and Times for Specific Providers";
     this.gridNotes.TranslationName = "TableProcedureNotes";
     this.gridNotes.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridNotes_CellDoubleClick);
     //
     // tbTime
     //
     this.tbTime.BackColor = System.Drawing.SystemColors.Window;
     this.tbTime.Location = new System.Drawing.Point(10,108);
     this.tbTime.Name = "tbTime";
     this.tbTime.ScrollValue = 150;
     this.tbTime.SelectedIndices = new int[0];
     this.tbTime.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.tbTime.Size = new System.Drawing.Size(15,561);
     this.tbTime.TabIndex = 30;
     //
     // butColorClear
     //
     this.butColorClear.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butColorClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butColorClear.Autosize = true;
     this.butColorClear.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butColorClear.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butColorClear.CornerRadius = 4F;
     this.butColorClear.Location = new System.Drawing.Point(44,237);
     this.butColorClear.Name = "butColorClear";
     this.butColorClear.Size = new System.Drawing.Size(75,20);
     this.butColorClear.TabIndex = 49;
     this.butColorClear.Text = "Clear Color";
     this.butColorClear.Click += new System.EventHandler(this.butColorClear_Click);
     //
     // gridFees
     //
     this.gridFees.HScrollVisible = false;
     this.gridFees.Location = new System.Drawing.Point(726,31);
     this.gridFees.Name = "gridFees";
     this.gridFees.ScrollValue = 0;
     this.gridFees.Size = new System.Drawing.Size(199,445);
     this.gridFees.TabIndex = 44;
     this.gridFees.Title = "Fees";
     this.gridFees.TranslationName = "TableProcFee";
     this.gridFees.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridFees_CellDoubleClick);
     //
     // textNote
     //
     this.textNote.AcceptsReturn = true;
     this.textNote.Location = new System.Drawing.Point(44,372);
     this.textNote.Multiline = true;
     this.textNote.Name = "textNote";
     this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.Procedure;
     this.textNote.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textNote.Size = new System.Drawing.Size(550,104);
     this.textNote.TabIndex = 40;
     //
     // 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(850,636);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,26);
     this.butCancel.TabIndex = 11;
     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(850,600);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(75,26);
     this.butOK.TabIndex = 10;
     this.butOK.Text = "&OK";
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // labelDrugNDC
     //
     this.labelDrugNDC.Location = new System.Drawing.Point(74,166);
     this.labelDrugNDC.Name = "labelDrugNDC";
     this.labelDrugNDC.Size = new System.Drawing.Size(103,13);
     this.labelDrugNDC.TabIndex = 53;
     this.labelDrugNDC.Text = "Drug NDC";
     this.labelDrugNDC.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelRevenueCode
     //
     this.labelRevenueCode.Location = new System.Drawing.Point(31,186);
     this.labelRevenueCode.Name = "labelRevenueCode";
     this.labelRevenueCode.Size = new System.Drawing.Size(146,13);
     this.labelRevenueCode.TabIndex = 53;
     this.labelRevenueCode.Text = "Default Revenue Code";
     this.labelRevenueCode.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDrugNDC
     //
     this.textDrugNDC.Location = new System.Drawing.Point(179,163);
     this.textDrugNDC.Name = "textDrugNDC";
     this.textDrugNDC.Size = new System.Drawing.Size(100,20);
     this.textDrugNDC.TabIndex = 54;
     //
     // textRevenueCode
     //
     this.textRevenueCode.Location = new System.Drawing.Point(179,183);
     this.textRevenueCode.Name = "textRevenueCode";
     this.textRevenueCode.Size = new System.Drawing.Size(100,20);
     this.textRevenueCode.TabIndex = 54;
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(285,166);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(181,17);
     this.label20.TabIndex = 55;
     this.label20.Text = "(11 digits or blank)";
     //
     // FormProcCodeEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.ClientSize = new System.Drawing.Size(941,707);
     this.Controls.Add(this.checkMultiVisit);
     this.Controls.Add(this.comboSubstOnlyIf);
     this.Controls.Add(this.butAddNote);
     this.Controls.Add(this.gridNotes);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.textSubstitutionCode);
     this.Controls.Add(this.butSlider);
     this.Controls.Add(this.tbTime);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.label20);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.textRevenueCode);
     this.Controls.Add(this.textDrugNDC);
     this.Controls.Add(this.textBaseUnits);
     this.Controls.Add(this.labelRevenueCode);
     this.Controls.Add(this.labelDrugNDC);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.checkIsCanadianLab);
     this.Controls.Add(this.textLaymanTerm);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butColorClear);
     this.Controls.Add(this.labelColor);
     this.Controls.Add(this.butColor);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.listPaintType);
     this.Controls.Add(this.gridFees);
     this.Controls.Add(this.textMedicalCode);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.checkIsProsth);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.textAlternateCode1);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.checkIsHygiene);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.textTime2);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.textAbbrev);
     this.Controls.Add(this.textProcCode);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.listCategory);
     this.Controls.Add(this.checkNoBillIns);
     this.Controls.Add(this.listTreatArea);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormProcCodeEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Procedure Code";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.FormProcCodeEdit_Closing);
     this.Load += new System.EventHandler(this.FormProcCodeEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPhoneEmpDefaults));
			this.butClose = new OpenDental.UI.Button();
			this.butAdd = new OpenDental.UI.Button();
			this.gridMain = 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.Location = new System.Drawing.Point(879, 546);
			this.butClose.Name = "butClose";
			this.butClose.Size = new System.Drawing.Size(75, 24);
			this.butClose.TabIndex = 11;
			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.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.Location = new System.Drawing.Point(446, 546);
			this.butAdd.Name = "butAdd";
			this.butAdd.Size = new System.Drawing.Size(75, 24);
			this.butAdd.TabIndex = 12;
			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.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(8, 14);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(946, 524);
			this.gridMain.TabIndex = 1;
			this.gridMain.Title = "Phone Settings";
			this.gridMain.TranslationName = "";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// FormPhoneEmpDefaults
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(966, 582);
			this.Controls.Add(this.butAdd);
			this.Controls.Add(this.butClose);
			this.Controls.Add(this.gridMain);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormPhoneEmpDefaults";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Phone Settings";
			this.Load += new System.EventHandler(this.FormAccountPick_Load);
			this.ResumeLayout(false);

		}
Esempio n. 31
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormComputers));
     this.listComputer         = new System.Windows.Forms.ListBox();
     this.butClose             = new OpenDental.UI.Button();
     this.label1               = new System.Windows.Forms.Label();
     this.butDelete            = new OpenDental.UI.Button();
     this.label2               = new System.Windows.Forms.Label();
     this.butSetSimpleGraphics = new OpenDental.UI.Button();
     this.label3               = new System.Windows.Forms.Label();
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.textCurComp          = new System.Windows.Forms.TextBox();
     this.labelCurComp         = new System.Windows.Forms.Label();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.groupBox3            = new System.Windows.Forms.GroupBox();
     this.textServComment      = new System.Windows.Forms.TextBox();
     this.textVersion          = new System.Windows.Forms.TextBox();
     this.textService          = new System.Windows.Forms.TextBox();
     this.textName             = new System.Windows.Forms.TextBox();
     this.labelServComment     = new System.Windows.Forms.Label();
     this.labelVersion         = new System.Windows.Forms.Label();
     this.labelService         = new System.Windows.Forms.Label();
     this.labelName            = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // listComputer
     //
     this.listComputer.Items.AddRange(new object[] {
         ""
     });
     this.listComputer.Location          = new System.Drawing.Point(17, 265);
     this.listComputer.Name              = "listComputer";
     this.listComputer.Size              = new System.Drawing.Size(282, 277);
     this.listComputer.TabIndex          = 2;
     this.listComputer.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listComputer_MouseDoubleClick);
     //
     // 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(448, 613);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 3;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 62);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(409, 44);
     this.label1.TabIndex = 43;
     this.label1.Text     = "Computers are added to this list every time you use Open Dental.  You can safely " +
                            "delete unused computer names from this list to speed up messaging.";
     //
     // 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.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location   = new System.Drawing.Point(5, 408);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(75, 26);
     this.butDelete.TabIndex   = 4;
     this.butDelete.Text       = "&Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(4, 100);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(294, 15);
     this.label2.TabIndex  = 45;
     this.label2.Text      = "ComputerName";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butSetSimpleGraphics
     //
     this.butSetSimpleGraphics.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSetSimpleGraphics.Autosize            = true;
     this.butSetSimpleGraphics.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSetSimpleGraphics.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSetSimpleGraphics.CornerRadius        = 4F;
     this.butSetSimpleGraphics.Location            = new System.Drawing.Point(40, 182);
     this.butSetSimpleGraphics.Name     = "butSetSimpleGraphics";
     this.butSetSimpleGraphics.Size     = new System.Drawing.Size(115, 24);
     this.butSetSimpleGraphics.TabIndex = 3;
     this.butSetSimpleGraphics.Text     = "Use Simple Graphics";
     this.butSetSimpleGraphics.Click   += new System.EventHandler(this.butSetSimpleGraphics_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(18, 25);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(161, 151);
     this.label3.TabIndex = 82;
     this.label3.Text     = resources.GetString("label3.Text");
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.butSetSimpleGraphics);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Location = new System.Drawing.Point(310, 264);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(195, 219);
     this.groupBox1.TabIndex = 83;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Fix a Workstation";
     //
     // textCurComp
     //
     this.textCurComp.Enabled  = false;
     this.textCurComp.Location = new System.Drawing.Point(119, 20);
     this.textCurComp.Name     = "textCurComp";
     this.textCurComp.ReadOnly = true;
     this.textCurComp.Size     = new System.Drawing.Size(282, 20);
     this.textCurComp.TabIndex = 1;
     //
     // labelCurComp
     //
     this.labelCurComp.Location  = new System.Drawing.Point(6, 22);
     this.labelCurComp.Name      = "labelCurComp";
     this.labelCurComp.Size      = new System.Drawing.Size(110, 15);
     this.labelCurComp.TabIndex  = 86;
     this.labelCurComp.Text      = "Current Computer";
     this.labelCurComp.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.textCurComp);
     this.groupBox2.Controls.Add(this.butDelete);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.labelCurComp);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Location = new System.Drawing.Point(12, 145);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(511, 447);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Workstation";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.textServComment);
     this.groupBox3.Controls.Add(this.textVersion);
     this.groupBox3.Controls.Add(this.textService);
     this.groupBox3.Controls.Add(this.textName);
     this.groupBox3.Controls.Add(this.labelServComment);
     this.groupBox3.Controls.Add(this.labelVersion);
     this.groupBox3.Controls.Add(this.labelService);
     this.groupBox3.Controls.Add(this.labelName);
     this.groupBox3.Location = new System.Drawing.Point(12, 12);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(511, 127);
     this.groupBox3.TabIndex = 1;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Database Server";
     //
     // textServComment
     //
     this.textServComment.Enabled  = false;
     this.textServComment.Location = new System.Drawing.Point(119, 92);
     this.textServComment.Name     = "textServComment";
     this.textServComment.ReadOnly = true;
     this.textServComment.Size     = new System.Drawing.Size(282, 20);
     this.textServComment.TabIndex = 4;
     //
     // textVersion
     //
     this.textVersion.Enabled  = false;
     this.textVersion.Location = new System.Drawing.Point(119, 68);
     this.textVersion.Name     = "textVersion";
     this.textVersion.ReadOnly = true;
     this.textVersion.Size     = new System.Drawing.Size(282, 20);
     this.textVersion.TabIndex = 3;
     //
     // textService
     //
     this.textService.Enabled  = false;
     this.textService.Location = new System.Drawing.Point(119, 44);
     this.textService.Name     = "textService";
     this.textService.ReadOnly = true;
     this.textService.Size     = new System.Drawing.Size(282, 20);
     this.textService.TabIndex = 2;
     //
     // textName
     //
     this.textName.Enabled  = false;
     this.textName.Location = new System.Drawing.Point(119, 20);
     this.textName.Name     = "textName";
     this.textName.ReadOnly = true;
     this.textName.Size     = new System.Drawing.Size(282, 20);
     this.textName.TabIndex = 1;
     //
     // labelServComment
     //
     this.labelServComment.Location  = new System.Drawing.Point(6, 93);
     this.labelServComment.Name      = "labelServComment";
     this.labelServComment.Size      = new System.Drawing.Size(110, 17);
     this.labelServComment.TabIndex  = 90;
     this.labelServComment.Text      = "Service Comment";
     this.labelServComment.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelVersion
     //
     this.labelVersion.Location  = new System.Drawing.Point(6, 69);
     this.labelVersion.Name      = "labelVersion";
     this.labelVersion.Size      = new System.Drawing.Size(110, 17);
     this.labelVersion.TabIndex  = 89;
     this.labelVersion.Text      = "Service Version";
     this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelService
     //
     this.labelService.Location  = new System.Drawing.Point(6, 45);
     this.labelService.Name      = "labelService";
     this.labelService.Size      = new System.Drawing.Size(110, 17);
     this.labelService.TabIndex  = 88;
     this.labelService.Text      = "Service Name";
     this.labelService.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelName
     //
     this.labelName.Location  = new System.Drawing.Point(6, 21);
     this.labelName.Name      = "labelName";
     this.labelName.Size      = new System.Drawing.Size(110, 17);
     this.labelName.TabIndex  = 87;
     this.labelName.Text      = "Server Name";
     this.labelName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormComputers
     //
     this.AcceptButton = this.butClose;
     this.CancelButton = this.butClose;
     this.ClientSize   = new System.Drawing.Size(535, 651);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.listComputer);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximumSize     = new System.Drawing.Size(551, 690);
     this.MinimumSize     = new System.Drawing.Size(551, 690);
     this.Name            = "FormComputers";
     this.ShowInTaskbar   = false;
     this.Text            = "Computers";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.FormComputers_Closing);
     this.Load           += new System.EventHandler(this.FormComputers_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 32
0
		private void InitializeComponent(){
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormClaimsSend));
			this.label6 = new System.Windows.Forms.Label();
			this.contextMenuStatus = new System.Windows.Forms.ContextMenu();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.calendarTo = new System.Windows.Forms.MonthCalendar();
			this.calendarFrom = new System.Windows.Forms.MonthCalendar();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.panelSplitter = new System.Windows.Forms.Panel();
			this.panelHistory = new System.Windows.Forms.Panel();
			this.gridHistory = new OpenDental.UI.ODGrid();
			this.panel1 = new System.Windows.Forms.Panel();
			this.ToolBarHistory = new OpenDental.UI.ODToolBar();
			this.butDropTo = new OpenDental.UI.Button();
			this.butDropFrom = new OpenDental.UI.Button();
			this.textDateFrom = new OpenDental.ValidDate();
			this.textDateTo = new OpenDental.ValidDate();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.ToolBarMain = new OpenDental.UI.ODToolBar();
			this.contextMenuEclaims = new System.Windows.Forms.ContextMenu();
			this.comboCustomTracking = new System.Windows.Forms.ComboBox();
			this.labelCustomTracking = new System.Windows.Forms.Label();
			this.panelHistory.SuspendLayout();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// label6
			// 
			this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label6.Location = new System.Drawing.Point(107, -44);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(112, 44);
			this.label6.TabIndex = 21;
			this.label6.Text = "Insurance Claims";
			this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			// 
			// imageList1
			// 
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
			this.imageList1.Images.SetKeyName(0, "");
			this.imageList1.Images.SetKeyName(1, "");
			this.imageList1.Images.SetKeyName(2, "");
			this.imageList1.Images.SetKeyName(3, "");
			this.imageList1.Images.SetKeyName(4, "");
			this.imageList1.Images.SetKeyName(5, "");
			this.imageList1.Images.SetKeyName(6, "");
			// 
			// calendarTo
			// 
			this.calendarTo.Location = new System.Drawing.Point(196, 29);
			this.calendarTo.MaxSelectionCount = 1;
			this.calendarTo.Name = "calendarTo";
			this.calendarTo.TabIndex = 42;
			this.calendarTo.Visible = false;
			this.calendarTo.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarTo_DateSelected);
			// 
			// calendarFrom
			// 
			this.calendarFrom.Location = new System.Drawing.Point(6, 29);
			this.calendarFrom.MaxSelectionCount = 1;
			this.calendarFrom.Name = "calendarFrom";
			this.calendarFrom.TabIndex = 39;
			this.calendarFrom.Visible = false;
			this.calendarFrom.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarFrom_DateSelected);
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(196, 5);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(72, 18);
			this.label2.TabIndex = 36;
			this.label2.Text = "To";
			this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(1, 5);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(75, 18);
			this.label1.TabIndex = 34;
			this.label1.Text = "From";
			this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// panelSplitter
			// 
			this.panelSplitter.Cursor = System.Windows.Forms.Cursors.SizeNS;
			this.panelSplitter.Location = new System.Drawing.Point(2, 398);
			this.panelSplitter.Name = "panelSplitter";
			this.panelSplitter.Size = new System.Drawing.Size(961, 6);
			this.panelSplitter.TabIndex = 50;
			this.panelSplitter.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseDown);
			this.panelSplitter.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseMove);
			this.panelSplitter.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseUp);
			// 
			// panelHistory
			// 
			this.panelHistory.Controls.Add(this.calendarFrom);
			this.panelHistory.Controls.Add(this.label1);
			this.panelHistory.Controls.Add(this.calendarTo);
			this.panelHistory.Controls.Add(this.gridHistory);
			this.panelHistory.Controls.Add(this.panel1);
			this.panelHistory.Controls.Add(this.butDropTo);
			this.panelHistory.Controls.Add(this.butDropFrom);
			this.panelHistory.Controls.Add(this.textDateFrom);
			this.panelHistory.Controls.Add(this.label2);
			this.panelHistory.Controls.Add(this.textDateTo);
			this.panelHistory.Location = new System.Drawing.Point(0, 403);
			this.panelHistory.Name = "panelHistory";
			this.panelHistory.Size = new System.Drawing.Size(972, 286);
			this.panelHistory.TabIndex = 51;
			// 
			// gridHistory
			// 
			this.gridHistory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridHistory.HScrollVisible = false;
			this.gridHistory.Location = new System.Drawing.Point(4, 31);
			this.gridHistory.Name = "gridHistory";
			this.gridHistory.ScrollValue = 0;
			this.gridHistory.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridHistory.Size = new System.Drawing.Size(959, 252);
			this.gridHistory.TabIndex = 33;
			this.gridHistory.Title = "History";
			this.gridHistory.TranslationName = "TableClaimHistory";
			this.gridHistory.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridHistory_CellDoubleClick);
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panel1.Controls.Add(this.ToolBarHistory);
			this.panel1.Location = new System.Drawing.Point(387, 0);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(576, 27);
			this.panel1.TabIndex = 44;
			// 
			// ToolBarHistory
			// 
			this.ToolBarHistory.BackColor = System.Drawing.SystemColors.Control;
			this.ToolBarHistory.ImageList = this.imageList1;
			this.ToolBarHistory.Location = new System.Drawing.Point(1, 1);
			this.ToolBarHistory.Name = "ToolBarHistory";
			this.ToolBarHistory.Size = new System.Drawing.Size(575, 25);
			this.ToolBarHistory.TabIndex = 43;
			this.ToolBarHistory.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarHistory_ButtonClick);
			// 
			// butDropTo
			// 
			this.butDropTo.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDropTo.Autosize = true;
			this.butDropTo.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDropTo.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDropTo.CornerRadius = 4F;
			this.butDropTo.Location = new System.Drawing.Point(352, 4);
			this.butDropTo.Name = "butDropTo";
			this.butDropTo.Size = new System.Drawing.Size(22, 23);
			this.butDropTo.TabIndex = 41;
			this.butDropTo.Text = "V";
			this.butDropTo.UseVisualStyleBackColor = true;
			this.butDropTo.Click += new System.EventHandler(this.butDropTo_Click);
			// 
			// butDropFrom
			// 
			this.butDropFrom.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDropFrom.Autosize = true;
			this.butDropFrom.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDropFrom.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDropFrom.CornerRadius = 4F;
			this.butDropFrom.Location = new System.Drawing.Point(162, 4);
			this.butDropFrom.Name = "butDropFrom";
			this.butDropFrom.Size = new System.Drawing.Size(22, 23);
			this.butDropFrom.TabIndex = 40;
			this.butDropFrom.Text = "V";
			this.butDropFrom.UseVisualStyleBackColor = true;
			this.butDropFrom.Click += new System.EventHandler(this.butDropFrom_Click);
			// 
			// textDateFrom
			// 
			this.textDateFrom.Location = new System.Drawing.Point(79, 6);
			this.textDateFrom.Name = "textDateFrom";
			this.textDateFrom.Size = new System.Drawing.Size(81, 20);
			this.textDateFrom.TabIndex = 35;
			// 
			// textDateTo
			// 
			this.textDateTo.Location = new System.Drawing.Point(269, 6);
			this.textDateTo.Name = "textDateTo";
			this.textDateTo.Size = new System.Drawing.Size(81, 20);
			this.textDateTo.TabIndex = 37;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(74, 26);
			this.comboClinic.MaxDropDownItems = 40;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(160, 21);
			this.comboClinic.TabIndex = 53;
			this.comboClinic.SelectionChangeCommitted += new System.EventHandler(this.comboClinic_SelectionChangeCommitted);
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(7, 29);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(65, 14);
			this.labelClinic.TabIndex = 52;
			this.labelClinic.Text = "Clinic Filter";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// gridMain
			// 
			this.gridMain.HScrollVisible = true;
			this.gridMain.Location = new System.Drawing.Point(4, 49);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridMain.Size = new System.Drawing.Size(959, 350);
			this.gridMain.TabIndex = 32;
			this.gridMain.Title = "Claims Waiting to Send";
			this.gridMain.TranslationName = "TableQueue";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// ToolBarMain
			// 
			this.ToolBarMain.Dock = System.Windows.Forms.DockStyle.Top;
			this.ToolBarMain.ImageList = this.imageList1;
			this.ToolBarMain.Location = new System.Drawing.Point(0, 0);
			this.ToolBarMain.Name = "ToolBarMain";
			this.ToolBarMain.Size = new System.Drawing.Size(971, 25);
			this.ToolBarMain.TabIndex = 31;
			this.ToolBarMain.ButtonClick += new OpenDental.UI.ODToolBarButtonClickEventHandler(this.ToolBarMain_ButtonClick);
			// 
			// comboCustomTracking
			// 
			this.comboCustomTracking.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCustomTracking.Location = new System.Drawing.Point(384, 26);
			this.comboCustomTracking.MaxDropDownItems = 40;
			this.comboCustomTracking.Name = "comboCustomTracking";
			this.comboCustomTracking.Size = new System.Drawing.Size(160, 21);
			this.comboCustomTracking.TabIndex = 55;
			this.comboCustomTracking.SelectionChangeCommitted += new System.EventHandler(this.comboCustomTracking_SelectionChangeCommitted);
			// 
			// labelCustomTracking
			// 
			this.labelCustomTracking.Location = new System.Drawing.Point(240, 29);
			this.labelCustomTracking.Name = "labelCustomTracking";
			this.labelCustomTracking.Size = new System.Drawing.Size(142, 14);
			this.labelCustomTracking.TabIndex = 54;
			this.labelCustomTracking.Text = "Custom Tracking Filter";
			this.labelCustomTracking.TextAlign = System.Drawing.ContentAlignment.BottomRight;
			// 
			// FormClaimsSend
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(971, 691);
			this.Controls.Add(this.comboCustomTracking);
			this.Controls.Add(this.labelCustomTracking);
			this.Controls.Add(this.comboClinic);
			this.Controls.Add(this.labelClinic);
			this.Controls.Add(this.gridMain);
			this.Controls.Add(this.panelHistory);
			this.Controls.Add(this.panelSplitter);
			this.Controls.Add(this.ToolBarMain);
			this.Controls.Add(this.label6);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormClaimsSend";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Send Claims";
			this.Load += new System.EventHandler(this.FormClaimsSend_Load);
			this.panelHistory.ResumeLayout(false);
			this.panelHistory.PerformLayout();
			this.panel1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Esempio n. 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(FormReqStudentsMany));
			this.label2 = new System.Windows.Forms.Label();
			this.comboCourse = new System.Windows.Forms.ComboBox();
			this.label1 = new System.Windows.Forms.Label();
			this.comboClass = new System.Windows.Forms.ComboBox();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.butClose = new OpenDental.UI.Button();
			this.SuspendLayout();
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(351,39);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(77,18);
			this.label2.TabIndex = 22;
			this.label2.Text = "Course";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboCourse
			// 
			this.comboCourse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCourse.FormattingEnabled = true;
			this.comboCourse.Location = new System.Drawing.Point(432,39);
			this.comboCourse.Name = "comboCourse";
			this.comboCourse.Size = new System.Drawing.Size(234,21);
			this.comboCourse.TabIndex = 21;
			this.comboCourse.SelectionChangeCommitted += new System.EventHandler(this.comboCourse_SelectionChangeCommitted);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(348,12);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(81,18);
			this.label1.TabIndex = 20;
			this.label1.Text = "Class";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboClass
			// 
			this.comboClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClass.FormattingEnabled = true;
			this.comboClass.Location = new System.Drawing.Point(432,12);
			this.comboClass.Name = "comboClass";
			this.comboClass.Size = new System.Drawing.Size(234,21);
			this.comboClass.TabIndex = 19;
			this.comboClass.SelectionChangeCommitted += new System.EventHandler(this.comboClass_SelectionChangeCommitted);
			// 
			// gridMain
			// 
			this.gridMain.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(15,12);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(329,637);
			this.gridMain.TabIndex = 3;
			this.gridMain.Title = "Student Requirements";
			this.gridMain.TranslationName = "TableReqStudentMany";
			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(591,623);
			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);
			// 
			// FormReqStudentsMany
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(689,661);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.comboCourse);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.comboClass);
			this.Controls.Add(this.gridMain);
			this.Controls.Add(this.butClose);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormReqStudentsMany";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Student Requirements - Many";
			this.Load += new System.EventHandler(this.FormReqStudentsMany_Load);
			this.ResumeLayout(false);

		}
Esempio n. 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(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);

		}
Esempio n. 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(FormInsCatEdit));
			this.label1 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.textDescription = new System.Windows.Forms.TextBox();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.checkHidden = new System.Windows.Forms.CheckBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.textPercent = new OpenDental.ValidNumber();
			this.comboCat = new System.Windows.Forms.ComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(111,26);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(95,18);
			this.label1.TabIndex = 0;
			this.label1.Text = "Description";
			this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(107,51);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(100,18);
			this.label6.TabIndex = 5;
			this.label6.Text = "Default Percent";
			this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// textDescription
			// 
			this.textDescription.Location = new System.Drawing.Point(209,23);
			this.textDescription.MaxLength = 50;
			this.textDescription.Name = "textDescription";
			this.textDescription.Size = new System.Drawing.Size(100,20);
			this.textDescription.TabIndex = 0;
			// 
			// 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(497,246);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75,25);
			this.butOK.TabIndex = 4;
			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(497,284);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,25);
			this.butCancel.TabIndex = 5;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// checkHidden
			// 
			this.checkHidden.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkHidden.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.checkHidden.Location = new System.Drawing.Point(118,79);
			this.checkHidden.Name = "checkHidden";
			this.checkHidden.Size = new System.Drawing.Size(105,16);
			this.checkHidden.TabIndex = 3;
			this.checkHidden.Text = "Is Hidden";
			this.checkHidden.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(229,80);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(343,21);
			this.label2.TabIndex = 12;
			this.label2.Text = "You cannot delete a category, but you can hide it.";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(12,288);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(203,23);
			this.label3.TabIndex = 13;
			this.label3.Text = "Changes affect all patients";
			// 
			// textPercent
			// 
			this.textPercent.Location = new System.Drawing.Point(209,47);
			this.textPercent.MaxVal = 255;
			this.textPercent.MinVal = 0;
			this.textPercent.Name = "textPercent";
			this.textPercent.Size = new System.Drawing.Size(40,20);
			this.textPercent.TabIndex = 1;
			// 
			// comboCat
			// 
			this.comboCat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboCat.FormattingEnabled = true;
			this.comboCat.Location = new System.Drawing.Point(209,106);
			this.comboCat.MaxDropDownItems = 30;
			this.comboCat.Name = "comboCat";
			this.comboCat.Size = new System.Drawing.Size(197,21);
			this.comboCat.TabIndex = 14;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(7,109);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(200,18);
			this.label4.TabIndex = 15;
			this.label4.Text = "Electronic Benefit Category";
			this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// FormInsCatEdit
			// 
			this.AcceptButton = this.butOK;
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.CancelButton = this.butCancel;
			this.ClientSize = new System.Drawing.Size(581,316);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.comboCat);
			this.Controls.Add(this.textPercent);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.checkHidden);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.textDescription);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.label1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormInsCatEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Insurance Categories";
			this.Load += new System.EventHandler(this.FormInsCatEdit_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 36
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormClaimPayEdit));
     this.textAmount = new OpenDental.ValidDouble();
     this.textDate = new OpenDental.ValidDate();
     this.textBankBranch = new System.Windows.Forms.TextBox();
     this.textCheckNum = new System.Windows.Forms.TextBox();
     this.textNote = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.butCancel = new OpenDental.UI.Button();
     this.butOK = new OpenDental.UI.Button();
     this.comboClinic = new System.Windows.Forms.ComboBox();
     this.labelClinic = new System.Windows.Forms.Label();
     this.textCarrierName = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.labelDateIssued = new System.Windows.Forms.Label();
     this.textDateIssued = new OpenDental.ValidDate();
     this.label1 = new System.Windows.Forms.Label();
     this.butCarrierSelect = new OpenDental.UI.Button();
     this.label8 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // textAmount
     //
     this.textAmount.Location = new System.Drawing.Point(134,86);
     this.textAmount.Name = "textAmount";
     this.textAmount.Size = new System.Drawing.Size(68,20);
     this.textAmount.TabIndex = 0;
     this.textAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // textDate
     //
     this.textDate.Location = new System.Drawing.Point(134,44);
     this.textDate.Name = "textDate";
     this.textDate.Size = new System.Drawing.Size(68,20);
     this.textDate.TabIndex = 6;
     this.textDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // textBankBranch
     //
     this.textBankBranch.Location = new System.Drawing.Point(134,128);
     this.textBankBranch.MaxLength = 25;
     this.textBankBranch.Name = "textBankBranch";
     this.textBankBranch.Size = new System.Drawing.Size(100,20);
     this.textBankBranch.TabIndex = 2;
     //
     // textCheckNum
     //
     this.textCheckNum.Location = new System.Drawing.Point(134,107);
     this.textCheckNum.MaxLength = 25;
     this.textCheckNum.Name = "textCheckNum";
     this.textCheckNum.Size = new System.Drawing.Size(100,20);
     this.textCheckNum.TabIndex = 1;
     //
     // textNote
     //
     this.textNote.Location = new System.Drawing.Point(134,198);
     this.textNote.MaxLength = 255;
     this.textNote.Multiline = true;
     this.textNote.Name = "textNote";
     this.textNote.Size = new System.Drawing.Size(324,70);
     this.textNote.TabIndex = 4;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(35,48);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(96,16);
     this.label6.TabIndex = 37;
     this.label6.Text = "Payment Date";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(37,90);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(95,16);
     this.label5.TabIndex = 36;
     this.label5.Text = "Amount";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(41,109);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(90,16);
     this.label4.TabIndex = 35;
     this.label4.Text = "Check #";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(42,131);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(91,16);
     this.label3.TabIndex = 34;
     this.label3.Text = "Bank-Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(13,199);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120,16);
     this.label2.TabIndex = 33;
     this.label2.Text = "Note";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(430,302);
     this.butCancel.Name = "butCancel";
     this.butCancel.Size = new System.Drawing.Size(75,24);
     this.butCancel.TabIndex = 9;
     this.butCancel.Text = "&Cancel";
     this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
     //
     // 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(339,302);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(75,24);
     this.butOK.TabIndex = 5;
     this.butOK.Text = "&OK";
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // comboClinic
     //
     this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboClinic.Location = new System.Drawing.Point(134,21);
     this.comboClinic.MaxDropDownItems = 30;
     this.comboClinic.Name = "comboClinic";
     this.comboClinic.Size = new System.Drawing.Size(209,21);
     this.comboClinic.TabIndex = 0;
     //
     // labelClinic
     //
     this.labelClinic.Location = new System.Drawing.Point(44,25);
     this.labelClinic.Name = "labelClinic";
     this.labelClinic.Size = new System.Drawing.Size(86,14);
     this.labelClinic.TabIndex = 91;
     this.labelClinic.Text = "Clinic";
     this.labelClinic.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textCarrierName
     //
     this.textCarrierName.Location = new System.Drawing.Point(134,149);
     this.textCarrierName.MaxLength = 25;
     this.textCarrierName.Name = "textCarrierName";
     this.textCarrierName.Size = new System.Drawing.Size(252,20);
     this.textCarrierName.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(24,152);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(109,16);
     this.label7.TabIndex = 94;
     this.label7.Text = "Carrier Name";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // labelDateIssued
     //
     this.labelDateIssued.Location = new System.Drawing.Point(12,69);
     this.labelDateIssued.Name = "labelDateIssued";
     this.labelDateIssued.Size = new System.Drawing.Size(120,16);
     this.labelDateIssued.TabIndex = 37;
     this.labelDateIssued.Text = "Date Check Issued";
     this.labelDateIssued.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textDateIssued
     //
     this.textDateIssued.Location = new System.Drawing.Point(134,65);
     this.textDateIssued.Name = "textDateIssued";
     this.textDateIssued.Size = new System.Drawing.Size(68,20);
     this.textDateIssued.TabIndex = 7;
     this.textDateIssued.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(203,66);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(94,16);
     this.label1.TabIndex = 95;
     this.label1.Text = "(optional)";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // butCarrierSelect
     //
     this.butCarrierSelect.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butCarrierSelect.Autosize = true;
     this.butCarrierSelect.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCarrierSelect.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCarrierSelect.CornerRadius = 4F;
     this.butCarrierSelect.Location = new System.Drawing.Point(389,147);
     this.butCarrierSelect.Name = "butCarrierSelect";
     this.butCarrierSelect.Size = new System.Drawing.Size(69,23);
     this.butCarrierSelect.TabIndex = 8;
     this.butCarrierSelect.Text = "Pick";
     this.butCarrierSelect.Click += new System.EventHandler(this.butCarrierSelect_Click);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(131,172);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(200,16);
     this.label8.TabIndex = 96;
     this.label8.Text = "(does not need to be exact)";
     //
     // FormClaimPayEdit
     //
     this.AcceptButton = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.CancelButton = this.butCancel;
     this.ClientSize = new System.Drawing.Size(525,346);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textCarrierName);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.comboClinic);
     this.Controls.Add(this.labelClinic);
     this.Controls.Add(this.textAmount);
     this.Controls.Add(this.textDateIssued);
     this.Controls.Add(this.textDate);
     this.Controls.Add(this.textBankBranch);
     this.Controls.Add(this.textCheckNum);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.labelDateIssued);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butCarrierSelect);
     this.Controls.Add(this.butOK);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormClaimPayEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Insurance Payment";
     this.Load += new System.EventHandler(this.FormClaimPayEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 37
0
		private void InitializeComponent(){
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContrStaff));
			this.listStatus = new System.Windows.Forms.ListBox();
			this.textTime = new System.Windows.Forms.Label();
			this.timer1 = new System.Windows.Forms.Timer(this.components);
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.butManage = new OpenDental.UI.Button();
			this.butBreaks = new OpenDental.UI.Button();
			this.gridEmp = new OpenDental.UI.ODGrid();
			this.label2 = new System.Windows.Forms.Label();
			this.butClockOut = new OpenDental.UI.Button();
			this.butTimeCard = new OpenDental.UI.Button();
			this.butClockIn = new OpenDental.UI.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.listMessages = new System.Windows.Forms.ListBox();
			this.butSend = new OpenDental.UI.Button();
			this.butAck = new OpenDental.UI.Button();
			this.labelSending = new System.Windows.Forms.Label();
			this.textDays = new System.Windows.Forms.TextBox();
			this.labelDays = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.comboViewUser = new System.Windows.Forms.ComboBox();
			this.gridMessages = new OpenDental.UI.ODGrid();
			this.checkIncludeAck = new System.Windows.Forms.CheckBox();
			this.label7 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.listExtras = new System.Windows.Forms.ListBox();
			this.label4 = new System.Windows.Forms.Label();
			this.listFrom = new System.Windows.Forms.ListBox();
			this.label3 = new System.Windows.Forms.Label();
			this.listTo = new System.Windows.Forms.ListBox();
			this.label1 = new System.Windows.Forms.Label();
			this.textMessage = new System.Windows.Forms.TextBox();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.butEmailInbox = new OpenDental.UI.Button();
			this.butSupply = new OpenDental.UI.Button();
			this.butClaimPay = new OpenDental.UI.Button();
			this.butBilling = new OpenDental.UI.Button();
			this.butAccounting = new OpenDental.UI.Button();
			this.butBackup = new OpenDental.UI.Button();
			this.butDeposit = new OpenDental.UI.Button();
			this.butSendClaims = new OpenDental.UI.Button();
			this.butTasks = new OpenDental.UI.Button();
			this.timerSending = new System.Windows.Forms.Timer(this.components);
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.SuspendLayout();
			// 
			// listStatus
			// 
			this.listStatus.Location = new System.Drawing.Point(367, 192);
			this.listStatus.Name = "listStatus";
			this.listStatus.Size = new System.Drawing.Size(107, 43);
			this.listStatus.TabIndex = 12;
			// 
			// textTime
			// 
			this.textTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.textTime.Location = new System.Drawing.Point(365, 113);
			this.textTime.Name = "textTime";
			this.textTime.Size = new System.Drawing.Size(109, 21);
			this.textTime.TabIndex = 17;
			this.textTime.Text = "12:00:00 PM";
			this.textTime.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// timer1
			// 
			this.timer1.Enabled = true;
			this.timer1.Interval = 1000;
			this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.butManage);
			this.groupBox1.Controls.Add(this.butBreaks);
			this.groupBox1.Controls.Add(this.gridEmp);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.listStatus);
			this.groupBox1.Controls.Add(this.butClockOut);
			this.groupBox1.Controls.Add(this.butTimeCard);
			this.groupBox1.Controls.Add(this.textTime);
			this.groupBox1.Controls.Add(this.butClockIn);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(349, 5);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(510, 247);
			this.groupBox1.TabIndex = 18;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Time Clock";
			// 
			// butManage
			// 
			this.butManage.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butManage.Autosize = true;
			this.butManage.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butManage.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butManage.CornerRadius = 4F;
			this.butManage.Location = new System.Drawing.Point(366, 13);
			this.butManage.Name = "butManage";
			this.butManage.Size = new System.Drawing.Size(108, 25);
			this.butManage.TabIndex = 23;
			this.butManage.Text = "Manage";
			this.butManage.Click += new System.EventHandler(this.butManage_Click);
			// 
			// butBreaks
			// 
			this.butBreaks.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butBreaks.Autosize = true;
			this.butBreaks.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butBreaks.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butBreaks.CornerRadius = 4F;
			this.butBreaks.Location = new System.Drawing.Point(366, 67);
			this.butBreaks.Name = "butBreaks";
			this.butBreaks.Size = new System.Drawing.Size(108, 25);
			this.butBreaks.TabIndex = 22;
			this.butBreaks.Text = "View Breaks";
			this.butBreaks.Click += new System.EventHandler(this.butBreaks_Click);
			// 
			// gridEmp
			// 
			this.gridEmp.AllowSelection = false;
			this.gridEmp.HScrollVisible = false;
			this.gridEmp.Location = new System.Drawing.Point(22, 22);
			this.gridEmp.Name = "gridEmp";
			this.gridEmp.ScrollValue = 0;
			this.gridEmp.Size = new System.Drawing.Size(303, 213);
			this.gridEmp.TabIndex = 21;
			this.gridEmp.Title = "Employee";
			this.gridEmp.TranslationName = "TableEmpClock";
			this.gridEmp.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridEmp_CellDoubleClick);
			this.gridEmp.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.gridEmp_CellClick);
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(376, 94);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(88, 19);
			this.label2.TabIndex = 20;
			this.label2.Text = "Server Time";
			this.label2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			// 
			// butClockOut
			// 
			this.butClockOut.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butClockOut.Autosize = true;
			this.butClockOut.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butClockOut.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butClockOut.CornerRadius = 4F;
			this.butClockOut.Location = new System.Drawing.Point(366, 164);
			this.butClockOut.Name = "butClockOut";
			this.butClockOut.Size = new System.Drawing.Size(108, 25);
			this.butClockOut.TabIndex = 14;
			this.butClockOut.Text = "Clock Out For:";
			this.butClockOut.Click += new System.EventHandler(this.butClockOut_Click);
			// 
			// butTimeCard
			// 
			this.butTimeCard.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butTimeCard.Autosize = true;
			this.butTimeCard.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTimeCard.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTimeCard.CornerRadius = 4F;
			this.butTimeCard.Location = new System.Drawing.Point(366, 40);
			this.butTimeCard.Name = "butTimeCard";
			this.butTimeCard.Size = new System.Drawing.Size(108, 25);
			this.butTimeCard.TabIndex = 16;
			this.butTimeCard.Text = "View Time Card";
			this.butTimeCard.Click += new System.EventHandler(this.butTimeCard_Click);
			// 
			// butClockIn
			// 
			this.butClockIn.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butClockIn.Autosize = true;
			this.butClockIn.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butClockIn.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butClockIn.CornerRadius = 4F;
			this.butClockIn.Location = new System.Drawing.Point(366, 137);
			this.butClockIn.Name = "butClockIn";
			this.butClockIn.Size = new System.Drawing.Size(108, 25);
			this.butClockIn.TabIndex = 11;
			this.butClockIn.Text = "Clock In";
			this.butClockIn.Click += new System.EventHandler(this.butClockIn_Click);
			// 
			// groupBox2
			// 
			this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.groupBox2.Controls.Add(this.listMessages);
			this.groupBox2.Controls.Add(this.butSend);
			this.groupBox2.Controls.Add(this.butAck);
			this.groupBox2.Controls.Add(this.labelSending);
			this.groupBox2.Controls.Add(this.textDays);
			this.groupBox2.Controls.Add(this.labelDays);
			this.groupBox2.Controls.Add(this.label6);
			this.groupBox2.Controls.Add(this.comboViewUser);
			this.groupBox2.Controls.Add(this.gridMessages);
			this.groupBox2.Controls.Add(this.checkIncludeAck);
			this.groupBox2.Controls.Add(this.label7);
			this.groupBox2.Controls.Add(this.label5);
			this.groupBox2.Controls.Add(this.listExtras);
			this.groupBox2.Controls.Add(this.label4);
			this.groupBox2.Controls.Add(this.listFrom);
			this.groupBox2.Controls.Add(this.label3);
			this.groupBox2.Controls.Add(this.listTo);
			this.groupBox2.Controls.Add(this.label1);
			this.groupBox2.Controls.Add(this.textMessage);
			this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox2.Location = new System.Drawing.Point(3, 252);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(902, 447);
			this.groupBox2.TabIndex = 19;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "Messaging";
			// 
			// listMessages
			// 
			this.listMessages.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.listMessages.FormattingEnabled = true;
			this.listMessages.Location = new System.Drawing.Point(252, 35);
			this.listMessages.Name = "listMessages";
			this.listMessages.Size = new System.Drawing.Size(98, 355);
			this.listMessages.TabIndex = 10;
			this.listMessages.Click += new System.EventHandler(this.listMessages_Click);
			// 
			// 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.Location = new System.Drawing.Point(252, 417);
			this.butSend.Name = "butSend";
			this.butSend.Size = new System.Drawing.Size(98, 25);
			this.butSend.TabIndex = 15;
			this.butSend.Text = "Send Text";
			this.butSend.Click += new System.EventHandler(this.butSend_Click);
			// 
			// butAck
			// 
			this.butAck.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAck.Autosize = true;
			this.butAck.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAck.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAck.CornerRadius = 4F;
			this.butAck.Location = new System.Drawing.Point(645, 10);
			this.butAck.Name = "butAck";
			this.butAck.Size = new System.Drawing.Size(67, 22);
			this.butAck.TabIndex = 25;
			this.butAck.Text = "Ack";
			this.butAck.Click += new System.EventHandler(this.butAck_Click);
			// 
			// labelSending
			// 
			this.labelSending.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.labelSending.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.labelSending.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
			this.labelSending.Location = new System.Drawing.Point(251, 393);
			this.labelSending.Name = "labelSending";
			this.labelSending.Size = new System.Drawing.Size(100, 21);
			this.labelSending.TabIndex = 24;
			this.labelSending.Text = "Sending";
			this.labelSending.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
			this.labelSending.Visible = false;
			// 
			// textDays
			// 
			this.textDays.Location = new System.Drawing.Point(594, 12);
			this.textDays.Name = "textDays";
			this.textDays.Size = new System.Drawing.Size(45, 20);
			this.textDays.TabIndex = 19;
			this.textDays.Visible = false;
			this.textDays.TextChanged += new System.EventHandler(this.textDays_TextChanged);
			// 
			// labelDays
			// 
			this.labelDays.Location = new System.Drawing.Point(531, 14);
			this.labelDays.Name = "labelDays";
			this.labelDays.Size = new System.Drawing.Size(61, 16);
			this.labelDays.TabIndex = 18;
			this.labelDays.Text = "Days";
			this.labelDays.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.labelDays.Visible = false;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(725, 14);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(57, 16);
			this.label6.TabIndex = 17;
			this.label6.Text = "To User";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboViewUser
			// 
			this.comboViewUser.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboViewUser.FormattingEnabled = true;
			this.comboViewUser.Location = new System.Drawing.Point(783, 11);
			this.comboViewUser.Name = "comboViewUser";
			this.comboViewUser.Size = new System.Drawing.Size(114, 21);
			this.comboViewUser.TabIndex = 16;
			this.comboViewUser.SelectionChangeCommitted += new System.EventHandler(this.comboViewUser_SelectionChangeCommitted);
			// 
			// gridMessages
			// 
			this.gridMessages.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridMessages.HScrollVisible = false;
			this.gridMessages.Location = new System.Drawing.Point(356, 35);
			this.gridMessages.Name = "gridMessages";
			this.gridMessages.ScrollValue = 0;
			this.gridMessages.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridMessages.Size = new System.Drawing.Size(540, 406);
			this.gridMessages.TabIndex = 13;
			this.gridMessages.Title = "Message History";
			this.gridMessages.TranslationName = "TableTextMessages";
			// 
			// checkIncludeAck
			// 
			this.checkIncludeAck.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIncludeAck.Location = new System.Drawing.Point(356, 16);
			this.checkIncludeAck.Name = "checkIncludeAck";
			this.checkIncludeAck.Size = new System.Drawing.Size(173, 18);
			this.checkIncludeAck.TabIndex = 14;
			this.checkIncludeAck.Text = "Include Acknowledged";
			this.checkIncludeAck.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.checkIncludeAck.UseVisualStyleBackColor = true;
			this.checkIncludeAck.Click += new System.EventHandler(this.checkIncludeAck_Click);
			// 
			// label7
			// 
			this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.label7.Location = new System.Drawing.Point(6, 402);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(100, 16);
			this.label7.TabIndex = 12;
			this.label7.Text = "Text Message";
			this.label7.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(250, 16);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(100, 16);
			this.label5.TabIndex = 9;
			this.label5.Text = "Message (&& Send)";
			this.label5.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// listExtras
			// 
			this.listExtras.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.listExtras.FormattingEnabled = true;
			this.listExtras.Location = new System.Drawing.Point(171, 35);
			this.listExtras.Name = "listExtras";
			this.listExtras.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
			this.listExtras.Size = new System.Drawing.Size(75, 355);
			this.listExtras.TabIndex = 8;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(169, 16);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(78, 16);
			this.label4.TabIndex = 7;
			this.label4.Text = "Extras";
			this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// listFrom
			// 
			this.listFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.listFrom.FormattingEnabled = true;
			this.listFrom.Location = new System.Drawing.Point(90, 35);
			this.listFrom.Name = "listFrom";
			this.listFrom.Size = new System.Drawing.Size(75, 355);
			this.listFrom.TabIndex = 6;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(88, 16);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(78, 16);
			this.label3.TabIndex = 5;
			this.label3.Text = "From";
			this.label3.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// listTo
			// 
			this.listTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.listTo.FormattingEnabled = true;
			this.listTo.Location = new System.Drawing.Point(9, 35);
			this.listTo.Name = "listTo";
			this.listTo.Size = new System.Drawing.Size(75, 355);
			this.listTo.TabIndex = 4;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(7, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(78, 16);
			this.label1.TabIndex = 3;
			this.label1.Text = "To";
			this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// textMessage
			// 
			this.textMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.textMessage.Location = new System.Drawing.Point(9, 421);
			this.textMessage.Name = "textMessage";
			this.textMessage.Size = new System.Drawing.Size(237, 20);
			this.textMessage.TabIndex = 1;
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.butEmailInbox);
			this.groupBox3.Controls.Add(this.butSupply);
			this.groupBox3.Controls.Add(this.butClaimPay);
			this.groupBox3.Controls.Add(this.butBilling);
			this.groupBox3.Controls.Add(this.butAccounting);
			this.groupBox3.Controls.Add(this.butBackup);
			this.groupBox3.Controls.Add(this.butDeposit);
			this.groupBox3.Controls.Add(this.butSendClaims);
			this.groupBox3.Controls.Add(this.butTasks);
			this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox3.Location = new System.Drawing.Point(34, 5);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(286, 166);
			this.groupBox3.TabIndex = 23;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "Daily";
			// 
			// butEmailInbox
			// 
			this.butEmailInbox.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butEmailInbox.Autosize = true;
			this.butEmailInbox.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEmailInbox.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEmailInbox.CornerRadius = 4F;
			this.butEmailInbox.Image = global::OpenDental.Properties.Resources.email1;
			this.butEmailInbox.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butEmailInbox.Location = new System.Drawing.Point(148, 97);
			this.butEmailInbox.Name = "butEmailInbox";
			this.butEmailInbox.Size = new System.Drawing.Size(104, 26);
			this.butEmailInbox.TabIndex = 28;
			this.butEmailInbox.Text = "Email Inbox";
			this.butEmailInbox.Click += new System.EventHandler(this.butEmailInbox_Click);
			// 
			// butSupply
			// 
			this.butSupply.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSupply.Autosize = true;
			this.butSupply.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSupply.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSupply.CornerRadius = 4F;
			this.butSupply.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butSupply.Location = new System.Drawing.Point(16, 123);
			this.butSupply.Name = "butSupply";
			this.butSupply.Size = new System.Drawing.Size(104, 26);
			this.butSupply.TabIndex = 26;
			this.butSupply.Text = "SupplyInventory";
			this.butSupply.Click += new System.EventHandler(this.butSupply_Click);
			// 
			// butClaimPay
			// 
			this.butClaimPay.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butClaimPay.Autosize = true;
			this.butClaimPay.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butClaimPay.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butClaimPay.CornerRadius = 4F;
			this.butClaimPay.Location = new System.Drawing.Point(16, 45);
			this.butClaimPay.Name = "butClaimPay";
			this.butClaimPay.Size = new System.Drawing.Size(104, 26);
			this.butClaimPay.TabIndex = 25;
			this.butClaimPay.Text = "Batch Ins";
			this.butClaimPay.Click += new System.EventHandler(this.butClaimPay_Click);
			// 
			// butBilling
			// 
			this.butBilling.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butBilling.Autosize = true;
			this.butBilling.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butBilling.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butBilling.CornerRadius = 4F;
			this.butBilling.Location = new System.Drawing.Point(16, 71);
			this.butBilling.Name = "butBilling";
			this.butBilling.Size = new System.Drawing.Size(104, 26);
			this.butBilling.TabIndex = 25;
			this.butBilling.Text = "Billing";
			this.butBilling.Click += new System.EventHandler(this.butBilling_Click);
			// 
			// butAccounting
			// 
			this.butAccounting.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butAccounting.Autosize = true;
			this.butAccounting.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butAccounting.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butAccounting.CornerRadius = 4F;
			this.butAccounting.Image = ((System.Drawing.Image)(resources.GetObject("butAccounting.Image")));
			this.butAccounting.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butAccounting.Location = new System.Drawing.Point(148, 71);
			this.butAccounting.Name = "butAccounting";
			this.butAccounting.Size = new System.Drawing.Size(104, 26);
			this.butAccounting.TabIndex = 24;
			this.butAccounting.Text = "Accounting";
			this.butAccounting.Click += new System.EventHandler(this.butAccounting_Click);
			// 
			// butBackup
			// 
			this.butBackup.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butBackup.Autosize = true;
			this.butBackup.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butBackup.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butBackup.CornerRadius = 4F;
			this.butBackup.Image = ((System.Drawing.Image)(resources.GetObject("butBackup.Image")));
			this.butBackup.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butBackup.Location = new System.Drawing.Point(148, 45);
			this.butBackup.Name = "butBackup";
			this.butBackup.Size = new System.Drawing.Size(104, 26);
			this.butBackup.TabIndex = 22;
			this.butBackup.Text = "Backup";
			this.butBackup.Click += new System.EventHandler(this.butBackup_Click);
			// 
			// butDeposit
			// 
			this.butDeposit.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butDeposit.Autosize = true;
			this.butDeposit.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butDeposit.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butDeposit.CornerRadius = 4F;
			this.butDeposit.Image = ((System.Drawing.Image)(resources.GetObject("butDeposit.Image")));
			this.butDeposit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butDeposit.Location = new System.Drawing.Point(16, 97);
			this.butDeposit.Name = "butDeposit";
			this.butDeposit.Size = new System.Drawing.Size(104, 26);
			this.butDeposit.TabIndex = 23;
			this.butDeposit.Text = "Deposits";
			this.butDeposit.Click += new System.EventHandler(this.butDeposit_Click);
			// 
			// butSendClaims
			// 
			this.butSendClaims.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butSendClaims.Autosize = true;
			this.butSendClaims.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butSendClaims.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butSendClaims.CornerRadius = 4F;
			this.butSendClaims.Image = ((System.Drawing.Image)(resources.GetObject("butSendClaims.Image")));
			this.butSendClaims.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butSendClaims.Location = new System.Drawing.Point(16, 19);
			this.butSendClaims.Name = "butSendClaims";
			this.butSendClaims.Size = new System.Drawing.Size(104, 26);
			this.butSendClaims.TabIndex = 20;
			this.butSendClaims.Text = "Send Claims";
			this.butSendClaims.Click += new System.EventHandler(this.butSendClaims_Click);
			// 
			// butTasks
			// 
			this.butTasks.AdjustImageLocation = new System.Drawing.Point(0, 1);
			this.butTasks.Autosize = true;
			this.butTasks.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTasks.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTasks.CornerRadius = 4F;
			this.butTasks.Image = ((System.Drawing.Image)(resources.GetObject("butTasks.Image")));
			this.butTasks.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butTasks.Location = new System.Drawing.Point(148, 19);
			this.butTasks.Name = "butTasks";
			this.butTasks.Size = new System.Drawing.Size(104, 26);
			this.butTasks.TabIndex = 21;
			this.butTasks.Text = "Tasks";
			this.butTasks.Click += new System.EventHandler(this.butTasks_Click);
			// 
			// timerSending
			// 
			this.timerSending.Interval = 1000;
			this.timerSending.Tick += new System.EventHandler(this.timerSending_Tick);
			// 
			// ContrStaff
			// 
			this.Controls.Add(this.groupBox3);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.groupBox1);
			this.Name = "ContrStaff";
			this.Size = new System.Drawing.Size(908, 702);
			this.Load += new System.EventHandler(this.ContrStaff_Load);
			this.groupBox1.ResumeLayout(false);
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.groupBox3.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Esempio n. 38
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.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.menuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
			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(755, 600);
			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.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(12, 53);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(734, 571);
			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);
			// 
			// comboProv
			// 
			this.comboProv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProv.Location = new System.Drawing.Point(336, 5);
			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, 9);
			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(755, 5);
			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, 5);
			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, 9);
			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(755, 552);
			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(613, 29);
			this.comboSite.MaxDropDownItems = 40;
			this.comboSite.Name = "comboSite";
			this.comboSite.Size = new System.Drawing.Size(133, 21);
			this.comboSite.TabIndex = 33;
			// 
			// labelSite
			// 
			this.labelSite.Location = new System.Drawing.Point(520, 31);
			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, 5);
			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, 9);
			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;
			// 
			// menuRightClick
			// 
			this.menuRightClick.Name = "menuRightClick";
			this.menuRightClick.Size = new System.Drawing.Size(61, 4);
			// 
			// FormTrackNext
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.butClose;
			this.ClientSize = new System.Drawing.Size(852, 640);
			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.Name = "FormTrackNext";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Track Planned Appointments";
			this.Load += new System.EventHandler(this.FormTrackNext_Load);
			this.ResumeLayout(false);

		}
Esempio n. 39
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.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.menuDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// butClose
			// 
			this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
			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(761, 631);
			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.HScrollVisible = false;
			this.grid.Location = new System.Drawing.Point(10, 56);
			this.grid.Name = "grid";
			this.grid.ScrollValue = 0;
			this.grid.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.grid.Size = new System.Drawing.Size(734, 599);
			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.MouseDown += new System.Windows.Forms.MouseEventHandler(this.grid_MouseDown);
			this.grid.MouseUp += new System.Windows.Forms.MouseEventHandler(this.grid_MouseUp);
			// 
			// 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(761, 583);
			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, 6);
			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, 10);
			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, 6);
			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, 10);
			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.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(762, 6);
			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(584, 31);
			this.comboSite.MaxDropDownItems = 40;
			this.comboSite.Name = "comboSite";
			this.comboSite.Size = new System.Drawing.Size(160, 21);
			this.comboSite.TabIndex = 37;
			// 
			// labelSite
			// 
			this.labelSite.Location = new System.Drawing.Point(506, 35);
			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, 33);
			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;
			// 
			// menuDelete
			// 
			this.menuDelete.Name = "menuDelete";
			this.menuDelete.Size = new System.Drawing.Size(61, 4);
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(584, 6);
			this.comboClinic.MaxDropDownItems = 40;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(160, 21);
			this.comboClinic.TabIndex = 40;
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(506, 10);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(77, 14);
			this.labelClinic.TabIndex = 39;
			this.labelClinic.Text = "Clinic";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// FormUnsched
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.butClose;
			this.ClientSize = new System.Drawing.Size(858, 672);
			this.Controls.Add(this.comboClinic);
			this.Controls.Add(this.labelClinic);
			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.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormUnsched";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Unscheduled List";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.FormUnsched_Closing);
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormUnsched_FormClosing);
			this.Load += new System.EventHandler(this.FormUnsched_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 40
0
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormConfirmList));
			this.butClose = new OpenDental.UI.Button();
			this.butRefresh = new OpenDental.UI.Button();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.comboShowRecall = new System.Windows.Forms.ComboBox();
			this.comboClinic = new System.Windows.Forms.ComboBox();
			this.labelClinic = new System.Windows.Forms.Label();
			this.comboProv = new System.Windows.Forms.ComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.textDateTo = new OpenDental.ValidDate();
			this.textDateFrom = new OpenDental.ValidDate();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.butReport = new OpenDental.UI.Button();
			this.butLabels = new OpenDental.UI.Button();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.comboStatus = new System.Windows.Forms.ComboBox();
			this.butPostcards = new OpenDental.UI.Button();
			this.grid = new OpenDental.UI.ODGrid();
			this.butPrint = new OpenDental.UI.Button();
			this.butEmail = new OpenDental.UI.Button();
			this.butText = new OpenDental.UI.Button();
			this.groupBox1.SuspendLayout();
			this.groupBox3.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(895, 659);
			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);
			// 
			// 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(47, 12);
			this.butRefresh.Name = "butRefresh";
			this.butRefresh.Size = new System.Drawing.Size(84, 24);
			this.butRefresh.TabIndex = 2;
			this.butRefresh.Text = "&Refresh";
			this.butRefresh.Click += new System.EventHandler(this.butRefresh_Click);
			// 
			// groupBox1
			// 
			this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.groupBox1.Controls.Add(this.comboShowRecall);
			this.groupBox1.Controls.Add(this.comboClinic);
			this.groupBox1.Controls.Add(this.labelClinic);
			this.groupBox1.Controls.Add(this.comboProv);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.textDateTo);
			this.groupBox1.Controls.Add(this.textDateFrom);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.butRefresh);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(5, 4);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(632, 63);
			this.groupBox1.TabIndex = 1;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "View";
			// 
			// comboShowRecall
			// 
			this.comboShowRecall.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboShowRecall.FormattingEnabled = true;
			this.comboShowRecall.Items.AddRange(new object[] {
            "All",
            "Recall Only",
            "Exclude Recall"});
			this.comboShowRecall.Location = new System.Drawing.Point(29, 38);
			this.comboShowRecall.Name = "comboShowRecall";
			this.comboShowRecall.Size = new System.Drawing.Size(121, 21);
			this.comboShowRecall.TabIndex = 26;
			// 
			// comboClinic
			// 
			this.comboClinic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboClinic.Location = new System.Drawing.Point(439, 36);
			this.comboClinic.MaxDropDownItems = 40;
			this.comboClinic.Name = "comboClinic";
			this.comboClinic.Size = new System.Drawing.Size(181, 21);
			this.comboClinic.TabIndex = 25;
			// 
			// labelClinic
			// 
			this.labelClinic.Location = new System.Drawing.Point(346, 40);
			this.labelClinic.Name = "labelClinic";
			this.labelClinic.Size = new System.Drawing.Size(91, 14);
			this.labelClinic.TabIndex = 24;
			this.labelClinic.Text = "Clinic";
			this.labelClinic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboProv
			// 
			this.comboProv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboProv.Location = new System.Drawing.Point(439, 12);
			this.comboProv.MaxDropDownItems = 40;
			this.comboProv.Name = "comboProv";
			this.comboProv.Size = new System.Drawing.Size(181, 21);
			this.comboProv.TabIndex = 23;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(346, 16);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(91, 14);
			this.label4.TabIndex = 22;
			this.label4.Text = "Provider";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textDateTo
			// 
			this.textDateTo.Location = new System.Drawing.Point(232, 38);
			this.textDateTo.Name = "textDateTo";
			this.textDateTo.Size = new System.Drawing.Size(94, 20);
			this.textDateTo.TabIndex = 14;
			// 
			// textDateFrom
			// 
			this.textDateFrom.Location = new System.Drawing.Point(232, 16);
			this.textDateFrom.Name = "textDateFrom";
			this.textDateFrom.Size = new System.Drawing.Size(94, 20);
			this.textDateFrom.TabIndex = 13;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(161, 40);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(68, 14);
			this.label2.TabIndex = 12;
			this.label2.Text = "To Date";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(152, 19);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(77, 14);
			this.label1.TabIndex = 11;
			this.label1.Text = "From Date";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// butReport
			// 
			this.butReport.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butReport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butReport.Autosize = true;
			this.butReport.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butReport.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butReport.CornerRadius = 4F;
			this.butReport.Location = new System.Drawing.Point(621, 659);
			this.butReport.Name = "butReport";
			this.butReport.Size = new System.Drawing.Size(87, 24);
			this.butReport.TabIndex = 13;
			this.butReport.Text = "R&un Report";
			this.butReport.Click += new System.EventHandler(this.butReport_Click);
			// 
			// butLabels
			// 
			this.butLabels.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butLabels.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butLabels.Autosize = true;
			this.butLabels.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butLabels.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butLabels.CornerRadius = 4F;
			this.butLabels.Image = global::OpenDental.Properties.Resources.butLabel;
			this.butLabels.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butLabels.Location = new System.Drawing.Point(129, 659);
			this.butLabels.Name = "butLabels";
			this.butLabels.Size = new System.Drawing.Size(102, 24);
			this.butLabels.TabIndex = 14;
			this.butLabels.Text = "Label Preview";
			this.butLabels.Click += new System.EventHandler(this.butLabels_Click);
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.comboStatus);
			this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox3.Location = new System.Drawing.Point(643, 4);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(143, 63);
			this.groupBox3.TabIndex = 15;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "Set Status";
			// 
			// comboStatus
			// 
			this.comboStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboStatus.Location = new System.Drawing.Point(7, 22);
			this.comboStatus.MaxDropDownItems = 40;
			this.comboStatus.Name = "comboStatus";
			this.comboStatus.Size = new System.Drawing.Size(128, 21);
			this.comboStatus.TabIndex = 15;
			this.comboStatus.SelectedIndexChanged += new System.EventHandler(this.comboStatus_SelectedIndexChanged);
			this.comboStatus.SelectionChangeCommitted += new System.EventHandler(this.comboStatus_SelectionChangeCommitted);
			// 
			// butPostcards
			// 
			this.butPostcards.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPostcards.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.butPostcards.Autosize = true;
			this.butPostcards.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPostcards.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPostcards.CornerRadius = 4F;
			this.butPostcards.Image = global::OpenDental.Properties.Resources.butPrintSmall;
			this.butPostcards.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPostcards.Location = new System.Drawing.Point(4, 659);
			this.butPostcards.Name = "butPostcards";
			this.butPostcards.Size = new System.Drawing.Size(119, 24);
			this.butPostcards.TabIndex = 16;
			this.butPostcards.Text = "Postcard Preview";
			this.butPostcards.Click += new System.EventHandler(this.butPostcards_Click);
			// 
			// grid
			// 
			this.grid.HScrollVisible = false;
			this.grid.Location = new System.Drawing.Point(4, 69);
			this.grid.Name = "grid";
			this.grid.ScrollValue = 0;
			this.grid.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.grid.Size = new System.Drawing.Size(963, 585);
			this.grid.TabIndex = 0;
			this.grid.Title = "Confirmation List";
			this.grid.TranslationName = "TableConfirmList";
			this.grid.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.grid_CellDoubleClick);
			this.grid.CellClick += new OpenDental.UI.ODGridClickEventHandler(this.grid_CellClick);
			this.grid.Click += new System.EventHandler(this.grid_Click);
			// 
			// butPrint
			// 
			this.butPrint.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butPrint.Autosize = true;
			this.butPrint.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butPrint.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butPrint.CornerRadius = 4F;
			this.butPrint.Image = global::OpenDental.Properties.Resources.butPrintSmall;
			this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butPrint.Location = new System.Drawing.Point(714, 659);
			this.butPrint.Name = "butPrint";
			this.butPrint.Size = new System.Drawing.Size(87, 24);
			this.butPrint.TabIndex = 20;
			this.butPrint.Text = "Print List";
			this.butPrint.Click += new System.EventHandler(this.butPrint_Click);
			// 
			// butEmail
			// 
			this.butEmail.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butEmail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butEmail.Autosize = true;
			this.butEmail.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEmail.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEmail.CornerRadius = 4F;
			this.butEmail.Image = global::OpenDental.Properties.Resources.email1;
			this.butEmail.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butEmail.Location = new System.Drawing.Point(237, 659);
			this.butEmail.Name = "butEmail";
			this.butEmail.Size = new System.Drawing.Size(91, 24);
			this.butEmail.TabIndex = 61;
			this.butEmail.Text = "E-Mail";
			this.butEmail.Click += new System.EventHandler(this.butEmail_Click);
			// 
			// butText
			// 
			this.butText.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butText.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.butText.Autosize = false;
			this.butText.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butText.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butText.CornerRadius = 4F;
			this.butText.Image = global::OpenDental.Properties.Resources.Text;
			this.butText.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butText.Location = new System.Drawing.Point(333, 659);
			this.butText.Name = "butText";
			this.butText.Size = new System.Drawing.Size(79, 24);
			this.butText.TabIndex = 61;
			this.butText.Text = "Text";
			this.butText.Click += new System.EventHandler(this.butText_Click);
			// 
			// FormConfirmList
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.butClose;
			this.ClientSize = new System.Drawing.Size(975, 688);
			this.Controls.Add(this.butText);
			this.Controls.Add(this.butEmail);
			this.Controls.Add(this.butPrint);
			this.Controls.Add(this.butPostcards);
			this.Controls.Add(this.grid);
			this.Controls.Add(this.groupBox3);
			this.Controls.Add(this.butLabels);
			this.Controls.Add(this.butReport);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.butClose);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormConfirmList";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Confirmation List";
			this.Load += new System.EventHandler(this.FormConfirmList_Load);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.groupBox3.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormInsFilingCodeSubtypeEdit));
     this.label1          = new System.Windows.Forms.Label();
     this.textDescription = new System.Windows.Forms.TextBox();
     this.butDelete       = new OpenDental.UI.Button();
     this.butOK           = new OpenDental.UI.Button();
     this.butCancel       = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(9, 21);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(148, 17);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Description";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDescription
     //
     this.textDescription.Location = new System.Drawing.Point(160, 20);
     this.textDescription.Name     = "textDescription";
     this.textDescription.Size     = new System.Drawing.Size(291, 20);
     this.textDescription.TabIndex = 0;
     //
     // 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(27, 102);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(81, 26);
     this.butDelete.TabIndex     = 4;
     this.butDelete.Text         = "Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // butOK
     //
     this.butOK.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(412, 102);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 9;
     this.butOK.Text         = "&OK";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.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(503, 102);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 10;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // FormInsFilingCodeSubtypeEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(604, 146);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.textDescription);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormInsFilingCodeSubtypeEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Claim Filing Code Subtype";
     this.Load         += new System.EventHandler(this.FormInsFilingCodeEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 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(FormDiseaseEdit));
			this.textNote = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.textProblem = new System.Windows.Forms.TextBox();
			this.textIcd9 = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.labelStatus = new System.Windows.Forms.Label();
			this.comboStatus = new System.Windows.Forms.ComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.textSnomed = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.comboSnomedProblemType = new System.Windows.Forms.ComboBox();
			this.labelSnomedProblemType = new System.Windows.Forms.Label();
			this.butTodayStop = new OpenDental.UI.Button();
			this.butTodayStart = new OpenDental.UI.Button();
			this.textDateStop = new OpenDental.ValidDate();
			this.textDateStart = new OpenDental.ValidDate();
			this.butDelete = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.label7 = new System.Windows.Forms.Label();
			this.labelFunctionalStatus = new System.Windows.Forms.Label();
			this.comboEhrFunctionalStatus = new System.Windows.Forms.ComboBox();
			this.label8 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// textNote
			// 
			this.textNote.Location = new System.Drawing.Point(118, 169);
			this.textNote.Multiline = true;
			this.textNote.Name = "textNote";
			this.textNote.Size = new System.Drawing.Size(322, 120);
			this.textNote.TabIndex = 3;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(12, 169);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(100, 17);
			this.label1.TabIndex = 4;
			this.label1.Text = "Note";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(14, 13);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(100, 19);
			this.label2.TabIndex = 5;
			this.label2.Text = "Problem";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textProblem
			// 
			this.textProblem.Location = new System.Drawing.Point(118, 12);
			this.textProblem.Name = "textProblem";
			this.textProblem.ReadOnly = true;
			this.textProblem.Size = new System.Drawing.Size(199, 20);
			this.textProblem.TabIndex = 7;
			// 
			// textIcd9
			// 
			this.textIcd9.Location = new System.Drawing.Point(118, 38);
			this.textIcd9.Name = "textIcd9";
			this.textIcd9.ReadOnly = true;
			this.textIcd9.Size = new System.Drawing.Size(321, 20);
			this.textIcd9.TabIndex = 9;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(14, 39);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(100, 19);
			this.label3.TabIndex = 8;
			this.label3.Text = "ICD9";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// labelStatus
			// 
			this.labelStatus.Location = new System.Drawing.Point(3, 92);
			this.labelStatus.Name = "labelStatus";
			this.labelStatus.Size = new System.Drawing.Size(111, 15);
			this.labelStatus.TabIndex = 82;
			this.labelStatus.Text = "Status";
			this.labelStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboStatus
			// 
			this.comboStatus.Cursor = System.Windows.Forms.Cursors.Default;
			this.comboStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboStatus.Location = new System.Drawing.Point(118, 90);
			this.comboStatus.MaxDropDownItems = 10;
			this.comboStatus.Name = "comboStatus";
			this.comboStatus.Size = new System.Drawing.Size(126, 21);
			this.comboStatus.TabIndex = 83;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(14, 117);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(100, 19);
			this.label4.TabIndex = 5;
			this.label4.Text = "Start Date";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(14, 143);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(100, 19);
			this.label5.TabIndex = 5;
			this.label5.Text = "Stop Date";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textSnomed
			// 
			this.textSnomed.Location = new System.Drawing.Point(118, 64);
			this.textSnomed.Name = "textSnomed";
			this.textSnomed.ReadOnly = true;
			this.textSnomed.Size = new System.Drawing.Size(322, 20);
			this.textSnomed.TabIndex = 87;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(14, 64);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(100, 19);
			this.label6.TabIndex = 88;
			this.label6.Text = "SNOMED CT";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboSnomedProblemType
			// 
			this.comboSnomedProblemType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboSnomedProblemType.FormattingEnabled = true;
			this.comboSnomedProblemType.Location = new System.Drawing.Point(118, 295);
			this.comboSnomedProblemType.Name = "comboSnomedProblemType";
			this.comboSnomedProblemType.Size = new System.Drawing.Size(209, 21);
			this.comboSnomedProblemType.TabIndex = 89;
			// 
			// labelSnomedProblemType
			// 
			this.labelSnomedProblemType.Location = new System.Drawing.Point(12, 296);
			this.labelSnomedProblemType.Name = "labelSnomedProblemType";
			this.labelSnomedProblemType.Size = new System.Drawing.Size(100, 17);
			this.labelSnomedProblemType.TabIndex = 90;
			this.labelSnomedProblemType.Text = "Problem Type";
			this.labelSnomedProblemType.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// butTodayStop
			// 
			this.butTodayStop.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butTodayStop.Autosize = true;
			this.butTodayStop.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTodayStop.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTodayStop.CornerRadius = 4F;
			this.butTodayStop.Location = new System.Drawing.Point(263, 141);
			this.butTodayStop.Name = "butTodayStop";
			this.butTodayStop.Size = new System.Drawing.Size(64, 23);
			this.butTodayStop.TabIndex = 86;
			this.butTodayStop.Text = "Today";
			this.butTodayStop.Click += new System.EventHandler(this.butTodayStop_Click);
			// 
			// butTodayStart
			// 
			this.butTodayStart.AdjustImageLocation = new System.Drawing.Point(0, 0);
			this.butTodayStart.Autosize = true;
			this.butTodayStart.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTodayStart.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTodayStart.CornerRadius = 4F;
			this.butTodayStart.Location = new System.Drawing.Point(263, 115);
			this.butTodayStart.Name = "butTodayStart";
			this.butTodayStart.Size = new System.Drawing.Size(65, 23);
			this.butTodayStart.TabIndex = 85;
			this.butTodayStart.Text = "Today";
			this.butTodayStart.Click += new System.EventHandler(this.butTodayStart_Click);
			// 
			// textDateStop
			// 
			this.textDateStop.Location = new System.Drawing.Point(118, 143);
			this.textDateStop.Name = "textDateStop";
			this.textDateStop.Size = new System.Drawing.Size(126, 20);
			this.textDateStop.TabIndex = 84;
			// 
			// textDateStart
			// 
			this.textDateStart.Location = new System.Drawing.Point(118, 117);
			this.textDateStart.Name = "textDateStart";
			this.textDateStart.Size = new System.Drawing.Size(126, 20);
			this.textDateStart.TabIndex = 84;
			// 
			// 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(12, 356);
			this.butDelete.Name = "butDelete";
			this.butDelete.Size = new System.Drawing.Size(83, 26);
			this.butDelete.TabIndex = 6;
			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(327, 356);
			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);
			// 
			// 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(408, 356);
			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);
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(333, 296);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(150, 17);
			this.label7.TabIndex = 91;
			this.label7.Text = "Only for CCD";
			this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// labelFunctionalStatus
			// 
			this.labelFunctionalStatus.Location = new System.Drawing.Point(17, 320);
			this.labelFunctionalStatus.Name = "labelFunctionalStatus";
			this.labelFunctionalStatus.Size = new System.Drawing.Size(97, 23);
			this.labelFunctionalStatus.TabIndex = 93;
			this.labelFunctionalStatus.Text = "Functional Status";
			this.labelFunctionalStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboEhrFunctionalStatus
			// 
			this.comboEhrFunctionalStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboEhrFunctionalStatus.FormattingEnabled = true;
			this.comboEhrFunctionalStatus.Location = new System.Drawing.Point(118, 322);
			this.comboEhrFunctionalStatus.Name = "comboEhrFunctionalStatus";
			this.comboEhrFunctionalStatus.Size = new System.Drawing.Size(210, 21);
			this.comboEhrFunctionalStatus.TabIndex = 92;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(333, 323);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(150, 17);
			this.label8.TabIndex = 94;
			this.label8.Text = "Only for CCD";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// FormDiseaseEdit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(495, 394);
			this.Controls.Add(this.label8);
			this.Controls.Add(this.labelFunctionalStatus);
			this.Controls.Add(this.comboEhrFunctionalStatus);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.labelSnomedProblemType);
			this.Controls.Add(this.comboSnomedProblemType);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.textSnomed);
			this.Controls.Add(this.butTodayStop);
			this.Controls.Add(this.butTodayStart);
			this.Controls.Add(this.textDateStop);
			this.Controls.Add(this.textDateStart);
			this.Controls.Add(this.labelStatus);
			this.Controls.Add(this.comboStatus);
			this.Controls.Add(this.textIcd9);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.textProblem);
			this.Controls.Add(this.butDelete);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.textNote);
			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 = "FormDiseaseEdit";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Problem";
			this.Load += new System.EventHandler(this.FormDiseaseEdit_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 43
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(FormImagingSetup));
     this.label12   = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.radioScanDocUseOptionsBelow = new System.Windows.Forms.RadioButton();
     this.radioScanDocShowOptions     = new System.Windows.Forms.RadioButton();
     this.groupScanningOptions        = new System.Windows.Forms.GroupBox();
     this.label8                   = new System.Windows.Forms.Label();
     this.checkScanDocDuplex       = new System.Windows.Forms.CheckBox();
     this.label5                   = new System.Windows.Forms.Label();
     this.label6                   = new System.Windows.Forms.Label();
     this.textScanDocResolution    = new OpenDental.ValidNum();
     this.checkScanDocGrayscale    = new System.Windows.Forms.CheckBox();
     this.checkScanDocSelectSource = new System.Windows.Forms.CheckBox();
     this.label7                   = new System.Windows.Forms.Label();
     this.textScanDocQuality       = new OpenDental.ValidNum();
     this.groupBox2                = new System.Windows.Forms.GroupBox();
     this.label1                   = new System.Windows.Forms.Label();
     this.labelPanoBW              = new System.Windows.Forms.Label();
     this.slider                   = new OpenDental.UI.ContrWindowingSlider();
     this.groupBox3                = new System.Windows.Forms.GroupBox();
     this.label37                  = new System.Windows.Forms.Label();
     this.groupBox4                = new System.Windows.Forms.GroupBox();
     this.checkBinned              = new System.Windows.Forms.CheckBox();
     this.comboType                = new System.Windows.Forms.ComboBox();
     this.upDownPort               = new System.Windows.Forms.NumericUpDown();
     this.label4                   = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     this.upDownExposure           = new System.Windows.Forms.NumericUpDown();
     this.butSetScanner            = new OpenDental.UI.Button();
     this.butMounts                = new OpenDental.UI.Button();
     this.butCancel                = new OpenDental.UI.Button();
     this.butOK = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.groupScanningOptions.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.upDownPort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.upDownExposure)).BeginInit();
     this.SuspendLayout();
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(17, 42);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(254, 15);
     this.label12.TabIndex  = 14;
     this.label12.Text      = "JPEG Compression - Quality After Scanning";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioScanDocUseOptionsBelow);
     this.groupBox1.Controls.Add(this.radioScanDocShowOptions);
     this.groupBox1.Controls.Add(this.groupScanningOptions);
     this.groupBox1.Controls.Add(this.checkScanDocSelectSource);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.textScanDocQuality);
     this.groupBox1.Controls.Add(this.label12);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(20, 45);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(622, 197);
     this.groupBox1.TabIndex  = 17;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Documents - Settings apply only to this workstation";
     //
     // radioScanDocUseOptionsBelow
     //
     this.radioScanDocUseOptionsBelow.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.radioScanDocUseOptionsBelow.Location   = new System.Drawing.Point(85, 81);
     this.radioScanDocUseOptionsBelow.Name       = "radioScanDocUseOptionsBelow";
     this.radioScanDocUseOptionsBelow.Size       = new System.Drawing.Size(202, 18);
     this.radioScanDocUseOptionsBelow.TabIndex   = 26;
     this.radioScanDocUseOptionsBelow.TabStop    = true;
     this.radioScanDocUseOptionsBelow.Text       = "Use the Options Below";
     this.radioScanDocUseOptionsBelow.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.radioScanDocUseOptionsBelow.UseVisualStyleBackColor = true;
     //
     // radioScanDocShowOptions
     //
     this.radioScanDocShowOptions.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.radioScanDocShowOptions.Location   = new System.Drawing.Point(67, 63);
     this.radioScanDocShowOptions.Name       = "radioScanDocShowOptions";
     this.radioScanDocShowOptions.Size       = new System.Drawing.Size(220, 18);
     this.radioScanDocShowOptions.TabIndex   = 25;
     this.radioScanDocShowOptions.TabStop    = true;
     this.radioScanDocShowOptions.Text       = "Show Scanner Options Window";
     this.radioScanDocShowOptions.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.radioScanDocShowOptions.UseVisualStyleBackColor = true;
     this.radioScanDocShowOptions.CheckedChanged         += new System.EventHandler(this.radioScanDocShowOptions_CheckedChanged);
     //
     // groupScanningOptions
     //
     this.groupScanningOptions.Controls.Add(this.label8);
     this.groupScanningOptions.Controls.Add(this.checkScanDocDuplex);
     this.groupScanningOptions.Controls.Add(this.label5);
     this.groupScanningOptions.Controls.Add(this.label6);
     this.groupScanningOptions.Controls.Add(this.textScanDocResolution);
     this.groupScanningOptions.Controls.Add(this.checkScanDocGrayscale);
     this.groupScanningOptions.Location = new System.Drawing.Point(32, 100);
     this.groupScanningOptions.Name     = "groupScanningOptions";
     this.groupScanningOptions.Size     = new System.Drawing.Size(584, 90);
     this.groupScanningOptions.TabIndex = 24;
     this.groupScanningOptions.TabStop  = false;
     this.groupScanningOptions.Text     = "Scanning Options";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(260, 9);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(260, 34);
     this.label8.TabIndex = 23;
     this.label8.Text     = "If this setting causes your scanner to malfunction, use the \"Show Scanner Options" +
                            " Window\" instead";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // checkScanDocDuplex
     //
     this.checkScanDocDuplex.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkScanDocDuplex.Location   = new System.Drawing.Point(9, 19);
     this.checkScanDocDuplex.Name       = "checkScanDocDuplex";
     this.checkScanDocDuplex.Size       = new System.Drawing.Size(247, 18);
     this.checkScanDocDuplex.TabIndex   = 21;
     this.checkScanDocDuplex.Text       = "Multipage Scans Duplex (both sides)";
     this.checkScanDocDuplex.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkScanDocDuplex.UseVisualStyleBackColor = true;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(52, 66);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(186, 19);
     this.label5.TabIndex  = 15;
     this.label5.Text      = "Resolution";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(313, 65);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(180, 19);
     this.label6.TabIndex  = 15;
     this.label6.Text      = "> 50. Typical setting: 150 dpi";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textScanDocResolution
     //
     this.textScanDocResolution.Location = new System.Drawing.Point(241, 65);
     this.textScanDocResolution.MaxVal   = 1000;
     this.textScanDocResolution.MinVal   = 51;
     this.textScanDocResolution.Name     = "textScanDocResolution";
     this.textScanDocResolution.Size     = new System.Drawing.Size(68, 20);
     this.textScanDocResolution.TabIndex = 20;
     //
     // checkScanDocGrayscale
     //
     this.checkScanDocGrayscale.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkScanDocGrayscale.Location   = new System.Drawing.Point(110, 47);
     this.checkScanDocGrayscale.Name       = "checkScanDocGrayscale";
     this.checkScanDocGrayscale.Size       = new System.Drawing.Size(146, 18);
     this.checkScanDocGrayscale.TabIndex   = 22;
     this.checkScanDocGrayscale.Text       = "Grayscale";
     this.checkScanDocGrayscale.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkScanDocGrayscale.UseVisualStyleBackColor = true;
     //
     // checkScanDocSelectSource
     //
     this.checkScanDocSelectSource.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkScanDocSelectSource.Location   = new System.Drawing.Point(32, 19);
     this.checkScanDocSelectSource.Name       = "checkScanDocSelectSource";
     this.checkScanDocSelectSource.Size       = new System.Drawing.Size(256, 18);
     this.checkScanDocSelectSource.TabIndex   = 23;
     this.checkScanDocSelectSource.Text       = "Show Select Scanner Window";
     this.checkScanDocSelectSource.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkScanDocSelectSource.UseVisualStyleBackColor = true;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(345, 42);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(246, 15);
     this.label7.TabIndex  = 23;
     this.label7.Text      = "0-100. 100=No compression.  Typical setting: 40";
     this.label7.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textScanDocQuality
     //
     this.textScanDocQuality.Location = new System.Drawing.Point(273, 40);
     this.textScanDocQuality.MaxVal   = 100;
     this.textScanDocQuality.MinVal   = 0;
     this.textScanDocQuality.Name     = "textScanDocQuality";
     this.textScanDocQuality.Size     = new System.Drawing.Size(68, 20);
     this.textScanDocQuality.TabIndex = 20;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.labelPanoBW);
     this.groupBox2.Controls.Add(this.slider);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location  = new System.Drawing.Point(20, 251);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(484, 96);
     this.groupBox2.TabIndex  = 18;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Radiographs";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(13, 14);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(425, 19);
     this.label1.TabIndex  = 22;
     this.label1.Text      = "Default pixel windowing for new radiographs, both scanned and digital";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // labelPanoBW
     //
     this.labelPanoBW.Location = new System.Drawing.Point(13, 65);
     this.labelPanoBW.Name     = "labelPanoBW";
     this.labelPanoBW.Size     = new System.Drawing.Size(465, 24);
     this.labelPanoBW.TabIndex = 15;
     this.labelPanoBW.Text     = "Suggested setting for scanning panos is Greyscale, 300 dpi.  For BWs, 400dpi.";
     //
     // slider
     //
     this.slider.Location = new System.Drawing.Point(14, 38);
     this.slider.MaxVal   = 128;
     this.slider.Name     = "slider";
     this.slider.Size     = new System.Drawing.Size(194, 14);
     this.slider.TabIndex = 21;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label37);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox3.Location  = new System.Drawing.Point(20, 353);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(484, 43);
     this.groupBox3.TabIndex  = 19;
     this.groupBox3.TabStop   = false;
     this.groupBox3.Text      = "Photos";
     //
     // label37
     //
     this.label37.Location = new System.Drawing.Point(14, 18);
     this.label37.Name     = "label37";
     this.label37.Size     = new System.Drawing.Size(464, 20);
     this.label37.TabIndex = 15;
     this.label37.Text     = "Suggested setting for scanning photos is Color, 300 dpi.";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBinned);
     this.groupBox4.Controls.Add(this.comboType);
     this.groupBox4.Controls.Add(this.upDownPort);
     this.groupBox4.Controls.Add(this.label4);
     this.groupBox4.Controls.Add(this.label3);
     this.groupBox4.Controls.Add(this.label2);
     this.groupBox4.Controls.Add(this.upDownExposure);
     this.groupBox4.Location = new System.Drawing.Point(21, 402);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(484, 137);
     this.groupBox4.TabIndex = 21;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "Suni Imaging - Settings apply only to this workstation";
     //
     // checkBinned
     //
     this.checkBinned.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBinned.Location   = new System.Drawing.Point(81, 96);
     this.checkBinned.Name       = "checkBinned";
     this.checkBinned.Size       = new System.Drawing.Size(206, 17);
     this.checkBinned.TabIndex   = 8;
     this.checkBinned.Text       = "Binned (not normally used)";
     this.checkBinned.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBinned.UseVisualStyleBackColor = true;
     //
     // comboType
     //
     this.comboType.FormattingEnabled = true;
     this.comboType.Location          = new System.Drawing.Point(273, 69);
     this.comboType.Name     = "comboType";
     this.comboType.Size     = new System.Drawing.Size(37, 21);
     this.comboType.TabIndex = 7;
     this.comboType.Text     = "D";
     //
     // upDownPort
     //
     this.upDownPort.Location = new System.Drawing.Point(273, 43);
     this.upDownPort.Maximum  = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.upDownPort.Name     = "upDownPort";
     this.upDownPort.Size     = new System.Drawing.Size(33, 20);
     this.upDownPort.TabIndex = 6;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(28, 45);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(239, 13);
     this.label4.TabIndex  = 5;
     this.label4.Text      = "Sensor Port (place where sensor connects)";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(14, 72);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(253, 13);
     this.label3.TabIndex  = 3;
     this.label3.Text      = "Sensor Type (last serial letter on sensor cable)";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(28, 20);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(239, 13);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Exposure Level (1-7) for New Captures";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // upDownExposure
     //
     this.upDownExposure.Location = new System.Drawing.Point(273, 17);
     this.upDownExposure.Maximum  = new decimal(new int[] {
         7,
         0,
         0,
         0
     });
     this.upDownExposure.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.upDownExposure.Name     = "upDownExposure";
     this.upDownExposure.Size     = new System.Drawing.Size(33, 20);
     this.upDownExposure.TabIndex = 1;
     this.upDownExposure.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     //
     // butSetScanner
     //
     this.butSetScanner.Location = new System.Drawing.Point(21, 12);
     this.butSetScanner.Name     = "butSetScanner";
     this.butSetScanner.Size     = new System.Drawing.Size(110, 24);
     this.butSetScanner.TabIndex = 22;
     this.butSetScanner.Text     = "Set Default Scanner";
     this.butSetScanner.Click   += new System.EventHandler(this.butSetScanner_Click);
     //
     // butMounts
     //
     this.butMounts.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butMounts.Location = new System.Drawing.Point(656, 12);
     this.butMounts.Name     = "butMounts";
     this.butMounts.Size     = new System.Drawing.Size(79, 24);
     this.butMounts.TabIndex = 20;
     this.butMounts.Text     = "Setup Mounts";
     this.butMounts.Visible  = false;
     this.butMounts.Click   += new System.EventHandler(this.butMounts_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(660, 639);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 3;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(660, 601);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex = 2;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // FormImagingSetup
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(762, 687);
     this.Controls.Add(this.butSetScanner);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.butMounts);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormImagingSetup";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Imaging Quality";
     this.Load           += new System.EventHandler(this.FormImagingSetup_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupScanningOptions.ResumeLayout(false);
     this.groupScanningOptions.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.upDownPort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.upDownExposure)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 44
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(FormFeesForIns));
			this.textCarrier = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.comboFeeSchedWithout = new System.Windows.Forms.ComboBox();
			this.label3 = new System.Windows.Forms.Label();
			this.comboFeeSchedWith = new System.Windows.Forms.ComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.comboFeeSchedNew = new System.Windows.Forms.ComboBox();
			this.label5 = new System.Windows.Forms.Label();
			this.textCarrierNot = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.listType = new System.Windows.Forms.ListBox();
			this.butSelectAll = new OpenDental.UI.Button();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.butOK = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.SuspendLayout();
			// 
			// textCarrier
			// 
			this.textCarrier.Location = new System.Drawing.Point(235,26);
			this.textCarrier.Name = "textCarrier";
			this.textCarrier.Size = new System.Drawing.Size(180,20);
			this.textCarrier.TabIndex = 0;
			this.textCarrier.TextChanged += new System.EventHandler(this.textCarrier_TextChanged);
			// 
			// label2
			// 
			this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.label2.Location = new System.Drawing.Point(136,29);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(93,17);
			this.label2.TabIndex = 19;
			this.label2.Text = "Carrier Like";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label1
			// 
			this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.label1.Location = new System.Drawing.Point(416,51);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(128,17);
			this.label1.TabIndex = 20;
			this.label1.Text = "Without Fee Schedule";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboFeeSchedWithout
			// 
			this.comboFeeSchedWithout.FormattingEnabled = true;
			this.comboFeeSchedWithout.Location = new System.Drawing.Point(550,47);
			this.comboFeeSchedWithout.MaxDropDownItems = 40;
			this.comboFeeSchedWithout.Name = "comboFeeSchedWithout";
			this.comboFeeSchedWithout.Size = new System.Drawing.Size(228,21);
			this.comboFeeSchedWithout.TabIndex = 1;
			this.comboFeeSchedWithout.SelectionChangeCommitted += new System.EventHandler(this.comboFeeSchedWithout_SelectionChangeCommitted);
			// 
			// label3
			// 
			this.label3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.label3.Location = new System.Drawing.Point(13,4);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(432,15);
			this.label3.TabIndex = 22;
			this.label3.Text = "You are searching for Insurance Plans that might have the wrong fee schedule atta" +
    "ched.";
			// 
			// comboFeeSchedWith
			// 
			this.comboFeeSchedWith.FormattingEnabled = true;
			this.comboFeeSchedWith.Location = new System.Drawing.Point(550,25);
			this.comboFeeSchedWith.MaxDropDownItems = 40;
			this.comboFeeSchedWith.Name = "comboFeeSchedWith";
			this.comboFeeSchedWith.Size = new System.Drawing.Size(228,21);
			this.comboFeeSchedWith.TabIndex = 23;
			this.comboFeeSchedWith.SelectionChangeCommitted += new System.EventHandler(this.comboFeeSchedWith_SelectionChangeCommitted);
			// 
			// label4
			// 
			this.label4.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.label4.Location = new System.Drawing.Point(416,29);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(128,17);
			this.label4.TabIndex = 24;
			this.label4.Text = "With Fee Schedule";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboFeeSchedNew
			// 
			this.comboFeeSchedNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.comboFeeSchedNew.FormattingEnabled = true;
			this.comboFeeSchedNew.Location = new System.Drawing.Point(370,633);
			this.comboFeeSchedNew.MaxDropDownItems = 40;
			this.comboFeeSchedNew.Name = "comboFeeSchedNew";
			this.comboFeeSchedNew.Size = new System.Drawing.Size(228,21);
			this.comboFeeSchedNew.TabIndex = 25;
			// 
			// label5
			// 
			this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.label5.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.label5.Location = new System.Drawing.Point(215,637);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(149,17);
			this.label5.TabIndex = 26;
			this.label5.Text = "New Fee Schedule";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// textCarrierNot
			// 
			this.textCarrierNot.Location = new System.Drawing.Point(235,47);
			this.textCarrierNot.Name = "textCarrierNot";
			this.textCarrierNot.Size = new System.Drawing.Size(180,20);
			this.textCarrierNot.TabIndex = 27;
			this.textCarrierNot.TextChanged += new System.EventHandler(this.textCarrierNot_TextChanged);
			// 
			// label6
			// 
			this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.label6.Location = new System.Drawing.Point(136,50);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(93,17);
			this.label6.TabIndex = 28;
			this.label6.Text = "Carrier Not Like";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// listType
			// 
			this.listType.FormattingEnabled = true;
			this.listType.Location = new System.Drawing.Point(13,25);
			this.listType.Name = "listType";
			this.listType.Size = new System.Drawing.Size(120,43);
			this.listType.TabIndex = 29;
			this.listType.Click += new System.EventHandler(this.listType_Click);
			// 
			// butSelectAll
			// 
			this.butSelectAll.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			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(12,630);
			this.butSelectAll.Name = "butSelectAll";
			this.butSelectAll.Size = new System.Drawing.Size(75,24);
			this.butSelectAll.TabIndex = 30;
			this.butSelectAll.Text = "Select All";
			this.butSelectAll.Click += new System.EventHandler(this.butSelectAll_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.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(13,72);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.MultiExtended;
			this.gridMain.Size = new System.Drawing.Size(732,552);
			this.gridMain.TabIndex = 2;
			this.gridMain.Title = "Ins Plans that might need to be changed";
			this.gridMain.TranslationName = null;
			// 
			// 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.Left)));
			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(614,631);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75,24);
			this.butOK.TabIndex = 2;
			this.butOK.Text = "Change";
			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(737,631);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,24);
			this.butCancel.TabIndex = 3;
			this.butCancel.Text = "&Close";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// FormFeesForIns
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(824,668);
			this.Controls.Add(this.butSelectAll);
			this.Controls.Add(this.listType);
			this.Controls.Add(this.textCarrierNot);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.comboFeeSchedNew);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.comboFeeSchedWith);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.comboFeeSchedWithout);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.textCarrier);
			this.Controls.Add(this.label2);
			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.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormFeesForIns";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Check Insurance Plan Fees";
			this.Load += new System.EventHandler(this.FormFeesForIns_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 45
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(FormRepeatChargesUpdate));
     this.textBox1  = new System.Windows.Forms.TextBox();
     this.butOK     = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.BackColor   = System.Drawing.SystemColors.Control;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Location    = new System.Drawing.Point(43, 13);
     this.textBox1.Multiline   = true;
     this.textBox1.Name        = "textBox1";
     this.textBox1.Size        = new System.Drawing.Size(426, 175);
     this.textBox1.TabIndex    = 3;
     this.textBox1.Text        = resources.GetString("textBox1.Text");
     //
     // 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(393, 197);
     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);
     //
     // 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(393, 238);
     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);
     //
     // FormRepeatChargesUpdate
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(520, 289);
     this.Controls.Add(this.textBox1);
     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          = "FormRepeatChargesUpdate";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Update Repeating Charges";
     this.Load         += new System.EventHandler(this.FormRepeatChargesUpdate_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 46
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(FormDatabaseMaintenance));
     this.butClose = new OpenDental.UI.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.buttonCheck = new OpenDental.UI.Button();
     this.pd2 = new System.Drawing.Printing.PrintDocument();
     this.textLog = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.checkShow = new System.Windows.Forms.CheckBox();
     this.butPrint = new OpenDental.UI.Button();
     this.butFix = new OpenDental.UI.Button();
     this.butInsPayFix = new OpenDental.UI.Button();
     this.butOptimize = new OpenDental.UI.Button();
     this.butApptProcs = 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.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butClose.Location = new System.Drawing.Point(787,631);
     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);
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.Control;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Location = new System.Drawing.Point(27,12);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(847,24);
     this.textBox1.TabIndex = 1;
     this.textBox1.Text = "This tool will check the entire database for any improper settings, inconsistenci" +
     "es, or corruption.  If any problems are found, they will be fixed.";
     //
     // buttonCheck
     //
     this.buttonCheck.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.buttonCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCheck.Autosize = true;
     this.buttonCheck.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.buttonCheck.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.buttonCheck.CornerRadius = 4F;
     this.buttonCheck.Location = new System.Drawing.Point(598,631);
     this.buttonCheck.Name = "buttonCheck";
     this.buttonCheck.Size = new System.Drawing.Size(75,26);
     this.buttonCheck.TabIndex = 5;
     this.buttonCheck.Text = "C&heck";
     this.buttonCheck.Click += new System.EventHandler(this.buttonCheck_Click);
     //
     // textLog
     //
     this.textLog.Font = new System.Drawing.Font("Courier New",8.25F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,((byte)(0)));
     this.textLog.Location = new System.Drawing.Point(27,77);
     this.textLog.Multiline = true;
     this.textLog.Name = "textLog";
     this.textLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textLog.Size = new System.Drawing.Size(847,543);
     this.textLog.TabIndex = 14;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(24,53);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(361,20);
     this.label1.TabIndex = 15;
     this.label1.Text = "Log (automatically saved in RepairLog.txt if user has permission)";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // checkShow
     //
     this.checkShow.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkShow.Location = new System.Drawing.Point(27,35);
     this.checkShow.Name = "checkShow";
     this.checkShow.Size = new System.Drawing.Size(847,20);
     this.checkShow.TabIndex = 16;
     this.checkShow.Text = "Show me everything in the log  (only for advanced users)";
     //
     // 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.butPrint;
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location = new System.Drawing.Point(460,631);
     this.butPrint.Name = "butPrint";
     this.butPrint.Size = new System.Drawing.Size(87,26);
     this.butPrint.TabIndex = 18;
     this.butPrint.Text = "Print";
     this.butPrint.Click += new System.EventHandler(this.butPrint_Click);
     //
     // butFix
     //
     this.butFix.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butFix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butFix.Autosize = true;
     this.butFix.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butFix.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butFix.CornerRadius = 4F;
     this.butFix.Location = new System.Drawing.Point(678,631);
     this.butFix.Name = "butFix";
     this.butFix.Size = new System.Drawing.Size(75,26);
     this.butFix.TabIndex = 20;
     this.butFix.Text = "Fix";
     this.butFix.Click += new System.EventHandler(this.butFix_Click);
     //
     // butInsPayFix
     //
     this.butInsPayFix.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butInsPayFix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butInsPayFix.Autosize = true;
     this.butInsPayFix.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butInsPayFix.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butInsPayFix.CornerRadius = 4F;
     this.butInsPayFix.Location = new System.Drawing.Point(27,631);
     this.butInsPayFix.Name = "butInsPayFix";
     this.butInsPayFix.Size = new System.Drawing.Size(87,26);
     this.butInsPayFix.TabIndex = 21;
     this.butInsPayFix.Text = "Ins Pay Fix";
     this.butInsPayFix.Click += new System.EventHandler(this.butInsPayFix_Click);
     //
     // butOptimize
     //
     this.butOptimize.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butOptimize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOptimize.Autosize = true;
     this.butOptimize.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOptimize.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOptimize.CornerRadius = 4F;
     this.butOptimize.Location = new System.Drawing.Point(120,631);
     this.butOptimize.Name = "butOptimize";
     this.butOptimize.Size = new System.Drawing.Size(87,26);
     this.butOptimize.TabIndex = 23;
     this.butOptimize.Text = "Optimize";
     this.butOptimize.Click += new System.EventHandler(this.butOptimize_Click);
     //
     // butApptProcs
     //
     this.butApptProcs.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butApptProcs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butApptProcs.Autosize = true;
     this.butApptProcs.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butApptProcs.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butApptProcs.CornerRadius = 4F;
     this.butApptProcs.Location = new System.Drawing.Point(213,631);
     this.butApptProcs.Name = "butApptProcs";
     this.butApptProcs.Size = new System.Drawing.Size(87,26);
     this.butApptProcs.TabIndex = 24;
     this.butApptProcs.Text = "Appt Procs";
     this.butApptProcs.Click += new System.EventHandler(this.butApptProcs_Click);
     //
     // FormDatabaseMaintenance
     //
     this.AcceptButton = this.buttonCheck;
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.CancelButton = this.butClose;
     this.ClientSize = new System.Drawing.Size(895,667);
     this.Controls.Add(this.butApptProcs);
     this.Controls.Add(this.butOptimize);
     this.Controls.Add(this.butInsPayFix);
     this.Controls.Add(this.butFix);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.checkShow);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textLog);
     this.Controls.Add(this.buttonCheck);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.butClose);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormDatabaseMaintenance";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Database Maintenance";
     this.Load += new System.EventHandler(this.FormDatabaseMaintenance_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 47
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);
 }
Esempio n. 48
0
		private void InitializeComponent(){
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProcCodes));
			this.listFeeSched = new System.Windows.Forms.ListBox();
			this.labelFeeSched = new System.Windows.Forms.Label();
			this.groupFeeScheds = new System.Windows.Forms.GroupBox();
			this.listCategories = new System.Windows.Forms.ListBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.textDescription = new System.Windows.Forms.TextBox();
			this.textAbbreviation = new System.Windows.Forms.TextBox();
			this.textCode = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.checkShowHidden = new System.Windows.Forms.CheckBox();
			this.label3 = new System.Windows.Forms.Label();
			this.comboCompare1 = new System.Windows.Forms.ComboBox();
			this.label5 = new System.Windows.Forms.Label();
			this.comboCompare2 = new System.Windows.Forms.ComboBox();
			this.groupProcCodeSetup = new System.Windows.Forms.GroupBox();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.butProcTools = new OpenDental.UI.Button();
			this.butImport = new OpenDental.UI.Button();
			this.butExport = new OpenDental.UI.Button();
			this.butNew = new OpenDental.UI.Button();
			this.butShowHiddenDefault = new OpenDental.UI.Button();
			this.butAll = new OpenDental.UI.Button();
			this.butEditCategories = new OpenDental.UI.Button();
			this.butTools = new OpenDental.UI.Button();
			this.butEditFeeSched = new OpenDental.UI.Button();
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.groupFeeScheds.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.groupProcCodeSetup.SuspendLayout();
			this.SuspendLayout();
			// 
			// listFeeSched
			// 
			this.listFeeSched.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.listFeeSched.Location = new System.Drawing.Point(778,24);
			this.listFeeSched.Name = "listFeeSched";
			this.listFeeSched.Size = new System.Drawing.Size(200,511);
			this.listFeeSched.TabIndex = 6;
			this.listFeeSched.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listFeeSched_MouseDown);
			// 
			// labelFeeSched
			// 
			this.labelFeeSched.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.labelFeeSched.Location = new System.Drawing.Point(774,4);
			this.labelFeeSched.Name = "labelFeeSched";
			this.labelFeeSched.Size = new System.Drawing.Size(132,17);
			this.labelFeeSched.TabIndex = 12;
			this.labelFeeSched.Text = "View Fee Sched";
			this.labelFeeSched.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// groupFeeScheds
			// 
			this.groupFeeScheds.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.groupFeeScheds.Controls.Add(this.butTools);
			this.groupFeeScheds.Controls.Add(this.butEditFeeSched);
			this.groupFeeScheds.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupFeeScheds.Location = new System.Drawing.Point(778,603);
			this.groupFeeScheds.Name = "groupFeeScheds";
			this.groupFeeScheds.Size = new System.Drawing.Size(200,51);
			this.groupFeeScheds.TabIndex = 14;
			this.groupFeeScheds.TabStop = false;
			// 
			// listCategories
			// 
			this.listCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.listCategories.FormattingEnabled = true;
			this.listCategories.Location = new System.Drawing.Point(10,126);
			this.listCategories.Name = "listCategories";
			this.listCategories.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
			this.listCategories.Size = new System.Drawing.Size(145,368);
			this.listCategories.TabIndex = 15;
			this.listCategories.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listCategories_MouseUp);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(7,100);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(80,23);
			this.label1.TabIndex = 16;
			this.label1.Text = "By Category";
			this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(3,42);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(79,20);
			this.label2.TabIndex = 17;
			this.label2.Text = "By Descript";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// groupBox1
			// 
			this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.groupBox1.Controls.Add(this.butShowHiddenDefault);
			this.groupBox1.Controls.Add(this.textDescription);
			this.groupBox1.Controls.Add(this.textAbbreviation);
			this.groupBox1.Controls.Add(this.textCode);
			this.groupBox1.Controls.Add(this.butAll);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.checkShowHidden);
			this.groupBox1.Controls.Add(this.butEditCategories);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.listCategories);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Location = new System.Drawing.Point(2,16);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(165,568);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Search";
			// 
			// textDescription
			// 
			this.textDescription.Location = new System.Drawing.Point(82,43);
			this.textDescription.Name = "textDescription";
			this.textDescription.Size = new System.Drawing.Size(73,20);
			this.textDescription.TabIndex = 0;
			this.textDescription.TextChanged += new System.EventHandler(this.textDescription_TextChanged);
			// 
			// textAbbreviation
			// 
			this.textAbbreviation.Location = new System.Drawing.Point(82,17);
			this.textAbbreviation.Name = "textAbbreviation";
			this.textAbbreviation.Size = new System.Drawing.Size(73,20);
			this.textAbbreviation.TabIndex = 3;
			this.textAbbreviation.TextChanged += new System.EventHandler(this.textAbbreviation_TextChanged);
			// 
			// textCode
			// 
			this.textCode.Location = new System.Drawing.Point(82,69);
			this.textCode.Name = "textCode";
			this.textCode.Size = new System.Drawing.Size(73,20);
			this.textCode.TabIndex = 1;
			this.textCode.TextChanged += new System.EventHandler(this.textCode_TextChanged);
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(3,16);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(79,20);
			this.label4.TabIndex = 22;
			this.label4.Text = "By Abbrev";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// checkShowHidden
			// 
			this.checkShowHidden.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.checkShowHidden.Location = new System.Drawing.Point(10,545);
			this.checkShowHidden.Name = "checkShowHidden";
			this.checkShowHidden.Size = new System.Drawing.Size(90,17);
			this.checkShowHidden.TabIndex = 20;
			this.checkShowHidden.Text = "Show Hidden";
			this.checkShowHidden.UseVisualStyleBackColor = true;
			this.checkShowHidden.Click += new System.EventHandler(this.checkShowHidden_Click);
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(3,68);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(79,20);
			this.label3.TabIndex = 19;
			this.label3.Text = "By Code";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// comboCompare1
			// 
			this.comboCompare1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.comboCompare1.FormattingEnabled = true;
			this.comboCompare1.Location = new System.Drawing.Point(778,554);
			this.comboCompare1.Name = "comboCompare1";
			this.comboCompare1.Size = new System.Drawing.Size(200,21);
			this.comboCompare1.TabIndex = 20;
			this.comboCompare1.SelectionChangeCommitted += new System.EventHandler(this.comboCompare1_SelectionChangeCommitted);
			// 
			// 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(776,534);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(199,17);
			this.label5.TabIndex = 21;
			this.label5.Text = "Compare Fee Schedules";
			this.label5.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// comboCompare2
			// 
			this.comboCompare2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.comboCompare2.FormattingEnabled = true;
			this.comboCompare2.Location = new System.Drawing.Point(778,577);
			this.comboCompare2.Name = "comboCompare2";
			this.comboCompare2.Size = new System.Drawing.Size(200,21);
			this.comboCompare2.TabIndex = 22;
			this.comboCompare2.SelectionChangeCommitted += new System.EventHandler(this.comboCompare2_SelectionChangeCommitted);
			// 
			// groupProcCodeSetup
			// 
			this.groupProcCodeSetup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.groupProcCodeSetup.Controls.Add(this.butProcTools);
			this.groupProcCodeSetup.Controls.Add(this.butImport);
			this.groupProcCodeSetup.Controls.Add(this.butExport);
			this.groupProcCodeSetup.Controls.Add(this.butNew);
			this.groupProcCodeSetup.Location = new System.Drawing.Point(2,603);
			this.groupProcCodeSetup.Name = "groupProcCodeSetup";
			this.groupProcCodeSetup.Size = new System.Drawing.Size(165,91);
			this.groupProcCodeSetup.TabIndex = 26;
			this.groupProcCodeSetup.TabStop = false;
			this.groupProcCodeSetup.Text = "Procedure Codes";
			// 
			// 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(170,8);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.SelectionMode = OpenDental.UI.GridSelectionMode.OneCell;
			this.gridMain.Size = new System.Drawing.Size(604,686);
			this.gridMain.TabIndex = 19;
			this.gridMain.Title = "Procedures";
			this.gridMain.TranslationName = "TableProcedures";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			this.gridMain.CellLeave += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellLeave);
			// 
			// butProcTools
			// 
			this.butProcTools.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butProcTools.Autosize = true;
			this.butProcTools.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butProcTools.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butProcTools.CornerRadius = 4F;
			this.butProcTools.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butProcTools.Location = new System.Drawing.Point(6,57);
			this.butProcTools.Name = "butProcTools";
			this.butProcTools.Size = new System.Drawing.Size(75,26);
			this.butProcTools.TabIndex = 25;
			this.butProcTools.Text = "Tools";
			this.butProcTools.Click += new System.EventHandler(this.butProcTools_Click);
			// 
			// butImport
			// 
			this.butImport.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butImport.Location = new System.Drawing.Point(6,19);
			this.butImport.Name = "butImport";
			this.butImport.Size = new System.Drawing.Size(75,26);
			this.butImport.TabIndex = 23;
			this.butImport.Text = "Import";
			this.butImport.Click += new System.EventHandler(this.butImport_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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butExport.Location = new System.Drawing.Point(85,19);
			this.butExport.Name = "butExport";
			this.butExport.Size = new System.Drawing.Size(75,26);
			this.butExport.TabIndex = 24;
			this.butExport.Text = "Export";
			this.butExport.Click += new System.EventHandler(this.butExport_Click);
			// 
			// butNew
			// 
			this.butNew.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			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.Image = global::OpenDental.Properties.Resources.Add;
			this.butNew.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butNew.Location = new System.Drawing.Point(85,57);
			this.butNew.Name = "butNew";
			this.butNew.Size = new System.Drawing.Size(75,26);
			this.butNew.TabIndex = 22;
			this.butNew.Text = "&New";
			this.butNew.Click += new System.EventHandler(this.butNew_Click);
			// 
			// butShowHiddenDefault
			// 
			this.butShowHiddenDefault.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butShowHiddenDefault.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butShowHiddenDefault.Autosize = true;
			this.butShowHiddenDefault.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butShowHiddenDefault.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butShowHiddenDefault.CornerRadius = 4F;
			this.butShowHiddenDefault.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.butShowHiddenDefault.Location = new System.Drawing.Point(100,542);
			this.butShowHiddenDefault.Name = "butShowHiddenDefault";
			this.butShowHiddenDefault.Size = new System.Drawing.Size(56,20);
			this.butShowHiddenDefault.TabIndex = 25;
			this.butShowHiddenDefault.Text = "default";
			this.butShowHiddenDefault.Click += new System.EventHandler(this.butShowHiddenDefault_Click);
			// 
			// butAll
			// 
			this.butAll.AdjustImageLocation = new System.Drawing.Point(0,0);
			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(93,100);
			this.butAll.Name = "butAll";
			this.butAll.Size = new System.Drawing.Size(62,25);
			this.butAll.TabIndex = 7;
			this.butAll.Text = "All";
			this.butAll.Click += new System.EventHandler(this.butAll_Click);
			// 
			// butEditCategories
			// 
			this.butEditCategories.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butEditCategories.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.butEditCategories.Autosize = true;
			this.butEditCategories.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEditCategories.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEditCategories.CornerRadius = 4F;
			this.butEditCategories.Location = new System.Drawing.Point(10,513);
			this.butEditCategories.Name = "butEditCategories";
			this.butEditCategories.Size = new System.Drawing.Size(94,26);
			this.butEditCategories.TabIndex = 21;
			this.butEditCategories.Text = "Edit Categories";
			this.butEditCategories.Click += new System.EventHandler(this.butEditCategories_Click);
			// 
			// butTools
			// 
			this.butTools.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butTools.Autosize = true;
			this.butTools.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butTools.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butTools.CornerRadius = 4F;
			this.butTools.Location = new System.Drawing.Point(109,16);
			this.butTools.Name = "butTools";
			this.butTools.Size = new System.Drawing.Size(81,26);
			this.butTools.TabIndex = 14;
			this.butTools.Text = "Fee Tools";
			this.butTools.Click += new System.EventHandler(this.butTools_Click);
			// 
			// butEditFeeSched
			// 
			this.butEditFeeSched.AdjustImageLocation = new System.Drawing.Point(0,0);
			this.butEditFeeSched.Autosize = true;
			this.butEditFeeSched.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
			this.butEditFeeSched.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
			this.butEditFeeSched.CornerRadius = 4F;
			this.butEditFeeSched.Location = new System.Drawing.Point(12,16);
			this.butEditFeeSched.Name = "butEditFeeSched";
			this.butEditFeeSched.Size = new System.Drawing.Size(81,26);
			this.butEditFeeSched.TabIndex = 13;
			this.butEditFeeSched.Text = "Fee Scheds";
			this.butEditFeeSched.Click += new System.EventHandler(this.butEditFeeSched_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(889,668);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,26);
			this.butCancel.TabIndex = 5;
			this.butCancel.Text = "&Cancel";
			this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
			// 
			// butOK
			// 
			this.butOK.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(794,668);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75,26);
			this.butOK.TabIndex = 4;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// FormProcCodes
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(982,707);
			this.Controls.Add(this.groupProcCodeSetup);
			this.Controls.Add(this.listFeeSched);
			this.Controls.Add(this.comboCompare2);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.comboCompare1);
			this.Controls.Add(this.gridMain);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.groupFeeScheds);
			this.Controls.Add(this.labelFeeSched);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.butOK);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MinimumSize = new System.Drawing.Size(990,734);
			this.Name = "FormProcCodes";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Procedure Codes";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.FormProcedures_Closing);
			this.Load += new System.EventHandler(this.FormProcCodes_Load);
			this.groupFeeScheds.ResumeLayout(false);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.groupProcCodeSetup.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Esempio n. 49
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(FormApptLists));
     this.label1       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.label3       = new System.Windows.Forms.Label();
     this.label5       = new System.Windows.Forms.Label();
     this.label6       = new System.Windows.Forms.Label();
     this.label4       = new System.Windows.Forms.Label();
     this.butASAP      = new OpenDental.UI.Button();
     this.butUnsched   = new OpenDental.UI.Button();
     this.butPlanned   = new OpenDental.UI.Button();
     this.butConfirm   = new OpenDental.UI.Button();
     this.butRecall    = new OpenDental.UI.Button();
     this.butCancel    = new OpenDental.UI.Button();
     this.butRadOrders = new OpenDental.UI.Button();
     this.label7       = new System.Windows.Forms.Label();
     this.butInsVerify = new OpenDental.UI.Button();
     this.label8       = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(130, 67);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(479, 34);
     this.label1.TabIndex = 2;
     this.label1.Text     = "A list of due dates for patients who have previously been in for an exam or clean" +
                            "ing";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(130, 118);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(479, 44);
     this.label2.TabIndex = 3;
     this.label2.Text     = "A list of scheduled appointments.  These patients need to be reminded about their" +
                            " appointments.";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(130, 172);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(479, 47);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Planned appointments are created in the Chart module.  Every patient should have " +
                            "one or be marked done.  This list is work that has been planned but never schedu" +
                            "led.";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(130, 226);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(479, 47);
     this.label5.TabIndex = 6;
     this.label5.Text     = "A short list of appointments that need to be followed up on.   Keep this list sho" +
                            "rt by deleting any that don\'t get scheduled quickly.  You would then track them " +
                            " using the Planned Appointment Tracker";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(27, 19);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(519, 31);
     this.label6.TabIndex = 7;
     this.label6.Text     = "These lists may be used for calling patients, sending postcards, running reports," +
                            " etc..  Make sure to make good Comm Log entries for everything.";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(130, 280);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(479, 54);
     this.label4.TabIndex = 12;
     this.label4.Text     = "The short call list. A list of appointments and recalls where the patient is avai" +
                            "lable on short notice. To show this list, the \"ASAP\" checkbox must be checked on" +
                            " the appointment or the recall";
     //
     // butASAP
     //
     this.butASAP.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butASAP.Autosize            = true;
     this.butASAP.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butASAP.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butASAP.CornerRadius        = 4F;
     this.butASAP.Location            = new System.Drawing.Point(28, 278);
     this.butASAP.Name     = "butASAP";
     this.butASAP.Size     = new System.Drawing.Size(100, 26);
     this.butASAP.TabIndex = 13;
     this.butASAP.Text     = "ASAP";
     this.butASAP.Click   += new System.EventHandler(this.butASAP_Click);
     //
     // butUnsched
     //
     this.butUnsched.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butUnsched.Autosize            = true;
     this.butUnsched.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butUnsched.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butUnsched.CornerRadius        = 4F;
     this.butUnsched.Location            = new System.Drawing.Point(28, 224);
     this.butUnsched.Name     = "butUnsched";
     this.butUnsched.Size     = new System.Drawing.Size(100, 26);
     this.butUnsched.TabIndex = 11;
     this.butUnsched.Text     = "Unscheduled";
     this.butUnsched.Click   += new System.EventHandler(this.butUnsched_Click);
     //
     // butPlanned
     //
     this.butPlanned.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPlanned.Autosize            = true;
     this.butPlanned.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPlanned.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPlanned.CornerRadius        = 4F;
     this.butPlanned.Location            = new System.Drawing.Point(28, 170);
     this.butPlanned.Name     = "butPlanned";
     this.butPlanned.Size     = new System.Drawing.Size(100, 26);
     this.butPlanned.TabIndex = 10;
     this.butPlanned.Text     = "Planned Tracker";
     this.butPlanned.Click   += new System.EventHandler(this.butPlanned_Click);
     //
     // butConfirm
     //
     this.butConfirm.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butConfirm.Autosize            = true;
     this.butConfirm.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butConfirm.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butConfirm.CornerRadius        = 4F;
     this.butConfirm.Location            = new System.Drawing.Point(28, 116);
     this.butConfirm.Name     = "butConfirm";
     this.butConfirm.Size     = new System.Drawing.Size(100, 26);
     this.butConfirm.TabIndex = 9;
     this.butConfirm.Text     = "Confirmations";
     this.butConfirm.Click   += new System.EventHandler(this.butConfirm_Click);
     //
     // butRecall
     //
     this.butRecall.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRecall.Autosize            = true;
     this.butRecall.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRecall.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRecall.CornerRadius        = 4F;
     this.butRecall.Location            = new System.Drawing.Point(28, 62);
     this.butRecall.Name     = "butRecall";
     this.butRecall.Size     = new System.Drawing.Size(100, 26);
     this.butRecall.TabIndex = 8;
     this.butRecall.Text     = "Recall";
     this.butRecall.Click   += new System.EventHandler(this.butRecall_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(579, 456);
     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);
     //
     // butRadOrders
     //
     this.butRadOrders.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRadOrders.Autosize            = true;
     this.butRadOrders.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRadOrders.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRadOrders.CornerRadius        = 4F;
     this.butRadOrders.Location            = new System.Drawing.Point(28, 332);
     this.butRadOrders.Name     = "butRadOrders";
     this.butRadOrders.Size     = new System.Drawing.Size(100, 26);
     this.butRadOrders.TabIndex = 15;
     this.butRadOrders.Text     = "Radiology";
     this.butRadOrders.Click   += new System.EventHandler(this.butRadOrders_Click);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(130, 334);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(479, 47);
     this.label7.TabIndex = 14;
     this.label7.Text     = "A list of radiology orders associated to appointments that have not been marked a" +
                            "s CPOE.  This list allows providers to quickly approve radiology orders which wi" +
                            "ll help meet EHR measures.";
     //
     // butInsVerify
     //
     this.butInsVerify.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butInsVerify.Autosize            = true;
     this.butInsVerify.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butInsVerify.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butInsVerify.CornerRadius        = 4F;
     this.butInsVerify.Location            = new System.Drawing.Point(28, 386);
     this.butInsVerify.Name     = "butInsVerify";
     this.butInsVerify.Size     = new System.Drawing.Size(100, 26);
     this.butInsVerify.TabIndex = 17;
     this.butInsVerify.Text     = "Ins Verify";
     this.butInsVerify.Click   += new System.EventHandler(this.butInsVerify_Click);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(130, 388);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(479, 47);
     this.label8.TabIndex = 16;
     this.label8.Text     = "A list of insurance verifications for upcoming appointments.";
     //
     // FormApptLists
     //
     this.ClientSize = new System.Drawing.Size(666, 494);
     this.Controls.Add(this.butInsVerify);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.butRadOrders);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.butASAP);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.butUnsched);
     this.Controls.Add(this.butPlanned);
     this.Controls.Add(this.butConfirm);
     this.Controls.Add(this.butRecall);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormApptLists";
     this.ShowInTaskbar = false;
     this.Text          = "Appointment Lists";
     this.Load         += new System.EventHandler(this.FormApptLists_Load);
     this.ResumeLayout(false);
 }
Esempio n. 50
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(FormFormPatEdit));
     this.gridMain = new OpenDental.UI.ODGrid();
     this.multInput = new OpenDental.UI.ContrMultInput();
     this.butOK = new OpenDental.UI.Button();
     this.butCancel = new OpenDental.UI.Button();
     this.butDelete = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // gridMain
     //
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,12);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(757,607);
     this.gridMain.TabIndex = 3;
     this.gridMain.Title = "Questions";
     this.gridMain.TranslationName = "TableQuestions";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // multInput
     //
     this.multInput.Location = new System.Drawing.Point(12,12);
     this.multInput.Name = "multInput";
     this.multInput.Size = new System.Drawing.Size(757,640);
     this.multInput.TabIndex = 2;
     //
     // 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(795,585);
     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);
     //
     // 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(795,626);
     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);
     //
     // 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.Image = global::OpenDental.Properties.Resources.deleteX;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location = new System.Drawing.Point(12,625);
     this.butDelete.Name = "butDelete";
     this.butDelete.Size = new System.Drawing.Size(88,26);
     this.butDelete.TabIndex = 4;
     this.butDelete.Text = "Delete";
     this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
     //
     // FormFormPatEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.ClientSize = new System.Drawing.Size(893,671);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.multInput);
     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 = "FormFormPatEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Questionnaire";
     this.Shown += new System.EventHandler(this.FormFormPatEdit_Shown);
     this.Load += new System.EventHandler(this.FormFormPatEdit_Load);
     this.ResumeLayout(false);
 }
Esempio n. 51
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(FormAudit));
     this.label2          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.comboPermission = new System.Windows.Forms.ComboBox();
     this.label1          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.label5          = new System.Windows.Forms.Label();
     this.comboUser       = new System.Windows.Forms.ComboBox();
     this.textPatient     = new System.Windows.Forms.TextBox();
     this.butCurrent      = new OpenDental.UI.Button();
     this.butAll          = new OpenDental.UI.Button();
     this.butFind         = new OpenDental.UI.Button();
     this.butRefresh      = new OpenDental.UI.Button();
     this.textDateFrom    = new OpenDental.ValidDate();
     this.textDateTo      = new OpenDental.ValidDate();
     this.grid            = new OpenDental.UI.ODGrid();
     this.butPrint        = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(0, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(75, 14);
     this.label2.TabIndex  = 45;
     this.label2.Text      = "From Date";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(9, 30);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 13);
     this.label3.TabIndex  = 46;
     this.label3.Text      = "To Date";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboPermission
     //
     this.comboPermission.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPermission.FormattingEnabled = true;
     this.comboPermission.Location          = new System.Drawing.Point(262, 4);
     this.comboPermission.MaxDropDownItems  = 40;
     this.comboPermission.Name     = "comboPermission";
     this.comboPermission.Size     = new System.Drawing.Size(163, 21);
     this.comboPermission.TabIndex = 50;
     this.comboPermission.SelectionChangeCommitted += new System.EventHandler(this.comboPermission_SelectionChangeCommitted);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(179, 8);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(82, 13);
     this.label1.TabIndex  = 51;
     this.label1.Text      = "Permission";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(426, 8);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(82, 13);
     this.label4.TabIndex  = 52;
     this.label4.Text      = "Patient";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(179, 29);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(82, 13);
     this.label5.TabIndex  = 55;
     this.label5.Text      = "User";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboUser
     //
     this.comboUser.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboUser.FormattingEnabled = true;
     this.comboUser.Location          = new System.Drawing.Point(262, 25);
     this.comboUser.MaxDropDownItems  = 40;
     this.comboUser.Name     = "comboUser";
     this.comboUser.Size     = new System.Drawing.Size(163, 21);
     this.comboUser.TabIndex = 54;
     this.comboUser.SelectionChangeCommitted += new System.EventHandler(this.comboUser_SelectionChangeCommitted);
     //
     // textPatient
     //
     this.textPatient.Location = new System.Drawing.Point(509, 4);
     this.textPatient.Name     = "textPatient";
     this.textPatient.Size     = new System.Drawing.Size(216, 20);
     this.textPatient.TabIndex = 56;
     //
     // butCurrent
     //
     this.butCurrent.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCurrent.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCurrent.Autosize = true;
     this.butCurrent.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCurrent.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCurrent.Location = new System.Drawing.Point(509, 24);
     this.butCurrent.Name     = "butCurrent";
     this.butCurrent.Size     = new System.Drawing.Size(63, 24);
     this.butCurrent.TabIndex = 59;
     this.butCurrent.Text     = "Current";
     this.butCurrent.Click   += new System.EventHandler(this.butCurrent_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.Right)));
     this.butAll.Autosize = true;
     this.butAll.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAll.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAll.Location = new System.Drawing.Point(662, 24);
     this.butAll.Name     = "butAll";
     this.butAll.Size     = new System.Drawing.Size(63, 24);
     this.butAll.TabIndex = 58;
     this.butAll.Text     = "All";
     this.butAll.Click   += new System.EventHandler(this.butAll_Click);
     //
     // butFind
     //
     this.butFind.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butFind.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butFind.Autosize = true;
     this.butFind.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butFind.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butFind.Location = new System.Drawing.Point(585, 24);
     this.butFind.Name     = "butFind";
     this.butFind.Size     = new System.Drawing.Size(63, 24);
     this.butFind.TabIndex = 57;
     this.butFind.Text     = "Find";
     this.butFind.Click   += new System.EventHandler(this.butFind_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.Location = new System.Drawing.Point(814, 0);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(82, 26);
     this.butRefresh.TabIndex = 49;
     this.butRefresh.Text     = "Refresh";
     this.butRefresh.Click   += new System.EventHandler(this.butRefresh_Click);
     //
     // textDateFrom
     //
     this.textDateFrom.Location = new System.Drawing.Point(79, 5);
     this.textDateFrom.Name     = "textDateFrom";
     this.textDateFrom.Size     = new System.Drawing.Size(90, 20);
     this.textDateFrom.TabIndex = 47;
     //
     // textDateTo
     //
     this.textDateTo.Location = new System.Drawing.Point(79, 26);
     this.textDateTo.Name     = "textDateTo";
     this.textDateTo.Size     = new System.Drawing.Size(90, 20);
     this.textDateTo.TabIndex = 48;
     //
     // grid
     //
     this.grid.HScrollVisible  = false;
     this.grid.Location        = new System.Drawing.Point(8, 54);
     this.grid.Name            = "grid";
     this.grid.ScrollValue     = 0;
     this.grid.SelectionMode   = System.Windows.Forms.SelectionMode.MultiExtended;
     this.grid.Size            = new System.Drawing.Size(889, 578);
     this.grid.TabIndex        = 2;
     this.grid.Title           = "Audit Trail";
     this.grid.TranslationName = "TableAudit";
     //
     // 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.Image      = ((System.Drawing.Image)(resources.GetObject("butPrint.Image")));
     this.butPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPrint.Location   = new System.Drawing.Point(814, 26);
     this.butPrint.Name       = "butPrint";
     this.butPrint.Size       = new System.Drawing.Size(82, 26);
     this.butPrint.TabIndex   = 60;
     this.butPrint.Text       = "Print";
     this.butPrint.Click     += new System.EventHandler(this.butPrint_Click);
     //
     // FormAudit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(905, 634);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.butCurrent);
     this.Controls.Add(this.butAll);
     this.Controls.Add(this.butFind);
     this.Controls.Add(this.textPatient);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.comboUser);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboPermission);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.textDateFrom);
     this.Controls.Add(this.textDateTo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.grid);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormAudit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Audit Trail";
     this.Load         += new System.EventHandler(this.FormAudit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 52
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(FormSecurity));
     this.treePermissions = new System.Windows.Forms.TreeView();
     this.imageListPerm   = new System.Windows.Forms.ImageList(this.components);
     this.labelPerm       = new System.Windows.Forms.Label();
     this.checkTimecardSecurityEnabled = new System.Windows.Forms.CheckBox();
     this.gridMain         = new OpenDental.UI.ODGrid();
     this.butSetAll        = new OpenDental.UI.Button();
     this.butAddUser       = new OpenDental.UI.Button();
     this.butAddGroup      = new OpenDental.UI.Button();
     this.butClose         = new OpenDental.UI.Button();
     this.comboUsers       = new System.Windows.Forms.ComboBox();
     this.comboSchoolClass = new System.Windows.Forms.ComboBox();
     this.labelSchoolClass = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // treePermissions
     //
     this.treePermissions.HideSelection      = false;
     this.treePermissions.ImageIndex         = 0;
     this.treePermissions.ImageList          = this.imageListPerm;
     this.treePermissions.Location           = new System.Drawing.Point(470, 29);
     this.treePermissions.Name               = "treePermissions";
     this.treePermissions.SelectedImageIndex = 0;
     this.treePermissions.ShowPlusMinus      = false;
     this.treePermissions.ShowRootLines      = false;
     this.treePermissions.Size               = new System.Drawing.Size(417, 567);
     this.treePermissions.TabIndex           = 6;
     this.treePermissions.DoubleClick       += new System.EventHandler(this.treePermissions_DoubleClick);
     this.treePermissions.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.treePermissions_AfterSelect);
     this.treePermissions.MouseDown         += new System.Windows.Forms.MouseEventHandler(this.treePermissions_MouseDown);
     //
     // imageListPerm
     //
     this.imageListPerm.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListPerm.ImageStream")));
     this.imageListPerm.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListPerm.Images.SetKeyName(0, "grayBox.gif");
     this.imageListPerm.Images.SetKeyName(1, "checkBoxUnchecked.gif");
     this.imageListPerm.Images.SetKeyName(2, "checkBoxChecked.gif");
     //
     // labelPerm
     //
     this.labelPerm.Location  = new System.Drawing.Point(468, 5);
     this.labelPerm.Name      = "labelPerm";
     this.labelPerm.Size      = new System.Drawing.Size(285, 19);
     this.labelPerm.TabIndex  = 5;
     this.labelPerm.Text      = "Permissions for group:";
     this.labelPerm.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // checkTimecardSecurityEnabled
     //
     this.checkTimecardSecurityEnabled.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
     this.checkTimecardSecurityEnabled.FlatStyle  = System.Windows.Forms.FlatStyle.System;
     this.checkTimecardSecurityEnabled.Location   = new System.Drawing.Point(222, 618);
     this.checkTimecardSecurityEnabled.Name       = "checkTimecardSecurityEnabled";
     this.checkTimecardSecurityEnabled.Size       = new System.Drawing.Size(192, 19);
     this.checkTimecardSecurityEnabled.TabIndex   = 57;
     this.checkTimecardSecurityEnabled.Text       = "TimecardSecurityEnabled";
     this.checkTimecardSecurityEnabled.TextAlign  = System.Drawing.ContentAlignment.TopLeft;
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(8, 29);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(456, 567);
     this.gridMain.TabIndex         = 59;
     this.gridMain.Title            = "Users";
     this.gridMain.TranslationName  = "TableSecurity";
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butSetAll
     //
     this.butSetAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSetAll.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butSetAll.Autosize     = true;
     this.butSetAll.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSetAll.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSetAll.CornerRadius = 4F;
     this.butSetAll.Location     = new System.Drawing.Point(470, 610);
     this.butSetAll.Name         = "butSetAll";
     this.butSetAll.Size         = new System.Drawing.Size(79, 25);
     this.butSetAll.TabIndex     = 58;
     this.butSetAll.Text         = "Set All";
     this.butSetAll.Click       += new System.EventHandler(this.butSetAll_Click);
     //
     // butAddUser
     //
     this.butAddUser.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddUser.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAddUser.Autosize     = true;
     this.butAddUser.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddUser.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddUser.CornerRadius = 4F;
     this.butAddUser.Location     = new System.Drawing.Point(118, 610);
     this.butAddUser.Name         = "butAddUser";
     this.butAddUser.Size         = new System.Drawing.Size(75, 25);
     this.butAddUser.TabIndex     = 0;
     this.butAddUser.Text         = "Add User";
     this.butAddUser.Click       += new System.EventHandler(this.butAddUser_Click);
     //
     // butAddGroup
     //
     this.butAddGroup.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAddGroup.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butAddGroup.Autosize     = true;
     this.butAddGroup.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddGroup.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddGroup.CornerRadius = 4F;
     this.butAddGroup.Location     = new System.Drawing.Point(8, 610);
     this.butAddGroup.Name         = "butAddGroup";
     this.butAddGroup.Size         = new System.Drawing.Size(75, 25);
     this.butAddGroup.TabIndex     = 1;
     this.butAddGroup.Text         = "Edit Groups";
     this.butAddGroup.Click       += new System.EventHandler(this.butEditGroups_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(812, 610);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 25);
     this.butClose.TabIndex     = 0;
     this.butClose.Text         = "Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // comboUsers
     //
     this.comboUsers.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboUsers.FormattingEnabled = true;
     this.comboUsers.Location          = new System.Drawing.Point(8, 5);
     this.comboUsers.Name     = "comboUsers";
     this.comboUsers.Size     = new System.Drawing.Size(182, 21);
     this.comboUsers.TabIndex = 60;
     this.comboUsers.SelectionChangeCommitted += new System.EventHandler(this.comboUsers_SelectionChangeCommitted);
     //
     // comboSchoolClass
     //
     this.comboSchoolClass.DropDownStyle             = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboSchoolClass.Location                  = new System.Drawing.Point(276, 5);
     this.comboSchoolClass.MaxDropDownItems          = 30;
     this.comboSchoolClass.Name                      = "comboSchoolClass";
     this.comboSchoolClass.Size                      = new System.Drawing.Size(168, 21);
     this.comboSchoolClass.TabIndex                  = 90;
     this.comboSchoolClass.SelectionChangeCommitted += new System.EventHandler(this.comboSchoolClass_SelectionChangeCommitted);
     //
     // labelSchoolClass
     //
     this.labelSchoolClass.Location  = new System.Drawing.Point(203, 8);
     this.labelSchoolClass.Name      = "labelSchoolClass";
     this.labelSchoolClass.Size      = new System.Drawing.Size(72, 16);
     this.labelSchoolClass.TabIndex  = 91;
     this.labelSchoolClass.Text      = "Class";
     this.labelSchoolClass.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormSecurity
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(894, 644);
     this.Controls.Add(this.comboSchoolClass);
     this.Controls.Add(this.labelSchoolClass);
     this.Controls.Add(this.comboUsers);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butSetAll);
     this.Controls.Add(this.treePermissions);
     this.Controls.Add(this.checkTimecardSecurityEnabled);
     this.Controls.Add(this.butAddUser);
     this.Controls.Add(this.butAddGroup);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.labelPerm);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormSecurity";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Security";
     this.Load         += new System.EventHandler(this.FormSecurity_Load);
     this.ResumeLayout(false);
 }
Esempio n. 53
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(FormFeeScheds));
     this.listType     = new System.Windows.Forms.ListBox();
     this.groupBox7    = new System.Windows.Forms.GroupBox();
     this.butIns       = new OpenDental.UI.Button();
     this.label6       = new System.Windows.Forms.Label();
     this.label1       = new System.Windows.Forms.Label();
     this.butSort      = new OpenDental.UI.Button();
     this.butDown      = new OpenDental.UI.Button();
     this.butUp        = new OpenDental.UI.Button();
     this.gridMain     = new OpenDental.UI.ODGrid();
     this.butAdd       = new OpenDental.UI.Button();
     this.butClose     = new OpenDental.UI.Button();
     this.label2       = new System.Windows.Forms.Label();
     this.labelCleanUp = new System.Windows.Forms.Label();
     this.butCleanUp   = new OpenDental.UI.Button();
     this.groupBox7.SuspendLayout();
     this.SuspendLayout();
     //
     // listType
     //
     this.listType.FormattingEnabled = true;
     this.listType.Location          = new System.Drawing.Point(318, 26);
     this.listType.Name     = "listType";
     this.listType.Size     = new System.Drawing.Size(120, 56);
     this.listType.TabIndex = 12;
     this.listType.Click   += new System.EventHandler(this.listType_Click);
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.butIns);
     this.groupBox7.Controls.Add(this.label6);
     this.groupBox7.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox7.Location  = new System.Drawing.Point(17, 570);
     this.groupBox7.Name      = "groupBox7";
     this.groupBox7.Size      = new System.Drawing.Size(340, 58);
     this.groupBox7.TabIndex  = 17;
     this.groupBox7.TabStop   = false;
     this.groupBox7.Text      = "Check Ins Plan Fee Schedules";
     //
     // butIns
     //
     this.butIns.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butIns.Autosize            = true;
     this.butIns.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butIns.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butIns.CornerRadius        = 4F;
     this.butIns.Location            = new System.Drawing.Point(248, 19);
     this.butIns.Name     = "butIns";
     this.butIns.Size     = new System.Drawing.Size(75, 24);
     this.butIns.TabIndex = 4;
     this.butIns.Text     = "Go";
     this.butIns.Click   += new System.EventHandler(this.butIns_Click);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(6, 16);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(229, 39);
     this.label6.TabIndex = 5;
     this.label6.Text     = "This tool will help make sure your insurance plans have the right fee schedules s" +
                            "et.";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(315, 5);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 18);
     this.label1.TabIndex  = 18;
     this.label1.Text      = "Type";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butSort
     //
     this.butSort.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSort.Autosize            = true;
     this.butSort.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSort.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSort.CornerRadius        = 4F;
     this.butSort.ImageAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSort.Location            = new System.Drawing.Point(318, 214);
     this.butSort.Name     = "butSort";
     this.butSort.Size     = new System.Drawing.Size(75, 24);
     this.butSort.TabIndex = 19;
     this.butSort.Text     = "Sort";
     this.butSort.Click   += new System.EventHandler(this.butSort_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(318, 144);
     this.butDown.Name       = "butDown";
     this.butDown.Size       = new System.Drawing.Size(75, 24);
     this.butDown.TabIndex   = 16;
     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(318, 112);
     this.butUp.Name       = "butUp";
     this.butUp.Size       = new System.Drawing.Size(75, 24);
     this.butUp.TabIndex   = 15;
     this.butUp.Text       = "&Up";
     this.butUp.Click     += new System.EventHandler(this.butUp_Click);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(17, 12);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(278, 552);
     this.gridMain.TabIndex         = 11;
     this.gridMain.Title            = "FeeSchedules";
     this.gridMain.TranslationName  = "TableFeeScheds";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // 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(318, 437);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(75, 24);
     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(412, 604);
     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);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(315, 241);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(123, 44);
     this.label2.TabIndex = 20;
     this.label2.Text     = "Sorts by type and alphabetically";
     //
     // labelCleanUp
     //
     this.labelCleanUp.Location = new System.Drawing.Point(315, 511);
     this.labelCleanUp.Name     = "labelCleanUp";
     this.labelCleanUp.Size     = new System.Drawing.Size(161, 44);
     this.labelCleanUp.TabIndex = 22;
     this.labelCleanUp.Text     = "Deletes any allowed fee schedules that are not in use.";
     //
     // butCleanUp
     //
     this.butCleanUp.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCleanUp.Autosize            = true;
     this.butCleanUp.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCleanUp.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCleanUp.CornerRadius        = 4F;
     this.butCleanUp.ImageAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.butCleanUp.Location            = new System.Drawing.Point(318, 484);
     this.butCleanUp.Name     = "butCleanUp";
     this.butCleanUp.Size     = new System.Drawing.Size(99, 24);
     this.butCleanUp.TabIndex = 21;
     this.butCleanUp.Text     = "Clean Up Allowed";
     this.butCleanUp.Click   += new System.EventHandler(this.butCleanUp_Click);
     //
     // FormFeeScheds
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(515, 644);
     this.Controls.Add(this.labelCleanUp);
     this.Controls.Add(this.butCleanUp);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butSort);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox7);
     this.Controls.Add(this.butDown);
     this.Controls.Add(this.butUp);
     this.Controls.Add(this.listType);
     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          = "FormFeeScheds";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Fee Schedules";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormFeeSchedules_FormClosing);
     this.Load         += new System.EventHandler(this.FormFeeSchedules_Load);
     this.groupBox7.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 54
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRecallList));
     this.butClose           = new OpenDental.UI.Button();
     this.butRefresh         = new OpenDental.UI.Button();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.checkGroupFamilies = new System.Windows.Forms.CheckBox();
     this.textDateEnd        = new OpenDental.ValidDate();
     this.textDateStart      = new OpenDental.ValidDate();
     this.label3             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.butReport          = new OpenDental.UI.Button();
     this.butLabels          = new OpenDental.UI.Button();
     this.printDialog2       = new System.Windows.Forms.PrintDialog();
     this.groupBox3          = new System.Windows.Forms.GroupBox();
     this.comboStatus        = new System.Windows.Forms.ComboBox();
     this.butSetStatus       = new OpenDental.UI.Button();
     this.butPostcards       = new OpenDental.UI.Button();
     this.gridMain           = new OpenDental.UI.ODGrid();
     this.butPrint           = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.groupBox3.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(873, 645);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(75, 26);
     this.butClose.TabIndex     = 2;
     this.butClose.Text         = "&Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_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(79, 107);
     this.butRefresh.Name         = "butRefresh";
     this.butRefresh.Size         = new System.Drawing.Size(98, 26);
     this.butRefresh.TabIndex     = 2;
     this.butRefresh.Text         = "&Refresh List";
     this.butRefresh.Click       += new System.EventHandler(this.butRefresh_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.checkGroupFamilies);
     this.groupBox1.Controls.Add(this.textDateEnd);
     this.groupBox1.Controls.Add(this.textDateStart);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.butRefresh);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(771, 14);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(188, 144);
     this.groupBox1.TabIndex  = 1;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "View";
     //
     // checkGroupFamilies
     //
     this.checkGroupFamilies.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkGroupFamilies.Location   = new System.Drawing.Point(6, 16);
     this.checkGroupFamilies.Name       = "checkGroupFamilies";
     this.checkGroupFamilies.Size       = new System.Drawing.Size(108, 18);
     this.checkGroupFamilies.TabIndex   = 19;
     this.checkGroupFamilies.Text       = "Group Families";
     this.checkGroupFamilies.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkGroupFamilies.UseVisualStyleBackColor = true;
     this.checkGroupFamilies.Click += new System.EventHandler(this.checkGroupFamilies_Click);
     //
     // textDateEnd
     //
     this.textDateEnd.Location = new System.Drawing.Point(100, 59);
     this.textDateEnd.Name     = "textDateEnd";
     this.textDateEnd.Size     = new System.Drawing.Size(77, 20);
     this.textDateEnd.TabIndex = 18;
     //
     // textDateStart
     //
     this.textDateStart.Location = new System.Drawing.Point(100, 36);
     this.textDateStart.Name     = "textDateStart";
     this.textDateStart.Size     = new System.Drawing.Size(77, 20);
     this.textDateStart.TabIndex = 17;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(13, 87);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(162, 17);
     this.label3.TabIndex  = 16;
     this.label3.Text      = "(leave dates blank to view all)";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(7, 62);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(91, 14);
     this.label2.TabIndex  = 12;
     this.label2.Text      = "End Date";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(13, 39);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(84, 14);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "Start Date";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // butReport
     //
     this.butReport.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butReport.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butReport.Autosize     = true;
     this.butReport.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butReport.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butReport.CornerRadius = 4F;
     this.butReport.Location     = new System.Drawing.Point(861, 366);
     this.butReport.Name         = "butReport";
     this.butReport.Size         = new System.Drawing.Size(87, 26);
     this.butReport.TabIndex     = 13;
     this.butReport.Text         = "R&un Report";
     this.butReport.Click       += new System.EventHandler(this.butReport_Click);
     //
     // butLabels
     //
     this.butLabels.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butLabels.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butLabels.Autosize     = true;
     this.butLabels.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLabels.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLabels.CornerRadius = 4F;
     this.butLabels.Image        = global::OpenDental.Properties.Resources.butLabel;
     this.butLabels.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLabels.Location     = new System.Drawing.Point(846, 321);
     this.butLabels.Name         = "butLabels";
     this.butLabels.Size         = new System.Drawing.Size(102, 26);
     this.butLabels.TabIndex     = 14;
     this.butLabels.Text         = "Label Preview";
     this.butLabels.Click       += new System.EventHandler(this.butLabels_Click);
     //
     // printDialog2
     //
     this.printDialog2.AllowPrintToFile = false;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.comboStatus);
     this.groupBox3.Controls.Add(this.butSetStatus);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox3.Location  = new System.Drawing.Point(771, 168);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(188, 89);
     this.groupBox3.TabIndex  = 15;
     this.groupBox3.TabStop   = false;
     this.groupBox3.Text      = "Set Status";
     //
     // comboStatus
     //
     this.comboStatus.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboStatus.Location         = new System.Drawing.Point(17, 24);
     this.comboStatus.MaxDropDownItems = 40;
     this.comboStatus.Name             = "comboStatus";
     this.comboStatus.Size             = new System.Drawing.Size(160, 21);
     this.comboStatus.TabIndex         = 15;
     //
     // butSetStatus
     //
     this.butSetStatus.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butSetStatus.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butSetStatus.Autosize     = true;
     this.butSetStatus.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butSetStatus.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butSetStatus.CornerRadius = 4F;
     this.butSetStatus.Location     = new System.Drawing.Point(110, 56);
     this.butSetStatus.Name         = "butSetStatus";
     this.butSetStatus.Size         = new System.Drawing.Size(67, 26);
     this.butSetStatus.TabIndex     = 14;
     this.butSetStatus.Text         = "Set";
     this.butSetStatus.Click       += new System.EventHandler(this.butSetStatus_Click);
     //
     // butPostcards
     //
     this.butPostcards.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPostcards.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butPostcards.Autosize     = true;
     this.butPostcards.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPostcards.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPostcards.CornerRadius = 4F;
     this.butPostcards.Image        = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPostcards.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPostcards.Location     = new System.Drawing.Point(829, 276);
     this.butPostcards.Name         = "butPostcards";
     this.butPostcards.Size         = new System.Drawing.Size(119, 26);
     this.butPostcards.TabIndex     = 16;
     this.butPostcards.Text         = "Postcard Preview";
     this.butPostcards.Click       += new System.EventHandler(this.butPostcards_Click);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible   = false;
     this.gridMain.Location         = new System.Drawing.Point(9, 14);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.SelectionMode    = OpenDental.UI.GridSelectionMode.MultiExtended;
     this.gridMain.Size             = new System.Drawing.Size(754, 657);
     this.gridMain.TabIndex         = 18;
     this.gridMain.Title            = "Recall List";
     this.gridMain.TranslationName  = "TableRecallList";
     this.gridMain.CellClick       += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellClick);
     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.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(861, 411);
     this.butPrint.Name         = "butPrint";
     this.butPrint.Size         = new System.Drawing.Size(87, 26);
     this.butPrint.TabIndex     = 19;
     this.butPrint.Text         = "Print List";
     this.butPrint.Click       += new System.EventHandler(this.butPrint_Click);
     //
     // FormRecallList
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butClose;
     this.ClientSize        = new System.Drawing.Size(975, 691);
     this.Controls.Add(this.butPostcards);
     this.Controls.Add(this.butPrint);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.butLabels);
     this.Controls.Add(this.butReport);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormRecallList";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Recall List";
     this.Load         += new System.EventHandler(this.FormRecallList_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     OpenDental.UI.Button butSave;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpBirthday));
     this.label3          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.butCancel       = new OpenDental.UI.Button();
     this.butOK           = new OpenDental.UI.Button();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.textDateTo      = new System.Windows.Forms.TextBox();
     this.butRight        = new OpenDental.UI.Button();
     this.butMonth        = new OpenDental.UI.Button();
     this.butLeft         = new OpenDental.UI.Button();
     this.textDateFrom    = new System.Windows.Forms.TextBox();
     this.groupBox4       = new System.Windows.Forms.GroupBox();
     this.textPostcardMsg = new System.Windows.Forms.TextBox();
     this.label4          = new System.Windows.Forms.Label();
     this.butPostcards    = new OpenDental.UI.Button();
     butSave = new OpenDental.UI.Button();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // butSave
     //
     butSave.AdjustImageLocation = new System.Drawing.Point(0, 0);
     butSave.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     butSave.Autosize     = true;
     butSave.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     butSave.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     butSave.CornerRadius = 4F;
     butSave.Location     = new System.Drawing.Point(202, 30);
     butSave.Name         = "butSave";
     butSave.Size         = new System.Drawing.Size(87, 26);
     butSave.TabIndex     = 44;
     butSave.Text         = "Save Msg";
     butSave.Click       += new System.EventHandler(this.butSave_Click);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(20, 99);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(82, 18);
     this.label3.TabIndex  = 39;
     this.label3.Text      = "To";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(22, 73);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(82, 18);
     this.label2.TabIndex  = 37;
     this.label2.Text      = "From";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // 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(546, 216);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex     = 44;
     this.butCancel.Text         = "&Cancel";
     //
     // 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(546, 176);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex     = 43;
     this.butOK.Text         = "Report";
     this.butOK.Click       += new System.EventHandler(this.butReport_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textDateTo);
     this.groupBox1.Controls.Add(this.butRight);
     this.groupBox1.Controls.Add(this.butMonth);
     this.groupBox1.Controls.Add(this.butLeft);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.textDateFrom);
     this.groupBox1.Location = new System.Drawing.Point(21, 22);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(286, 131);
     this.groupBox1.TabIndex = 45;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Date Range (without the year)";
     //
     // textDateTo
     //
     this.textDateTo.Location    = new System.Drawing.Point(110, 97);
     this.textDateTo.Name        = "textDateTo";
     this.textDateTo.Size        = new System.Drawing.Size(71, 20);
     this.textDateTo.TabIndex    = 50;
     this.textDateTo.Validating += new System.ComponentModel.CancelEventHandler(this.textDateTo_Validating);
     //
     // 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(206, 28);
     this.butRight.Name     = "butRight";
     this.butRight.Size     = new System.Drawing.Size(45, 26);
     this.butRight.TabIndex = 49;
     this.butRight.Click   += new System.EventHandler(this.butRight_Click);
     //
     // butMonth
     //
     this.butMonth.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butMonth.Autosize            = true;
     this.butMonth.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butMonth.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butMonth.CornerRadius        = 4F;
     this.butMonth.Location            = new System.Drawing.Point(96, 28);
     this.butMonth.Name     = "butMonth";
     this.butMonth.Size     = new System.Drawing.Size(101, 26);
     this.butMonth.TabIndex = 48;
     this.butMonth.Text     = "Next Month";
     this.butMonth.Click   += new System.EventHandler(this.butMonth_Click);
     //
     // 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(42, 28);
     this.butLeft.Name     = "butLeft";
     this.butLeft.Size     = new System.Drawing.Size(45, 26);
     this.butLeft.TabIndex = 47;
     this.butLeft.Click   += new System.EventHandler(this.butLeft_Click);
     //
     // textDateFrom
     //
     this.textDateFrom.Location    = new System.Drawing.Point(110, 70);
     this.textDateFrom.Name        = "textDateFrom";
     this.textDateFrom.Size        = new System.Drawing.Size(71, 20);
     this.textDateFrom.TabIndex    = 46;
     this.textDateFrom.Validating += new System.ComponentModel.CancelEventHandler(this.textDateFrom_Validating);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.textPostcardMsg);
     this.groupBox4.Controls.Add(butSave);
     this.groupBox4.Controls.Add(this.label4);
     this.groupBox4.Controls.Add(this.butPostcards);
     this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox4.Location  = new System.Drawing.Point(332, 22);
     this.groupBox4.Name      = "groupBox4";
     this.groupBox4.Size      = new System.Drawing.Size(306, 131);
     this.groupBox4.TabIndex  = 46;
     this.groupBox4.TabStop   = false;
     this.groupBox4.Text      = "Postcards";
     //
     // textPostcardMsg
     //
     this.textPostcardMsg.AcceptsReturn = true;
     this.textPostcardMsg.Location      = new System.Drawing.Point(10, 30);
     this.textPostcardMsg.Multiline     = true;
     this.textPostcardMsg.Name          = "textPostcardMsg";
     this.textPostcardMsg.Size          = new System.Drawing.Size(186, 87);
     this.textPostcardMsg.TabIndex      = 45;
     this.textPostcardMsg.Text          = "Dear ?FName,  Happy ?AgeOrdinal Birthday!  Now, you\'re ?Age years old.";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(7, 12);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(158, 17);
     this.label4.TabIndex  = 18;
     this.label4.Text      = "Message";
     this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butPostcards
     //
     this.butPostcards.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butPostcards.Autosize            = true;
     this.butPostcards.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPostcards.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPostcards.CornerRadius        = 4F;
     this.butPostcards.Image      = global::OpenDental.Properties.Resources.butPrintSmall;
     this.butPostcards.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butPostcards.Location   = new System.Drawing.Point(202, 91);
     this.butPostcards.Name       = "butPostcards";
     this.butPostcards.Size       = new System.Drawing.Size(87, 26);
     this.butPostcards.TabIndex   = 16;
     this.butPostcards.Text       = "Preview";
     this.butPostcards.Click     += new System.EventHandler(this.butPostcards_Click);
     //
     // FormRpBirthday
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(660, 264);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FormRpBirthday";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Birthday Report";
     this.Load         += new System.EventHandler(this.FormRpBirthday_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 56
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormInsCatsSetup));
     this.butOK = new OpenDental.UI.Button();
     this.butAddSpan = new OpenDental.UI.Button();
     this.butUp = new OpenDental.UI.Button();
     this.butAddCat = new OpenDental.UI.Button();
     this.butDown = new OpenDental.UI.Button();
     this.gridMain = new OpenDental.UI.ODGrid();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.butDefaultsReset = new OpenDental.UI.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox1.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.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butOK.Location = new System.Drawing.Point(613,619);
     this.butOK.Name = "butOK";
     this.butOK.Size = new System.Drawing.Size(85,24);
     this.butOK.TabIndex = 6;
     this.butOK.Text = "&Close";
     this.butOK.Click += new System.EventHandler(this.butOK_Click);
     //
     // butAddSpan
     //
     this.butAddSpan.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butAddSpan.Autosize = true;
     this.butAddSpan.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAddSpan.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAddSpan.CornerRadius = 4F;
     this.butAddSpan.Image = global::OpenDental.Properties.Resources.Add;
     this.butAddSpan.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAddSpan.Location = new System.Drawing.Point(512,286);
     this.butAddSpan.Name = "butAddSpan";
     this.butAddSpan.Size = new System.Drawing.Size(86,24);
     this.butAddSpan.TabIndex = 9;
     this.butAddSpan.Text = "Add Span";
     this.butAddSpan.Click += new System.EventHandler(this.butAddSpan_Click);
     //
     // butUp
     //
     this.butUp.AdjustImageLocation = new System.Drawing.Point(0,0);
     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(8,19);
     this.butUp.Name = "butUp";
     this.butUp.Size = new System.Drawing.Size(86,24);
     this.butUp.TabIndex = 12;
     this.butUp.Text = "Up";
     this.butUp.Click += new System.EventHandler(this.butUp_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,61);
     this.butAddCat.Name = "butAddCat";
     this.butAddCat.Size = new System.Drawing.Size(86,24);
     this.butAddCat.TabIndex = 11;
     this.butAddCat.Text = "A&dd";
     this.butAddCat.Click += new System.EventHandler(this.butAddCat_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(100,19);
     this.butDown.Name = "butDown";
     this.butDown.Size = new System.Drawing.Size(86,24);
     this.butDown.TabIndex = 13;
     this.butDown.Text = "Down";
     this.butDown.Click += new System.EventHandler(this.butDown_Click);
     //
     // gridMain
     //
     this.gridMain.HScrollVisible = false;
     this.gridMain.Location = new System.Drawing.Point(12,68);
     this.gridMain.Name = "gridMain";
     this.gridMain.ScrollValue = 0;
     this.gridMain.Size = new System.Drawing.Size(476,578);
     this.gridMain.TabIndex = 14;
     this.gridMain.Title = "Coverage Spans";
     this.gridMain.TranslationName = "TableCovSpans";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.butUp);
     this.groupBox1.Controls.Add(this.butDown);
     this.groupBox1.Controls.Add(this.butAddCat);
     this.groupBox1.Location = new System.Drawing.Point(504,68);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(194,94);
     this.groupBox1.TabIndex = 15;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Categories";
     //
     // textBox1
     //
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Location = new System.Drawing.Point(12,12);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(543,53);
     this.textBox1.TabIndex = 16;
     this.textBox1.Text = resources.GetString("textBox1.Text");
     //
     // butDefaultsReset
     //
     this.butDefaultsReset.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butDefaultsReset.Autosize = true;
     this.butDefaultsReset.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDefaultsReset.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDefaultsReset.CornerRadius = 4F;
     this.butDefaultsReset.Location = new System.Drawing.Point(512,430);
     this.butDefaultsReset.Name = "butDefaultsReset";
     this.butDefaultsReset.Size = new System.Drawing.Size(86,24);
     this.butDefaultsReset.TabIndex = 18;
     this.butDefaultsReset.Text = "Set to Defaults";
     this.butDefaultsReset.Click += new System.EventHandler(this.butDefaultsReset_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(511,458);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(148,51);
     this.label1.TabIndex = 20;
     this.label1.Text = "This safely fixes the orders and spans.";
     //
     // FormInsCatsSetup
     //
     this.AcceptButton = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
     this.CancelButton = this.butOK;
     this.ClientSize = new System.Drawing.Size(713,660);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.butDefaultsReset);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.butAddSpan);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butOK);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormInsCatsSetup";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Setup Insurance Categories";
     this.Load += new System.EventHandler(this.FormInsCatsSetup_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.FormInsCatsSetup_Closing);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 57
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(FormAutomation));
			this.label1 = new System.Windows.Forms.Label();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.butAdd = new OpenDental.UI.Button();
			this.butClose = new OpenDental.UI.Button();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(21,9);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(485,22);
			this.label1.TabIndex = 12;
			this.label1.Text = "One trigger event will cause one action to be taken";
			// 
			// 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(21,34);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(735,394);
			this.gridMain.TabIndex = 11;
			this.gridMain.Title = "Automation";
			this.gridMain.TranslationName = "FormAutomation";
			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(19,451);
			this.butAdd.Name = "butAdd";
			this.butAdd.Size = new System.Drawing.Size(80,24);
			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(681,451);
			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);
			// 
			// FormAutomation
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(788,500);
			this.Controls.Add(this.label1);
			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 = "FormAutomation";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Automation";
			this.Load += new System.EventHandler(this.FormAutomation_Load);
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormAutomation_FormClosing);
			this.ResumeLayout(false);

		}
Esempio n. 58
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(FormLaboratories));
     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(592, 469);
     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);
     //
     // gridMain
     //
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(33, 40);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(634, 334);
     this.gridMain.TabIndex         = 1;
     this.gridMain.Title            = "Labs";
     this.gridMain.TranslationName  = "TableLabs";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // 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(592, 394);
     this.butAdd.Name       = "butAdd";
     this.butAdd.Size       = new System.Drawing.Size(75, 26);
     this.butAdd.TabIndex   = 2;
     this.butAdd.Text       = "&Add";
     this.butAdd.Click     += new System.EventHandler(this.butAdd_Click);
     //
     // FormLaboratories
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(719, 520);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormLaboratories";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Laboratories";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormLaboratories_FormClosing);
     this.Load         += new System.EventHandler(this.FormLaboratories_Load);
     this.ResumeLayout(false);
 }
Esempio n. 59
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormCommItem));
     this.label1              = new System.Windows.Forms.Label();
     this.label6              = new System.Windows.Forms.Label();
     this.butOK               = new OpenDental.UI.Button();
     this.butCancel           = new OpenDental.UI.Button();
     this.butDelete           = new OpenDental.UI.Button();
     this.label2              = new System.Windows.Forms.Label();
     this.listType            = new System.Windows.Forms.ListBox();
     this.textDateTime        = new System.Windows.Forms.TextBox();
     this.listMode            = new System.Windows.Forms.ListBox();
     this.label3              = new System.Windows.Forms.Label();
     this.listSentOrReceived  = new System.Windows.Forms.ListBox();
     this.label4              = new System.Windows.Forms.Label();
     this.textNote            = new OpenDental.ODtextBox();
     this.textPatientName     = new System.Windows.Forms.TextBox();
     this.label5              = new System.Windows.Forms.Label();
     this.textUser            = new System.Windows.Forms.TextBox();
     this.label16             = new System.Windows.Forms.Label();
     this.labelCommlogNum     = new System.Windows.Forms.Label();
     this.textCommlogNum      = new System.Windows.Forms.TextBox();
     this.signatureBoxWrapper = new OpenDental.UI.SignatureBoxWrapper();
     this.butNow              = new OpenDental.UI.Button();
     this.butNowEnd           = new OpenDental.UI.Button();
     this.textDateTimeEnd     = new System.Windows.Forms.TextBox();
     this.labelDateTimeEnd    = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(1, 33);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(81, 18);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Date / Time";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(80, 80);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(82, 16);
     this.label6.TabIndex  = 5;
     this.label6.Text      = "Type";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // 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(564, 515);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 25);
     this.butOK.TabIndex     = 6;
     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(564, 548);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex     = 7;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_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(27, 544);
     this.butDelete.Name         = "butDelete";
     this.butDelete.Size         = new System.Drawing.Size(81, 25);
     this.butDelete.TabIndex     = 17;
     this.butDelete.Text         = "&Delete";
     this.butDelete.Click       += new System.EventHandler(this.butDelete_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(81, 197);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(82, 16);
     this.label2.TabIndex  = 18;
     this.label2.Text      = "Note";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listType
     //
     this.listType.Location              = new System.Drawing.Point(82, 98);
     this.listType.Name                  = "listType";
     this.listType.Size                  = new System.Drawing.Size(120, 95);
     this.listType.TabIndex              = 20;
     this.listType.SelectedIndexChanged += new System.EventHandler(this.listType_SelectedIndexChanged);
     //
     // textDateTime
     //
     this.textDateTime.Location     = new System.Drawing.Point(82, 31);
     this.textDateTime.Name         = "textDateTime";
     this.textDateTime.Size         = new System.Drawing.Size(205, 20);
     this.textDateTime.TabIndex     = 21;
     this.textDateTime.TextChanged += new System.EventHandler(this.textDateTime_TextChanged);
     //
     // listMode
     //
     this.listMode.Location              = new System.Drawing.Point(215, 98);
     this.listMode.Name                  = "listMode";
     this.listMode.Size                  = new System.Drawing.Size(73, 95);
     this.listMode.TabIndex              = 23;
     this.listMode.SelectedIndexChanged += new System.EventHandler(this.listMode_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(214, 81);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(82, 16);
     this.label3.TabIndex  = 22;
     this.label3.Text      = "Mode";
     this.label3.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // listSentOrReceived
     //
     this.listSentOrReceived.Location              = new System.Drawing.Point(303, 98);
     this.listSentOrReceived.Name                  = "listSentOrReceived";
     this.listSentOrReceived.Size                  = new System.Drawing.Size(87, 43);
     this.listSentOrReceived.TabIndex              = 25;
     this.listSentOrReceived.SelectedValueChanged += new System.EventHandler(this.listSentOrReceived_SelectedValueChanged);
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(302, 80);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(142, 16);
     this.label4.TabIndex  = 24;
     this.label4.Text      = "Sent or Received";
     this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textNote
     //
     this.textNote.AcceptsReturn  = true;
     this.textNote.Location       = new System.Drawing.Point(82, 217);
     this.textNote.Multiline      = true;
     this.textNote.Name           = "textNote";
     this.textNote.QuickPasteType = OpenDentBusiness.QuickPasteType.CommLog;
     this.textNote.ScrollBars     = System.Windows.Forms.ScrollBars.Vertical;
     this.textNote.Size           = new System.Drawing.Size(557, 209);
     this.textNote.TabIndex       = 27;
     this.textNote.TextChanged   += new System.EventHandler(this.textNote_TextChanged);
     //
     // textPatientName
     //
     this.textPatientName.Location = new System.Drawing.Point(82, 7);
     this.textPatientName.Name     = "textPatientName";
     this.textPatientName.ReadOnly = true;
     this.textPatientName.Size     = new System.Drawing.Size(205, 20);
     this.textPatientName.TabIndex = 30;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(4, 9);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(78, 18);
     this.label5.TabIndex  = 29;
     this.label5.Text      = "Patient";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textUser
     //
     this.textUser.Location = new System.Drawing.Point(402, 7);
     this.textUser.Name     = "textUser";
     this.textUser.ReadOnly = true;
     this.textUser.Size     = new System.Drawing.Size(119, 20);
     this.textUser.TabIndex = 103;
     //
     // label16
     //
     this.label16.Location  = new System.Drawing.Point(327, 8);
     this.label16.Name      = "label16";
     this.label16.Size      = new System.Drawing.Size(73, 16);
     this.label16.TabIndex  = 102;
     this.label16.Text      = "User";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCommlogNum
     //
     this.labelCommlogNum.Location  = new System.Drawing.Point(154, 552);
     this.labelCommlogNum.Name      = "labelCommlogNum";
     this.labelCommlogNum.Size      = new System.Drawing.Size(96, 16);
     this.labelCommlogNum.TabIndex  = 104;
     this.labelCommlogNum.Text      = "CommlogNum";
     this.labelCommlogNum.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textCommlogNum
     //
     this.textCommlogNum.Location = new System.Drawing.Point(256, 549);
     this.textCommlogNum.Name     = "textCommlogNum";
     this.textCommlogNum.ReadOnly = true;
     this.textCommlogNum.Size     = new System.Drawing.Size(188, 20);
     this.textCommlogNum.TabIndex = 105;
     //
     // signatureBoxWrapper
     //
     this.signatureBoxWrapper.BackColor         = System.Drawing.SystemColors.ControlDark;
     this.signatureBoxWrapper.LabelText         = null;
     this.signatureBoxWrapper.Location          = new System.Drawing.Point(82, 432);
     this.signatureBoxWrapper.Name              = "signatureBoxWrapper";
     this.signatureBoxWrapper.Size              = new System.Drawing.Size(364, 81);
     this.signatureBoxWrapper.TabIndex          = 106;
     this.signatureBoxWrapper.SignatureChanged += new System.EventHandler(this.signatureBoxWrapper_SignatureChanged);
     //
     // butNow
     //
     this.butNow.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butNow.Autosize            = true;
     this.butNow.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butNow.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butNow.CornerRadius        = 4F;
     this.butNow.Location            = new System.Drawing.Point(293, 31);
     this.butNow.Name     = "butNow";
     this.butNow.Size     = new System.Drawing.Size(48, 21);
     this.butNow.TabIndex = 107;
     this.butNow.Text     = "Now";
     this.butNow.Click   += new System.EventHandler(this.butNow_Click);
     //
     // butNowEnd
     //
     this.butNowEnd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butNowEnd.Autosize            = true;
     this.butNowEnd.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butNowEnd.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butNowEnd.CornerRadius        = 4F;
     this.butNowEnd.Location            = new System.Drawing.Point(293, 55);
     this.butNowEnd.Name     = "butNowEnd";
     this.butNowEnd.Size     = new System.Drawing.Size(48, 21);
     this.butNowEnd.TabIndex = 110;
     this.butNowEnd.Text     = "Now";
     this.butNowEnd.Click   += new System.EventHandler(this.butNowEnd_Click);
     //
     // textDateTimeEnd
     //
     this.textDateTimeEnd.Location = new System.Drawing.Point(82, 55);
     this.textDateTimeEnd.Name     = "textDateTimeEnd";
     this.textDateTimeEnd.Size     = new System.Drawing.Size(205, 20);
     this.textDateTimeEnd.TabIndex = 109;
     //
     // labelDateTimeEnd
     //
     this.labelDateTimeEnd.Location  = new System.Drawing.Point(1, 57);
     this.labelDateTimeEnd.Name      = "labelDateTimeEnd";
     this.labelDateTimeEnd.Size      = new System.Drawing.Size(81, 18);
     this.labelDateTimeEnd.TabIndex  = 108;
     this.labelDateTimeEnd.Text      = "End";
     this.labelDateTimeEnd.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // FormCommItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(662, 594);
     this.Controls.Add(this.butNowEnd);
     this.Controls.Add(this.textDateTimeEnd);
     this.Controls.Add(this.labelDateTimeEnd);
     this.Controls.Add(this.butNow);
     this.Controls.Add(this.signatureBoxWrapper);
     this.Controls.Add(this.textCommlogNum);
     this.Controls.Add(this.labelCommlogNum);
     this.Controls.Add(this.textUser);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.textPatientName);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.listSentOrReceived);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.listMode);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.textDateTime);
     this.Controls.Add(this.listType);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FormCommItem";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Communication Item";
     this.Load         += new System.EventHandler(this.FormCommItem_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 60
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(FormAccountPick));
			this.imageListMain = new System.Windows.Forms.ImageList(this.components);
			this.checkInactive = new System.Windows.Forms.CheckBox();
			this.gridMain = new OpenDental.UI.ODGrid();
			this.butCancel = new OpenDental.UI.Button();
			this.butOK = new OpenDental.UI.Button();
			this.SuspendLayout();
			// 
			// imageListMain
			// 
			this.imageListMain.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListMain.ImageStream")));
			this.imageListMain.TransparentColor = System.Drawing.Color.Transparent;
			this.imageListMain.Images.SetKeyName(0,"Add.gif");
			this.imageListMain.Images.SetKeyName(1,"editPencil.gif");
			// 
			// checkInactive
			// 
			this.checkInactive.AutoSize = true;
			this.checkInactive.Location = new System.Drawing.Point(20,525);
			this.checkInactive.Name = "checkInactive";
			this.checkInactive.Size = new System.Drawing.Size(150,17);
			this.checkInactive.TabIndex = 2;
			this.checkInactive.Text = "Include Inactive Accounts";
			this.checkInactive.UseVisualStyleBackColor = true;
			this.checkInactive.Click += new System.EventHandler(this.checkInactive_Click);
			// 
			// gridMain
			// 
			this.gridMain.HScrollVisible = false;
			this.gridMain.Location = new System.Drawing.Point(8,14);
			this.gridMain.Name = "gridMain";
			this.gridMain.ScrollValue = 0;
			this.gridMain.Size = new System.Drawing.Size(475,505);
			this.gridMain.TabIndex = 1;
			this.gridMain.Title = "Accounts";
			this.gridMain.TranslationName = "TableChartOfAccounts";
			this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
			// 
			// 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(408,546);
			this.butCancel.Name = "butCancel";
			this.butCancel.Size = new System.Drawing.Size(75,26);
			this.butCancel.TabIndex = 11;
			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(315,546);
			this.butOK.Name = "butOK";
			this.butOK.Size = new System.Drawing.Size(75,26);
			this.butOK.TabIndex = 10;
			this.butOK.Text = "&OK";
			this.butOK.Click += new System.EventHandler(this.butOK_Click);
			// 
			// FormAccountPick
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5,13);
			this.ClientSize = new System.Drawing.Size(492,584);
			this.Controls.Add(this.butCancel);
			this.Controls.Add(this.butOK);
			this.Controls.Add(this.checkInactive);
			this.Controls.Add(this.gridMain);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FormAccountPick";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Pick Account";
			this.Load += new System.EventHandler(this.FormAccountPick_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}