GreatHomeChildcare-2/frmReports.Designer.cs
kougyokugentou 1554dd4abc Add some more code, thinking to do along the lines of "for each day, pull the students first and last in/out record and display it. Forget about if the student checks in or out multiple times, that's too hard.
TODO: for each day, make a new class to display the records in the dgvReport with child displayname, in+in_time, guardian_in, out+out_time, guardian_out, duration.
2021-02-04 22:16:12 -08:00

161 lines
7.0 KiB
C#

using System;
namespace GreatHomeChildcare
{
partial class frmReports
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.cbChildPicker = new System.Windows.Forms.ComboBox();
this.lblFilter = new System.Windows.Forms.Label();
this.dtpFrom = new System.Windows.Forms.DateTimePicker();
this.dtpTo = new System.Windows.Forms.DateTimePicker();
this.lblFrom = new System.Windows.Forms.Label();
this.lblTo = new System.Windows.Forms.Label();
this.dgvReports = new System.Windows.Forms.DataGridView();
this.ChildDisplayName = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dgvReports)).BeginInit();
this.SuspendLayout();
//
// cbChildPicker
//
this.cbChildPicker.DisplayMember = "DisplayName";
this.cbChildPicker.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbChildPicker.FormattingEnabled = true;
this.cbChildPicker.Location = new System.Drawing.Point(13, 57);
this.cbChildPicker.Name = "cbChildPicker";
this.cbChildPicker.Size = new System.Drawing.Size(121, 24);
this.cbChildPicker.TabIndex = 0;
this.cbChildPicker.SelectionChangeCommitted += new System.EventHandler(this.cbChildPicker_SelectionChangeCommitted);
//
// lblFilter
//
this.lblFilter.AutoSize = true;
this.lblFilter.Location = new System.Drawing.Point(13, 22);
this.lblFilter.Name = "lblFilter";
this.lblFilter.Size = new System.Drawing.Size(39, 17);
this.lblFilter.TabIndex = 1;
this.lblFilter.Text = "Filter";
//
// dtpFrom
//
this.dtpFrom.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dtpFrom.Location = new System.Drawing.Point(13, 177);
this.dtpFrom.MaxDate = new System.DateTime(2021, 2, 3, 12, 52, 11, 370);
this.dtpFrom.Name = "dtpFrom";
this.dtpFrom.Size = new System.Drawing.Size(121, 22);
this.dtpFrom.TabIndex = 2;
this.dtpFrom.Value = new System.DateTime(2021, 2, 3, 12, 52, 11, 370);
this.dtpFrom.CloseUp += new System.EventHandler(this.dtpFrom_CloseUp);
this.dtpFrom.DropDown += new System.EventHandler(this.dtpFrom_DropDown);
//
// dtpTo
//
this.dtpTo.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dtpTo.Location = new System.Drawing.Point(12, 257);
this.dtpTo.MaxDate = new System.DateTime(2021, 2, 3, 12, 52, 11, 383);
this.dtpTo.MinDate = this.dtpFrom.Value;
this.dtpTo.Name = "dtpTo";
this.dtpTo.Size = new System.Drawing.Size(121, 22);
this.dtpTo.TabIndex = 3;
this.dtpTo.Value = new System.DateTime(2021, 2, 3, 12, 52, 11, 383);
//
// lblFrom
//
this.lblFrom.AutoSize = true;
this.lblFrom.Location = new System.Drawing.Point(12, 154);
this.lblFrom.Name = "lblFrom";
this.lblFrom.Size = new System.Drawing.Size(40, 17);
this.lblFrom.TabIndex = 4;
this.lblFrom.Text = "From";
//
// lblTo
//
this.lblTo.AutoSize = true;
this.lblTo.Location = new System.Drawing.Point(12, 234);
this.lblTo.Name = "lblTo";
this.lblTo.Size = new System.Drawing.Size(25, 17);
this.lblTo.TabIndex = 5;
this.lblTo.Text = "To";
//
// dgvReports
//
this.dgvReports.AllowUserToAddRows = false;
this.dgvReports.AllowUserToDeleteRows = false;
this.dgvReports.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvReports.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ChildDisplayName});
this.dgvReports.Location = new System.Drawing.Point(204, 39);
this.dgvReports.Name = "dgvReports";
this.dgvReports.ReadOnly = true;
this.dgvReports.RowHeadersWidth = 51;
this.dgvReports.RowTemplate.Height = 24;
this.dgvReports.Size = new System.Drawing.Size(565, 367);
this.dgvReports.TabIndex = 6;
//
// ChildDisplayName
//
this.ChildDisplayName.HeaderText = "Child";
this.ChildDisplayName.MinimumWidth = 6;
this.ChildDisplayName.Name = "ChildDisplayName";
this.ChildDisplayName.ReadOnly = true;
this.ChildDisplayName.Width = 125;
//
// frmReports
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.dgvReports);
this.Controls.Add(this.lblTo);
this.Controls.Add(this.lblFrom);
this.Controls.Add(this.dtpTo);
this.Controls.Add(this.dtpFrom);
this.Controls.Add(this.lblFilter);
this.Controls.Add(this.cbChildPicker);
this.Name = "frmReports";
this.Text = "Reports : Great Home Childcare";
this.Load += new System.EventHandler(this.frmReports_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvReports)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cbChildPicker;
private System.Windows.Forms.Label lblFilter;
private System.Windows.Forms.DateTimePicker dtpFrom;
private System.Windows.Forms.DateTimePicker dtpTo;
private System.Windows.Forms.Label lblFrom;
private System.Windows.Forms.Label lblTo;
private System.Windows.Forms.DataGridView dgvReports;
private System.Windows.Forms.DataGridViewTextBoxColumn ChildDisplayName;
}
}