プロジェクト

全般

プロフィール

リビジョン 290

堀内約7年前に追加

資材管理:破棄数取得バグ修正

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs
14 14
        /// <summary>
15 15
        /// 本体バージョン
16 16
        /// </summary>
17
        public static int s_SystemVersion = 100;
17
        public static int s_SystemVersion = 101;
18 18

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsChangeLedgerData.cs
945 945
        /// <param name="CurrentValue">現在入力値</param>
946 946
        /// <param name="TargetDate">現在入力年月</param>
947 947
        /// <returns></returns>
948
        public static bool OverExecAmount(int ConstrCode, int LineNo, int CurrentValue, DateTime TargetDate, int CompanyCode = 0)
948
        public static bool OverExecAmount(int ConstrCode, int LineNo, int CurrentValue, int TargetDate, int CompanyCode = 0)
949 949
        {
950 950
            IOConstructionLedgerDetail DetailDB = new IOConstructionLedgerDetail();
951 951
            try
......
968 968
                strSQL.Append(" ON B.ConstructionCode = A.ConstructionCode");
969 969
                strSQL.Append(" AND B.GroupCount = A.GroupCount");
970 970
                strSQL.Append(" AND B.LineCount = A.LineCount");
971
                strSQL.AppendFormat(" AND DATE_FORMAT(B.TargetMonth ,'%Y%m') <> '{0}'", TargetDate.ToString("yyyyMM"));
971
                strSQL.AppendFormat(" AND DATE_FORMAT(B.TargetMonth ,'%Y%m') <> '{0}'", TargetDate);
972 972

  
973 973
                strSQL.AppendFormat(" WHERE A.ConstructionCode = {0}", ConstrCode);
974 974
                strSQL.AppendFormat(" AND A.GroupCount = {0}", GroupNo);
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOConstructionMaterialInfo.cs
230 230
                wrk.ProcessDate = DateTime.Parse(objwrk[(int)NameColumn.ProcessDate].ToString());
231 231
                wrk.RentCount = int.Parse(objwrk[(int)NameColumn.RentCount].ToString());
232 232
                wrk.RepayCount = int.Parse(objwrk[(int)NameColumn.RepayCount].ToString());
233
                wrk.JunkCount = int.Parse(objwrk[(int)NameColumn.JunkCount].ToString());
233 234
                wrk.CompleteFlg = int.Parse(objwrk[(int)NameColumn.CompleteFlg].ToString());
234 235

  
235 236
                wrk.EntryDate = DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPaymentApprovalInfo.cs
413 413
        #endregion
414 414

  
415 415
        #region 検索キー作成
416
        public string CreatePrimarykeyString(int CompanyCode, int TargetDate, int SeqNo, int LineCount, int ApprovalNo)
416
        public string CreatePrimarykeyString(int CompanyCode, int TargetDate = -1, int SeqNo = -1, int LineCount = -1, int ApprovalNo = -1)
417 417
        {
418 418
            StringBuilder strWork = new StringBuilder();
419 419
            try
420 420
            {
421
                strWork.AppendFormat(" Where CompanyCode = {0} and TargetDate = {1} and SeqNo = {2} and LineCount = {3} and ApprovalNo = {4}", CompanyCode, TargetDate, SeqNo, LineCount,ApprovalNo);
422

  
421
                strWork.AppendFormat(" Where CompanyCode = {0}", CompanyCode);
422
                if (TargetDate > -1) strWork.AppendFormat(" and TargetDate = {0}", TargetDate);
423
                if (SeqNo > -1) strWork.AppendFormat(" and SeqNo = {0}", SeqNo);
424
                if (LineCount > -1) strWork.AppendFormat(" and LineCount = {0}", LineCount);
425
                if (ApprovalNo > -1) strWork.AppendFormat(" and ApprovalNo = {0}", ApprovalNo);
423 426
            }
424 427
            catch (Exception ex)
425 428
            {
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstractionList/FrmConstructionList.designer.cs
183 183
            this.grpExample1.Size = new System.Drawing.Size(400, 38);
184 184
            this.grpExample1.TabIndex = 33;
185 185
            this.grpExample1.TabStop = false;
186
            this.grpExample1.Text = "施工状態変更より1カ月経過";
186
            this.grpExample1.Text = "施工状態変更より1カ月経過";
187 187
            this.grpExample1.Visible = false;
188 188
            // 
189 189
            // lblEstimateType03
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReturnEntry/FrmMateRetEntAux.cs
159 159

  
160 160
                foreach (DataGridViewRow r in dgvMaster.Rows)
161 161
                {
162
                    // 完了は処理しない
163
                    //if (CommonMotions.cnvInt(r.Cells[(int)DispColumn.ComplateFlg].Value)
164
                    //    == (int)ConstructionMaterialInfo.CompleteFlgDef.Completed)
165
                    //    continue;
162 166

  
163 167
                    int intMaterialItemCode = CommonMotions.cnvInt(r.Cells[(int)DispColumn.MaterialItemCode].Value);
164 168
                    int intRentCount = CommonMotions.cnvInt(r.Cells[(int)DispColumn.RentCount].Value);
......
588 592
                    obiSumRec[(int)DispColumn.MaterialCount] = 0;
589 593
                    obiSumRec[(int)DispColumn.MaterialDumpCount] = 0;
590 594

  
591
                    if (CommonMotions.cnvInt(work[(int)DataColumn.RecKind]) == (int)MaterialRecordInfo.RecKindDef.Return)
595
                    if (CommonMotions.cnvString(work[(int)DataColumn.CommentText]).Length > 0)
592 596
                    {
593
                        if (CommonMotions.cnvString(work[(int)DataColumn.CommentText]).Length > 0)
594
                        {
595
                            obiSumRec[(int)DispColumn.CommentText] = work[(int)DataColumn.CommentText];
596
                        }
597
                        obiSumRec[(int)DispColumn.CommentText] = work[(int)DataColumn.CommentText];
597 598
                    }
599
                    
598 600
                    obiSumRec[(int)DispColumn.RentProcessDate] = work[(int)DataColumn.RentProcessDate];
599 601
                    obiSumRec[(int)DispColumn.ComplateFlg] = work[(int)DataColumn.CompleteFlg];
600 602
                }
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReturnEntry/FrmMaterialReturnEntry.designer.cs
31 31
        private void InitializeComponent()
32 32
        {
33 33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
35 35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
36 36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
37 37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
......
40 40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
41 41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
42 42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
43 44
            this.label1 = new System.Windows.Forms.Label();
44 45
            this.btnEnd = new System.Windows.Forms.Button();
45 46
            this.btnDataEntry = new System.Windows.Forms.Button();
......
319 320
            this.dgvMaster.Location = new System.Drawing.Point(10, 6);
320 321
            this.dgvMaster.MultiSelect = false;
321 322
            this.dgvMaster.Name = "dgvMaster";
322
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
323
            dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Control;
324
            dataGridViewCellStyle10.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
325
            dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.WindowText;
326
            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
327
            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
328
            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
329
            this.dgvMaster.RowHeadersDefaultCellStyle = dataGridViewCellStyle10;
323
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
324
            dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
325
            dataGridViewCellStyle11.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
326
            dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
327
            dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
328
            dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
329
            dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
330
            this.dgvMaster.RowHeadersDefaultCellStyle = dataGridViewCellStyle11;
330 331
            this.dgvMaster.RowHeadersVisible = false;
331 332
            this.dgvMaster.RowHeadersWidth = 20;
332 333
            this.dgvMaster.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
......
356 357
            // Column2
357 358
            // 
358 359
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
360
            dataGridViewCellStyle3.BackColor = System.Drawing.Color.WhiteSmoke;
359 361
            dataGridViewCellStyle3.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
360 362
            this.Column2.DefaultCellStyle = dataGridViewCellStyle3;
361 363
            this.Column2.HeaderText = "種類";
......
378 380
            // 
379 381
            // Column3
380 382
            // 
383
            dataGridViewCellStyle4.BackColor = System.Drawing.Color.WhiteSmoke;
384
            dataGridViewCellStyle4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
385
            this.Column3.DefaultCellStyle = dataGridViewCellStyle4;
381 386
            this.Column3.HeaderText = "品目";
382 387
            this.Column3.Name = "Column3";
383 388
            this.Column3.ReadOnly = true;
......
393 398
            // 
394 399
            // Column14
395 400
            // 
396
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
397
            dataGridViewCellStyle4.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
398
            this.Column14.DefaultCellStyle = dataGridViewCellStyle4;
401
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
402
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
403
            this.Column14.DefaultCellStyle = dataGridViewCellStyle5;
399 404
            this.Column14.HeaderText = "返却予定日";
400 405
            this.Column14.Name = "Column14";
401 406
            this.Column14.ReadOnly = true;
......
404 409
            // 
405 410
            // Column4
406 411
            // 
407
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
408
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
409
            dataGridViewCellStyle5.Format = "#,0";
410
            this.Column4.DefaultCellStyle = dataGridViewCellStyle5;
412
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
413
            dataGridViewCellStyle6.BackColor = System.Drawing.Color.WhiteSmoke;
414
            dataGridViewCellStyle6.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
415
            dataGridViewCellStyle6.Format = "#,0";
416
            this.Column4.DefaultCellStyle = dataGridViewCellStyle6;
411 417
            this.Column4.HeaderText = "貸出数";
412 418
            this.Column4.Name = "Column4";
413 419
            this.Column4.ReadOnly = true;
......
417 423
            // 
418 424
            // Column5
419 425
            // 
420
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
421
            dataGridViewCellStyle6.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
422
            dataGridViewCellStyle6.Format = "#,0";
423
            this.Column5.DefaultCellStyle = dataGridViewCellStyle6;
426
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
427
            dataGridViewCellStyle7.BackColor = System.Drawing.Color.WhiteSmoke;
428
            dataGridViewCellStyle7.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
429
            dataGridViewCellStyle7.Format = "#,0";
430
            this.Column5.DefaultCellStyle = dataGridViewCellStyle7;
424 431
            this.Column5.HeaderText = "返却済数";
425 432
            this.Column5.Name = "Column5";
426 433
            this.Column5.ReadOnly = true;
......
430 437
            // 
431 438
            // Column17
432 439
            // 
433
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
434
            dataGridViewCellStyle7.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
435
            this.Column17.DefaultCellStyle = dataGridViewCellStyle7;
440
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
441
            dataGridViewCellStyle8.BackColor = System.Drawing.Color.WhiteSmoke;
442
            dataGridViewCellStyle8.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
443
            this.Column17.DefaultCellStyle = dataGridViewCellStyle8;
436 444
            this.Column17.HeaderText = "破棄済数";
437 445
            this.Column17.Name = "Column17";
438 446
            this.Column17.ReadOnly = true;
......
442 450
            // 
443 451
            // Column6
444 452
            // 
445
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
446
            dataGridViewCellStyle8.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
447
            this.Column6.DefaultCellStyle = dataGridViewCellStyle8;
453
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
454
            dataGridViewCellStyle9.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
455
            this.Column6.DefaultCellStyle = dataGridViewCellStyle9;
448 456
            this.Column6.HeaderText = "返却数";
449 457
            this.Column6.Name = "Column6";
450 458
            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
453 461
            // 
454 462
            // Column13
455 463
            // 
456
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
457
            dataGridViewCellStyle9.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
458
            this.Column13.DefaultCellStyle = dataGridViewCellStyle9;
464
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
465
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
466
            this.Column13.DefaultCellStyle = dataGridViewCellStyle10;
459 467
            this.Column13.HeaderText = "破棄数";
460 468
            this.Column13.Name = "Column13";
461 469
            this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/SalesConfirm/FrmSalesConfirm.cs
96 96
        /// 担当者選択
97 97
        /// </summary>
98 98
        private long s_SelectedPerson = 1;
99
        /// <summary>
100
        /// 発注者区分選択
101
        /// </summary>
102
        private long s_SelectedDivision = 1 << 4;
103
        /// <summary>
104
        /// 発注者選択
105
        /// </summary>
106
        private long s_SelectedOrderer = 1 << 5;
107 99

  
108 100
        #endregion
109 101

  
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenu.Designer.cs
5044 5044
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5045 5045
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5046 5046
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5047
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1143, 1224);
5047
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1160, 1224);
5048 5048
            this.tblLayoutConstruction.TabIndex = 15;
5049 5049
            // 
5050 5050
            // lblConstrLine01
......
5054 5054
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine01, 10);
5055 5055
            this.lblConstrLine01.Location = new System.Drawing.Point(3, 267);
5056 5056
            this.lblConstrLine01.Name = "lblConstrLine01";
5057
            this.lblConstrLine01.Size = new System.Drawing.Size(1137, 6);
5057
            this.lblConstrLine01.Size = new System.Drawing.Size(1154, 6);
5058 5058
            this.lblConstrLine01.TabIndex = 15;
5059 5059
            // 
5060 5060
            // btnConstruction0000
5061 5061
            // 
5062 5062
            this.btnConstruction0000.Dock = System.Windows.Forms.DockStyle.Fill;
5063
            this.btnConstruction0000.Location = new System.Drawing.Point(106, 39);
5063
            this.btnConstruction0000.Location = new System.Drawing.Point(108, 39);
5064 5064
            this.btnConstruction0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5065 5065
            this.btnConstruction0000.Name = "btnConstruction0000";
5066
            this.btnConstruction0000.Size = new System.Drawing.Size(186, 30);
5066
            this.btnConstruction0000.Size = new System.Drawing.Size(189, 30);
5067 5067
            this.btnConstruction0000.TabIndex = 15;
5068 5068
            this.btnConstruction0000.Text = "各工事詳細台帳閲覧";
5069 5069
            this.btnConstruction0000.UseVisualStyleBackColor = true;
......
5076 5076
            | System.Windows.Forms.AnchorStyles.Right)));
