Ejemplo n.º 1
0
 /// <summary>
 /// Initializes ListView details with department properties by departments list
 /// </summary>
 /// <param name="mlv">ListView Object</param>
 /// <param name="departments">Department List</param>
 public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv,
                                       IList <Department> departments)
 {
     mlv.Items.Clear();
     foreach (var department in departments)
     {
         ListViewItem item = new ListViewItem(department.Id.ToString());
         item.SubItems.Add(department.Name);
         item.SubItems.Add(department.Users.Count.ToString());
         mlv.Items.Add(item);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes ListView details with stock properties by stocks list
 /// </summary>
 /// <param name="mlv">ListView Object</param>
 /// <param name="stocks">Stock List</param>
 public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <Stock> stocks)
 {
     mlv.Items.Clear();
     foreach (var stock in stocks)
     {
         ListViewItem item = new ListViewItem(stock.CompanyName);
         item.SubItems.Add(stock.Quantity.ToString());
         item.SubItems.Add(stock.CreatedAt.ToString());
         item.SubItems.Add(stock.UpdatedAt.ToString());
         mlv.Items.Add(item);
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes ListView details with item properties by items list
 /// </summary>
 /// <param name="mlv">ListView Object</param>
 /// <param name="items">Item list</param>
 public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <Item> items)
 {
     mlv.Items.Clear();
     foreach (var item in items)
     {
         ListViewItem listItem = new ListViewItem(item.Name);
         listItem.SubItems.Add(item.Description);
         listItem.SubItems.Add(item.InStock.ToString());
         listItem.SubItems.Add(item.Borroweds.ToString());
         mlv.Items.Add(listItem);
     }
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Initializes ListView details with file properties by file info list
        /// </summary>
        /// <param name="mlv">ListView Object</param>
        /// <param name="files">File List</param>
        public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <FileInfo> files)
        {
            mlv.Items.Clear();
            int counter = 1;

            foreach (var file in files)
            {
                ListViewItem item = new ListViewItem(counter++.ToString());
                item.SubItems.Add(file.Name);
                item.SubItems.Add(file.CreationTime.ToShortDateString() + " " + file.CreationTime.ToShortTimeString());
                item.SubItems.Add(file.LastAccessTime.ToShortDateString() + " " + file.LastAccessTime.ToShortTimeString());
                mlv.Items.Add(item);
            }
        }
Ejemplo n.º 5
0
        /// <summary>
        /// Initializes ListView details with user properties by user list
        /// </summary>
        /// <param name="mlv">ListView Object</param>
        /// <param name="users">User List</param>
        public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <User> users)
        {
            mlv.Items.Clear();
            int counter = 1;

            foreach (var user in users)
            {
                ListViewItem item = new ListViewItem(counter++.ToString());
                item.SubItems.Add(user.Username);
                item.SubItems.Add(user.Employee.FirstName);
                item.SubItems.Add(user.Employee.LastName);
                item.SubItems.Add(user.Department.Name);
                item.SubItems.Add(user.Role.Name);
                item.SubItems.Add(user.Borrows.Where(x => !x.IsReturn).ToList().Count.ToString());
                mlv.Items.Add(item);
            }
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Initializes ListView details with borrow properties by item's borrows list
        /// </summary>
        /// <param name="mlv">ListView Object</param>
        /// <param name="borrows"></param>
        /// <param name="items"></param>
        public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <Borrow> borrows,
                                              IList <Item> items)
        {
            mlv.Items.Clear();
            int counter = 1;

            foreach (var borrow in borrows)
            {
                Stock stock = items.First(x => x.Id.Equals(borrow.Item_Id)).Stocks
                              .First(x => x.Id.Equals(borrow.Stock_Id));
                ListViewItem item = new ListViewItem(counter++.ToString());
                item.SubItems.Add(stock.Item.Name);
                item.SubItems.Add(stock.CompanyName);
                item.SubItems.Add(borrow.Quantity.ToString());
                item.SubItems.Add(borrow.BorrowTime.ToLongDateString());
                mlv.Items.Add(item);
            }
        }
Ejemplo n.º 7
0
 /// <summary>
 /// Initializes ListView details with stock properties by item's stock list
 /// </summary>
 /// <param name="mlv">ListView Object</param>
 /// <param name="stocks">Stock List</param>
 /// <param name="items">Item List</param>
 public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <Stock> stocks,
                                       IList <Item> items)
 {
     mlv.Items.Clear();
     foreach (var stock in stocks)
     {
         Item         stockItem = items.First(x => x.Id.Equals(stock.Item_Id));
         ListViewItem item      = new ListViewItem(stock.Item.Name);
         item.SubItems.Add(stock.Item.Description);
         item.SubItems.Add(stock.CompanyName);
         item.SubItems.Add(stock.UnitPrice.ToString());
         item.SubItems.Add(stock.TotalPrice.ToString());
         item.SubItems.Add(stock.Quantity.ToString());
         item.SubItems.Add(stockItem.Borrows.Sum(x => x.Quantity).ToString());
         item.SubItems.Add(stockItem.Garbages.Sum(x => x.Quantity).ToString());
         mlv.Items.Add(item);
     }
 }