5077 5077
            this.lblConstrTitle01.AutoSize = true;
5078 5078
            this.lblConstrTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5079
            this.lblConstrTitle01.Location = new System.Drawing.Point(105, 0);
5079
            this.lblConstrTitle01.Location = new System.Drawing.Point(107, 0);
5080 5080
            this.lblConstrTitle01.Name = "lblConstrTitle01";
5081
            this.lblConstrTitle01.Size = new System.Drawing.Size(188, 36);
5081
            this.lblConstrTitle01.Size = new System.Drawing.Size(191, 36);
5082 5082
            this.lblConstrTitle01.TabIndex = 15;
5083 5083
            this.lblConstrTitle01.Text = "日次(施工)管理";
5084 5084
            this.lblConstrTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5092 5092
            this.lblConstr00.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5093 5093
            this.lblConstr00.Location = new System.Drawing.Point(3, 36);
5094 5094
            this.lblConstr00.Name = "lblConstr00";
5095
            this.lblConstr00.Size = new System.Drawing.Size(96, 36);
5095
            this.lblConstr00.Size = new System.Drawing.Size(98, 36);
5096 5096
            this.lblConstr00.TabIndex = 15;
5097 5097
            this.lblConstr00.Text = "毎日";
5098 5098
            this.lblConstr00.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5100 5100
            // btnConstruction0001
5101 5101
            // 
5102 5102
            this.btnConstruction0001.Dock = System.Windows.Forms.DockStyle.Fill;
5103
            this.btnConstruction0001.Location = new System.Drawing.Point(317, 39);
5103
            this.btnConstruction0001.Location = new System.Drawing.Point(322, 39);
5104 5104
            this.btnConstruction0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5105 5105
            this.btnConstruction0001.Name = "btnConstruction0001";
5106
            this.btnConstruction0001.Size = new System.Drawing.Size(186, 30);
5106
            this.btnConstruction0001.Size = new System.Drawing.Size(189, 30);
5107 5107
            this.btnConstruction0001.TabIndex = 15;
5108 5108
            this.btnConstruction0001.Text = "各工事日報";
5109 5109
            this.btnConstruction0001.UseVisualStyleBackColor = true;
......
5112 5112
            // btnConstruction0002
5113 5113
            // 
5114 5114
            this.btnConstruction0002.Dock = System.Windows.Forms.DockStyle.Fill;
5115
            this.btnConstruction0002.Location = new System.Drawing.Point(528, 39);
5115
            this.btnConstruction0002.Location = new System.Drawing.Point(536, 39);
5116 5116
            this.btnConstruction0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5117 5117
            this.btnConstruction0002.Name = "btnConstruction0002";
5118
            this.btnConstruction0002.Size = new System.Drawing.Size(186, 30);
5118
            this.btnConstruction0002.Size = new System.Drawing.Size(189, 30);
5119 5119
            this.btnConstruction0002.TabIndex = 15;
5120 5120
            this.btnConstruction0002.Text = "各工事打合わせ議事録";
5121 5121
            this.btnConstruction0002.UseVisualStyleBackColor = true;
......
5124 5124
            // btnConstruction0003
5125 5125
            // 
5126 5126
            this.btnConstruction0003.Dock = System.Windows.Forms.DockStyle.Fill;
5127
            this.btnConstruction0003.Location = new System.Drawing.Point(739, 39);
5127
            this.btnConstruction0003.Location = new System.Drawing.Point(750, 39);
5128 5128
            this.btnConstruction0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5129 5129
            this.btnConstruction0003.Name = "btnConstruction0003";
5130
            this.btnConstruction0003.Size = new System.Drawing.Size(186, 30);
5130
            this.btnConstruction0003.Size = new System.Drawing.Size(189, 30);
5131 5131
            this.btnConstruction0003.TabIndex = 15;
5132 5132
            this.btnConstruction0003.Text = "各工事交通費・購入品入力";
5133 5133
            this.btnConstruction0003.UseVisualStyleBackColor = true;
......
5136 5136
            // btnConstruction0004
5137 5137
            // 
5138 5138
            this.btnConstruction0004.Dock = System.Windows.Forms.DockStyle.Fill;
5139
            this.btnConstruction0004.Location = new System.Drawing.Point(950, 39);
5139
            this.btnConstruction0004.Location = new System.Drawing.Point(964, 39);
5140 5140
            this.btnConstruction0004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5141 5141
            this.btnConstruction0004.Name = "btnConstruction0004";
5142
            this.btnConstruction0004.Size = new System.Drawing.Size(189, 30);
5142
            this.btnConstruction0004.Size = new System.Drawing.Size(192, 30);
5143 5143
            this.btnConstruction0004.TabIndex = 15;
5144 5144
            this.btnConstruction0004.Text = "出勤管理";
5145 5145
            this.btnConstruction0004.UseVisualStyleBackColor = true;
......
5148 5148
            // btnConstruction0100
5149 5149
            // 
5150 5150
            this.btnConstruction0100.Dock = System.Windows.Forms.DockStyle.Fill;
5151
            this.btnConstruction0100.Location = new System.Drawing.Point(106, 111);
5151
            this.btnConstruction0100.Location = new System.Drawing.Point(108, 111);
5152 5152
            this.btnConstruction0100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5153 5153
            this.btnConstruction0100.Name = "btnConstruction0100";
5154
            this.btnConstruction0100.Size = new System.Drawing.Size(186, 30);
5154
            this.btnConstruction0100.Size = new System.Drawing.Size(189, 30);
5155 5155
            this.btnConstruction0100.TabIndex = 15;
5156 5156
            this.btnConstruction0100.Text = "行動予定入力";
5157 5157
            this.btnConstruction0100.UseVisualStyleBackColor = true;
......
5160 5160
            // btnConstruction0101
5161 5161
            // 
5162 5162
            this.btnConstruction0101.Dock = System.Windows.Forms.DockStyle.Fill;
5163
            this.btnConstruction0101.Location = new System.Drawing.Point(317, 111);
5163
            this.btnConstruction0101.Location = new System.Drawing.Point(322, 111);
5164 5164
            this.btnConstruction0101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5165 5165
            this.btnConstruction0101.Name = "btnConstruction0101";
5166
            this.btnConstruction0101.Size = new System.Drawing.Size(186, 30);
5166
            this.btnConstruction0101.Size = new System.Drawing.Size(189, 30);
5167 5167
            this.btnConstruction0101.TabIndex = 15;
5168 5168
            this.btnConstruction0101.Text = "車両予約";
5169 5169
            this.btnConstruction0101.UseVisualStyleBackColor = true;
......
5178 5178
            this.lblConstr01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5179 5179
            this.lblConstr01.Location = new System.Drawing.Point(3, 108);
5180 5180
            this.lblConstr01.Name = "lblConstr01";
5181
            this.lblConstr01.Size = new System.Drawing.Size(96, 36);
5181
            this.lblConstr01.Size = new System.Drawing.Size(98, 36);
5182 5182
            this.lblConstr01.TabIndex = 15;
5183 5183
            this.lblConstr01.Text = "毎日";
5184 5184
            this.lblConstr01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5186 5186
            // btnConstruction0102
5187 5187
            // 
5188 5188
            this.btnConstruction0102.Dock = System.Windows.Forms.DockStyle.Fill;
5189
            this.btnConstruction0102.Location = new System.Drawing.Point(528, 111);
5189
            this.btnConstruction0102.Location = new System.Drawing.Point(536, 111);
5190 5190
            this.btnConstruction0102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5191 5191
            this.btnConstruction0102.Name = "btnConstruction0102";
5192
            this.btnConstruction0102.Size = new System.Drawing.Size(186, 30);
5192
            this.btnConstruction0102.Size = new System.Drawing.Size(189, 30);
5193 5193
            this.btnConstruction0102.TabIndex = 15;
5194 5194
            this.btnConstruction0102.UseVisualStyleBackColor = true;
5195 5195
            this.btnConstruction0102.Click += new System.EventHandler(this.btnConstruction_Click);
......
5197 5197
            // btnConstruction0103
5198 5198
            // 
5199 5199
            this.btnConstruction0103.Dock = System.Windows.Forms.DockStyle.Fill;
5200
            this.btnConstruction0103.Location = new System.Drawing.Point(739, 111);
5200
            this.btnConstruction0103.Location = new System.Drawing.Point(750, 111);
5201 5201
            this.btnConstruction0103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5202 5202
            this.btnConstruction0103.Name = "btnConstruction0103";
5203
            this.btnConstruction0103.Size = new System.Drawing.Size(186, 30);
5203
            this.btnConstruction0103.Size = new System.Drawing.Size(189, 30);
5204 5204
            this.btnConstruction0103.TabIndex = 15;
5205 5205
            this.btnConstruction0103.UseVisualStyleBackColor = true;
5206 5206
            this.btnConstruction0103.Click += new System.EventHandler(this.btnConstruction_Click);
......
5208 5208
            // btnConstruction0104
5209 5209
            // 
5210 5210
            this.btnConstruction0104.Dock = System.Windows.Forms.DockStyle.Fill;
5211
            this.btnConstruction0104.Location = new System.Drawing.Point(950, 111);
5211
            this.btnConstruction0104.Location = new System.Drawing.Point(964, 111);
5212 5212
            this.btnConstruction0104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5213 5213
            this.btnConstruction0104.Name = "btnConstruction0104";
5214
            this.btnConstruction0104.Size = new System.Drawing.Size(189, 30);
5214
            this.btnConstruction0104.Size = new System.Drawing.Size(192, 30);
5215 5215
            this.btnConstruction0104.TabIndex = 15;
5216 5216
            this.btnConstruction0104.UseVisualStyleBackColor = true;
5217 5217
            this.btnConstruction0104.Click += new System.EventHandler(this.btnConstruction_Click);
......
5225 5225
            this.lblConstr02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5226 5226
            this.lblConstr02.Location = new System.Drawing.Point(3, 180);
5227 5227
            this.lblConstr02.Name = "lblConstr02";
5228
            this.lblConstr02.Size = new System.Drawing.Size(96, 36);
5228
            this.lblConstr02.Size = new System.Drawing.Size(98, 36);
5229 5229
            this.lblConstr02.TabIndex = 15;
5230 5230
            this.lblConstr02.Text = "毎回";
5231 5231
            this.lblConstr02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5233 5233
            // btnConstruction0200
5234 5234
            // 
5235 5235
            this.btnConstruction0200.Dock = System.Windows.Forms.DockStyle.Fill;
5236
            this.btnConstruction0200.Location = new System.Drawing.Point(106, 183);
5236
            this.btnConstruction0200.Location = new System.Drawing.Point(108, 183);
5237 5237
            this.btnConstruction0200.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5238 5238
            this.btnConstruction0200.Name = "btnConstruction0200";
5239
            this.btnConstruction0200.Size = new System.Drawing.Size(186, 30);
5239
            this.btnConstruction0200.Size = new System.Drawing.Size(189, 30);
5240 5240
            this.btnConstruction0200.TabIndex = 15;
5241 5241
            this.btnConstruction0200.Text = "資材一覧";
5242 5242
            this.btnConstruction0200.UseVisualStyleBackColor = true;
......
5245 5245
            // btnConstruction0201
5246 5246
            // 
5247 5247
            this.btnConstruction0201.Dock = System.Windows.Forms.DockStyle.Fill;
5248
            this.btnConstruction0201.Location = new System.Drawing.Point(317, 183);
5248
            this.btnConstruction0201.Location = new System.Drawing.Point(322, 183);
5249 5249
            this.btnConstruction0201.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5250 5250
            this.btnConstruction0201.Name = "btnConstruction0201";
5251
            this.btnConstruction0201.Size = new System.Drawing.Size(186, 30);
5251
            this.btnConstruction0201.Size = new System.Drawing.Size(189, 30);
5252 5252
            this.btnConstruction0201.TabIndex = 15;
5253 5253
            this.btnConstruction0201.Text = "資材貸出";
5254 5254
            this.btnConstruction0201.UseVisualStyleBackColor = true;
......
5257 5257
            // btnConstruction0202
5258 5258
            // 
5259 5259
            this.btnConstruction0202.Dock = System.Windows.Forms.DockStyle.Fill;
5260
            this.btnConstruction0202.Location = new System.Drawing.Point(528, 183);
5260
            this.btnConstruction0202.Location = new System.Drawing.Point(536, 183);
5261 5261
            this.btnConstruction0202.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5262 5262
            this.btnConstruction0202.Name = "btnConstruction0202";
5263
            this.btnConstruction0202.Size = new System.Drawing.Size(186, 30);
5263
            this.btnConstruction0202.Size = new System.Drawing.Size(189, 30);
5264 5264
            this.btnConstruction0202.TabIndex = 15;
5265 5265
            this.btnConstruction0202.Text = "資材返却";
5266 5266
            this.btnConstruction0202.UseVisualStyleBackColor = true;
......
5269 5269
            // btnConstruction0203
5270 5270
            // 
5271 5271
            this.btnConstruction0203.Dock = System.Windows.Forms.DockStyle.Fill;
5272
            this.btnConstruction0203.Location = new System.Drawing.Point(739, 183);
5272
            this.btnConstruction0203.Location = new System.Drawing.Point(750, 183);
5273 5273
            this.btnConstruction0203.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5274 5274
            this.btnConstruction0203.Name = "btnConstruction0203";
5275
            this.btnConstruction0203.Size = new System.Drawing.Size(186, 30);
5275
            this.btnConstruction0203.Size = new System.Drawing.Size(189, 30);
5276 5276
            this.btnConstruction0203.TabIndex = 15;
5277 5277
            this.btnConstruction0203.UseVisualStyleBackColor = true;
5278 5278
            this.btnConstruction0203.Click += new System.EventHandler(this.btnConstruction_Click);
......
5280 5280
            // btnConstruction0204
5281 5281
            // 
5282 5282
            this.btnConstruction0204.Dock = System.Windows.Forms.DockStyle.Fill;
5283
            this.btnConstruction0204.Location = new System.Drawing.Point(950, 183);
5283
            this.btnConstruction0204.Location = new System.Drawing.Point(964, 183);
5284 5284
            this.btnConstruction0204.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5285 5285
            this.btnConstruction0204.Name = "btnConstruction0204";
5286
            this.btnConstruction0204.Size = new System.Drawing.Size(189, 30);
5286
            this.btnConstruction0204.Size = new System.Drawing.Size(192, 30);
5287 5287
            this.btnConstruction0204.TabIndex = 15;
5288 5288
            this.btnConstruction0204.UseVisualStyleBackColor = true;
5289 5289
            this.btnConstruction0204.Click += new System.EventHandler(this.btnConstruction_Click);
......
5297 5297
            this.lblConstr03.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5298 5298
            this.lblConstr03.Location = new System.Drawing.Point(3, 324);
5299 5299
            this.lblConstr03.Name = "lblConstr03";
5300
            this.lblConstr03.Size = new System.Drawing.Size(96, 36);
5300
            this.lblConstr03.Size = new System.Drawing.Size(98, 36);
5301 5301
            this.lblConstr03.TabIndex = 15;
5302 5302
            this.lblConstr03.Text = "着工前";
5303 5303
            this.lblConstr03.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5309 5309
            | System.Windows.Forms.AnchorStyles.Right)));
5310 5310
            this.lblConstrTitle02.AutoSize = true;
5311 5311
            this.lblConstrTitle02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5312
            this.lblConstrTitle02.Location = new System.Drawing.Point(105, 288);
5312
            this.lblConstrTitle02.Location = new System.Drawing.Point(107, 288);
5313 5313
            this.lblConstrTitle02.Name = "lblConstrTitle02";
5314
            this.lblConstrTitle02.Size = new System.Drawing.Size(188, 36);
5314
            this.lblConstrTitle02.Size = new System.Drawing.Size(191, 36);
5315 5315
            this.lblConstrTitle02.TabIndex = 15;
5316 5316
            this.lblConstrTitle02.Text = "書類管理";
5317 5317
            this.lblConstrTitle02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5319 5319
            // btnConstruction0300
5320 5320
            // 
5321 5321
            this.btnConstruction0300.Dock = System.Windows.Forms.DockStyle.Fill;
5322
            this.btnConstruction0300.Location = new System.Drawing.Point(106, 327);
5322
            this.btnConstruction0300.Location = new System.Drawing.Point(108, 327);
5323 5323
            this.btnConstruction0300.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5324 5324
            this.btnConstruction0300.Name = "btnConstruction0300";
5325
            this.btnConstruction0300.Size = new System.Drawing.Size(186, 30);
5325
            this.btnConstruction0300.Size = new System.Drawing.Size(189, 30);
5326 5326
            this.btnConstruction0300.TabIndex = 15;
5327 5327
            this.btnConstruction0300.Text = "工事予算書作成";
5328 5328
            this.btnConstruction0300.UseVisualStyleBackColor = true;
......
5331 5331
            // btnConstruction0301
5332 5332
            // 
5333 5333
            this.btnConstruction0301.Dock = System.Windows.Forms.DockStyle.Fill;
5334
            this.btnConstruction0301.Location = new System.Drawing.Point(317, 327);
5334
            this.btnConstruction0301.Location = new System.Drawing.Point(322, 327);
5335 5335
            this.btnConstruction0301.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5336 5336
            this.btnConstruction0301.Name = "btnConstruction0301";
5337
            this.btnConstruction0301.Size = new System.Drawing.Size(186, 30);
5337
            this.btnConstruction0301.Size = new System.Drawing.Size(189, 30);
5338 5338
            this.btnConstruction0301.TabIndex = 15;
5339 5339
            this.btnConstruction0301.Text = "工事予算書承認";
5340 5340
            this.btnConstruction0301.UseVisualStyleBackColor = true;
......
5343 5343
            // btnConstruction0302
5344 5344
            // 
5345 5345
            this.btnConstruction0302.Dock = System.Windows.Forms.DockStyle.Fill;
5346
            this.btnConstruction0302.Location = new System.Drawing.Point(528, 327);
5346
            this.btnConstruction0302.Location = new System.Drawing.Point(536, 327);
5347 5347
            this.btnConstruction0302.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5348 5348
            this.btnConstruction0302.Name = "btnConstruction0302";
5349
            this.btnConstruction0302.Size = new System.Drawing.Size(186, 30);
5349
            this.btnConstruction0302.Size = new System.Drawing.Size(189, 30);
5350 5350
            this.btnConstruction0302.TabIndex = 15;
5351 5351
            this.btnConstruction0302.UseVisualStyleBackColor = true;
5352 5352
            this.btnConstruction0302.Click += new System.EventHandler(this.btnConstruction_Click);
......
5354 5354
            // btnConstruction0303
5355 5355
            // 
5356 5356
            this.btnConstruction0303.Dock = System.Windows.Forms.DockStyle.Fill;
5357
            this.btnConstruction0303.Location = new System.Drawing.Point(739, 327);
5357
            this.btnConstruction0303.Location = new System.Drawing.Point(750, 327);
5358 5358
            this.btnConstruction0303.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5359 5359
            this.btnConstruction0303.Name = "btnConstruction0303";
5360
            this.btnConstruction0303.Size = new System.Drawing.Size(186, 30);
5360
            this.btnConstruction0303.Size = new System.Drawing.Size(189, 30);
5361 5361
            this.btnConstruction0303.TabIndex = 15;
5362 5362
            this.btnConstruction0303.UseVisualStyleBackColor = true;
5363 5363
            this.btnConstruction0303.Click += new System.EventHandler(this.btnConstruction_Click);
......
5365 5365
            // btnConstruction0304
5366 5366
            // 
5367 5367
            this.btnConstruction0304.Dock = System.Windows.Forms.DockStyle.Fill;
5368
            this.btnConstruction0304.Location = new System.Drawing.Point(950, 327);
5368
            this.btnConstruction0304.Location = new System.Drawing.Point(964, 327);
5369 5369
            this.btnConstruction0304.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5370 5370
            this.btnConstruction0304.Name = "btnConstruction0304";
5371
            this.btnConstruction0304.Size = new System.Drawing.Size(189, 30);
5371
            this.btnConstruction0304.Size = new System.Drawing.Size(192, 30);
5372 5372
            this.btnConstruction0304.TabIndex = 15;
5373 5373
            this.btnConstruction0304.UseVisualStyleBackColor = true;
5374 5374
            this.btnConstruction0304.Click += new System.EventHandler(this.btnConstruction_Click);
......
5382 5382
            this.lblConstr04.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5383 5383
            this.lblConstr04.Location = new System.Drawing.Point(3, 396);
5384 5384
            this.lblConstr04.Name = "lblConstr04";
5385
            this.lblConstr04.Size = new System.Drawing.Size(96, 36);
5385
            this.lblConstr04.Size = new System.Drawing.Size(98, 36);
5386 5386
            this.lblConstr04.TabIndex = 15;
5387 5387
            this.lblConstr04.Text = "着工前";
5388 5388
            this.lblConstr04.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5390 5390
            // btnConstruction0400
5391 5391
            // 
5392 5392
            this.btnConstruction0400.Dock = System.Windows.Forms.DockStyle.Fill;