Ejemplo n.º 8
0
        /// <summary>
        /// Initializes ListView details with borrow properties by user's borrow list
        /// </summary>
        /// <param name="mlv">ListView Object</param>
        /// <param name="borrows">Borrow List</param>
        /// <param name="users">User List</param>
        public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <Borrow> borrows,
                                              IList <User> users)
        {
            mlv.Items.Clear();
            int counter = 1;

            foreach (var user in users.Where(x => x.Borrows.Any(y => !y.IsReturn)))
            {
                //User user = users.First(x => x.Id.Equals(borrow.User_Id));
                ListViewItem item = new ListViewItem(counter++.ToString());
                item.SubItems.Add(user.Username);
                item.SubItems.Add(user.Employee.FirstName + " " + user.Employee.LastName);
                item.SubItems.Add(user.Department.Name);
                item.SubItems.Add(user.Borrows.Sum(x => x.Quantity).ToString());
                item.SubItems.Add(user.Borrows.Count.ToString());
                mlv.Items.Add(item);
            }
        }
Ejemplo n.º 9
0
        /// <summary>
        /// Initializes ListView details with garbage properties by item's garbages list
        /// </summary>
        /// <param name="mlv">ListView Object</param>
        /// <param name="garbages">Garbage List</param>
        /// <param name="items">Item List</param>
        public static void InitializeListView(MaterialSkin.Controls.MaterialListView mlv, IList <Garbage> garbages,
                                              IList <Item> items)
        {
            mlv.Items.Clear();
            int   counter = 1;
            Item  item;
            Stock stock;

            foreach (var garbage in garbages)
            {
                item  = items.First(x => x.Id.Equals(garbage.Item_Id));
                stock = items.SelectMany(x => x.Stocks).First(x => x.Id.Equals(garbage.Stock_Id));
                ListViewItem listViewItem = new ListViewItem(counter++.ToString());
                listViewItem.SubItems.Add(item.Name);
                listViewItem.SubItems.Add(stock.CompanyName);
                listViewItem.SubItems.Add(garbage.Quantity.ToString());
                listViewItem.SubItems.Add(garbage.CreatedAt.ToShortDateString());
                mlv.Items.Add(listViewItem);
            }
        }