5393
            this.btnConstruction0400.Location = new System.Drawing.Point(106, 399);
5393
            this.btnConstruction0400.Location = new System.Drawing.Point(108, 399);
5394 5394
            this.btnConstruction0400.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5395 5395
            this.btnConstruction0400.Name = "btnConstruction0400";
5396
            this.btnConstruction0400.Size = new System.Drawing.Size(186, 30);
5396
            this.btnConstruction0400.Size = new System.Drawing.Size(189, 30);
5397 5397
            this.btnConstruction0400.TabIndex = 15;
5398 5398
            this.btnConstruction0400.Text = "注文書作成";
5399 5399
            this.btnConstruction0400.UseVisualStyleBackColor = true;
......
5402 5402
            // btnConstruction0401
5403 5403
            // 
5404 5404
            this.btnConstruction0401.Dock = System.Windows.Forms.DockStyle.Fill;
5405
            this.btnConstruction0401.Location = new System.Drawing.Point(317, 399);
5405
            this.btnConstruction0401.Location = new System.Drawing.Point(322, 399);
5406 5406
            this.btnConstruction0401.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5407 5407
            this.btnConstruction0401.Name = "btnConstruction0401";
5408
            this.btnConstruction0401.Size = new System.Drawing.Size(186, 30);
5408
            this.btnConstruction0401.Size = new System.Drawing.Size(189, 30);
5409 5409
            this.btnConstruction0401.TabIndex = 15;
5410 5410
            this.btnConstruction0401.Text = "注文書承認";
5411 5411
            this.btnConstruction0401.UseVisualStyleBackColor = true;
......
5414 5414
            // btnConstruction0402
5415 5415
            // 
5416 5416
            this.btnConstruction0402.Dock = System.Windows.Forms.DockStyle.Fill;
5417
            this.btnConstruction0402.Location = new System.Drawing.Point(528, 399);
5417
            this.btnConstruction0402.Location = new System.Drawing.Point(536, 399);
5418 5418
            this.btnConstruction0402.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5419 5419
            this.btnConstruction0402.Name = "btnConstruction0402";
5420
            this.btnConstruction0402.Size = new System.Drawing.Size(186, 30);
5420
            this.btnConstruction0402.Size = new System.Drawing.Size(189, 30);
5421 5421
            this.btnConstruction0402.TabIndex = 15;
5422 5422
            this.btnConstruction0402.Text = "注文書状況確認";
5423 5423
            this.btnConstruction0402.UseVisualStyleBackColor = true;
......
5426 5426
            // btnConstruction0403
5427 5427
            // 
5428 5428
            this.btnConstruction0403.Dock = System.Windows.Forms.DockStyle.Fill;
5429
            this.btnConstruction0403.Location = new System.Drawing.Point(739, 399);
5429
            this.btnConstruction0403.Location = new System.Drawing.Point(750, 399);
5430 5430
            this.btnConstruction0403.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5431 5431
            this.btnConstruction0403.Name = "btnConstruction0403";
5432
            this.btnConstruction0403.Size = new System.Drawing.Size(186, 30);
5432
            this.btnConstruction0403.Size = new System.Drawing.Size(189, 30);
5433 5433
            this.btnConstruction0403.TabIndex = 15;
5434 5434
            this.btnConstruction0403.UseVisualStyleBackColor = true;
5435 5435
            this.btnConstruction0403.Click += new System.EventHandler(this.btnConstruction_Click);
......
5437 5437
            // btnConstruction0404
5438 5438
            // 
5439 5439
            this.btnConstruction0404.Dock = System.Windows.Forms.DockStyle.Fill;
5440
            this.btnConstruction0404.Location = new System.Drawing.Point(950, 399);
5440
            this.btnConstruction0404.Location = new System.Drawing.Point(964, 399);
5441 5441
            this.btnConstruction0404.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5442 5442
            this.btnConstruction0404.Name = "btnConstruction0404";
5443
            this.btnConstruction0404.Size = new System.Drawing.Size(189, 30);
5443
            this.btnConstruction0404.Size = new System.Drawing.Size(192, 30);
5444 5444
            this.btnConstruction0404.TabIndex = 15;
5445 5445
            this.btnConstruction0404.UseVisualStyleBackColor = true;
5446 5446
            this.btnConstruction0404.Click += new System.EventHandler(this.btnConstruction_Click);
......
5454 5454
            this.lblConstr05.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5455 5455
            this.lblConstr05.Location = new System.Drawing.Point(3, 468);
5456 5456
            this.lblConstr05.Name = "lblConstr05";
5457
            this.lblConstr05.Size = new System.Drawing.Size(96, 36);
5457
            this.lblConstr05.Size = new System.Drawing.Size(98, 36);
5458 5458
            this.lblConstr05.TabIndex = 15;
5459 5459
            this.lblConstr05.Text = "着工前";
5460 5460
            this.lblConstr05.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5462 5462
            // btnConstruction0500
5463 5463
            // 
5464 5464
            this.btnConstruction0500.Dock = System.Windows.Forms.DockStyle.Fill;
5465
            this.btnConstruction0500.Location = new System.Drawing.Point(106, 471);
5465
            this.btnConstruction0500.Location = new System.Drawing.Point(108, 471);
5466 5466
            this.btnConstruction0500.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5467 5467
            this.btnConstruction0500.Name = "btnConstruction0500";
5468
            this.btnConstruction0500.Size = new System.Drawing.Size(186, 30);
5468
            this.btnConstruction0500.Size = new System.Drawing.Size(189, 30);
5469 5469
            this.btnConstruction0500.TabIndex = 15;
5470 5470
            this.btnConstruction0500.Text = "工程表作成・印刷";
5471 5471
            this.btnConstruction0500.UseVisualStyleBackColor = true;
......
5474 5474
            // btnConstruction0501
5475 5475
            // 
5476 5476
            this.btnConstruction0501.Dock = System.Windows.Forms.DockStyle.Fill;
5477
            this.btnConstruction0501.Location = new System.Drawing.Point(317, 471);
5477
            this.btnConstruction0501.Location = new System.Drawing.Point(322, 471);
5478 5478
            this.btnConstruction0501.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5479 5479
            this.btnConstruction0501.Name = "btnConstruction0501";
5480
            this.btnConstruction0501.Size = new System.Drawing.Size(186, 30);
5480
            this.btnConstruction0501.Size = new System.Drawing.Size(189, 30);
5481 5481
            this.btnConstruction0501.TabIndex = 15;
5482 5482
            this.btnConstruction0501.Text = "施工計画書作成・印刷";
5483 5483
            this.btnConstruction0501.UseVisualStyleBackColor = true;
......
5486 5486
            // btnConstruction0502
5487 5487
            // 
5488 5488
            this.btnConstruction0502.Dock = System.Windows.Forms.DockStyle.Fill;
5489
            this.btnConstruction0502.Location = new System.Drawing.Point(528, 471);
5489
            this.btnConstruction0502.Location = new System.Drawing.Point(536, 471);
5490 5490
            this.btnConstruction0502.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5491 5491
            this.btnConstruction0502.Name = "btnConstruction0502";
5492
            this.btnConstruction0502.Size = new System.Drawing.Size(186, 30);
5492
            this.btnConstruction0502.Size = new System.Drawing.Size(189, 30);
5493 5493
            this.btnConstruction0502.TabIndex = 15;
5494 5494
            this.btnConstruction0502.Text = "施工体制台帳作成・印刷";
5495 5495
            this.btnConstruction0502.UseVisualStyleBackColor = true;
......
5498 5498
            // btnConstruction0503
5499 5499
            // 
5500 5500
            this.btnConstruction0503.Dock = System.Windows.Forms.DockStyle.Fill;
5501
            this.btnConstruction0503.Location = new System.Drawing.Point(739, 471);
5501
            this.btnConstruction0503.Location = new System.Drawing.Point(750, 471);
5502 5502
            this.btnConstruction0503.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5503 5503
            this.btnConstruction0503.Name = "btnConstruction0503";
5504
            this.btnConstruction0503.Size = new System.Drawing.Size(186, 30);
5504
            this.btnConstruction0503.Size = new System.Drawing.Size(189, 30);
5505 5505
            this.btnConstruction0503.TabIndex = 15;
5506 5506
            this.btnConstruction0503.UseVisualStyleBackColor = true;
5507 5507
            this.btnConstruction0503.Click += new System.EventHandler(this.btnConstruction_Click);
......
5509 5509
            // btnConstruction0504
5510 5510
            // 
5511 5511
            this.btnConstruction0504.Dock = System.Windows.Forms.DockStyle.Fill;
5512
            this.btnConstruction0504.Location = new System.Drawing.Point(950, 471);
5512
            this.btnConstruction0504.Location = new System.Drawing.Point(964, 471);
5513 5513
            this.btnConstruction0504.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5514 5514
            this.btnConstruction0504.Name = "btnConstruction0504";
5515
            this.btnConstruction0504.Size = new System.Drawing.Size(189, 30);
5515
            this.btnConstruction0504.Size = new System.Drawing.Size(192, 30);
5516 5516
            this.btnConstruction0504.TabIndex = 15;
5517 5517
            this.btnConstruction0504.UseVisualStyleBackColor = true;
5518 5518
            this.btnConstruction0504.Click += new System.EventHandler(this.btnConstruction_Click);
......
5526 5526
            this.lblConstr06.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5527 5527
            this.lblConstr06.Location = new System.Drawing.Point(3, 540);
5528 5528
            this.lblConstr06.Name = "lblConstr06";
5529
            this.lblConstr06.Size = new System.Drawing.Size(96, 36);
5529
            this.lblConstr06.Size = new System.Drawing.Size(98, 36);
5530 5530
            this.lblConstr06.TabIndex = 15;
5531 5531
            this.lblConstr06.Text = "着工前・中";
5532 5532
            this.lblConstr06.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5534 5534
            // btnConstruction0600
5535 5535
            // 
5536 5536
            this.btnConstruction0600.Dock = System.Windows.Forms.DockStyle.Fill;
5537
            this.btnConstruction0600.Location = new System.Drawing.Point(106, 543);
5537
            this.btnConstruction0600.Location = new System.Drawing.Point(108, 543);
5538 5538
            this.btnConstruction0600.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5539 5539
            this.btnConstruction0600.Name = "btnConstruction0600";
5540
            this.btnConstruction0600.Size = new System.Drawing.Size(186, 30);
5540
            this.btnConstruction0600.Size = new System.Drawing.Size(189, 30);
5541 5541
            this.btnConstruction0600.TabIndex = 15;
5542 5542
            this.btnConstruction0600.Text = "工事施工図承諾願い";
5543 5543
            this.btnConstruction0600.UseVisualStyleBackColor = true;
......
5546 5546
            // btnConstruction0601
5547 5547
            // 
5548 5548
            this.btnConstruction0601.Dock = System.Windows.Forms.DockStyle.Fill;
5549
            this.btnConstruction0601.Location = new System.Drawing.Point(317, 543);
5549
            this.btnConstruction0601.Location = new System.Drawing.Point(322, 543);
5550 5550
            this.btnConstruction0601.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5551 5551
            this.btnConstruction0601.Name = "btnConstruction0601";
5552
            this.btnConstruction0601.Size = new System.Drawing.Size(186, 30);
5552
            this.btnConstruction0601.Size = new System.Drawing.Size(189, 30);
5553 5553
            this.btnConstruction0601.TabIndex = 15;
5554 5554
            this.btnConstruction0601.Text = "工事使用材料承諾願い";
5555 5555
            this.btnConstruction0601.UseVisualStyleBackColor = true;
......
5558 5558
            // btnConstruction0602
5559 5559
            // 
5560 5560
            this.btnConstruction0602.Dock = System.Windows.Forms.DockStyle.Fill;
5561
            this.btnConstruction0602.Location = new System.Drawing.Point(528, 543);
5561
            this.btnConstruction0602.Location = new System.Drawing.Point(536, 543);
5562 5562
            this.btnConstruction0602.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5563 5563
            this.btnConstruction0602.Name = "btnConstruction0602";
5564
            this.btnConstruction0602.Size = new System.Drawing.Size(186, 30);
5564
            this.btnConstruction0602.Size = new System.Drawing.Size(189, 30);
5565 5565
            this.btnConstruction0602.TabIndex = 15;
5566 5566
            this.btnConstruction0602.Text = "安全パトロール申請";
5567 5567
            this.btnConstruction0602.UseVisualStyleBackColor = true;
......
5570 5570
            // btnConstruction0603
5571 5571
            // 
5572 5572
            this.btnConstruction0603.Dock = System.Windows.Forms.DockStyle.Fill;
5573
            this.btnConstruction0603.Location = new System.Drawing.Point(739, 543);
5573
            this.btnConstruction0603.Location = new System.Drawing.Point(750, 543);
5574 5574
            this.btnConstruction0603.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5575 5575
            this.btnConstruction0603.Name = "btnConstruction0603";
5576
            this.btnConstruction0603.Size = new System.Drawing.Size(186, 30);
5576
            this.btnConstruction0603.Size = new System.Drawing.Size(189, 30);
5577 5577
            this.btnConstruction0603.TabIndex = 15;
5578 5578
            this.btnConstruction0603.Text = "社内検査申請";
5579 5579
            this.btnConstruction0603.UseVisualStyleBackColor = true;
......
5582 5582
            // btnConstruction0604
5583 5583
            // 
5584 5584
            this.btnConstruction0604.Dock = System.Windows.Forms.DockStyle.Fill;
5585
            this.btnConstruction0604.Location = new System.Drawing.Point(950, 543);
5585
            this.btnConstruction0604.Location = new System.Drawing.Point(964, 543);
5586 5586
            this.btnConstruction0604.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5587 5587
            this.btnConstruction0604.Name = "btnConstruction0604";
5588
            this.btnConstruction0604.Size = new System.Drawing.Size(189, 30);
5588
            this.btnConstruction0604.Size = new System.Drawing.Size(192, 30);
5589 5589
            this.btnConstruction0604.TabIndex = 15;
5590 5590
            this.btnConstruction0604.UseVisualStyleBackColor = true;
5591 5591
            this.btnConstruction0604.Click += new System.EventHandler(this.btnConstruction_Click);
......
5593 5593
            // btnConstruction0700
5594 5594
            // 
5595 5595
            this.btnConstruction0700.Dock = System.Windows.Forms.DockStyle.Fill;
5596
            this.btnConstruction0700.Location = new System.Drawing.Point(106, 615);
5596
            this.btnConstruction0700.Location = new System.Drawing.Point(108, 615);
5597 5597
            this.btnConstruction0700.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5598 5598
            this.btnConstruction0700.Name = "btnConstruction0700";
5599
            this.btnConstruction0700.Size = new System.Drawing.Size(186, 30);
5599
            this.btnConstruction0700.Size = new System.Drawing.Size(189, 30);
5600 5600
            this.btnConstruction0700.TabIndex = 15;
5601 5601
            this.btnConstruction0700.UseVisualStyleBackColor = true;
5602 5602
            this.btnConstruction0700.Click += new System.EventHandler(this.btnConstruction_Click);
......
5604 5604
            // btnConstruction0701
5605 5605
            // 
5606 5606
            this.btnConstruction0701.Dock = System.Windows.Forms.DockStyle.Fill;
5607
            this.btnConstruction0701.Location = new System.Drawing.Point(317, 615);
5607
            this.btnConstruction0701.Location = new System.Drawing.Point(322, 615);
5608 5608
            this.btnConstruction0701.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5609 5609
            this.btnConstruction0701.Name = "btnConstruction0701";
5610
            this.btnConstruction0701.Size = new System.Drawing.Size(186, 30);
5610
            this.btnConstruction0701.Size = new System.Drawing.Size(189, 30);
5611 5611
            this.btnConstruction0701.TabIndex = 15;
5612 5612
            this.btnConstruction0701.UseVisualStyleBackColor = true;
5613 5613
            this.btnConstruction0701.Click += new System.EventHandler(this.btnConstruction_Click);
......
5615 5615
            // btnConstruction0702
5616 5616
            // 
5617 5617
            this.btnConstruction0702.Dock = System.Windows.Forms.DockStyle.Fill;
5618
            this.btnConstruction0702.Location = new System.Drawing.Point(528, 615);
5618
            this.btnConstruction0702.Location = new System.Drawing.Point(536, 615);
5619 5619
            this.btnConstruction0702.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5620 5620
            this.btnConstruction0702.Name = "btnConstruction0702";
5621
            this.btnConstruction0702.Size = new System.Drawing.Size(186, 30);
5621
            this.btnConstruction0702.Size = new System.Drawing.Size(189, 30);
5622 5622
            this.btnConstruction0702.TabIndex = 15;
5623 5623
            this.btnConstruction0702.UseVisualStyleBackColor = true;
5624 5624
            this.btnConstruction0702.Click += new System.EventHandler(this.btnConstruction_Click);
......
5626 5626
            // btnConstruction0703
5627 5627
            // 
5628 5628
            this.btnConstruction0703.Dock = System.Windows.Forms.DockStyle.Fill;
5629
            this.btnConstruction0703.Location = new System.Drawing.Point(739, 615);
5629
            this.btnConstruction0703.Location = new System.Drawing.Point(750, 615);
5630 5630
            this.btnConstruction0703.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5631 5631
            this.btnConstruction0703.Name = "btnConstruction0703";
5632
            this.btnConstruction0703.Size = new System.Drawing.Size(186, 30);
5632
            this.btnConstruction0703.Size = new System.Drawing.Size(189, 30);
5633 5633
            this.btnConstruction0703.TabIndex = 15;
5634 5634
            this.btnConstruction0703.UseVisualStyleBackColor = true;
5635 5635
            this.btnConstruction0703.Click += new System.EventHandler(this.btnConstruction_Click);
......
5637 5637
            // btnConstruction0704
5638 5638
            // 
5639 5639
            this.btnConstruction0704.Dock = System.Windows.Forms.DockStyle.Fill;
5640
            this.btnConstruction0704.Location = new System.Drawing.Point(950, 615);
5640
            this.btnConstruction0704.Location = new System.Drawing.Point(964, 615);
5641 5641
            this.btnConstruction0704.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5642 5642
            this.btnConstruction0704.Name = "btnConstruction0704";
5643
            this.btnConstruction0704.Size = new System.Drawing.Size(189, 30);
5643
            this.btnConstruction0704.Size = new System.Drawing.Size(192, 30);
5644 5644
            this.btnConstruction0704.TabIndex = 15;
5645 5645
            this.btnConstruction0704.UseVisualStyleBackColor = true;
5646 5646
            this.btnConstruction0704.Click += new System.EventHandler(this.btnConstruction_Click);
......
5654 5654
            this.lblConstr08.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5655 5655
            this.lblConstr08.Location = new System.Drawing.Point(3, 684);
5656 5656
            this.lblConstr08.Name = "lblConstr08";
5657
            this.lblConstr08.Size = new System.Drawing.Size(96, 36);
5657
            this.lblConstr08.Size = new System.Drawing.Size(98, 36);
5658 5658
            this.lblConstr08.TabIndex = 15;
5659 5659
            this.lblConstr08.Text = "着工中\r\n・完了後";
5660 5660
            this.lblConstr08.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5662 5662
            // btnConstruction0800
5663 5663
            // 
5664 5664
            this.btnConstruction0800.Dock = System.Windows.Forms.DockStyle.Fill;
5665
            this.btnConstruction0800.Location = new System.Drawing.Point(106, 687);
5665
            this.btnConstruction0800.Location = new System.Drawing.Point(108, 687);
5666 5666
            this.btnConstruction0800.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5667 5667
            this.btnConstruction0800.Name = "btnConstruction0800";
5668
            this.btnConstruction0800.Size = new System.Drawing.Size(186, 30);
5668
            this.btnConstruction0800.Size = new System.Drawing.Size(189, 30);
5669 5669
            this.btnConstruction0800.TabIndex = 15;
5670 5670
            this.btnConstruction0800.Text = "完成図書作成・印刷";
5671 5671
            this.btnConstruction0800.UseVisualStyleBackColor = true;
......
5674 5674
            // btnConstruction0801
5675 5675
            // 
5676 5676
            this.btnConstruction0801.Dock = System.Windows.Forms.DockStyle.Fill;
5677
            this.btnConstruction0801.Location = new System.Drawing.Point(317, 687);
5677
            this.btnConstruction0801.Location = new System.Drawing.Point(322, 687);
5678 5678
            this.btnConstruction0801.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5679 5679
            this.btnConstruction0801.Name = "btnConstruction0801";
5680
            this.btnConstruction0801.Size = new System.Drawing.Size(186, 30);
5680
            this.btnConstruction0801.Size = new System.Drawing.Size(189, 30);
5681 5681
            this.btnConstruction0801.TabIndex = 15;
5682 5682
            this.btnConstruction0801.UseVisualStyleBackColor = true;
5683 5683
            this.btnConstruction0801.Click += new System.EventHandler(this.btnConstruction_Click);
......
5685 5685
            // btnConstruction0802
5686 5686
            // 
5687 5687
            this.btnConstruction0802.Dock = System.Windows.Forms.DockStyle.Fill;
5688
            this.btnConstruction0802.Location = new System.Drawing.Point(528, 687);
5688
            this.btnConstruction0802.Location = new System.Drawing.Point(536, 687);
5689 5689
            this.btnConstruction0802.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5690 5690
            this.btnConstruction0802.Name = "btnConstruction0802";
5691
            this.btnConstruction0802.Size = new System.Drawing.Size(186, 30);
5691
            this.btnConstruction0802.Size = new System.Drawing.Size(189, 30);
5692 5692
            this.btnConstruction0802.TabIndex = 15;
5693 5693
            this.btnConstruction0802.UseVisualStyleBackColor = true;
5694 5694
            this.btnConstruction0802.Click += new System.EventHandler(this.btnConstruction_Click);
......
5696 5696
            // btnConstruction0803
5697 5697
            // 
5698 5698
            this.btnConstruction0803.Dock = System.Windows.Forms.DockStyle.Fill;
5699
            this.btnConstruction0803.Location = new System.Drawing.Point(739, 687);
5699
            this.btnConstruction0803.Location = new System.Drawing.Point(750, 687);
5700 5700
            this.btnConstruction0803.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5701 5701
            this.btnConstruction0803.Name = "btnConstruction0803";
5702
            this.btnConstruction0803.Size = new System.Drawing.Size(186, 30);
5702
            this.btnConstruction0803.Size = new System.Drawing.Size(189, 30);
5703 5703
            this.btnConstruction0803.TabIndex = 15;
5704 5704
            this.btnConstruction0803.UseVisualStyleBackColor = true;
5705 5705
            this.btnConstruction0803.Click += new System.EventHandler(this.btnConstruction_Click);
......
5707 5707
            // btnConstruction0804
5708 5708
            // 
5709 5709
            this.btnConstruction0804.Dock = System.Windows.Forms.DockStyle.Fill;
5710
            this.btnConstruction0804.Location = new System.Drawing.Point(950, 687);
5710
            this.btnConstruction0804.Location = new System.Drawing.Point(964, 687);
5711 5711
            this.btnConstruction0804.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5712 5712
            this.btnConstruction0804.Name = "btnConstruction0804";
5713
            this.btnConstruction0804.Size = new System.Drawing.Size(189, 30);