Ejemplo 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()
 {
     this.components = new System.ComponentModel.Container();
     Microsoft.Reporting.WinForms.ReportDataSource reportDataSource4 = new Microsoft.Reporting.WinForms.ReportDataSource();
     this.DataTable1BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.DataSet1 = new Maya_KP.DataSet1();
     this.TableBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.mtbMain = new MaterialSkin.Controls.MaterialTabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.lbl_pembuat_komitmen = new System.Windows.Forms.Label();
     this.mlvSpd = new MaterialSkin.Controls.MaterialListView();
     this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.panel3 = new System.Windows.Forms.Panel();
     this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
     this.txtSearchSpd = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnAddSpd = new MaterialSkin.Controls.MaterialRaisedButton();
     this.btnRefSpd = new MaterialSkin.Controls.MaterialRaisedButton();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.mlvPegawai = new MaterialSkin.Controls.MaterialListView();
     this.pNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pNama = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pNip = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pBidang = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pSeksi = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pJabatan = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.pPangkat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.panel2 = new System.Windows.Forms.Panel();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.txtCariPegawai = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnInputPegawai = new MaterialSkin.Controls.MaterialRaisedButton();
     this.btnRef = new MaterialSkin.Controls.MaterialRaisedButton();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.lblnips = new System.Windows.Forms.Label();
     this.lblkomitmen = new System.Windows.Forms.Label();
     this.materialLabel1 = new MaterialSkin.Controls.MaterialLabel();
     this.tbnomor = new System.Windows.Forms.TextBox();
     this.nm3 = new System.Windows.Forms.Label();
     this.tgl3 = new System.Windows.Forms.Label();
     this.ket3 = new System.Windows.Forms.Label();
     this.nm2 = new System.Windows.Forms.Label();
     this.tgl2 = new System.Windows.Forms.Label();
     this.ket2 = new System.Windows.Forms.Label();
     this.ket1 = new System.Windows.Forms.Label();
     this.tgl1 = new System.Windows.Forms.Label();
     this.nm1 = new System.Windows.Forms.Label();
     this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.materialRaisedButton1 = new MaterialSkin.Controls.MaterialRaisedButton();
     this.Pengeluaran_ = new MaterialSkin.Controls.MaterialListView();
     this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader12 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader13 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader14 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader15 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader16 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader17 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader18 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader19 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader20 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.materialTabSelector1 = new MaterialSkin.Controls.MaterialTabSelector();
     this.DataTable1TableAdapter = new Maya_KP.DataSet1TableAdapters.DataTable1TableAdapter();
     this.dataSet11 = new Maya_KP.DataSet1();
     this.dataSet12 = new Maya_KP.DataSet1();
     this.lblnip_komitmen = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.DataTable1BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TableBindingSource)).BeginInit();
     this.panel1.SuspendLayout();
     this.mtbMain.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.flowLayoutPanel3.SuspendLayout();
     this.flowLayoutPanel4.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet12)).BeginInit();
     this.SuspendLayout();
     //
     // DataTable1BindingSource
     //
     this.DataTable1BindingSource.DataMember = "DataTable1";
     this.DataTable1BindingSource.DataSource = this.DataSet1;
     //
     // DataSet1
     //
     this.DataSet1.DataSetName = "DataSet1";
     this.DataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // TableBindingSource
     //
     this.TableBindingSource.DataMember = "Table";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Window;
     this.panel1.Controls.Add(this.mtbMain);
     this.panel1.Controls.Add(this.materialTabSelector1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 63);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1110, 547);
     this.panel1.TabIndex = 0;
     //
     // mtbMain
     //
     this.mtbMain.Controls.Add(this.tabPage1);
     this.mtbMain.Controls.Add(this.tabPage2);
     this.mtbMain.Controls.Add(this.tabPage3);
     this.mtbMain.Controls.Add(this.tabPage4);
     this.mtbMain.Depth = 0;
     this.mtbMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mtbMain.Location = new System.Drawing.Point(0, 45);
     this.mtbMain.MouseState = MaterialSkin.MouseState.HOVER;
     this.mtbMain.Name = "mtbMain";
     this.mtbMain.SelectedIndex = 0;
     this.mtbMain.Size = new System.Drawing.Size(1110, 502);
     this.mtbMain.TabIndex = 1;
     this.mtbMain.SelectedIndexChanged += new System.EventHandler(this.mtbMain_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.lblnip_komitmen);
     this.tabPage1.Controls.Add(this.lbl_pembuat_komitmen);
     this.tabPage1.Controls.Add(this.mlvSpd);
     this.tabPage1.Controls.Add(this.panel3);
     this.tabPage1.Location = new System.Drawing.Point(4, 31);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1102, 467);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "DATA SPD";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // lbl_pembuat_komitmen
     //
     this.lbl_pembuat_komitmen.AutoSize = true;
     this.lbl_pembuat_komitmen.Location = new System.Drawing.Point(924, 212);
     this.lbl_pembuat_komitmen.Name = "lbl_pembuat_komitmen";
     this.lbl_pembuat_komitmen.Size = new System.Drawing.Size(92, 24);
     this.lbl_pembuat_komitmen.TabIndex = 9;
     this.lbl_pembuat_komitmen.Text = "komitmen";
     //
     // mlvSpd
     //
     this.mlvSpd.BackgroundImageTiled = true;
     this.mlvSpd.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mlvSpd.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader9,
     this.columnHeader10,
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5,
     this.columnHeader6,
     this.columnHeader7});
     this.mlvSpd.Depth = 0;
     this.mlvSpd.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mlvSpd.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
     this.mlvSpd.FullRowSelect = true;
     this.mlvSpd.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.mlvSpd.HideSelection = false;
     this.mlvSpd.Location = new System.Drawing.Point(3, 71);
     this.mlvSpd.MouseLocation = new System.Drawing.Point(-1, -1);
     this.mlvSpd.MouseState = MaterialSkin.MouseState.OUT;
     this.mlvSpd.Name = "mlvSpd";
     this.mlvSpd.OwnerDraw = true;
     this.mlvSpd.Size = new System.Drawing.Size(1096, 393);
     this.mlvSpd.TabIndex = 8;
     this.mlvSpd.UseCompatibleStateImageBehavior = false;
     this.mlvSpd.View = System.Windows.Forms.View.Details;
     this.mlvSpd.DoubleClick += new System.EventHandler(this.mlvSpd_DoubleClick);
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "No";
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Id";
     this.columnHeader10.Width = 0;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Kode";
     this.columnHeader1.Width = 100;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Nama Pegawai";
     this.columnHeader2.Width = 230;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Nip";
     this.columnHeader3.Width = 170;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Tempat Tujuan";
     this.columnHeader4.Width = 210;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Nama Pejabat";
     this.columnHeader5.Width = 230;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Jabatan";
     this.columnHeader6.Width = 200;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Tanggal Berangkat";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.columnHeader7.Width = 160;
     //
     // panel3
     //
     this.panel3.AutoSize = true;
     this.panel3.Controls.Add(this.flowLayoutPanel3);
     this.panel3.Controls.Add(this.flowLayoutPanel4);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(3, 3);
     this.panel3.Margin = new System.Windows.Forms.Padding(0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1096, 68);
     this.panel3.TabIndex = 7;
     //
     // flowLayoutPanel3
     //
     this.flowLayoutPanel3.Controls.Add(this.txtSearchSpd);
     this.flowLayoutPanel3.Controls.Add(this.label2);
     this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Right;
     this.flowLayoutPanel3.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel3.Location = new System.Drawing.Point(518, 0);
     this.flowLayoutPanel3.Name = "flowLayoutPanel3";
     this.flowLayoutPanel3.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.flowLayoutPanel3.Size = new System.Drawing.Size(578, 68);
     this.flowLayoutPanel3.TabIndex = 6;
     //
     // txtSearchSpd
     //
     this.txtSearchSpd.Location = new System.Drawing.Point(328, 23);
     this.txtSearchSpd.Name = "txtSearchSpd";
     this.txtSearchSpd.Size = new System.Drawing.Size(227, 28);
     this.txtSearchSpd.TabIndex = 1;
     this.txtSearchSpd.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSearchSpd_KeyUp);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(46, 26);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(275, 24);
     this.label2.TabIndex = 0;
     this.label2.Text = "Cari Nama/Nip/Tempat Tujuan: ";
     //
     // flowLayoutPanel4
     //
     this.flowLayoutPanel4.AutoSize = true;
     this.flowLayoutPanel4.Controls.Add(this.btnAddSpd);
     this.flowLayoutPanel4.Controls.Add(this.btnRefSpd);
     this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel4.Margin = new System.Windows.Forms.Padding(0, 3, 90, 3);
     this.flowLayoutPanel4.Name = "flowLayoutPanel4";
     this.flowLayoutPanel4.Padding = new System.Windows.Forms.Padding(10);
     this.flowLayoutPanel4.Size = new System.Drawing.Size(1096, 68);
     this.flowLayoutPanel4.TabIndex = 5;
     //
     // btnAddSpd
     //
     this.btnAddSpd.AutoSize = true;
     this.btnAddSpd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnAddSpd.Depth = 0;
     this.btnAddSpd.Icon = global::Maya_KP.Properties.Resources.baseline_add_circle_white_18dp;
     this.btnAddSpd.Location = new System.Drawing.Point(14, 16);
     this.btnAddSpd.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnAddSpd.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnAddSpd.Name = "btnAddSpd";
     this.btnAddSpd.Primary = true;
     this.btnAddSpd.Size = new System.Drawing.Size(121, 36);
     this.btnAddSpd.TabIndex = 4;
     this.btnAddSpd.Text = "TAMBAH";
     this.btnAddSpd.UseVisualStyleBackColor = true;
     this.btnAddSpd.Click += new System.EventHandler(this.btnAddSpd_Click);
     //
     // btnRefSpd
     //
     this.btnRefSpd.AutoSize = true;
     this.btnRefSpd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnRefSpd.Depth = 0;
     this.btnRefSpd.Icon = global::Maya_KP.Properties.Resources.baseline_autorenew_white_18dp;
     this.btnRefSpd.Location = new System.Drawing.Point(143, 16);
     this.btnRefSpd.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnRefSpd.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnRefSpd.Name = "btnRefSpd";
     this.btnRefSpd.Primary = true;
     this.btnRefSpd.Size = new System.Drawing.Size(44, 36);
     this.btnRefSpd.TabIndex = 3;
     this.btnRefSpd.UseVisualStyleBackColor = true;
     this.btnRefSpd.Click += new System.EventHandler(this.btnRefSpd_Click);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.mlvPegawai);
     this.tabPage2.Controls.Add(this.panel2);
     this.tabPage2.Location = new System.Drawing.Point(4, 31);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(1102, 467);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "DATA PEGAWAI";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // mlvPegawai
     //
     this.mlvPegawai.BackgroundImageTiled = true;
     this.mlvPegawai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mlvPegawai.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.pNo,
     this.pId,
     this.pNama,
     this.pNip,
     this.pBidang,
     this.pSeksi,
     this.pJabatan,
     this.pPangkat});
     this.mlvPegawai.Depth = 0;
     this.mlvPegawai.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mlvPegawai.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
     this.mlvPegawai.FullRowSelect = true;
     this.mlvPegawai.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.mlvPegawai.HideSelection = false;
     this.mlvPegawai.Location = new System.Drawing.Point(3, 71);
     this.mlvPegawai.MouseLocation = new System.Drawing.Point(-1, -1);
     this.mlvPegawai.MouseState = MaterialSkin.MouseState.OUT;
     this.mlvPegawai.Name = "mlvPegawai";
     this.mlvPegawai.OwnerDraw = true;
     this.mlvPegawai.Size = new System.Drawing.Size(1096, 393);
     this.mlvPegawai.TabIndex = 7;
     this.mlvPegawai.UseCompatibleStateImageBehavior = false;
     this.mlvPegawai.View = System.Windows.Forms.View.Details;
     this.mlvPegawai.DoubleClick += new System.EventHandler(this.mlvPegawai_DoubleClick);
     //
     // pNo
     //
     this.pNo.Text = "No";
     //
     // pId
     //
     this.pId.Text = "Id";
     this.pId.Width = 0;
     //
     // pNama
     //
     this.pNama.Text = "Nama";
     this.pNama.Width = 270;
     //
     // pNip
     //
     this.pNip.Text = "NIP";
     this.pNip.Width = 210;
     //
     // pBidang
     //
     this.pBidang.Text = "Bidang";
     this.pBidang.Width = 170;
     //
     // pSeksi
     //
     this.pSeksi.Text = "pSeksi";
     this.pSeksi.Width = 260;
     //
     // pJabatan
     //
     this.pJabatan.Text = "Jabatan";
     this.pJabatan.Width = 150;
     //
     // pPangkat
     //
     this.pPangkat.Text = "Pangkat";
     this.pPangkat.Width = 200;
     //
     // panel2
     //
     this.panel2.AutoSize = true;
     this.panel2.Controls.Add(this.flowLayoutPanel2);
     this.panel2.Controls.Add(this.flowLayoutPanel1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(3, 3);
     this.panel2.Margin = new System.Windows.Forms.Padding(0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1096, 68);
     this.panel2.TabIndex = 6;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Controls.Add(this.txtCariPegawai);
     this.flowLayoutPanel2.Controls.Add(this.label1);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(518, 0);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.flowLayoutPanel2.Size = new System.Drawing.Size(578, 68);
     this.flowLayoutPanel2.TabIndex = 6;
     //
     // txtCariPegawai
     //
     this.txtCariPegawai.Location = new System.Drawing.Point(328, 23);
     this.txtCariPegawai.Name = "txtCariPegawai";
     this.txtCariPegawai.Size = new System.Drawing.Size(227, 28);
     this.txtCariPegawai.TabIndex = 1;
     this.txtCariPegawai.TextChanged += new System.EventHandler(this.txtCariPegawai_TextChanged);
     this.txtCariPegawai.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(169, 26);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(152, 24);
     this.label1.TabIndex = 0;
     this.label1.Text = "Cari Nama / Nip: ";
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoSize = true;
     this.flowLayoutPanel1.Controls.Add(this.btnInputPegawai);
     this.flowLayoutPanel1.Controls.Add(this.btnRef);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0, 3, 90, 3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(10);
     this.flowLayoutPanel1.Size = new System.Drawing.Size(1096, 68);
     this.flowLayoutPanel1.TabIndex = 5;
     //
     // btnInputPegawai
     //
     this.btnInputPegawai.AutoSize = true;
     this.btnInputPegawai.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnInputPegawai.Depth = 0;
     this.btnInputPegawai.Icon = global::Maya_KP.Properties.Resources.baseline_add_circle_white_18dp;
     this.btnInputPegawai.Location = new System.Drawing.Point(14, 16);
     this.btnInputPegawai.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnInputPegawai.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnInputPegawai.Name = "btnInputPegawai";
     this.btnInputPegawai.Primary = true;
     this.btnInputPegawai.Size = new System.Drawing.Size(121, 36);
     this.btnInputPegawai.TabIndex = 4;
     this.btnInputPegawai.Text = "TAMBAH";
     this.btnInputPegawai.UseVisualStyleBackColor = true;
     this.btnInputPegawai.Click += new System.EventHandler(this.btnInputPegawai_Click);
     //
     // btnRef
     //
     this.btnRef.AutoSize = true;
     this.btnRef.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnRef.Depth = 0;
     this.btnRef.Icon = global::Maya_KP.Properties.Resources.baseline_autorenew_white_18dp;
     this.btnRef.Location = new System.Drawing.Point(143, 16);
     this.btnRef.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.btnRef.MouseState = MaterialSkin.MouseState.HOVER;
     this.btnRef.Name = "btnRef";
     this.btnRef.Primary = true;
     this.btnRef.Size = new System.Drawing.Size(44, 36);
     this.btnRef.TabIndex = 3;
     this.btnRef.UseVisualStyleBackColor = true;
     this.btnRef.Click += new System.EventHandler(this.btnRef_Click);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.lblnips);
     this.tabPage3.Controls.Add(this.lblkomitmen);
     this.tabPage3.Controls.Add(this.materialLabel1);
     this.tabPage3.Controls.Add(this.tbnomor);
     this.tabPage3.Controls.Add(this.nm3);
     this.tabPage3.Controls.Add(this.tgl3);
     this.tabPage3.Controls.Add(this.ket3);
     this.tabPage3.Controls.Add(this.nm2);
     this.tabPage3.Controls.Add(this.tgl2);
     this.tabPage3.Controls.Add(this.ket2);
     this.tabPage3.Controls.Add(this.ket1);
     this.tabPage3.Controls.Add(this.tgl1);
     this.tabPage3.Controls.Add(this.nm1);
     this.tabPage3.Controls.Add(this.reportViewer1);
     this.tabPage3.Location = new System.Drawing.Point(4, 31);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(1102, 467);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "LAPORAN SPD";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // lblnips
     //
     this.lblnips.AutoSize = true;
     this.lblnips.Location = new System.Drawing.Point(987, 275);
     this.lblnips.Name = "lblnips";
     this.lblnips.Size = new System.Drawing.Size(60, 24);
     this.lblnips.TabIndex = 32;
     this.lblnips.Text = "label4";
     //
     // lblkomitmen
     //
     this.lblkomitmen.AutoSize = true;
     this.lblkomitmen.Location = new System.Drawing.Point(987, 251);
     this.lblkomitmen.Name = "lblkomitmen";
     this.lblkomitmen.Size = new System.Drawing.Size(60, 24);
     this.lblkomitmen.TabIndex = 31;
     this.lblkomitmen.Text = "label3";
     //
     // materialLabel1
     //
     this.materialLabel1.AutoSize = true;
     this.materialLabel1.Depth = 0;
     this.materialLabel1.Font = new System.Drawing.Font("Roboto", 11F);
     this.materialLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.materialLabel1.Location = new System.Drawing.Point(686, 51);
     this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialLabel1.Name = "materialLabel1";
     this.materialLabel1.Size = new System.Drawing.Size(88, 24);
     this.materialLabel1.TabIndex = 30;
     this.materialLabel1.Text = "No. Surat";
     //
     // tbnomor
     //
     this.tbnomor.Enabled = false;
     this.tbnomor.Location = new System.Drawing.Point(780, 48);
     this.tbnomor.Name = "tbnomor";
     this.tbnomor.Size = new System.Drawing.Size(173, 28);
     this.tbnomor.TabIndex = 29;
     //
     // nm3
     //
     this.nm3.AutoSize = true;
     this.nm3.Location = new System.Drawing.Point(686, 213);
     this.nm3.Name = "nm3";
     this.nm3.Size = new System.Drawing.Size(16, 24);
     this.nm3.TabIndex = 28;
     this.nm3.Text = "-";
     //
     // tgl3
     //
     this.tgl3.AutoSize = true;
     this.tgl3.Location = new System.Drawing.Point(893, 213);
     this.tgl3.Name = "tgl3";
     this.tgl3.Size = new System.Drawing.Size(16, 24);
     this.tgl3.TabIndex = 27;
     this.tgl3.Text = "-";
     //
     // ket3
     //
     this.ket3.AutoSize = true;
     this.ket3.Location = new System.Drawing.Point(1013, 213);
     this.ket3.Name = "ket3";
     this.ket3.Size = new System.Drawing.Size(16, 24);
     this.ket3.TabIndex = 26;
     this.ket3.Text = "-";
     //
     // nm2
     //
     this.nm2.AutoSize = true;
     this.nm2.Location = new System.Drawing.Point(686, 179);
     this.nm2.Name = "nm2";
     this.nm2.Size = new System.Drawing.Size(16, 24);
     this.nm2.TabIndex = 25;
     this.nm2.Text = "-";
     //
     // tgl2
     //
     this.tgl2.AutoSize = true;
     this.tgl2.Location = new System.Drawing.Point(893, 179);
     this.tgl2.Name = "tgl2";
     this.tgl2.Size = new System.Drawing.Size(16, 24);
     this.tgl2.TabIndex = 24;
     this.tgl2.Text = "-";
     //
     // ket2
     //
     this.ket2.AutoSize = true;
     this.ket2.Location = new System.Drawing.Point(1013, 179);
     this.ket2.Name = "ket2";
     this.ket2.Size = new System.Drawing.Size(16, 24);
     this.ket2.TabIndex = 23;
     this.ket2.Text = "-";
     //
     // ket1
     //
     this.ket1.AutoSize = true;
     this.ket1.Location = new System.Drawing.Point(1013, 138);
     this.ket1.Name = "ket1";
     this.ket1.Size = new System.Drawing.Size(16, 24);
     this.ket1.TabIndex = 22;
     this.ket1.Text = "-";
     //
     // tgl1
     //
     this.tgl1.AutoSize = true;
     this.tgl1.Location = new System.Drawing.Point(893, 138);
     this.tgl1.Name = "tgl1";
     this.tgl1.Size = new System.Drawing.Size(16, 24);
     this.tgl1.TabIndex = 21;
     this.tgl1.Text = "-";
     //
     // nm1
     //
     this.nm1.AutoSize = true;
     this.nm1.Location = new System.Drawing.Point(686, 138);
     this.nm1.Name = "nm1";
     this.nm1.Size = new System.Drawing.Size(16, 24);
     this.nm1.TabIndex = 20;
     this.nm1.Text = "-";
     //
     // reportViewer1
     //
     this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
     reportDataSource4.Name = "DataSet1";
     reportDataSource4.Value = this.DataTable1BindingSource;
     this.reportViewer1.LocalReport.DataSources.Add(reportDataSource4);
     this.reportViewer1.LocalReport.ReportEmbeddedResource = "Maya_KP.Report2.rdlc";
     this.reportViewer1.Location = new System.Drawing.Point(3, 3);
     this.reportViewer1.Name = "reportViewer1";
     this.reportViewer1.ServerReport.BearerToken = null;
     this.reportViewer1.Size = new System.Drawing.Size(1096, 461);
     this.reportViewer1.TabIndex = 17;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.materialRaisedButton1);
     this.tabPage4.Controls.Add(this.Pengeluaran_);
     this.tabPage4.Location = new System.Drawing.Point(4, 31);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(1102, 467);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "PENGELUARAN";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // materialRaisedButton1
     //
     this.materialRaisedButton1.AutoSize = true;
     this.materialRaisedButton1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.materialRaisedButton1.Depth = 0;
     this.materialRaisedButton1.Icon = global::Maya_KP.Properties.Resources.print;
     this.materialRaisedButton1.Location = new System.Drawing.Point(7, 13);
     this.materialRaisedButton1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
     this.materialRaisedButton1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialRaisedButton1.Name = "materialRaisedButton1";
     this.materialRaisedButton1.Primary = true;
     this.materialRaisedButton1.Size = new System.Drawing.Size(300, 36);
     this.materialRaisedButton1.TabIndex = 5;
     this.materialRaisedButton1.Text = "Cetak Rincian Pengeluaran";
     this.materialRaisedButton1.UseVisualStyleBackColor = true;
     this.materialRaisedButton1.Click += new System.EventHandler(this.MaterialRaisedButton1_Click_2);
     //
     // Pengeluaran_
     //
     this.Pengeluaran_.BackgroundImageTiled = true;
     this.Pengeluaran_.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Pengeluaran_.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader8,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader15,
     this.columnHeader16,
     this.columnHeader17,
     this.columnHeader18,
     this.columnHeader19,
     this.columnHeader20});
     this.Pengeluaran_.Depth = 0;
     this.Pengeluaran_.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
     this.Pengeluaran_.FullRowSelect = true;
     this.Pengeluaran_.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.Pengeluaran_.HideSelection = false;
     this.Pengeluaran_.Location = new System.Drawing.Point(7, 58);
     this.Pengeluaran_.MouseLocation = new System.Drawing.Point(-1, -1);
     this.Pengeluaran_.MouseState = MaterialSkin.MouseState.OUT;
     this.Pengeluaran_.Name = "Pengeluaran_";
     this.Pengeluaran_.OwnerDraw = true;
     this.Pengeluaran_.Size = new System.Drawing.Size(1524, 697);
     this.Pengeluaran_.TabIndex = 8;
     this.Pengeluaran_.UseCompatibleStateImageBehavior = false;
     this.Pengeluaran_.View = System.Windows.Forms.View.Details;
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "No";
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Nama";
     this.columnHeader12.Width = 270;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Uang Harian";
     this.columnHeader13.Width = 210;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "Penginapan";
     this.columnHeader14.Width = 170;
     //
     // columnHeader15
     //
     this.columnHeader15.Text = "Transport PP";
     this.columnHeader15.Width = 260;
     //
     // columnHeader16
     //
     this.columnHeader16.Text = "Transport Lokal";
     this.columnHeader16.Width = 150;
     //
     // columnHeader17
     //
     this.columnHeader17.Text = "Damri";
     this.columnHeader17.Width = 200;
     //
     // columnHeader18
     //
     this.columnHeader18.Text = "Lain Lain";
     this.columnHeader18.Width = 200;
     //
     // columnHeader19
     //
     this.columnHeader19.Text = "Tgl_Kwitansi";
     this.columnHeader19.Width = 200;
     //
     // columnHeader20
     //
     this.columnHeader20.Text = "Tgl_Lunas";
     this.columnHeader20.Width = 200;
     //
     // materialTabSelector1
     //
     this.materialTabSelector1.BaseTabControl = this.mtbMain;
     this.materialTabSelector1.Depth = 0;
     this.materialTabSelector1.Dock = System.Windows.Forms.DockStyle.Top;
     this.materialTabSelector1.Location = new System.Drawing.Point(0, 0);
     this.materialTabSelector1.MouseState = MaterialSkin.MouseState.HOVER;
     this.materialTabSelector1.Name = "materialTabSelector1";
     this.materialTabSelector1.Size = new System.Drawing.Size(1110, 45);
     this.materialTabSelector1.TabIndex = 0;
     this.materialTabSelector1.Text = "materialTabSelector1";
     //
     // DataTable1TableAdapter
     //
     this.DataTable1TableAdapter.ClearBeforeFill = true;
     //
     // dataSet11
     //
     this.dataSet11.DataSetName = "DataSet1";
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // dataSet12
     //
     this.dataSet12.DataSetName = "DataSet1";
     this.dataSet12.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // lblnip_komitmen
     //
     this.lblnip_komitmen.AutoSize = true;
     this.lblnip_komitmen.Location = new System.Drawing.Point(924, 236);
     this.lblnip_komitmen.Name = "lblnip_komitmen";
     this.lblnip_komitmen.Size = new System.Drawing.Size(36, 24);
     this.lblnip_komitmen.TabIndex = 10;
     this.lblnip_komitmen.Text = "nip";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(1110, 610);
     this.Controls.Add(this.panel1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "Form1";
     this.Padding = new System.Windows.Forms.Padding(0, 63, 0, 0);
     this.Text = "Surat Perjalanan Dinas";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DataTable1BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TableBindingSource)).EndInit();
     this.panel1.ResumeLayout(false);
     this.mtbMain.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.flowLayoutPanel3.ResumeLayout(false);
     this.flowLayoutPanel3.PerformLayout();
     this.flowLayoutPanel4.ResumeLayout(false);
     this.flowLayoutPanel4.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.flowLayoutPanel2.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet12)).EndInit();
     this.ResumeLayout(false);
 }