5713
            this.btnConstruction0804.Size = new System.Drawing.Size(192, 30);
5714 5714
            this.btnConstruction0804.TabIndex = 15;
5715 5715
            this.btnConstruction0804.UseVisualStyleBackColor = true;
5716 5716
            this.btnConstruction0804.Click += new System.EventHandler(this.btnConstruction_Click);
......
5722 5722
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine02, 10);
5723 5723
            this.lblConstrLine02.Location = new System.Drawing.Point(3, 771);
5724 5724
            this.lblConstrLine02.Name = "lblConstrLine02";
5725
            this.lblConstrLine02.Size = new System.Drawing.Size(1137, 6);
5725
            this.lblConstrLine02.Size = new System.Drawing.Size(1154, 6);
5726 5726
            this.lblConstrLine02.TabIndex = 15;
5727 5727
            // 
5728 5728
            // lblConstrTitle03
......
5732 5732
            | System.Windows.Forms.AnchorStyles.Right)));
5733 5733
            this.lblConstrTitle03.AutoSize = true;
5734 5734
            this.lblConstrTitle03.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5735
            this.lblConstrTitle03.Location = new System.Drawing.Point(105, 792);
5735
            this.lblConstrTitle03.Location = new System.Drawing.Point(107, 792);
5736 5736
            this.lblConstrTitle03.Name = "lblConstrTitle03";
5737
            this.lblConstrTitle03.Size = new System.Drawing.Size(188, 36);
5737
            this.lblConstrTitle03.Size = new System.Drawing.Size(191, 36);
5738 5738
            this.lblConstrTitle03.TabIndex = 15;
5739 5739
            this.lblConstrTitle03.Text = "取引先請求管理";
5740 5740
            this.lblConstrTitle03.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5748 5748
            this.lblConstr09.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5749 5749
            this.lblConstr09.Location = new System.Drawing.Point(3, 828);
5750 5750
            this.lblConstr09.Name = "lblConstr09";
5751
            this.lblConstr09.Size = new System.Drawing.Size(96, 36);
5751
            this.lblConstr09.Size = new System.Drawing.Size(98, 36);
5752 5752
            this.lblConstr09.TabIndex = 15;
5753 5753
            this.lblConstr09.Text = "出来高";
5754 5754
            this.lblConstr09.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5756 5756
            // btnConstruction0900
5757 5757
            // 
5758 5758
            this.btnConstruction0900.Dock = System.Windows.Forms.DockStyle.Fill;
5759
            this.btnConstruction0900.Location = new System.Drawing.Point(106, 831);
5759
            this.btnConstruction0900.Location = new System.Drawing.Point(108, 831);
5760 5760
            this.btnConstruction0900.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5761 5761
            this.btnConstruction0900.Name = "btnConstruction0900";
5762
            this.btnConstruction0900.Size = new System.Drawing.Size(186, 30);
5762
            this.btnConstruction0900.Size = new System.Drawing.Size(189, 30);
5763 5763
            this.btnConstruction0900.TabIndex = 15;
5764 5764
            this.btnConstruction0900.Text = "請求データ作成";
5765 5765
            this.btnConstruction0900.UseVisualStyleBackColor = true;
......
5768 5768
            // btnConstruction0901
5769 5769
            // 
5770 5770
            this.btnConstruction0901.Dock = System.Windows.Forms.DockStyle.Fill;
5771
            this.btnConstruction0901.Location = new System.Drawing.Point(317, 831);
5771
            this.btnConstruction0901.Location = new System.Drawing.Point(322, 831);
5772 5772
            this.btnConstruction0901.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5773 5773
            this.btnConstruction0901.Name = "btnConstruction0901";
5774
            this.btnConstruction0901.Size = new System.Drawing.Size(186, 30);
5774
            this.btnConstruction0901.Size = new System.Drawing.Size(189, 30);
5775 5775
            this.btnConstruction0901.TabIndex = 15;
5776 5776
            this.btnConstruction0901.Text = "請求承認";
5777 5777
            this.btnConstruction0901.UseVisualStyleBackColor = true;
......
5780 5780
            // btnConstruction0902
5781 5781
            // 
5782 5782
            this.btnConstruction0902.Dock = System.Windows.Forms.DockStyle.Fill;
5783
            this.btnConstruction0902.Location = new System.Drawing.Point(528, 831);
5783
            this.btnConstruction0902.Location = new System.Drawing.Point(536, 831);
5784 5784
            this.btnConstruction0902.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5785 5785
            this.btnConstruction0902.Name = "btnConstruction0902";
5786
            this.btnConstruction0902.Size = new System.Drawing.Size(186, 30);
5786
            this.btnConstruction0902.Size = new System.Drawing.Size(189, 30);
5787 5787
            this.btnConstruction0902.TabIndex = 15;
5788 5788
            this.btnConstruction0902.Text = "請求書印刷";
5789 5789
            this.btnConstruction0902.UseVisualStyleBackColor = true;
......
5792 5792
            // btnConstruction0903
5793 5793
            // 
5794 5794
            this.btnConstruction0903.Dock = System.Windows.Forms.DockStyle.Fill;
5795
            this.btnConstruction0903.Location = new System.Drawing.Point(739, 831);
5795
            this.btnConstruction0903.Location = new System.Drawing.Point(750, 831);
5796 5796
            this.btnConstruction0903.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5797 5797
            this.btnConstruction0903.Name = "btnConstruction0903";
5798
            this.btnConstruction0903.Size = new System.Drawing.Size(186, 30);
5798
            this.btnConstruction0903.Size = new System.Drawing.Size(189, 30);
5799 5799
            this.btnConstruction0903.TabIndex = 15;
5800 5800
            this.btnConstruction0903.Text = "請求書郵送・手渡し確認";
5801 5801
            this.btnConstruction0903.UseVisualStyleBackColor = true;
......
5804 5804
            // btnConstruction0904
5805 5805
            // 
5806 5806
            this.btnConstruction0904.Dock = System.Windows.Forms.DockStyle.Fill;
5807
            this.btnConstruction0904.Location = new System.Drawing.Point(950, 831);
5807
            this.btnConstruction0904.Location = new System.Drawing.Point(964, 831);
5808 5808
            this.btnConstruction0904.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5809 5809
            this.btnConstruction0904.Name = "btnConstruction0904";
5810
            this.btnConstruction0904.Size = new System.Drawing.Size(189, 30);
5810
            this.btnConstruction0904.Size = new System.Drawing.Size(192, 30);
5811 5811
            this.btnConstruction0904.TabIndex = 15;
5812 5812
            this.btnConstruction0904.Text = "取引先入金確認";
5813 5813
            this.btnConstruction0904.UseVisualStyleBackColor = true;
......
5816 5816
            // btnConstruction1000
5817 5817
            // 
5818 5818
            this.btnConstruction1000.Dock = System.Windows.Forms.DockStyle.Fill;
5819
            this.btnConstruction1000.Location = new System.Drawing.Point(106, 903);
5819
            this.btnConstruction1000.Location = new System.Drawing.Point(108, 903);
5820 5820
            this.btnConstruction1000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5821 5821
            this.btnConstruction1000.Name = "btnConstruction1000";
5822
            this.btnConstruction1000.Size = new System.Drawing.Size(186, 30);
5822
            this.btnConstruction1000.Size = new System.Drawing.Size(189, 30);
5823 5823
            this.btnConstruction1000.TabIndex = 15;
5824 5824
            this.btnConstruction1000.Text = "請求データ作成";
5825 5825
            this.btnConstruction1000.UseVisualStyleBackColor = true;
......
5828 5828
            // btnConstruction1001
5829 5829
            // 
5830 5830
            this.btnConstruction1001.Dock = System.Windows.Forms.DockStyle.Fill;
5831
            this.btnConstruction1001.Location = new System.Drawing.Point(317, 903);
5831
            this.btnConstruction1001.Location = new System.Drawing.Point(322, 903);
5832 5832
            this.btnConstruction1001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5833 5833
            this.btnConstruction1001.Name = "btnConstruction1001";
5834
            this.btnConstruction1001.Size = new System.Drawing.Size(186, 30);
5834
            this.btnConstruction1001.Size = new System.Drawing.Size(189, 30);
5835 5835
            this.btnConstruction1001.TabIndex = 15;
5836 5836
            this.btnConstruction1001.Text = "請求承認";
5837 5837
            this.btnConstruction1001.UseVisualStyleBackColor = true;
......
5840 5840
            // btnConstruction1002
5841 5841
            // 
5842 5842
            this.btnConstruction1002.Dock = System.Windows.Forms.DockStyle.Fill;
5843
            this.btnConstruction1002.Location = new System.Drawing.Point(528, 903);
5843
            this.btnConstruction1002.Location = new System.Drawing.Point(536, 903);
5844 5844
            this.btnConstruction1002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5845 5845
            this.btnConstruction1002.Name = "btnConstruction1002";
5846
            this.btnConstruction1002.Size = new System.Drawing.Size(186, 30);
5846
            this.btnConstruction1002.Size = new System.Drawing.Size(189, 30);
5847 5847
            this.btnConstruction1002.TabIndex = 15;
5848 5848
            this.btnConstruction1002.Text = "請求書印刷";
5849 5849
            this.btnConstruction1002.UseVisualStyleBackColor = true;
......
5852 5852
            // btnConstruction1003
5853 5853
            // 
5854 5854
            this.btnConstruction1003.Dock = System.Windows.Forms.DockStyle.Fill;
5855
            this.btnConstruction1003.Location = new System.Drawing.Point(739, 903);
5855
            this.btnConstruction1003.Location = new System.Drawing.Point(750, 903);
5856 5856
            this.btnConstruction1003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5857 5857
            this.btnConstruction1003.Name = "btnConstruction1003";
5858
            this.btnConstruction1003.Size = new System.Drawing.Size(186, 30);
5858
            this.btnConstruction1003.Size = new System.Drawing.Size(189, 30);
5859 5859
            this.btnConstruction1003.TabIndex = 15;
5860 5860
            this.btnConstruction1003.Text = "請求書郵送・手渡し確認";
5861 5861
            this.btnConstruction1003.UseVisualStyleBackColor = true;
......
5864 5864
            // btnConstruction1004
5865 5865
            // 
5866 5866
            this.btnConstruction1004.Dock = System.Windows.Forms.DockStyle.Fill;
5867
            this.btnConstruction1004.Location = new System.Drawing.Point(950, 903);
5867
            this.btnConstruction1004.Location = new System.Drawing.Point(964, 903);
5868 5868
            this.btnConstruction1004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5869 5869
            this.btnConstruction1004.Name = "btnConstruction1004";
5870
            this.btnConstruction1004.Size = new System.Drawing.Size(189, 30);
5870
            this.btnConstruction1004.Size = new System.Drawing.Size(192, 30);
5871 5871
            this.btnConstruction1004.TabIndex = 15;
5872 5872
            this.btnConstruction1004.Text = "取引先入金確認";
5873 5873
            this.btnConstruction1004.UseVisualStyleBackColor = true;
......
5880 5880
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine03, 10);
5881 5881
            this.lblConstrLine03.Location = new System.Drawing.Point(3, 987);
5882 5882
            this.lblConstrLine03.Name = "lblConstrLine03";
5883
            this.lblConstrLine03.Size = new System.Drawing.Size(1137, 6);
5883
            this.lblConstrLine03.Size = new System.Drawing.Size(1154, 6);
5884 5884
            this.lblConstrLine03.TabIndex = 15;
5885 5885
            // 
5886 5886
            // lblConstrTitle04
......
5890 5890
            | System.Windows.Forms.AnchorStyles.Right)));
5891 5891
            this.lblConstrTitle04.AutoSize = true;
5892 5892
            this.lblConstrTitle04.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5893
            this.lblConstrTitle04.Location = new System.Drawing.Point(105, 1008);
5893
            this.lblConstrTitle04.Location = new System.Drawing.Point(107, 1008);
5894 5894
            this.lblConstrTitle04.Name = "lblConstrTitle04";
5895
            this.lblConstrTitle04.Size = new System.Drawing.Size(188, 36);
5895
            this.lblConstrTitle04.Size = new System.Drawing.Size(191, 36);
5896 5896
            this.lblConstrTitle04.TabIndex = 15;
5897 5897
            this.lblConstrTitle04.Text = "各業者・職人支払い管理";
5898 5898
            this.lblConstrTitle04.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5906 5906
            this.lblConstr11.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5907 5907
            this.lblConstr11.Location = new System.Drawing.Point(3, 1044);
5908 5908
            this.lblConstr11.Name = "lblConstr11";
5909
            this.lblConstr11.Size = new System.Drawing.Size(96, 36);
5909
            this.lblConstr11.Size = new System.Drawing.Size(98, 36);
5910 5910
            this.lblConstr11.TabIndex = 15;
5911 5911
            this.lblConstr11.Text = "毎月";
5912 5912
            this.lblConstr11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5914 5914
            // btnConstruction1100
5915 5915
            // 
5916 5916
            this.btnConstruction1100.Dock = System.Windows.Forms.DockStyle.Fill;
5917
            this.btnConstruction1100.Location = new System.Drawing.Point(106, 1047);
5917
            this.btnConstruction1100.Location = new System.Drawing.Point(108, 1047);
5918 5918
            this.btnConstruction1100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5919 5919
            this.btnConstruction1100.Name = "btnConstruction1100";
5920
            this.btnConstruction1100.Size = new System.Drawing.Size(186, 30);
5920
            this.btnConstruction1100.Size = new System.Drawing.Size(189, 30);
5921 5921
            this.btnConstruction1100.TabIndex = 15;
5922 5922
            this.btnConstruction1100.Text = "手間支払確認";
5923 5923
            this.btnConstruction1100.UseVisualStyleBackColor = true;
......
5926 5926
            // btnConstruction1101
5927 5927
            // 
5928 5928
            this.btnConstruction1101.Dock = System.Windows.Forms.DockStyle.Fill;
5929
            this.btnConstruction1101.Location = new System.Drawing.Point(317, 1047);
5929
            this.btnConstruction1101.Location = new System.Drawing.Point(322, 1047);
5930 5930
            this.btnConstruction1101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5931 5931
            this.btnConstruction1101.Name = "btnConstruction1101";
5932
            this.btnConstruction1101.Size = new System.Drawing.Size(186, 30);
5932
            this.btnConstruction1101.Size = new System.Drawing.Size(189, 30);
5933 5933
            this.btnConstruction1101.TabIndex = 15;
5934 5934
            this.btnConstruction1101.Text = "業者支払確認";
5935 5935
            this.btnConstruction1101.UseVisualStyleBackColor = true;
......
5938 5938
            // btnConstruction1102
5939 5939
            // 
5940 5940
            this.btnConstruction1102.Dock = System.Windows.Forms.DockStyle.Fill;
5941
            this.btnConstruction1102.Location = new System.Drawing.Point(528, 1047);
5941
            this.btnConstruction1102.Location = new System.Drawing.Point(536, 1047);
5942 5942
            this.btnConstruction1102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5943 5943
            this.btnConstruction1102.Name = "btnConstruction1102";
5944
            this.btnConstruction1102.Size = new System.Drawing.Size(186, 30);
5944
            this.btnConstruction1102.Size = new System.Drawing.Size(189, 30);
5945 5945
            this.btnConstruction1102.TabIndex = 15;
5946 5946
            this.btnConstruction1102.UseVisualStyleBackColor = true;
5947 5947
            this.btnConstruction1102.Click += new System.EventHandler(this.btnConstruction_Click);
......
5949 5949
            // btnConstruction1103
5950 5950
            // 
5951 5951
            this.btnConstruction1103.Dock = System.Windows.Forms.DockStyle.Fill;
5952
            this.btnConstruction1103.Location = new System.Drawing.Point(739, 1047);
5952
            this.btnConstruction1103.Location = new System.Drawing.Point(750, 1047);
5953 5953
            this.btnConstruction1103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5954 5954
            this.btnConstruction1103.Name = "btnConstruction1103";
5955
            this.btnConstruction1103.Size = new System.Drawing.Size(186, 30);
5955
            this.btnConstruction1103.Size = new System.Drawing.Size(189, 30);
5956 5956
            this.btnConstruction1103.TabIndex = 15;
5957 5957
            this.btnConstruction1103.UseVisualStyleBackColor = true;
5958 5958
            this.btnConstruction1103.Click += new System.EventHandler(this.btnConstruction_Click);
......
5960 5960
            // btnConstruction1104
5961 5961
            // 
5962 5962
            this.btnConstruction1104.Dock = System.Windows.Forms.DockStyle.Fill;
5963
            this.btnConstruction1104.Location = new System.Drawing.Point(950, 1047);
5963
            this.btnConstruction1104.Location = new System.Drawing.Point(964, 1047);
5964 5964
            this.btnConstruction1104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5965 5965
            this.btnConstruction1104.Name = "btnConstruction1104";
5966
            this.btnConstruction1104.Size = new System.Drawing.Size(189, 30);
5966
            this.btnConstruction1104.Size = new System.Drawing.Size(192, 30);
5967 5967
            this.btnConstruction1104.TabIndex = 15;
5968 5968
            this.btnConstruction1104.UseVisualStyleBackColor = true;
5969 5969
            this.btnConstruction1104.Click += new System.EventHandler(this.btnConstruction_Click);
......
5976 5976
            this.lblConstr1102.AutoSize = true;
5977 5977
            this.lblConstr1102.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5978 5978
            this.lblConstr1102.ForeColor = System.Drawing.Color.Brown;
5979
            this.lblConstr1102.Location = new System.Drawing.Point(105, 1080);
5979
            this.lblConstr1102.Location = new System.Drawing.Point(107, 1080);
5980 5980
            this.lblConstr1102.Name = "lblConstr1102";
5981
            this.lblConstr1102.Size = new System.Drawing.Size(188, 36);
5981
            this.lblConstr1102.Size = new System.Drawing.Size(191, 36);
5982 5982
            this.lblConstr1102.TabIndex = 15;
5983 5983
            this.lblConstr1102.Text = "※毎月5日必着\r\n確認は8日まで";
5984 5984
            this.lblConstr1102.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5991 5991
            this.lblConstr1103.AutoSize = true;
5992 5992
            this.lblConstr1103.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5993 5993
            this.lblConstr1103.ForeColor = System.Drawing.Color.Brown;
5994
            this.lblConstr1103.Location = new System.Drawing.Point(316, 1080);
5994
            this.lblConstr1103.Location = new System.Drawing.Point(321, 1080);
5995 5995
            this.lblConstr1103.Name = "lblConstr1103";
5996
            this.lblConstr1103.Size = new System.Drawing.Size(188, 36);
5996
            this.lblConstr1103.Size = new System.Drawing.Size(191, 36);
5997 5997
            this.lblConstr1103.TabIndex = 15;
5998 5998
            this.lblConstr1103.Text = "※毎月5日必着\r\n確認は15日まで";
5999 5999
            this.lblConstr1103.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6005 6005
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine04, 10);
6006 6006
            this.lblConstrLine04.Location = new System.Drawing.Point(3, 1131);
6007 6007
            this.lblConstrLine04.Name = "lblConstrLine04";
6008
            this.lblConstrLine04.Size = new System.Drawing.Size(1137, 6);
6008
            this.lblConstrLine04.Size = new System.Drawing.Size(1154, 6);
6009 6009
            this.lblConstrLine04.TabIndex = 15;
6010 6010
            // 
6011 6011
            // lblConstrTitle05
......
6015 6015
            | System.Windows.Forms.AnchorStyles.Right)));
6016 6016
            this.lblConstrTitle05.AutoSize = true;
6017 6017
            this.lblConstrTitle05.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6018
            this.lblConstrTitle05.Location = new System.Drawing.Point(105, 1152);
6018
            this.lblConstrTitle05.Location = new System.Drawing.Point(107, 1152);
6019 6019
            this.lblConstrTitle05.Name = "lblConstrTitle05";
6020
            this.lblConstrTitle05.Size = new System.Drawing.Size(188, 36);
6020
            this.lblConstrTitle05.Size = new System.Drawing.Size(191, 36);
6021 6021
            this.lblConstrTitle05.TabIndex = 15;
6022 6022
            this.lblConstrTitle05.Text = "その他管理";
6023 6023
            this.lblConstrTitle05.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6031 6031
            this.lblConstr12.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6032 6032
            this.lblConstr12.Location = new System.Drawing.Point(3, 1188);
6033 6033
            this.lblConstr12.Name = "lblConstr12";
6034
            this.lblConstr12.Size = new System.Drawing.Size(96, 36);
6034
            this.lblConstr12.Size = new System.Drawing.Size(98, 36);
6035 6035
            this.lblConstr12.TabIndex = 15;
6036 6036
            this.lblConstr12.Text = "適時";
6037 6037
            this.lblConstr12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6039 6039
            // btnConstruction1200
6040 6040
            // 
6041 6041
            this.btnConstruction1200.Dock = System.Windows.Forms.DockStyle.Fill;
6042
            this.btnConstruction1200.Location = new System.Drawing.Point(106, 1191);
6042
            this.btnConstruction1200.Location = new System.Drawing.Point(108, 1191);
6043 6043
            this.btnConstruction1200.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6044 6044
            this.btnConstruction1200.Name = "btnConstruction1200";
6045
            this.btnConstruction1200.Size = new System.Drawing.Size(186, 30);
6045
            this.btnConstruction1200.Size = new System.Drawing.Size(189, 30);
6046 6046
            this.btnConstruction1200.TabIndex = 15;
6047 6047
            this.btnConstruction1200.Text = "出納帳入力";
6048 6048
            this.btnConstruction1200.UseVisualStyleBackColor = true;
......
6051 6051
            // btnConstruction1201
6052 6052
            // 
6053 6053
            this.btnConstruction1201.Dock = System.Windows.Forms.DockStyle.Fill;
6054
            this.btnConstruction1201.Location = new System.Drawing.Point(317, 1191);
6054
            this.btnConstruction1201.Location = new System.Drawing.Point(322, 1191);
6055 6055
            this.btnConstruction1201.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6056 6056
            this.btnConstruction1201.Name = "btnConstruction1201";
6057
            this.btnConstruction1201.Size = new System.Drawing.Size(186, 30);
6057
            this.btnConstruction1201.Size = new System.Drawing.Size(189, 30);
6058 6058
            this.btnConstruction1201.TabIndex = 15;
6059 6059
            this.btnConstruction1201.UseVisualStyleBackColor = true;
6060 6060
            this.btnConstruction1201.Click += new System.EventHandler(this.btnConstruction_Click);
......
6062 6062
            // btnConstruction1202
6063 6063
            // 
6064 6064
            this.btnConstruction1202.Dock = System.Windows.Forms.DockStyle.Fill;
6065
            this.btnConstruction1202.Location = new System.Drawing.Point(528, 1191);
6065
            this.btnConstruction1202.Location = new System.Drawing.Point(536, 1191);
6066 6066
            this.btnConstruction1202.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6067 6067
            this.btnConstruction1202.Name = "btnConstruction1202";
6068
            this.btnConstruction1202.Size = new System.Drawing.Size(186, 30);
6068
            this.btnConstruction1202.Size = new System.Drawing.Size(189, 30);
6069 6069
            this.btnConstruction1202.TabIndex = 15;
6070 6070
            this.btnConstruction1202.UseVisualStyleBackColor = true;
6071 6071
            this.btnConstruction1202.Click += new System.EventHandler(this.btnConstruction_Click);
......
6073 6073
            // btnConstruction1203
6074 6074
            // 
6075 6075
            this.btnConstruction1203.Dock = System.Windows.Forms.DockStyle.Fill;
6076
            this.btnConstruction1203.Location = new System.Drawing.Point(739, 1191);
6076
            this.btnConstruction1203.Location = new System.Drawing.Point(750, 1191);
6077 6077
            this.btnConstruction1203.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6078 6078
            this.btnConstruction1203.Name = "btnConstruction1203";
6079
            this.btnConstruction1203.Size = new System.Drawing.Size(186, 30);
6079
            this.btnConstruction1203.Size = new System.Drawing.Size(189, 30);
6080 6080
            this.btnConstruction1203.TabIndex = 15;
6081 6081
            this.btnConstruction1203.UseVisualStyleBackColor = true;
6082 6082
            this.btnConstruction1203.Click += new System.EventHandler(this.btnConstruction_Click);
......
6084 6084
            // btnConstruction1204
6085 6085
            // 
6086 6086
            this.btnConstruction1204.Dock = System.Windows.Forms.DockStyle.Fill;
6087
            this.btnConstruction1204.Location = new System.Drawing.Point(950, 1191);
6087
            this.btnConstruction1204.Location = new System.Drawing.Point(964, 1191);
6088 6088
            this.btnConstruction1204.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6089 6089
            this.btnConstruction1204.Name = "btnConstruction1204";
6090
            this.btnConstruction1204.Size = new System.Drawing.Size(189, 30);
6090
            this.btnConstruction1204.Size = new System.Drawing.Size(192, 30);
6091 6091
            this.btnConstruction1204.TabIndex = 15;
6092 6092
            this.btnConstruction1204.UseVisualStyleBackColor = true;
6093 6093
            this.btnConstruction1204.Click += new System.EventHandler(this.btnConstruction_Click);
......
6101 6101
            this.lblConstr10.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6102 6102
            this.lblConstr10.Location = new System.Drawing.Point(3, 900);
6103 6103
            this.lblConstr10.Name = "lblConstr10";
6104
            this.lblConstr10.Size = new System.Drawing.Size(96, 36);
6104
            this.lblConstr10.Size = new System.Drawing.Size(98, 36);
6105 6105
            this.lblConstr10.TabIndex = 15;
6106 6106
            this.lblConstr10.Text = "完了後";
6107 6107
            this.lblConstr10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6115 6115
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0102, 5);
6116 6116
            this.lblConstr0102.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6117 6117
            this.lblConstr0102.ForeColor = System.Drawing.Color.Brown;
6118
            this.lblConstr0102.Location = new System.Drawing.Point(527, 144);
6118
            this.lblConstr0102.Location = new System.Drawing.Point(535, 144);
6119 6119
            this.lblConstr0102.Name = "lblConstr0102";
6120
            this.lblConstr0102.Size = new System.Drawing.Size(613, 36);
6120
            this.lblConstr0102.Size = new System.Drawing.Size(622, 36);
6121 6121
            this.lblConstr0102.TabIndex = 15;
6122 6122
            this.lblConstr0102.Text = "※該当項目は毎日記入すること。";
6123 6123
            this.lblConstr0102.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6131 6131
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0202, 5);
6132 6132
            this.lblConstr0202.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6133 6133
            this.lblConstr0202.ForeColor = System.Drawing.Color.Brown;
6134
            this.lblConstr0202.Location = new System.Drawing.Point(527, 216);
6134
            this.lblConstr0202.Location = new System.Drawing.Point(535, 216);
6135 6135
            this.lblConstr0202.Name = "lblConstr0202";
6136
            this.lblConstr0202.Size = new System.Drawing.Size(613, 36);
6136
            this.lblConstr0202.Size = new System.Drawing.Size(622, 36);
6137 6137
            this.lblConstr0202.TabIndex = 15;
6138 6138
            this.lblConstr0202.Text = "※資材項目は貸出・返却時に毎回記入すること。";
6139 6139
            this.lblConstr0202.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6147 6147
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0502, 5);
6148 6148
            this.lblConstr0502.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6149 6149
            this.lblConstr0502.ForeColor = System.Drawing.Color.Brown;
6150
            this.lblConstr0502.Location = new System.Drawing.Point(527, 504);
6150
            this.lblConstr0502.Location = new System.Drawing.Point(535, 504);
6151 6151
            this.lblConstr0502.Name = "lblConstr0502";
6152
            this.lblConstr0502.Size = new System.Drawing.Size(613, 36);
6152
            this.lblConstr0502.Size = new System.Drawing.Size(622, 36);
6153 6153
            this.lblConstr0502.TabIndex = 15;
6154 6154
            this.lblConstr0502.Text = "※上記項目は施工開始までに作成すること。";
6155 6155
            this.lblConstr0502.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6163 6163
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0602, 5);
6164 6164
            this.lblConstr0602.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6165 6165
            this.lblConstr0602.ForeColor = System.Drawing.Color.Brown;
6166
            this.lblConstr0602.Location = new System.Drawing.Point(527, 576);
6166
            this.lblConstr0602.Location = new System.Drawing.Point(535, 576);
6167 6167
            this.lblConstr0602.Name = "lblConstr0602";
6168
            this.lblConstr0602.Size = new System.Drawing.Size(613, 36);
6168
            this.lblConstr0602.Size = new System.Drawing.Size(622, 36);
6169 6169
            this.lblConstr0602.TabIndex = 15;
6170 6170
            this.lblConstr0602.Text = "※上記項目は各工種の全体施工中の施工前までに作成・提出すること。";
6171 6171
            this.lblConstr0602.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6179 6179
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0802, 5);
6180 6180
            this.lblConstr0802.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6181 6181
            this.lblConstr0802.ForeColor = System.Drawing.Color.Brown;
6182
            this.lblConstr0802.Location = new System.Drawing.Point(527, 720);
6182
            this.lblConstr0802.Location = new System.Drawing.Point(535, 720);
6183 6183
            this.lblConstr0802.Name = "lblConstr0802";
6184
            this.lblConstr0802.Size = new System.Drawing.Size(613, 36);
6184
            this.lblConstr0802.Size = new System.Drawing.Size(622, 36);
6185 6185
            this.lblConstr0802.TabIndex = 15;
6186 6186
            this.lblConstr0802.Text = "※完成図書は契約工期内に再提出も含めて完了すること。";
6187 6187
            this.lblConstr0802.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6286 6286
            this.tblLayoutAffairs.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
6287 6287
            this.tblLayoutAffairs.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
6288 6288
            this.tblLayoutAffairs.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
6289
            this.tblLayoutAffairs.Size = new System.Drawing.Size(1143, 648);
6289
            this.tblLayoutAffairs.Size = new System.Drawing.Size(1160, 648);
6290 6290
            this.tblLayoutAffairs.TabIndex = 13;
6291 6291
            // 
6292 6292
            // btnAffairs0000
......
6294 6294
            this.btnAffairs0000.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6295 6295
            | System.Windows.Forms.AnchorStyles.Left) 
6296 6296
            | System.Windows.Forms.AnchorStyles.Right)));
6297
            this.btnAffairs0000.Location = new System.Drawing.Point(106, 39);
6297
            this.btnAffairs0000.Location = new System.Drawing.Point(108, 39);
6298 6298
            this.btnAffairs0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6299 6299
            this.btnAffairs0000.Name = "btnAffairs0000";
6300
            this.btnAffairs0000.Size = new System.Drawing.Size(186, 30);
6300
            this.btnAffairs0000.Size = new System.Drawing.Size(189, 30);
6301 6301
            this.btnAffairs0000.TabIndex = 0;
6302 6302
            this.btnAffairs0000.Text = "行動予定入力";
6303 6303
            this.btnAffairs0000.UseVisualStyleBackColor = true;
......
6308 6308
            this.btnAffairs0001.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6309 6309
            | System.Windows.Forms.AnchorStyles.Left) 
6310 6310
            | System.Windows.Forms.AnchorStyles.Right)));
6311
            this.btnAffairs0001.Location = new System.Drawing.Point(317, 39);
6311
            this.btnAffairs0001.Location = new System.Drawing.Point(322, 39);
6312 6312
            this.btnAffairs0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6313 6313
            this.btnAffairs0001.Name = "btnAffairs0001";
6314
            this.btnAffairs0001.Size = new System.Drawing.Size(186, 30);
6314
            this.btnAffairs0001.Size = new System.Drawing.Size(189, 30);
6315 6315
            this.btnAffairs0001.TabIndex = 0;
6316 6316
            this.btnAffairs0001.Text = "車両予約";
6317 6317
            this.btnAffairs0001.UseVisualStyleBackColor = true;
......
6324 6324
            | System.Windows.Forms.AnchorStyles.Right)));
6325 6325
            this.lblAffairsTitle01.AutoSize = true;
6326 6326
            this.lblAffairsTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6327
            this.lblAffairsTitle01.Location = new System.Drawing.Point(105, 0);
6327
            this.lblAffairsTitle01.Location = new System.Drawing.Point(107, 0);
6328 6328
            this.lblAffairsTitle01.Name = "lblAffairsTitle01";
6329
            this.lblAffairsTitle01.Size = new System.Drawing.Size(188, 36);
6329
            this.lblAffairsTitle01.Size = new System.Drawing.Size(191, 36);
6330 6330
            this.lblAffairsTitle01.TabIndex = 18;
6331 6331
            this.lblAffairsTitle01.Text = "日次管理";
6332 6332
            this.lblAffairsTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6336 6336
            this.btnAffairs0002.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6337 6337
            | System.Windows.Forms.AnchorStyles.Left) 
6338 6338
            | System.Windows.Forms.AnchorStyles.Right)));
6339
            this.btnAffairs0002.Location = new System.Drawing.Point(528, 39);
6339
            this.btnAffairs0002.Location = new System.Drawing.Point(536, 39);
6340 6340
            this.btnAffairs0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6341 6341
            this.btnAffairs0002.Name = "btnAffairs0002";
6342
            this.btnAffairs0002.Size = new System.Drawing.Size(186, 30);
6342
            this.btnAffairs0002.Size = new System.Drawing.Size(189, 30);
6343 6343
            this.btnAffairs0002.TabIndex = 0;
6344 6344
            this.btnAffairs0002.UseVisualStyleBackColor = true;
6345 6345
            this.btnAffairs0002.Click += new System.EventHandler(this.btnAffairs_Click);
......
6349 6349
            this.btnAffairs0003.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6350 6350
            | System.Windows.Forms.AnchorStyles.Left) 
6351 6351
            | System.Windows.Forms.AnchorStyles.Right)));
6352
            this.btnAffairs0003.Location = new System.Drawing.Point(739, 39);
6352
            this.btnAffairs0003.Location = new System.Drawing.Point(750, 39);
6353 6353
            this.btnAffairs0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6354 6354
            this.btnAffairs0003.Name = "btnAffairs0003";
6355
            this.btnAffairs0003.Size = new System.Drawing.Size(186, 30);
6355
            this.btnAffairs0003.Size = new System.Drawing.Size(189, 30);
6356 6356
            this.btnAffairs0003.TabIndex = 0;
6357 6357
            this.btnAffairs0003.UseVisualStyleBackColor = true;
6358 6358
            this.btnAffairs0003.Click += new System.EventHandler(this.btnAffairs_Click);
......
6362 6362
            this.btnAffairs0004.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

他の形式にエクスポート: Unified diff