プロジェクト

全般

プロフィール

リビジョン 157

堀内7年以上前に追加

工事承認バグフィックス(オーダー番号が違う行が続くと承認者名が表示されない)

差分を表示:

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsSystemOnceExecute.cs
538 538
                        if (wrkRec.JoinFlg == (int)CommonDefine.BaseInfoJoinFlg.JoinParent) continue;
539 539
                        // 結合工事の子は処理しない
540 540
                        if (wrkRec.JoinFlg == (int)CommonDefine.BaseInfoJoinFlg.JoinChildren) continue;
541
                        // チェック
542
                        if (!ConstructionStatusCheck(wrkRec, CriteriaDate, ref term))
541
                        // チェックOKならば次のデータ
542
                        if (ConstructionStatusCheck(wrkRec, CriteriaDate, ref term)) continue;
543
                     
544
                        // 掲示板にメッセージを載せるためにループ処理
545
                        foreach (TermMaster CurTerm in term)
543 546
                        {
544
                            // 掲示板にメッセージを載せるためにループ処理
545
                            foreach (TermMaster CurTerm in term)
546
                            {
547
                                // メッセージ作成
548
                                if (!MakeMassageData(mbdDB, mbtDB, cbiDDB, wrkRec, CurTerm, CriteriaDate))
549
                                {
550
                                    procflg = false;
551
                                    break;
552
                               }
547
                            // メッセージ作成
548
                            if (!MakeMassageData(mbdDB, mbtDB, cbiDDB, wrkRec, CurTerm, CriteriaDate))
549
                            {   // エラー時に抜ける
550
                                procflg = false;
551
                                break;
553 552
                            }
554 553
                        }
555 554
                        if (!procflg) break;
......
557 556
                    if (!procflg) break;
558 557
                }
559 558

  
560
                if (procflg)
559
                if (!procflg)
561 560
                {
562
                    cbiDB.commit();
563
                    cbiDDB.commit();
564
                    mbdDB.commit();
565
                    mbtDB.commit();
566
                }
567
                else
568
                {
569 561
                    cbiDB.rollback();
570 562
                    cbiDDB.rollback();
571 563
                    mbdDB.rollback();
......
581 573
            }
582 574
            finally
583 575
            {
576
                cbiDB.commit();
577
                cbiDDB.commit();
578
                mbdDB.commit();
579
                mbtDB.commit();
580

  
584 581
                cbiDB.close(); cbiDB = null;
585 582
                cbiDDB.close(); cbiDDB = null;
586 583
                mbdDB.close(); mbdDB = null;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/FrmConstructionBudgetAuxiliary.cs
2760 2760
                // ----- 全日振分
2761 2761
                // 工期取得
2762 2762
                BetweenTimes = CommonMotions.cnvDouble(m_DspLabelCtrl[(int)DspLblCtrlName.BetweenTimes].Text);
2763
                // 着工日
2764
                DateTime dtStart = CommonMotions.cnvDate(m_DspLabelCtrl[(int)DspLblCtrlName.StartingDate].Text);
2765
                // 完了日
2766
                DateTime dtLast = CommonMotions.cnvDate(m_DspLabelCtrl[(int)DspLblCtrlName.CompleteDate].Text);
2763
                int CalcBetweenTimes = CommonMotions.cnvTruncate(BetweenTimes + 0.99);
2764
                // 給与計算
2765
                CostsValue = CommonDefine.InstructorMonthryCost * CalcBetweenTimes;
2766
                // 構成比率
2767
                AmountConfigRate = (CostsValue / OrdersPrice) * 100.0;
2768
                if (AmountConfigRate < -999.00 || 999.00 < AmountConfigRate) AmountConfigRate = 0;
2767 2769

  
2768
                // 稼働日数取得
2769
                int workingCount = ClsCalendar.CalcPassedDaysCount(dtStart, dtLast);
2770
                // 支払い給与計算
2771
                CommonMotions.CalcPayValueData(CommonDefine.InstructorMonthryCost, OrdersPrice, workingCount, ref CostsValue, ref AmountConfigRate, false);
2772 2770
                // 給与コンテンツセット
2773
                Content = string.Format(CommonDefine.s_SalaryCostMonthlyFormat, BetweenTimes.ToString("0.00"), CommonDefine.InstructorMonthryCost.ToString("#,0"));
2771
                Content = string.Format(CommonDefine.s_SalaryCostMonthlyFormat, CostsValue.ToString("#,0"), CommonDefine.InstructorMonthryCost.ToString("#,0"));
2774 2772

  
2775 2773
                // 差分日付
2776 2774
                int dDiffDays = 0;
......
2803 2801
                        dDiffDays = CalcDifferenceDate(m_ConstructionBaseInfo.ConstructionPeriodStart,
2804 2802
                                                        m_ConstructionBaseInfo.ConstructionPeriodEnd);
2805 2803
                        // 支払い給与計算
2806
                        CommonMotions.CalcPayValueData(CommonDefine.InstructorMonthryCost, OrdersPrice, dDiffDays, ref CostsValue, ref AmountConfigRate, false);
2804
                        CostsValue = CommonDefine.InstructorMonthryCost * CalcBetweenTimes;
2805
                        // 構成比率
2806
                        AmountConfigRate = (CostsValue / OrdersPrice) * 100.0;
2807
                        if (AmountConfigRate < -999.00 || 999.00 < AmountConfigRate) AmountConfigRate = 0;
2807 2808
                        // 給与コンテンツセット
2808
                        Content = string.Format(CommonDefine.s_SalaryCostMonthlyFormat,
2809
                                                ClsCalendar.cnvMonthFromDays(dDiffDays).ToString("0.00"), CommonDefine.InstructorMonthryCost.ToString("#,0"));
2809
                        Content = string.Format(CommonDefine.s_SalaryCostMonthlyFormat, CostsValue.ToString("#,0"), CommonDefine.InstructorMonthryCost.ToString("#,0"));
2810 2810
                    }
2811 2811
                }
2812 2812

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/FrmConstructionLedgerListAuxiliary.cs
1913 1913

  
1914 1914
                string strSQL = "SELECT SUM(SAL.SALARY) FROM";
1915 1915
                strSQL += " (SELECT AX.hiduke,";
1916
                strSQL += string.Format(" ROUND((AX.salary * {0})/ {1}) AS SALARY,", CommonDefine.s_SalaryCorrection, CommonDefine.s_ManHourUnitMonth);
1916
                strSQL += string.Format(" ROUND((AX.salary * {0}) / DATE_FORMAT(LAST_DAY(AX.hiduke), '%d')) AS SALARY,", CommonDefine.s_SalaryCorrection);
1917 1917
                strSQL += " MAX(AX.StartD) FROM";
1918 1918
                strSQL += " (SELECT A.d hiduke, B.MonthlySalary salary, B.STARTDATE StartD FROM";
1919 1919

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DepExpenssList/FrmDepExpenssListAuxiliary.cs
1947 1947
                string strSQL = "SELECT SUM(SAL.SALARY) FROM";
1948 1948

  
1949 1949
                strSQL += " (SELECT AX.hiduke,";
1950
                strSQL += string.Format(" ROUND((AX.salary * {0})/ {1}) AS SALARY,", CommonDefine.s_SalaryCorrection, CommonDefine.s_ManHourUnitMonth);
1950
                strSQL += string.Format(" ROUND((AX.salary * {0}) / DATE_FORMAT(LAST_DAY(AX.hiduke), '%d')) AS SALARY,", CommonDefine.s_SalaryCorrection);
1951 1951
                strSQL += " MAX(AX.StartD) FROM";
1952 1952

  
1953 1953
                strSQL += " (SELECT A.d hiduke, B.MonthlySalary salary, B.STARTDATE StartD FROM";
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenu.Designer.cs
717 717
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
718 718
            this.timer_StaffAssign = new System.Windows.Forms.Timer(this.components);
719 719
            this.btnDataCopyE = new System.Windows.Forms.Button();
720
            this.btnAffairs0501 = new System.Windows.Forms.Button();
720 721
            this.tabMenu.SuspendLayout();
721 722
            this.tabPage1.SuspendLayout();
722 723
            ((System.ComponentModel.ISupportInitialize)(this.dgvBusinessMessage)).BeginInit();
......
5393 5394
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5394 5395
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5395 5396
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5396
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1160, 1224);
5397
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1143, 1224);
5397 5398
            this.tblLayoutConstruction.TabIndex = 15;
5398 5399
            // 
5399 5400
            // lblConstrLine01
......
5403 5404
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine01, 10);
5404 5405
            this.lblConstrLine01.Location = new System.Drawing.Point(3, 267);
5405 5406
            this.lblConstrLine01.Name = "lblConstrLine01";
5406
            this.lblConstrLine01.Size = new System.Drawing.Size(1154, 6);
5407
            this.lblConstrLine01.Size = new System.Drawing.Size(1137, 6);
5407 5408
            this.lblConstrLine01.TabIndex = 15;
5408 5409
            // 
5409 5410
            // btnConstruction0000
5410 5411
            // 
5411 5412
            this.btnConstruction0000.Dock = System.Windows.Forms.DockStyle.Fill;
5412
            this.btnConstruction0000.Location = new System.Drawing.Point(108, 39);
5413
            this.btnConstruction0000.Location = new System.Drawing.Point(106, 39);
5413 5414
            this.btnConstruction0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5414 5415
            this.btnConstruction0000.Name = "btnConstruction0000";
5415
            this.btnConstruction0000.Size = new System.Drawing.Size(189, 30);
5416
            this.btnConstruction0000.Size = new System.Drawing.Size(186, 30);
5416 5417
            this.btnConstruction0000.TabIndex = 15;
5417 5418
            this.btnConstruction0000.Text = "各工事詳細台帳閲覧";
5418 5419
            this.btnConstruction0000.UseVisualStyleBackColor = true;
......
5425 5426
            | System.Windows.Forms.AnchorStyles.Right)));
5426 5427
            this.lblConstrTitle01.AutoSize = true;
5427 5428
            this.lblConstrTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5428
            this.lblConstrTitle01.Location = new System.Drawing.Point(107, 0);
5429
            this.lblConstrTitle01.Location = new System.Drawing.Point(105, 0);
5429 5430
            this.lblConstrTitle01.Name = "lblConstrTitle01";
5430
            this.lblConstrTitle01.Size = new System.Drawing.Size(191, 36);
5431
            this.lblConstrTitle01.Size = new System.Drawing.Size(188, 36);
5431 5432
            this.lblConstrTitle01.TabIndex = 15;
5432 5433
            this.lblConstrTitle01.Text = "日次(施工)管理";
5433 5434
            this.lblConstrTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5441 5442
            this.lblConstr00.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5442 5443
            this.lblConstr00.Location = new System.Drawing.Point(3, 36);
5443 5444
            this.lblConstr00.Name = "lblConstr00";
5444
            this.lblConstr00.Size = new System.Drawing.Size(98, 36);
5445
            this.lblConstr00.Size = new System.Drawing.Size(96, 36);
5445 5446
            this.lblConstr00.TabIndex = 15;
5446 5447
            this.lblConstr00.Text = "毎日";
5447 5448
            this.lblConstr00.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5449 5450
            // btnConstruction0001
5450 5451
            // 
5451 5452
            this.btnConstruction0001.Dock = System.Windows.Forms.DockStyle.Fill;
5452
            this.btnConstruction0001.Location = new System.Drawing.Point(322, 39);
5453
            this.btnConstruction0001.Location = new System.Drawing.Point(317, 39);
5453 5454
            this.btnConstruction0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5454 5455
            this.btnConstruction0001.Name = "btnConstruction0001";
5455
            this.btnConstruction0001.Size = new System.Drawing.Size(189, 30);
5456
            this.btnConstruction0001.Size = new System.Drawing.Size(186, 30);
5456 5457
            this.btnConstruction0001.TabIndex = 15;
5457 5458
            this.btnConstruction0001.Text = "各工事日報";
5458 5459
            this.btnConstruction0001.UseVisualStyleBackColor = true;
......
5461 5462
            // btnConstruction0002
5462 5463
            // 
5463 5464
            this.btnConstruction0002.Dock = System.Windows.Forms.DockStyle.Fill;
5464
            this.btnConstruction0002.Location = new System.Drawing.Point(536, 39);
5465
            this.btnConstruction0002.Location = new System.Drawing.Point(528, 39);
5465 5466
            this.btnConstruction0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5466 5467
            this.btnConstruction0002.Name = "btnConstruction0002";
5467
            this.btnConstruction0002.Size = new System.Drawing.Size(189, 30);
5468
            this.btnConstruction0002.Size = new System.Drawing.Size(186, 30);
5468 5469
            this.btnConstruction0002.TabIndex = 15;
5469 5470
            this.btnConstruction0002.Text = "各工事打合わせ議事録";
5470 5471
            this.btnConstruction0002.UseVisualStyleBackColor = true;
......
5473 5474
            // btnConstruction0003
5474 5475
            // 
5475 5476
            this.btnConstruction0003.Dock = System.Windows.Forms.DockStyle.Fill;
5476
            this.btnConstruction0003.Location = new System.Drawing.Point(750, 39);
5477
            this.btnConstruction0003.Location = new System.Drawing.Point(739, 39);
5477 5478
            this.btnConstruction0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5478 5479
            this.btnConstruction0003.Name = "btnConstruction0003";
5479
            this.btnConstruction0003.Size = new System.Drawing.Size(189, 30);
5480
            this.btnConstruction0003.Size = new System.Drawing.Size(186, 30);
5480 5481
            this.btnConstruction0003.TabIndex = 15;
5481 5482
            this.btnConstruction0003.Text = "各工事交通費・購入品入力";
5482 5483
            this.btnConstruction0003.UseVisualStyleBackColor = true;
......
5485 5486
            // btnConstruction0004
5486 5487
            // 
5487 5488
            this.btnConstruction0004.Dock = System.Windows.Forms.DockStyle.Fill;
5488
            this.btnConstruction0004.Location = new System.Drawing.Point(964, 39);
5489
            this.btnConstruction0004.Location = new System.Drawing.Point(950, 39);
5489 5490
            this.btnConstruction0004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5490 5491
            this.btnConstruction0004.Name = "btnConstruction0004";
5491
            this.btnConstruction0004.Size = new System.Drawing.Size(192, 30);
5492
            this.btnConstruction0004.Size = new System.Drawing.Size(189, 30);
5492 5493
            this.btnConstruction0004.TabIndex = 15;
5493 5494
            this.btnConstruction0004.Text = "出勤管理";
5494 5495
            this.btnConstruction0004.UseVisualStyleBackColor = true;
......
5497 5498
            // btnConstruction0100
5498 5499
            // 
5499 5500
            this.btnConstruction0100.Dock = System.Windows.Forms.DockStyle.Fill;
5500
            this.btnConstruction0100.Location = new System.Drawing.Point(108, 111);
5501
            this.btnConstruction0100.Location = new System.Drawing.Point(106, 111);
5501 5502
            this.btnConstruction0100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5502 5503
            this.btnConstruction0100.Name = "btnConstruction0100";
5503
            this.btnConstruction0100.Size = new System.Drawing.Size(189, 30);
5504
            this.btnConstruction0100.Size = new System.Drawing.Size(186, 30);
5504 5505
            this.btnConstruction0100.TabIndex = 15;
5505 5506
            this.btnConstruction0100.Text = "行動予定入力";
5506 5507
            this.btnConstruction0100.UseVisualStyleBackColor = true;
......
5509 5510
            // btnConstruction0101
5510 5511
            // 
5511 5512
            this.btnConstruction0101.Dock = System.Windows.Forms.DockStyle.Fill;
5512
            this.btnConstruction0101.Location = new System.Drawing.Point(322, 111);
5513
            this.btnConstruction0101.Location = new System.Drawing.Point(317, 111);
5513 5514
            this.btnConstruction0101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5514 5515
            this.btnConstruction0101.Name = "btnConstruction0101";
5515
            this.btnConstruction0101.Size = new System.Drawing.Size(189, 30);
5516
            this.btnConstruction0101.Size = new System.Drawing.Size(186, 30);
5516 5517
            this.btnConstruction0101.TabIndex = 15;
5517 5518
            this.btnConstruction0101.Text = "車両予約";
5518 5519
            this.btnConstruction0101.UseVisualStyleBackColor = true;
......
5527 5528
            this.lblConstr01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5528 5529
            this.lblConstr01.Location = new System.Drawing.Point(3, 108);
5529 5530
            this.lblConstr01.Name = "lblConstr01";
5530
            this.lblConstr01.Size = new System.Drawing.Size(98, 36);
5531
            this.lblConstr01.Size = new System.Drawing.Size(96, 36);
5531 5532
            this.lblConstr01.TabIndex = 15;
5532 5533
            this.lblConstr01.Text = "毎日";
5533 5534
            this.lblConstr01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5535 5536
            // btnConstruction0102
5536 5537
            // 
5537 5538
            this.btnConstruction0102.Dock = System.Windows.Forms.DockStyle.Fill;
5538
            this.btnConstruction0102.Location = new System.Drawing.Point(536, 111);
5539
            this.btnConstruction0102.Location = new System.Drawing.Point(528, 111);
5539 5540
            this.btnConstruction0102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5540 5541
            this.btnConstruction0102.Name = "btnConstruction0102";
5541
            this.btnConstruction0102.Size = new System.Drawing.Size(189, 30);
5542
            this.btnConstruction0102.Size = new System.Drawing.Size(186, 30);
5542 5543
            this.btnConstruction0102.TabIndex = 15;
5543 5544
            this.btnConstruction0102.UseVisualStyleBackColor = true;
5544 5545
            this.btnConstruction0102.Click += new System.EventHandler(this.btnConstruction_Click);
......
5546 5547
            // btnConstruction0103
5547 5548
            // 
5548 5549
            this.btnConstruction0103.Dock = System.Windows.Forms.DockStyle.Fill;
5549
            this.btnConstruction0103.Location = new System.Drawing.Point(750, 111);
5550
            this.btnConstruction0103.Location = new System.Drawing.Point(739, 111);
5550 5551
            this.btnConstruction0103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5551 5552
            this.btnConstruction0103.Name = "btnConstruction0103";
5552
            this.btnConstruction0103.Size = new System.Drawing.Size(189, 30);
5553
            this.btnConstruction0103.Size = new System.Drawing.Size(186, 30);
5553 5554
            this.btnConstruction0103.TabIndex = 15;
5554 5555
            this.btnConstruction0103.UseVisualStyleBackColor = true;
5555 5556
            this.btnConstruction0103.Click += new System.EventHandler(this.btnConstruction_Click);
......
5557 5558
            // btnConstruction0104
5558 5559
            // 
5559 5560
            this.btnConstruction0104.Dock = System.Windows.Forms.DockStyle.Fill;
5560
            this.btnConstruction0104.Location = new System.Drawing.Point(964, 111);
5561
            this.btnConstruction0104.Location = new System.Drawing.Point(950, 111);
5561 5562
            this.btnConstruction0104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5562 5563
            this.btnConstruction0104.Name = "btnConstruction0104";
5563
            this.btnConstruction0104.Size = new System.Drawing.Size(192, 30);
5564
            this.btnConstruction0104.Size = new System.Drawing.Size(189, 30);
5564 5565
            this.btnConstruction0104.TabIndex = 15;
5565 5566
            this.btnConstruction0104.UseVisualStyleBackColor = true;
5566 5567
            this.btnConstruction0104.Click += new System.EventHandler(this.btnConstruction_Click);
......
5574 5575
            this.lblConstr02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5575 5576
            this.lblConstr02.Location = new System.Drawing.Point(3, 180);
5576 5577
            this.lblConstr02.Name = "lblConstr02";
5577
            this.lblConstr02.Size = new System.Drawing.Size(98, 36);
5578
            this.lblConstr02.Size = new System.Drawing.Size(96, 36);
5578 5579
            this.lblConstr02.TabIndex = 15;
5579 5580
            this.lblConstr02.Text = "毎回";
5580 5581
            this.lblConstr02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5582 5583
            // btnConstruction0200
5583 5584
            // 
5584 5585
            this.btnConstruction0200.Dock = System.Windows.Forms.DockStyle.Fill;
5585
            this.btnConstruction0200.Location = new System.Drawing.Point(108, 183);
5586
            this.btnConstruction0200.Location = new System.Drawing.Point(106, 183);
5586 5587
            this.btnConstruction0200.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5587 5588
            this.btnConstruction0200.Name = "btnConstruction0200";
5588
            this.btnConstruction0200.Size = new System.Drawing.Size(189, 30);
5589
            this.btnConstruction0200.Size = new System.Drawing.Size(186, 30);
5589 5590
            this.btnConstruction0200.TabIndex = 15;
5590 5591
            this.btnConstruction0200.Text = "資材一覧";
5591 5592
            this.btnConstruction0200.UseVisualStyleBackColor = true;
......
5594 5595
            // btnConstruction0201
5595 5596
            // 
5596 5597
            this.btnConstruction0201.Dock = System.Windows.Forms.DockStyle.Fill;
5597
            this.btnConstruction0201.Location = new System.Drawing.Point(322, 183);
5598
            this.btnConstruction0201.Location = new System.Drawing.Point(317, 183);
5598 5599
            this.btnConstruction0201.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5599 5600
            this.btnConstruction0201.Name = "btnConstruction0201";
5600
            this.btnConstruction0201.Size = new System.Drawing.Size(189, 30);
5601
            this.btnConstruction0201.Size = new System.Drawing.Size(186, 30);
5601 5602
            this.btnConstruction0201.TabIndex = 15;
5602 5603
            this.btnConstruction0201.Text = "資材貸出";
5603 5604
            this.btnConstruction0201.UseVisualStyleBackColor = true;
......
5606 5607
            // btnConstruction0202
5607 5608
            // 
5608 5609
            this.btnConstruction0202.Dock = System.Windows.Forms.DockStyle.Fill;
5609
            this.btnConstruction0202.Location = new System.Drawing.Point(536, 183);
5610
            this.btnConstruction0202.Location = new System.Drawing.Point(528, 183);
5610 5611
            this.btnConstruction0202.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5611 5612
            this.btnConstruction0202.Name = "btnConstruction0202";
5612
            this.btnConstruction0202.Size = new System.Drawing.Size(189, 30);
5613
            this.btnConstruction0202.Size = new System.Drawing.Size(186, 30);
5613 5614
            this.btnConstruction0202.TabIndex = 15;
5614 5615
            this.btnConstruction0202.Text = "資材返却";
5615 5616
            this.btnConstruction0202.UseVisualStyleBackColor = true;
......
5618 5619
            // btnConstruction0203
5619 5620
            // 
5620 5621
            this.btnConstruction0203.Dock = System.Windows.Forms.DockStyle.Fill;
5621
            this.btnConstruction0203.Location = new System.Drawing.Point(750, 183);
5622
            this.btnConstruction0203.Location = new System.Drawing.Point(739, 183);
5622 5623
            this.btnConstruction0203.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5623 5624
            this.btnConstruction0203.Name = "btnConstruction0203";
5624
            this.btnConstruction0203.Size = new System.Drawing.Size(189, 30);
5625
            this.btnConstruction0203.Size = new System.Drawing.Size(186, 30);
5625 5626
            this.btnConstruction0203.TabIndex = 15;
5626 5627
            this.btnConstruction0203.UseVisualStyleBackColor = true;
5627 5628
            this.btnConstruction0203.Click += new System.EventHandler(this.btnConstruction_Click);
......
5629 5630
            // btnConstruction0204
5630 5631
            // 
5631 5632
            this.btnConstruction0204.Dock = System.Windows.Forms.DockStyle.Fill;
5632
            this.btnConstruction0204.Location = new System.Drawing.Point(964, 183);
5633
            this.btnConstruction0204.Location = new System.Drawing.Point(950, 183);
5633 5634
            this.btnConstruction0204.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5634 5635
            this.btnConstruction0204.Name = "btnConstruction0204";
5635
            this.btnConstruction0204.Size = new System.Drawing.Size(192, 30);
5636
            this.btnConstruction0204.Size = new System.Drawing.Size(189, 30);
5636 5637
            this.btnConstruction0204.TabIndex = 15;
5637 5638
            this.btnConstruction0204.UseVisualStyleBackColor = true;
5638 5639
            this.btnConstruction0204.Click += new System.EventHandler(this.btnConstruction_Click);
......
5646 5647
            this.lblConstr03.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5647 5648
            this.lblConstr03.Location = new System.Drawing.Point(3, 324);
5648 5649
            this.lblConstr03.Name = "lblConstr03";
5649
            this.lblConstr03.Size = new System.Drawing.Size(98, 36);
5650
            this.lblConstr03.Size = new System.Drawing.Size(96, 36);
5650 5651
            this.lblConstr03.TabIndex = 15;
5651 5652
            this.lblConstr03.Text = "着工前";
5652 5653
            this.lblConstr03.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5658 5659
            | System.Windows.Forms.AnchorStyles.Right)));
5659 5660
            this.lblConstrTitle02.AutoSize = true;
5660 5661
            this.lblConstrTitle02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5661
            this.lblConstrTitle02.Location = new System.Drawing.Point(107, 288);
5662
            this.lblConstrTitle02.Location = new System.Drawing.Point(105, 288);
5662 5663
            this.lblConstrTitle02.Name = "lblConstrTitle02";
5663
            this.lblConstrTitle02.Size = new System.Drawing.Size(191, 36);
5664
            this.lblConstrTitle02.Size = new System.Drawing.Size(188, 36);
5664 5665
            this.lblConstrTitle02.TabIndex = 15;
5665 5666
            this.lblConstrTitle02.Text = "書類管理";
5666 5667
            this.lblConstrTitle02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5668 5669
            // btnConstruction0300
5669 5670
            // 
5670 5671
            this.btnConstruction0300.Dock = System.Windows.Forms.DockStyle.Fill;
5671
            this.btnConstruction0300.Location = new System.Drawing.Point(108, 327);
5672
            this.btnConstruction0300.Location = new System.Drawing.Point(106, 327);
5672 5673
            this.btnConstruction0300.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5673 5674
            this.btnConstruction0300.Name = "btnConstruction0300";
5674
            this.btnConstruction0300.Size = new System.Drawing.Size(189, 30);
5675
            this.btnConstruction0300.Size = new System.Drawing.Size(186, 30);
5675 5676
            this.btnConstruction0300.TabIndex = 15;
5676 5677
            this.btnConstruction0300.Text = "工事予算書作成";
5677 5678
            this.btnConstruction0300.UseVisualStyleBackColor = true;
......
5680 5681
            // btnConstruction0301
5681 5682
            // 
5682 5683
            this.btnConstruction0301.Dock = System.Windows.Forms.DockStyle.Fill;
5683
            this.btnConstruction0301.Location = new System.Drawing.Point(322, 327);
5684
            this.btnConstruction0301.Location = new System.Drawing.Point(317, 327);
5684 5685
            this.btnConstruction0301.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5685 5686
            this.btnConstruction0301.Name = "btnConstruction0301";
5686
            this.btnConstruction0301.Size = new System.Drawing.Size(189, 30);
5687
            this.btnConstruction0301.Size = new System.Drawing.Size(186, 30);
5687 5688
            this.btnConstruction0301.TabIndex = 15;
5688 5689
            this.btnConstruction0301.Text = "工事予算書承認";
5689 5690
            this.btnConstruction0301.UseVisualStyleBackColor = true;
......
5692 5693
            // btnConstruction0302
5693 5694
            // 
5694 5695
            this.btnConstruction0302.Dock = System.Windows.Forms.DockStyle.Fill;
5695
            this.btnConstruction0302.Location = new System.Drawing.Point(536, 327);
5696
            this.btnConstruction0302.Location = new System.Drawing.Point(528, 327);
5696 5697
            this.btnConstruction0302.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5697 5698
            this.btnConstruction0302.Name = "btnConstruction0302";
5698
            this.btnConstruction0302.Size = new System.Drawing.Size(189, 30);
5699
            this.btnConstruction0302.Size = new System.Drawing.Size(186, 30);
5699 5700
            this.btnConstruction0302.TabIndex = 15;
5700 5701
            this.btnConstruction0302.UseVisualStyleBackColor = true;
5701 5702
            this.btnConstruction0302.Click += new System.EventHandler(this.btnConstruction_Click);
......
5703 5704
            // btnConstruction0303
5704 5705
            // 
5705 5706
            this.btnConstruction0303.Dock = System.Windows.Forms.DockStyle.Fill;
5706
            this.btnConstruction0303.Location = new System.Drawing.Point(750, 327);
5707
            this.btnConstruction0303.Location = new System.Drawing.Point(739, 327);
5707 5708
            this.btnConstruction0303.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5708 5709
            this.btnConstruction0303.Name = "btnConstruction0303";
5709
            this.btnConstruction0303.Size = new System.Drawing.Size(189, 30);
5710
            this.btnConstruction0303.Size = new System.Drawing.Size(186, 30);
5710 5711
            this.btnConstruction0303.TabIndex = 15;
5711 5712
            this.btnConstruction0303.UseVisualStyleBackColor = true;
5712 5713
            this.btnConstruction0303.Click += new System.EventHandler(this.btnConstruction_Click);
......
5714 5715
            // btnConstruction0304
5715 5716
            // 
5716 5717
            this.btnConstruction0304.Dock = System.Windows.Forms.DockStyle.Fill;
5717
            this.btnConstruction0304.Location = new System.Drawing.Point(964, 327);
5718
            this.btnConstruction0304.Location = new System.Drawing.Point(950, 327);
5718 5719
            this.btnConstruction0304.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5719 5720
            this.btnConstruction0304.Name = "btnConstruction0304";
5720
            this.btnConstruction0304.Size = new System.Drawing.Size(192, 30);
5721
            this.btnConstruction0304.Size = new System.Drawing.Size(189, 30);
5721 5722
            this.btnConstruction0304.TabIndex = 15;
5722 5723
            this.btnConstruction0304.UseVisualStyleBackColor = true;
5723 5724
            this.btnConstruction0304.Click += new System.EventHandler(this.btnConstruction_Click);
......
5731 5732
            this.lblConstr04.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5732 5733
            this.lblConstr04.Location = new System.Drawing.Point(3, 396);
5733 5734
            this.lblConstr04.Name = "lblConstr04";
5734
            this.lblConstr04.Size = new System.Drawing.Size(98, 36);
5735
            this.lblConstr04.Size = new System.Drawing.Size(96, 36);
5735 5736
            this.lblConstr04.TabIndex = 15;
5736 5737
            this.lblConstr04.Text = "着工前";
5737 5738
            this.lblConstr04.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5739 5740
            // btnConstruction0400
5740 5741
            // 
5741 5742
            this.btnConstruction0400.Dock = System.Windows.Forms.DockStyle.Fill;
5742
            this.btnConstruction0400.Location = new System.Drawing.Point(108, 399);
5743
            this.btnConstruction0400.Location = new System.Drawing.Point(106, 399);
5743 5744
            this.btnConstruction0400.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5744 5745
            this.btnConstruction0400.Name = "btnConstruction0400";
5745
            this.btnConstruction0400.Size = new System.Drawing.Size(189, 30);
5746
            this.btnConstruction0400.Size = new System.Drawing.Size(186, 30);
5746 5747
            this.btnConstruction0400.TabIndex = 15;
5747 5748
            this.btnConstruction0400.Text = "注文書作成";
5748 5749
            this.btnConstruction0400.UseVisualStyleBackColor = true;
......
5751 5752
            // btnConstruction0401
5752 5753
            // 
5753 5754
            this.btnConstruction0401.Dock = System.Windows.Forms.DockStyle.Fill;
5754
            this.btnConstruction0401.Location = new System.Drawing.Point(322, 399);
5755
            this.btnConstruction0401.Location = new System.Drawing.Point(317, 399);
5755 5756
            this.btnConstruction0401.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5756 5757
            this.btnConstruction0401.Name = "btnConstruction0401";
5757
            this.btnConstruction0401.Size = new System.Drawing.Size(189, 30);
5758
            this.btnConstruction0401.Size = new System.Drawing.Size(186, 30);
5758 5759
            this.btnConstruction0401.TabIndex = 15;
5759 5760
            this.btnConstruction0401.Text = "注文書承認";
5760 5761
            this.btnConstruction0401.UseVisualStyleBackColor = true;
......
5763 5764
            // btnConstruction0402
5764 5765
            // 
5765 5766
            this.btnConstruction0402.Dock = System.Windows.Forms.DockStyle.Fill;
5766
            this.btnConstruction0402.Location = new System.Drawing.Point(536, 399);
5767
            this.btnConstruction0402.Location = new System.Drawing.Point(528, 399);
5767 5768
            this.btnConstruction0402.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5768 5769
            this.btnConstruction0402.Name = "btnConstruction0402";
5769
            this.btnConstruction0402.Size = new System.Drawing.Size(189, 30);
5770
            this.btnConstruction0402.Size = new System.Drawing.Size(186, 30);
5770 5771
            this.btnConstruction0402.TabIndex = 15;
5771 5772
            this.btnConstruction0402.Text = "注文書状況確認";
5772 5773
            this.btnConstruction0402.UseVisualStyleBackColor = true;
......
5775 5776
            // btnConstruction0403
5776 5777
            // 
5777 5778
            this.btnConstruction0403.Dock = System.Windows.Forms.DockStyle.Fill;
5778
            this.btnConstruction0403.Location = new System.Drawing.Point(750, 399);
5779
            this.btnConstruction0403.Location = new System.Drawing.Point(739, 399);
5779 5780
            this.btnConstruction0403.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5780 5781
            this.btnConstruction0403.Name = "btnConstruction0403";
5781
            this.btnConstruction0403.Size = new System.Drawing.Size(189, 30);
5782
            this.btnConstruction0403.Size = new System.Drawing.Size(186, 30);
5782 5783
            this.btnConstruction0403.TabIndex = 15;
5783 5784
            this.btnConstruction0403.UseVisualStyleBackColor = true;
5784 5785
            this.btnConstruction0403.Click += new System.EventHandler(this.btnConstruction_Click);
......
5786 5787
            // btnConstruction0404
5787 5788
            // 
5788 5789
            this.btnConstruction0404.Dock = System.Windows.Forms.DockStyle.Fill;
5789
            this.btnConstruction0404.Location = new System.Drawing.Point(964, 399);
5790
            this.btnConstruction0404.Location = new System.Drawing.Point(950, 399);
5790 5791
            this.btnConstruction0404.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5791 5792
            this.btnConstruction0404.Name = "btnConstruction0404";
5792
            this.btnConstruction0404.Size = new System.Drawing.Size(192, 30);
5793
            this.btnConstruction0404.Size = new System.Drawing.Size(189, 30);
5793 5794
            this.btnConstruction0404.TabIndex = 15;
5794 5795
            this.btnConstruction0404.UseVisualStyleBackColor = true;
5795 5796
            this.btnConstruction0404.Click += new System.EventHandler(this.btnConstruction_Click);
......
5803 5804
            this.lblConstr05.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5804 5805
            this.lblConstr05.Location = new System.Drawing.Point(3, 468);
5805 5806
            this.lblConstr05.Name = "lblConstr05";
5806
            this.lblConstr05.Size = new System.Drawing.Size(98, 36);
5807
            this.lblConstr05.Size = new System.Drawing.Size(96, 36);
5807 5808
            this.lblConstr05.TabIndex = 15;
5808 5809
            this.lblConstr05.Text = "着工前";
5809 5810
            this.lblConstr05.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5811 5812
            // btnConstruction0500
5812 5813
            // 
5813 5814
            this.btnConstruction0500.Dock = System.Windows.Forms.DockStyle.Fill;
5814
            this.btnConstruction0500.Location = new System.Drawing.Point(108, 471);
5815
            this.btnConstruction0500.Location = new System.Drawing.Point(106, 471);
5815 5816
            this.btnConstruction0500.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5816 5817
            this.btnConstruction0500.Name = "btnConstruction0500";
5817
            this.btnConstruction0500.Size = new System.Drawing.Size(189, 30);
5818
            this.btnConstruction0500.Size = new System.Drawing.Size(186, 30);
5818 5819
            this.btnConstruction0500.TabIndex = 15;
5819 5820
            this.btnConstruction0500.Text = "工程表作成・印刷";
5820 5821
            this.btnConstruction0500.UseVisualStyleBackColor = true;
......
5823 5824
            // btnConstruction0501
5824 5825
            // 
5825 5826
            this.btnConstruction0501.Dock = System.Windows.Forms.DockStyle.Fill;
5826
            this.btnConstruction0501.Location = new System.Drawing.Point(322, 471);
5827
            this.btnConstruction0501.Location = new System.Drawing.Point(317, 471);
5827 5828
            this.btnConstruction0501.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5828 5829
            this.btnConstruction0501.Name = "btnConstruction0501";
5829
            this.btnConstruction0501.Size = new System.Drawing.Size(189, 30);
5830
            this.btnConstruction0501.Size = new System.Drawing.Size(186, 30);
5830 5831
            this.btnConstruction0501.TabIndex = 15;
5831 5832
            this.btnConstruction0501.Text = "施工計画書作成・印刷";
5832 5833
            this.btnConstruction0501.UseVisualStyleBackColor = true;
......
5835 5836
            // btnConstruction0502
5836 5837
            // 
5837 5838
            this.btnConstruction0502.Dock = System.Windows.Forms.DockStyle.Fill;
5838
            this.btnConstruction0502.Location = new System.Drawing.Point(536, 471);
5839
            this.btnConstruction0502.Location = new System.Drawing.Point(528, 471);
5839 5840
            this.btnConstruction0502.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5840 5841
            this.btnConstruction0502.Name = "btnConstruction0502";
5841
            this.btnConstruction0502.Size = new System.Drawing.Size(189, 30);
5842
            this.btnConstruction0502.Size = new System.Drawing.Size(186, 30);
5842 5843
            this.btnConstruction0502.TabIndex = 15;
5843 5844
            this.btnConstruction0502.Text = "施工体制台帳作成・印刷";
5844 5845
            this.btnConstruction0502.UseVisualStyleBackColor = true;
......
5847 5848
            // btnConstruction0503
5848 5849
            // 
5849 5850
            this.btnConstruction0503.Dock = System.Windows.Forms.DockStyle.Fill;
5850
            this.btnConstruction0503.Location = new System.Drawing.Point(750, 471);
5851
            this.btnConstruction0503.Location = new System.Drawing.Point(739, 471);
5851 5852
            this.btnConstruction0503.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5852 5853
            this.btnConstruction0503.Name = "btnConstruction0503";
5853
            this.btnConstruction0503.Size = new System.Drawing.Size(189, 30);
5854
            this.btnConstruction0503.Size = new System.Drawing.Size(186, 30);
5854 5855
            this.btnConstruction0503.TabIndex = 15;
5855 5856
            this.btnConstruction0503.UseVisualStyleBackColor = true;
5856 5857
            this.btnConstruction0503.Click += new System.EventHandler(this.btnConstruction_Click);
......
5858 5859
            // btnConstruction0504
5859 5860
            // 
5860 5861
            this.btnConstruction0504.Dock = System.Windows.Forms.DockStyle.Fill;
5861
            this.btnConstruction0504.Location = new System.Drawing.Point(964, 471);
5862
            this.btnConstruction0504.Location = new System.Drawing.Point(950, 471);
5862 5863
            this.btnConstruction0504.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5863 5864
            this.btnConstruction0504.Name = "btnConstruction0504";
5864
            this.btnConstruction0504.Size = new System.Drawing.Size(192, 30);
5865
            this.btnConstruction0504.Size = new System.Drawing.Size(189, 30);
5865 5866
            this.btnConstruction0504.TabIndex = 15;
5866 5867
            this.btnConstruction0504.UseVisualStyleBackColor = true;
5867 5868
            this.btnConstruction0504.Click += new System.EventHandler(this.btnConstruction_Click);
......
5875 5876
            this.lblConstr06.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5876 5877
            this.lblConstr06.Location = new System.Drawing.Point(3, 540);
5877 5878
            this.lblConstr06.Name = "lblConstr06";
5878
            this.lblConstr06.Size = new System.Drawing.Size(98, 36);
5879
            this.lblConstr06.Size = new System.Drawing.Size(96, 36);
5879 5880
            this.lblConstr06.TabIndex = 15;
5880 5881
            this.lblConstr06.Text = "着工前・中";
5881 5882
            this.lblConstr06.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5883 5884
            // btnConstruction0600
5884 5885
            // 
5885 5886
            this.btnConstruction0600.Dock = System.Windows.Forms.DockStyle.Fill;
5886
            this.btnConstruction0600.Location = new System.Drawing.Point(108, 543);
5887
            this.btnConstruction0600.Location = new System.Drawing.Point(106, 543);
5887 5888
            this.btnConstruction0600.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5888 5889
            this.btnConstruction0600.Name = "btnConstruction0600";
5889
            this.btnConstruction0600.Size = new System.Drawing.Size(189, 30);
5890
            this.btnConstruction0600.Size = new System.Drawing.Size(186, 30);
5890 5891
            this.btnConstruction0600.TabIndex = 15;
5891 5892
            this.btnConstruction0600.Text = "工事施工図承諾願い";
5892 5893
            this.btnConstruction0600.UseVisualStyleBackColor = true;
......
5895 5896
            // btnConstruction0601
5896 5897
            // 
5897 5898
            this.btnConstruction0601.Dock = System.Windows.Forms.DockStyle.Fill;
5898
            this.btnConstruction0601.Location = new System.Drawing.Point(322, 543);
5899
            this.btnConstruction0601.Location = new System.Drawing.Point(317, 543);
5899 5900
            this.btnConstruction0601.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5900 5901
            this.btnConstruction0601.Name = "btnConstruction0601";
5901
            this.btnConstruction0601.Size = new System.Drawing.Size(189, 30);
5902
            this.btnConstruction0601.Size = new System.Drawing.Size(186, 30);
5902 5903
            this.btnConstruction0601.TabIndex = 15;
5903 5904
            this.btnConstruction0601.Text = "工事使用材料承諾願い";
5904 5905
            this.btnConstruction0601.UseVisualStyleBackColor = true;
......
5907 5908
            // btnConstruction0602
5908 5909
            // 
5909 5910
            this.btnConstruction0602.Dock = System.Windows.Forms.DockStyle.Fill;
5910
            this.btnConstruction0602.Location = new System.Drawing.Point(536, 543);
5911
            this.btnConstruction0602.Location = new System.Drawing.Point(528, 543);
5911 5912
            this.btnConstruction0602.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5912 5913
            this.btnConstruction0602.Name = "btnConstruction0602";
5913
            this.btnConstruction0602.Size = new System.Drawing.Size(189, 30);
5914
            this.btnConstruction0602.Size = new System.Drawing.Size(186, 30);
5914 5915
            this.btnConstruction0602.TabIndex = 15;
5915 5916
            this.btnConstruction0602.Text = "安全パトロール申請";
5916 5917
            this.btnConstruction0602.UseVisualStyleBackColor = true;
......
5919 5920
            // btnConstruction0603
5920 5921
            // 
5921 5922
            this.btnConstruction0603.Dock = System.Windows.Forms.DockStyle.Fill;
5922
            this.btnConstruction0603.Location = new System.Drawing.Point(750, 543);
5923
            this.btnConstruction0603.Location = new System.Drawing.Point(739, 543);
5923 5924
            this.btnConstruction0603.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5924 5925
            this.btnConstruction0603.Name = "btnConstruction0603";
5925
            this.btnConstruction0603.Size = new System.Drawing.Size(189, 30);
5926
            this.btnConstruction0603.Size = new System.Drawing.Size(186, 30);
5926 5927
            this.btnConstruction0603.TabIndex = 15;
5927 5928
            this.btnConstruction0603.Text = "社内検査申請";
5928 5929
            this.btnConstruction0603.UseVisualStyleBackColor = true;
......
5931 5932
            // btnConstruction0604
5932 5933
            // 
5933 5934
            this.btnConstruction0604.Dock = System.Windows.Forms.DockStyle.Fill;
5934
            this.btnConstruction0604.Location = new System.Drawing.Point(964, 543);
5935
            this.btnConstruction0604.Location = new System.Drawing.Point(950, 543);
5935 5936
            this.btnConstruction0604.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5936 5937
            this.btnConstruction0604.Name = "btnConstruction0604";
5937
            this.btnConstruction0604.Size = new System.Drawing.Size(192, 30);
5938
            this.btnConstruction0604.Size = new System.Drawing.Size(189, 30);
5938 5939
            this.btnConstruction0604.TabIndex = 15;
5939 5940
            this.btnConstruction0604.UseVisualStyleBackColor = true;
5940 5941
            this.btnConstruction0604.Click += new System.EventHandler(this.btnConstruction_Click);
......
5942 5943
            // btnConstruction0700
5943 5944
            // 
5944 5945
            this.btnConstruction0700.Dock = System.Windows.Forms.DockStyle.Fill;
5945
            this.btnConstruction0700.Location = new System.Drawing.Point(108, 615);
5946
            this.btnConstruction0700.Location = new System.Drawing.Point(106, 615);
5946 5947
            this.btnConstruction0700.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5947 5948
            this.btnConstruction0700.Name = "btnConstruction0700";
5948
            this.btnConstruction0700.Size = new System.Drawing.Size(189, 30);
5949
            this.btnConstruction0700.Size = new System.Drawing.Size(186, 30);
5949 5950
            this.btnConstruction0700.TabIndex = 15;
5950 5951
            this.btnConstruction0700.UseVisualStyleBackColor = true;
5951 5952
            this.btnConstruction0700.Click += new System.EventHandler(this.btnConstruction_Click);
......
5953 5954
            // btnConstruction0701
5954 5955
            // 
5955 5956
            this.btnConstruction0701.Dock = System.Windows.Forms.DockStyle.Fill;
5956
            this.btnConstruction0701.Location = new System.Drawing.Point(322, 615);
5957
            this.btnConstruction0701.Location = new System.Drawing.Point(317, 615);
5957 5958
            this.btnConstruction0701.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5958 5959
            this.btnConstruction0701.Name = "btnConstruction0701";
5959
            this.btnConstruction0701.Size = new System.Drawing.Size(189, 30);
5960
            this.btnConstruction0701.Size = new System.Drawing.Size(186, 30);
5960 5961
            this.btnConstruction0701.TabIndex = 15;
5961 5962
            this.btnConstruction0701.UseVisualStyleBackColor = true;
5962 5963
            this.btnConstruction0701.Click += new System.EventHandler(this.btnConstruction_Click);
......
5964 5965
            // btnConstruction0702
5965 5966
            // 
5966 5967
            this.btnConstruction0702.Dock = System.Windows.Forms.DockStyle.Fill;
5967
            this.btnConstruction0702.Location = new System.Drawing.Point(536, 615);
5968
            this.btnConstruction0702.Location = new System.Drawing.Point(528, 615);
5968 5969
            this.btnConstruction0702.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5969 5970
            this.btnConstruction0702.Name = "btnConstruction0702";
5970
            this.btnConstruction0702.Size = new System.Drawing.Size(189, 30);
5971
            this.btnConstruction0702.Size = new System.Drawing.Size(186, 30);
5971 5972
            this.btnConstruction0702.TabIndex = 15;
5972 5973
            this.btnConstruction0702.UseVisualStyleBackColor = true;
5973 5974
            this.btnConstruction0702.Click += new System.EventHandler(this.btnConstruction_Click);
......
5975 5976
            // btnConstruction0703
5976 5977
            // 
5977 5978
            this.btnConstruction0703.Dock = System.Windows.Forms.DockStyle.Fill;
5978
            this.btnConstruction0703.Location = new System.Drawing.Point(750, 615);
5979
            this.btnConstruction0703.Location = new System.Drawing.Point(739, 615);
5979 5980
            this.btnConstruction0703.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5980 5981
            this.btnConstruction0703.Name = "btnConstruction0703";
5981
            this.btnConstruction0703.Size = new System.Drawing.Size(189, 30);
5982
            this.btnConstruction0703.Size = new System.Drawing.Size(186, 30);
5982 5983
            this.btnConstruction0703.TabIndex = 15;
5983 5984
            this.btnConstruction0703.UseVisualStyleBackColor = true;
5984 5985
            this.btnConstruction0703.Click += new System.EventHandler(this.btnConstruction_Click);
......
5986 5987
            // btnConstruction0704
5987 5988
            // 
5988 5989
            this.btnConstruction0704.Dock = System.Windows.Forms.DockStyle.Fill;
5989
            this.btnConstruction0704.Location = new System.Drawing.Point(964, 615);
5990
            this.btnConstruction0704.Location = new System.Drawing.Point(950, 615);
5990 5991
            this.btnConstruction0704.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5991 5992
            this.btnConstruction0704.Name = "btnConstruction0704";
5992
            this.btnConstruction0704.Size = new System.Drawing.Size(192, 30);
5993
            this.btnConstruction0704.Size = new System.Drawing.Size(189, 30);
5993 5994
            this.btnConstruction0704.TabIndex = 15;
5994 5995
            this.btnConstruction0704.UseVisualStyleBackColor = true;
5995 5996
            this.btnConstruction0704.Click += new System.EventHandler(this.btnConstruction_Click);
......
6003 6004
            this.lblConstr08.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6004 6005
            this.lblConstr08.Location = new System.Drawing.Point(3, 684);
6005 6006
            this.lblConstr08.Name = "lblConstr08";
6006
            this.lblConstr08.Size = new System.Drawing.Size(98, 36);
6007
            this.lblConstr08.Size = new System.Drawing.Size(96, 36);
6007 6008
            this.lblConstr08.TabIndex = 15;
6008 6009
            this.lblConstr08.Text = "着工中\r\n・完了後";
6009 6010
            this.lblConstr08.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6011 6012
            // btnConstruction0800
6012 6013
            // 
6013 6014
            this.btnConstruction0800.Dock = System.Windows.Forms.DockStyle.Fill;
6014
            this.btnConstruction0800.Location = new System.Drawing.Point(108, 687);
6015
            this.btnConstruction0800.Location = new System.Drawing.Point(106, 687);
6015 6016
            this.btnConstruction0800.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6016 6017
            this.btnConstruction0800.Name = "btnConstruction0800";
6017
            this.btnConstruction0800.Size = new System.Drawing.Size(189, 30);
6018
            this.btnConstruction0800.Size = new System.Drawing.Size(186, 30);
6018 6019
            this.btnConstruction0800.TabIndex = 15;
6019 6020
            this.btnConstruction0800.Text = "完成図書作成・印刷";
6020 6021
            this.btnConstruction0800.UseVisualStyleBackColor = true;
......
6023 6024
            // btnConstruction0801
6024 6025
            // 
6025 6026
            this.btnConstruction0801.Dock = System.Windows.Forms.DockStyle.Fill;
6026
            this.btnConstruction0801.Location = new System.Drawing.Point(322, 687);
6027
            this.btnConstruction0801.Location = new System.Drawing.Point(317, 687);
6027 6028
            this.btnConstruction0801.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6028 6029
            this.btnConstruction0801.Name = "btnConstruction0801";
6029
            this.btnConstruction0801.Size = new System.Drawing.Size(189, 30);
6030
            this.btnConstruction0801.Size = new System.Drawing.Size(186, 30);
6030 6031
            this.btnConstruction0801.TabIndex = 15;
6031 6032
            this.btnConstruction0801.UseVisualStyleBackColor = true;
6032 6033
            this.btnConstruction0801.Click += new System.EventHandler(this.btnConstruction_Click);
......
6034 6035
            // btnConstruction0802
6035 6036
            // 
6036 6037
            this.btnConstruction0802.Dock = System.Windows.Forms.DockStyle.Fill;
6037
            this.btnConstruction0802.Location = new System.Drawing.Point(536, 687);
6038
            this.btnConstruction0802.Location = new System.Drawing.Point(528, 687);
6038 6039
            this.btnConstruction0802.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6039 6040
            this.btnConstruction0802.Name = "btnConstruction0802";
6040
            this.btnConstruction0802.Size = new System.Drawing.Size(189, 30);
6041
            this.btnConstruction0802.Size = new System.Drawing.Size(186, 30);
6041 6042
            this.btnConstruction0802.TabIndex = 15;
6042 6043
            this.btnConstruction0802.UseVisualStyleBackColor = true;
6043 6044
            this.btnConstruction0802.Click += new System.EventHandler(this.btnConstruction_Click);
......
6045 6046
            // btnConstruction0803
6046 6047
            // 
6047 6048
            this.btnConstruction0803.Dock = System.Windows.Forms.DockStyle.Fill;
6048
            this.btnConstruction0803.Location = new System.Drawing.Point(750, 687);
6049
            this.btnConstruction0803.Location = new System.Drawing.Point(739, 687);
6049 6050
            this.btnConstruction0803.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6050 6051
            this.btnConstruction0803.Name = "btnConstruction0803";
6051
            this.btnConstruction0803.Size = new System.Drawing.Size(189, 30);
6052
            this.btnConstruction0803.Size = new System.Drawing.Size(186, 30);
6052 6053
            this.btnConstruction0803.TabIndex = 15;
6053 6054
            this.btnConstruction0803.UseVisualStyleBackColor = true;
6054 6055
            this.btnConstruction0803.Click += new System.EventHandler(this.btnConstruction_Click);
......
6056 6057
            // btnConstruction0804
6057 6058
            // 
6058 6059
            this.btnConstruction0804.Dock = System.Windows.Forms.DockStyle.Fill;
6059
            this.btnConstruction0804.Location = new System.Drawing.Point(964, 687);
6060
            this.btnConstruction0804.Location = new System.Drawing.Point(950, 687);
6060 6061
            this.btnConstruction0804.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6061 6062
            this.btnConstruction0804.Name = "btnConstruction0804";
6062
            this.btnConstruction0804.Size = new System.Drawing.Size(192, 30);
6063
            this.btnConstruction0804.Size = new System.Drawing.Size(189, 30);
6063 6064
            this.btnConstruction0804.TabIndex = 15;
6064 6065
            this.btnConstruction0804.UseVisualStyleBackColor = true;
6065 6066
            this.btnConstruction0804.Click += new System.EventHandler(this.btnConstruction_Click);
......
6073 6074
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0602, 4);
6074 6075
            this.lblConstr0602.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6075 6076
            this.lblConstr0602.ForeColor = System.Drawing.Color.Brown;
6076
            this.lblConstr0602.Location = new System.Drawing.Point(732, 576);
6077
            this.lblConstr0602.Location = new System.Drawing.Point(721, 576);
6077 6078
            this.lblConstr0602.Name = "lblConstr0602";
6078
            this.lblConstr0602.Size = new System.Drawing.Size(425, 36);
6079
            this.lblConstr0602.Size = new System.Drawing.Size(419, 36);
6079 6080
            this.lblConstr0602.TabIndex = 15;
6080 6081
            this.lblConstr0602.Text = "※上記項目は各工種の全体施工中の施工前までに作成・提出すること。";
6081 6082
            this.lblConstr0602.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6089 6090
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0502, 4);
6090 6091
            this.lblConstr0502.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6091 6092
            this.lblConstr0502.ForeColor = System.Drawing.Color.Brown;
6092
            this.lblConstr0502.Location = new System.Drawing.Point(732, 504);
6093
            this.lblConstr0502.Location = new System.Drawing.Point(721, 504);
6093 6094
            this.lblConstr0502.Name = "lblConstr0502";
6094
            this.lblConstr0502.Size = new System.Drawing.Size(425, 36);
6095
            this.lblConstr0502.Size = new System.Drawing.Size(419, 36);
6095 6096
            this.lblConstr0502.TabIndex = 15;
6096 6097
            this.lblConstr0502.Text = "※上記項目は施工開始までに作成すること。";
6097 6098
            this.lblConstr0502.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6105 6106
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0202, 4);
6106 6107
            this.lblConstr0202.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6107 6108
            this.lblConstr0202.ForeColor = System.Drawing.Color.Brown;
6108
            this.lblConstr0202.Location = new System.Drawing.Point(732, 216);
6109
            this.lblConstr0202.Location = new System.Drawing.Point(721, 216);
6109 6110
            this.lblConstr0202.Name = "lblConstr0202";
6110
            this.lblConstr0202.Size = new System.Drawing.Size(425, 36);
6111
            this.lblConstr0202.Size = new System.Drawing.Size(419, 36);
6111 6112
            this.lblConstr0202.TabIndex = 15;
6112 6113
            this.lblConstr0202.Text = "※資材項目は貸出・返却時に毎回記入すること。";
6113 6114
            this.lblConstr0202.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6121 6122
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0102, 4);
6122 6123
            this.lblConstr0102.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6123 6124
            this.lblConstr0102.ForeColor = System.Drawing.Color.Brown;
6124
            this.lblConstr0102.Location = new System.Drawing.Point(732, 144);
6125
            this.lblConstr0102.Location = new System.Drawing.Point(721, 144);
6125 6126
            this.lblConstr0102.Name = "lblConstr0102";
6126
            this.lblConstr0102.Size = new System.Drawing.Size(425, 36);
6127
            this.lblConstr0102.Size = new System.Drawing.Size(419, 36);
6127 6128
            this.lblConstr0102.TabIndex = 15;
6128 6129
            this.lblConstr0102.Text = "※該当項目は毎日記入すること。";
6129 6130
            this.lblConstr0102.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6137 6138
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstr0802, 4);
6138 6139
            this.lblConstr0802.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6139 6140
            this.lblConstr0802.ForeColor = System.Drawing.Color.Brown;
6140
            this.lblConstr0802.Location = new System.Drawing.Point(732, 720);
6141
            this.lblConstr0802.Location = new System.Drawing.Point(721, 720);
6141 6142
            this.lblConstr0802.Name = "lblConstr0802";
6142
            this.lblConstr0802.Size = new System.Drawing.Size(425, 36);
6143
            this.lblConstr0802.Size = new System.Drawing.Size(419, 36);
6143 6144
            this.lblConstr0802.TabIndex = 15;
6144 6145
            this.lblConstr0802.Text = "※完成図書は契約工期内に再提出も含めて完了すること。";
6145 6146
            this.lblConstr0802.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
......
6151 6152
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine02, 10);
6152 6153
            this.lblConstrLine02.Location = new System.Drawing.Point(3, 771);
6153 6154
            this.lblConstrLine02.Name = "lblConstrLine02";
6154
            this.lblConstrLine02.Size = new System.Drawing.Size(1154, 6);
6155
            this.lblConstrLine02.Size = new System.Drawing.Size(1137, 6);
6155 6156
            this.lblConstrLine02.TabIndex = 15;
6156 6157
            // 
6157 6158
            // lblConstrTitle03
......
6161 6162
            | System.Windows.Forms.AnchorStyles.Right)));
6162 6163
            this.lblConstrTitle03.AutoSize = true;
6163 6164
            this.lblConstrTitle03.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6164
            this.lblConstrTitle03.Location = new System.Drawing.Point(107, 792);
6165
            this.lblConstrTitle03.Location = new System.Drawing.Point(105, 792);
6165 6166
            this.lblConstrTitle03.Name = "lblConstrTitle03";
6166
            this.lblConstrTitle03.Size = new System.Drawing.Size(191, 36);
6167
            this.lblConstrTitle03.Size = new System.Drawing.Size(188, 36);
6167 6168
            this.lblConstrTitle03.TabIndex = 15;
6168 6169
            this.lblConstrTitle03.Text = "取引先請求管理";
6169 6170
            this.lblConstrTitle03.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6177 6178
            this.lblConstr09.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6178 6179
            this.lblConstr09.Location = new System.Drawing.Point(3, 828);
6179 6180
            this.lblConstr09.Name = "lblConstr09";
6180
            this.lblConstr09.Size = new System.Drawing.Size(98, 36);
6181
            this.lblConstr09.Size = new System.Drawing.Size(96, 36);
6181 6182
            this.lblConstr09.TabIndex = 15;
6182 6183
            this.lblConstr09.Text = "出来高";
6183 6184
            this.lblConstr09.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6185 6186
            // btnConstruction0900
6186 6187
            // 
6187 6188
            this.btnConstruction0900.Dock = System.Windows.Forms.DockStyle.Fill;
6188
            this.btnConstruction0900.Location = new System.Drawing.Point(108, 831);
6189
            this.btnConstruction0900.Location = new System.Drawing.Point(106, 831);
6189 6190
            this.btnConstruction0900.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6190 6191
            this.btnConstruction0900.Name = "btnConstruction0900";
6191
            this.btnConstruction0900.Size = new System.Drawing.Size(189, 30);
6192
            this.btnConstruction0900.Size = new System.Drawing.Size(186, 30);
6192 6193
            this.btnConstruction0900.TabIndex = 15;
6193 6194
            this.btnConstruction0900.Text = "請求書作成";
6194 6195
            this.btnConstruction0900.UseVisualStyleBackColor = true;
......
6197 6198
            // btnConstruction0901
6198 6199
            // 
6199 6200
            this.btnConstruction0901.Dock = System.Windows.Forms.DockStyle.Fill;
6200
            this.btnConstruction0901.Location = new System.Drawing.Point(322, 831);
6201
            this.btnConstruction0901.Location = new System.Drawing.Point(317, 831);
6201 6202
            this.btnConstruction0901.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6202 6203
            this.btnConstruction0901.Name = "btnConstruction0901";
6203
            this.btnConstruction0901.Size = new System.Drawing.Size(189, 30);
6204
            this.btnConstruction0901.Size = new System.Drawing.Size(186, 30);
6204 6205
            this.btnConstruction0901.TabIndex = 15;
6205 6206
            this.btnConstruction0901.Text = "請求書承認";
6206 6207
            this.btnConstruction0901.UseVisualStyleBackColor = true;
......
6209 6210
            // btnConstruction0902
6210 6211
            // 
6211 6212
            this.btnConstruction0902.Dock = System.Windows.Forms.DockStyle.Fill;
6212
            this.btnConstruction0902.Location = new System.Drawing.Point(536, 831);
6213
            this.btnConstruction0902.Location = new System.Drawing.Point(528, 831);
6213 6214
            this.btnConstruction0902.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6214 6215
            this.btnConstruction0902.Name = "btnConstruction0902";
6215
            this.btnConstruction0902.Size = new System.Drawing.Size(189, 30);
6216
            this.btnConstruction0902.Size = new System.Drawing.Size(186, 30);
6216 6217
            this.btnConstruction0902.TabIndex = 15;
6217 6218
            this.btnConstruction0902.Text = "請求書印刷";
6218 6219
            this.btnConstruction0902.UseVisualStyleBackColor = true;
......
6221 6222
            // btnConstruction0903
6222 6223
            // 
6223 6224
            this.btnConstruction0903.Dock = System.Windows.Forms.DockStyle.Fill;
6224
            this.btnConstruction0903.Location = new System.Drawing.Point(750, 831);
6225
            this.btnConstruction0903.Location = new System.Drawing.Point(739, 831);
6225 6226
            this.btnConstruction0903.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6226 6227
            this.btnConstruction0903.Name = "btnConstruction0903";
6227
            this.btnConstruction0903.Size = new System.Drawing.Size(189, 30);
6228
            this.btnConstruction0903.Size = new System.Drawing.Size(186, 30);
6228 6229
            this.btnConstruction0903.TabIndex = 15;
6229 6230
            this.btnConstruction0903.Text = "請求書郵送・手渡し確認";
6230 6231
            this.btnConstruction0903.UseVisualStyleBackColor = true;
......
6233 6234
            // btnConstruction0904
6234 6235
            // 
6235 6236
            this.btnConstruction0904.Dock = System.Windows.Forms.DockStyle.Fill;
6236
            this.btnConstruction0904.Location = new System.Drawing.Point(964, 831);
6237
            this.btnConstruction0904.Location = new System.Drawing.Point(950, 831);
6237 6238
            this.btnConstruction0904.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6238 6239
            this.btnConstruction0904.Name = "btnConstruction0904";
6239
            this.btnConstruction0904.Size = new System.Drawing.Size(192, 30);
6240
            this.btnConstruction0904.Size = new System.Drawing.Size(189, 30);
6240 6241
            this.btnConstruction0904.TabIndex = 15;
6241 6242
            this.btnConstruction0904.Text = "取引先入金確認";
6242 6243
            this.btnConstruction0904.UseVisualStyleBackColor = true;
......
6245 6246
            // btnConstruction1000
6246 6247
            // 
6247 6248
            this.btnConstruction1000.Dock = System.Windows.Forms.DockStyle.Fill;
6248
            this.btnConstruction1000.Location = new System.Drawing.Point(108, 903);
6249
            this.btnConstruction1000.Location = new System.Drawing.Point(106, 903);
6249 6250
            this.btnConstruction1000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6250 6251
            this.btnConstruction1000.Name = "btnConstruction1000";
6251
            this.btnConstruction1000.Size = new System.Drawing.Size(189, 30);
6252
            this.btnConstruction1000.Size = new System.Drawing.Size(186, 30);
6252 6253
            this.btnConstruction1000.TabIndex = 15;
6253 6254
            this.btnConstruction1000.Text = "請求書作成";
6254 6255
            this.btnConstruction1000.UseVisualStyleBackColor = true;
......
6257 6258
            // btnConstruction1001
6258 6259
            // 
6259 6260
            this.btnConstruction1001.Dock = System.Windows.Forms.DockStyle.Fill;
6260
            this.btnConstruction1001.Location = new System.Drawing.Point(322, 903);
6261
            this.btnConstruction1001.Location = new System.Drawing.Point(317, 903);
6261 6262
            this.btnConstruction1001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6262 6263
            this.btnConstruction1001.Name = "btnConstruction1001";
6263
            this.btnConstruction1001.Size = new System.Drawing.Size(189, 30);
6264
            this.btnConstruction1001.Size = new System.Drawing.Size(186, 30);
6264 6265
            this.btnConstruction1001.TabIndex = 15;
6265 6266
            this.btnConstruction1001.Text = "請求書承認";
6266 6267
            this.btnConstruction1001.UseVisualStyleBackColor = true;
......
6269 6270
            // btnConstruction1002
6270 6271
            // 
6271 6272
            this.btnConstruction1002.Dock = System.Windows.Forms.DockStyle.Fill;
6272
            this.btnConstruction1002.Location = new System.Drawing.Point(536, 903);
6273
            this.btnConstruction1002.Location = new System.Drawing.Point(528, 903);
6273 6274
            this.btnConstruction1002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6274 6275
            this.btnConstruction1002.Name = "btnConstruction1002";
6275
            this.btnConstruction1002.Size = new System.Drawing.Size(189, 30);
6276
            this.btnConstruction1002.Size = new System.Drawing.Size(186, 30);
6276 6277
            this.btnConstruction1002.TabIndex = 15;
6277 6278
            this.btnConstruction1002.Text = "請求書印刷";
6278 6279
            this.btnConstruction1002.UseVisualStyleBackColor = true;
......
6281 6282
            // btnConstruction1003
6282 6283
            // 
6283 6284
            this.btnConstruction1003.Dock = System.Windows.Forms.DockStyle.Fill;
6284
            this.btnConstruction1003.Location = new System.Drawing.Point(750, 903);
6285
            this.btnConstruction1003.Location = new System.Drawing.Point(739, 903);
6285 6286
            this.btnConstruction1003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6286 6287
            this.btnConstruction1003.Name = "btnConstruction1003";
6287
            this.btnConstruction1003.Size = new System.Drawing.Size(189, 30);
6288
            this.btnConstruction1003.Size = new System.Drawing.Size(186, 30);
6288 6289
            this.btnConstruction1003.TabIndex = 15;
6289 6290
            this.btnConstruction1003.Text = "請求書郵送・手渡し確認";
6290 6291
            this.btnConstruction1003.UseVisualStyleBackColor = true;
......
6293 6294
            // btnConstruction1004
6294 6295
            // 
6295 6296
            this.btnConstruction1004.Dock = System.Windows.Forms.DockStyle.Fill;
6296
            this.btnConstruction1004.Location = new System.Drawing.Point(964, 903);
6297
            this.btnConstruction1004.Location = new System.Drawing.Point(950, 903);
6297 6298
            this.btnConstruction1004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6298 6299
            this.btnConstruction1004.Name = "btnConstruction1004";
6299
            this.btnConstruction1004.Size = new System.Drawing.Size(192, 30);
6300
            this.btnConstruction1004.Size = new System.Drawing.Size(189, 30);
6300 6301
            this.btnConstruction1004.TabIndex = 15;
6301 6302
            this.btnConstruction1004.Text = "取引先入金確認";
6302 6303
            this.btnConstruction1004.UseVisualStyleBackColor = true;
......
6309 6310
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine03, 10);
6310 6311
            this.lblConstrLine03.Location = new System.Drawing.Point(3, 987);
6311 6312
            this.lblConstrLine03.Name = "lblConstrLine03";
6312
            this.lblConstrLine03.Size = new System.Drawing.Size(1154, 6);
6313
            this.lblConstrLine03.Size = new System.Drawing.Size(1137, 6);
6313 6314
            this.lblConstrLine03.TabIndex = 15;
6314 6315
            // 
6315 6316
            // lblConstrTitle04
......
6319 6320
            | System.Windows.Forms.AnchorStyles.Right)));
6320 6321
            this.lblConstrTitle04.AutoSize = true;
6321 6322
            this.lblConstrTitle04.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6322
            this.lblConstrTitle04.Location = new System.Drawing.Point(107, 1008);
6323
            this.lblConstrTitle04.Location = new System.Drawing.Point(105, 1008);
6323 6324
            this.lblConstrTitle04.Name = "lblConstrTitle04";
6324
            this.lblConstrTitle04.Size = new System.Drawing.Size(191, 36);
6325
            this.lblConstrTitle04.Size = new System.Drawing.Size(188, 36);
6325 6326
            this.lblConstrTitle04.TabIndex = 15;
6326 6327
            this.lblConstrTitle04.Text = "各業者・職人支払い管理";
6327 6328
            this.lblConstrTitle04.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6335 6336
            this.lblConstr11.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6336 6337
            this.lblConstr11.Location = new System.Drawing.Point(3, 1044);
6337 6338
            this.lblConstr11.Name = "lblConstr11";
6338
            this.lblConstr11.Size = new System.Drawing.Size(98, 36);
6339
            this.lblConstr11.Size = new System.Drawing.Size(96, 36);
6339 6340
            this.lblConstr11.TabIndex = 15;
6340 6341
            this.lblConstr11.Text = "毎月";
6341 6342
            this.lblConstr11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6343 6344
            // btnConstruction1100
6344 6345
            // 
6345 6346
            this.btnConstruction1100.Dock = System.Windows.Forms.DockStyle.Fill;
6346
            this.btnConstruction1100.Location = new System.Drawing.Point(108, 1047);
6347
            this.btnConstruction1100.Location = new System.Drawing.Point(106, 1047);
6347 6348
            this.btnConstruction1100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6348 6349
            this.btnConstruction1100.Name = "btnConstruction1100";
6349
            this.btnConstruction1100.Size = new System.Drawing.Size(189, 30);
6350
            this.btnConstruction1100.Size = new System.Drawing.Size(186, 30);
6350 6351
            this.btnConstruction1100.TabIndex = 15;
6351 6352
            this.btnConstruction1100.Text = "手間支払確認";
6352 6353
            this.btnConstruction1100.UseVisualStyleBackColor = true;
......
6355 6356
            // btnConstruction1101
6356 6357
            // 
6357 6358
            this.btnConstruction1101.Dock = System.Windows.Forms.DockStyle.Fill;
6358
            this.btnConstruction1101.Location = new System.Drawing.Point(322, 1047);
6359
            this.btnConstruction1101.Location = new System.Drawing.Point(317, 1047);
6359 6360
            this.btnConstruction1101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6360 6361
            this.btnConstruction1101.Name = "btnConstruction1101";
6361
            this.btnConstruction1101.Size = new System.Drawing.Size(189, 30);
6362
            this.btnConstruction1101.Size = new System.Drawing.Size(186, 30);
6362 6363
            this.btnConstruction1101.TabIndex = 15;
6363 6364
            this.btnConstruction1101.Text = "業者支払確認";
6364 6365
            this.btnConstruction1101.UseVisualStyleBackColor = true;
......
6367 6368
            // btnConstruction1102
6368 6369
            // 
6369 6370
            this.btnConstruction1102.Dock = System.Windows.Forms.DockStyle.Fill;
6370
            this.btnConstruction1102.Location = new System.Drawing.Point(536, 1047);
6371
            this.btnConstruction1102.Location = new System.Drawing.Point(528, 1047);
6371 6372
            this.btnConstruction1102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6372 6373
            this.btnConstruction1102.Name = "btnConstruction1102";
6373
            this.btnConstruction1102.Size = new System.Drawing.Size(189, 30);
6374
            this.btnConstruction1102.Size = new System.Drawing.Size(186, 30);
6374 6375
            this.btnConstruction1102.TabIndex = 15;
6375 6376
            this.btnConstruction1102.UseVisualStyleBackColor = true;
6376 6377
            this.btnConstruction1102.Click += new System.EventHandler(this.btnConstruction_Click);
......
6378 6379
            // btnConstruction1103
6379 6380
            // 
6380 6381
            this.btnConstruction1103.Dock = System.Windows.Forms.DockStyle.Fill;
6381
            this.btnConstruction1103.Location = new System.Drawing.Point(750, 1047);
6382
            this.btnConstruction1103.Location = new System.Drawing.Point(739, 1047);
6382 6383
            this.btnConstruction1103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6383 6384
            this.btnConstruction1103.Name = "btnConstruction1103";
6384
            this.btnConstruction1103.Size = new System.Drawing.Size(189, 30);
6385
            this.btnConstruction1103.Size = new System.Drawing.Size(186, 30);
6385 6386
            this.btnConstruction1103.TabIndex = 15;
6386 6387
            this.btnConstruction1103.UseVisualStyleBackColor = true;
6387 6388
            this.btnConstruction1103.Click += new System.EventHandler(this.btnConstruction_Click);
......
6389 6390
            // btnConstruction1104
6390 6391
            // 
6391 6392
            this.btnConstruction1104.Dock = System.Windows.Forms.DockStyle.Fill;
6392
            this.btnConstruction1104.Location = new System.Drawing.Point(964, 1047);
6393
            this.btnConstruction1104.Location = new System.Drawing.Point(950, 1047);
6393 6394
            this.btnConstruction1104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6394 6395
            this.btnConstruction1104.Name = "btnConstruction1104";
6395
            this.btnConstruction1104.Size = new System.Drawing.Size(192, 30);
6396
            this.btnConstruction1104.Size = new System.Drawing.Size(189, 30);
6396 6397
            this.btnConstruction1104.TabIndex = 15;
6397 6398
            this.btnConstruction1104.UseVisualStyleBackColor = true;
6398 6399
            this.btnConstruction1104.Click += new System.EventHandler(this.btnConstruction_Click);
......
6405 6406
            this.lblConstr1102.AutoSize = true;
6406 6407
            this.lblConstr1102.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6407 6408
            this.lblConstr1102.ForeColor = System.Drawing.Color.Brown;
6408
            this.lblConstr1102.Location = new System.Drawing.Point(107, 1080);
6409
            this.lblConstr1102.Location = new System.Drawing.Point(105, 1080);
6409 6410
            this.lblConstr1102.Name = "lblConstr1102";
6410
            this.lblConstr1102.Size = new System.Drawing.Size(191, 36);
6411
            this.lblConstr1102.Size = new System.Drawing.Size(188, 36);
6411 6412
            this.lblConstr1102.TabIndex = 15;
6412 6413
            this.lblConstr1102.Text = "※毎月5日必着\r\n確認は8日まで";
6413 6414
            this.lblConstr1102.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6420 6421
            this.lblConstr1103.AutoSize = true;
6421 6422
            this.lblConstr1103.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6422 6423
            this.lblConstr1103.ForeColor = System.Drawing.Color.Brown;
6423
            this.lblConstr1103.Location = new System.Drawing.Point(321, 1080);
6424
            this.lblConstr1103.Location = new System.Drawing.Point(316, 1080);
6424 6425
            this.lblConstr1103.Name = "lblConstr1103";
6425
            this.lblConstr1103.Size = new System.Drawing.Size(191, 36);
6426
            this.lblConstr1103.Size = new System.Drawing.Size(188, 36);
6426 6427
            this.lblConstr1103.TabIndex = 15;
6427 6428
            this.lblConstr1103.Text = "※毎月5日必着\r\n確認は15日まで";
6428 6429
            this.lblConstr1103.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6434 6435
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine04, 10);
6435 6436
            this.lblConstrLine04.Location = new System.Drawing.Point(3, 1131);
6436 6437
            this.lblConstrLine04.Name = "lblConstrLine04";
6437
            this.lblConstrLine04.Size = new System.Drawing.Size(1154, 6);
6438
            this.lblConstrLine04.Size = new System.Drawing.Size(1137, 6);
6438 6439
            this.lblConstrLine04.TabIndex = 15;
6439 6440
            // 
6440 6441
            // lblConstrTitle05
......
6444 6445
            | System.Windows.Forms.AnchorStyles.Right)));
6445 6446
            this.lblConstrTitle05.AutoSize = true;
6446 6447
            this.lblConstrTitle05.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6447
            this.lblConstrTitle05.Location = new System.Drawing.Point(107, 1152);
6448
            this.lblConstrTitle05.Location = new System.Drawing.Point(105, 1152);
6448 6449
            this.lblConstrTitle05.Name = "lblConstrTitle05";
6449
            this.lblConstrTitle05.Size = new System.Drawing.Size(191, 36);
6450
            this.lblConstrTitle05.Size = new System.Drawing.Size(188, 36);
6450 6451
            this.lblConstrTitle05.TabIndex = 15;
6451 6452
            this.lblConstrTitle05.Text = "その他管理";
6452 6453
            this.lblConstrTitle05.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6460 6461
            this.lblConstr12.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6461 6462
            this.lblConstr12.Location = new System.Drawing.Point(3, 1188);
6462 6463
            this.lblConstr12.Name = "lblConstr12";
6463
            this.lblConstr12.Size = new System.Drawing.Size(98, 36);
6464
            this.lblConstr12.Size = new System.Drawing.Size(96, 36);
6464 6465
            this.lblConstr12.TabIndex = 15;
6465 6466
            this.lblConstr12.Text = "適時";
6466 6467
            this.lblConstr12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6468 6469
            // btnConstruction1200
6469 6470
            // 
6470 6471
            this.btnConstruction1200.Dock = System.Windows.Forms.DockStyle.Fill;
6471
            this.btnConstruction1200.Location = new System.Drawing.Point(108, 1191);
6472
            this.btnConstruction1200.Location = new System.Drawing.Point(106, 1191);
6472 6473
            this.btnConstruction1200.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6473 6474
            this.btnConstruction1200.Name = "btnConstruction1200";
6474
            this.btnConstruction1200.Size = new System.Drawing.Size(189, 30);
6475
            this.btnConstruction1200.Size = new System.Drawing.Size(186, 30);
6475 6476
            this.btnConstruction1200.TabIndex = 15;
6476 6477
            this.btnConstruction1200.Text = "出納帳入力";
6477 6478
            this.btnConstruction1200.UseVisualStyleBackColor = true;
......
6480 6481
            // btnConstruction1201
6481 6482
            // 
6482 6483
            this.btnConstruction1201.Dock = System.Windows.Forms.DockStyle.Fill;
6483
            this.btnConstruction1201.Location = new System.Drawing.Point(322, 1191);
6484
            this.btnConstruction1201.Location = new System.Drawing.Point(317, 1191);
6484 6485
            this.btnConstruction1201.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6485 6486
            this.btnConstruction1201.Name = "btnConstruction1201";
6486
            this.btnConstruction1201.Size = new System.Drawing.Size(189, 30);
6487
            this.btnConstruction1201.Size = new System.Drawing.Size(186, 30);
6487 6488
            this.btnConstruction1201.TabIndex = 15;
6488 6489
            this.btnConstruction1201.UseVisualStyleBackColor = true;
6489 6490
            this.btnConstruction1201.Click += new System.EventHandler(this.btnConstruction_Click);
......
6491 6492
            // btnConstruction1202
6492 6493
            // 
6493 6494
            this.btnConstruction1202.Dock = System.Windows.Forms.DockStyle.Fill;
6494
            this.btnConstruction1202.Location = new System.Drawing.Point(536, 1191);
6495
            this.btnConstruction1202.Location = new System.Drawing.Point(528, 1191);
6495 6496
            this.btnConstruction1202.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6496 6497
            this.btnConstruction1202.Name = "btnConstruction1202";
6497
            this.btnConstruction1202.Size = new System.Drawing.Size(189, 30);
6498
            this.btnConstruction1202.Size = new System.Drawing.Size(186, 30);
6498 6499
            this.btnConstruction1202.TabIndex = 15;
6499 6500
            this.btnConstruction1202.UseVisualStyleBackColor = true;
6500 6501
            this.btnConstruction1202.Click += new System.EventHandler(this.btnConstruction_Click);
......
6502 6503
            // btnConstruction1203
6503 6504
            // 
6504 6505
            this.btnConstruction1203.Dock = System.Windows.Forms.DockStyle.Fill;
6505
            this.btnConstruction1203.Location = new System.Drawing.Point(750, 1191);
6506
            this.btnConstruction1203.Location = new System.Drawing.Point(739, 1191);
6506 6507
            this.btnConstruction1203.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6507 6508
            this.btnConstruction1203.Name = "btnConstruction1203";
6508
            this.btnConstruction1203.Size = new System.Drawing.Size(189, 30);
6509
            this.btnConstruction1203.Size = new System.Drawing.Size(186, 30);
6509 6510
            this.btnConstruction1203.TabIndex = 15;
6510 6511
            this.btnConstruction1203.UseVisualStyleBackColor = true;
6511 6512
            this.btnConstruction1203.Click += new System.EventHandler(this.btnConstruction_Click);
......
6513 6514
            // btnConstruction1204
6514 6515
            // 
6515 6516
            this.btnConstruction1204.Dock = System.Windows.Forms.DockStyle.Fill;
6516
            this.btnConstruction1204.Location = new System.Drawing.Point(964, 1191);
6517
            this.btnConstruction1204.Location = new System.Drawing.Point(950, 1191);
6517 6518
            this.btnConstruction1204.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6518 6519
            this.btnConstruction1204.Name = "btnConstruction1204";
6519
            this.btnConstruction1204.Size = new System.Drawing.Size(192, 30);
6520
            this.btnConstruction1204.Size = new System.Drawing.Size(189, 30);
6520 6521
            this.btnConstruction1204.TabIndex = 15;
6521 6522
            this.btnConstruction1204.UseVisualStyleBackColor = true;
6522 6523
            this.btnConstruction1204.Click += new System.EventHandler(this.btnConstruction_Click);
......
6530 6531
            this.lblConstr10.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6531 6532
            this.lblConstr10.Location = new System.Drawing.Point(3, 900);
6532 6533
            this.lblConstr10.Name = "lblConstr10";
6533
            this.lblConstr10.Size = new System.Drawing.Size(98, 36);
6534
            this.lblConstr10.Size = new System.Drawing.Size(96, 36);
6534 6535
            this.lblConstr10.TabIndex = 15;
6535 6536
            this.lblConstr10.Text = "完了後";
6536 6537
            this.lblConstr10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6611 6612
            this.tblLayoutAffairs.Controls.Add(this.lblAffairs0402, 1, 14);
6612 6613
            this.tblLayoutAffairs.Controls.Add(this.lblAffairs0403, 3, 14);
6613 6614
            this.tblLayoutAffairs.Controls.Add(this.lblAffairs0404, 9, 14);
6615
            this.tblLayoutAffairs.Controls.Add(this.btnAffairs0501, 3, 17);
6614 6616
            this.tblLayoutAffairs.Location = new System.Drawing.Point(6, 1);
6615 6617
            this.tblLayoutAffairs.Name = "tblLayoutAffairs";
6616 6618
            this.tblLayoutAffairs.RowCount = 18;
......
6634 6636
            this.tblLayoutAffairs.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
6635 6637
            this.tblLayoutAffairs.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
6636 6638
            this.tblLayoutAffairs.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
6637
            this.tblLayoutAffairs.Size = new System.Drawing.Size(1160, 648);
6639
            this.tblLayoutAffairs.Size = new System.Drawing.Size(1143, 648);
6638 6640
            this.tblLayoutAffairs.TabIndex = 13;
6639 6641
            // 
6640 6642
            // btnAffairs0000
......
6642 6644
            this.btnAffairs0000.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6643 6645
            | System.Windows.Forms.AnchorStyles.Left) 
6644 6646
            | System.Windows.Forms.AnchorStyles.Right)));
6645
            this.btnAffairs0000.Location = new System.Drawing.Point(108, 39);
6647
            this.btnAffairs0000.Location = new System.Drawing.Point(106, 39);
6646 6648
            this.btnAffairs0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6647 6649
            this.btnAffairs0000.Name = "btnAffairs0000";
6648
            this.btnAffairs0000.Size = new System.Drawing.Size(189, 30);
6650
            this.btnAffairs0000.Size = new System.Drawing.Size(186, 30);
6649 6651
            this.btnAffairs0000.TabIndex = 0;
6650 6652
            this.btnAffairs0000.Text = "行動予定入力";
6651 6653
            this.btnAffairs0000.UseVisualStyleBackColor = true;
......
6656 6658
            this.btnAffairs0001.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6657 6659
            | System.Windows.Forms.AnchorStyles.Left) 
6658 6660
            | System.Windows.Forms.AnchorStyles.Right)));
6659
            this.btnAffairs0001.Location = new System.Drawing.Point(322, 39);
6661
            this.btnAffairs0001.Location = new System.Drawing.Point(317, 39);
6660 6662
            this.btnAffairs0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6661 6663
            this.btnAffairs0001.Name = "btnAffairs0001";
6662
            this.btnAffairs0001.Size = new System.Drawing.Size(189, 30);
6664
            this.btnAffairs0001.Size = new System.Drawing.Size(186, 30);
6663 6665
            this.btnAffairs0001.TabIndex = 0;
6664 6666
            this.btnAffairs0001.Text = "車両予約";
6665 6667
            this.btnAffairs0001.UseVisualStyleBackColor = true;
......
6672 6674
            | System.Windows.Forms.AnchorStyles.Right)));
6673 6675
            this.lblAffairsTitle01.AutoSize = true;
6674 6676
            this.lblAffairsTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6675
            this.lblAffairsTitle01.Location = new System.Drawing.Point(107, 0);
6677
            this.lblAffairsTitle01.Location = new System.Drawing.Point(105, 0);
6676 6678
            this.lblAffairsTitle01.Name = "lblAffairsTitle01";
6677
            this.lblAffairsTitle01.Size = new System.Drawing.Size(191, 36);
6679
            this.lblAffairsTitle01.Size = new System.Drawing.Size(188, 36);
6678 6680
            this.lblAffairsTitle01.TabIndex = 18;
6679 6681
            this.lblAffairsTitle01.Text = "日次管理";
6680 6682
            this.lblAffairsTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6684 6686
            this.btnAffairs0002.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6685 6687
            | System.Windows.Forms.AnchorStyles.Left) 
6686 6688
            | System.Windows.Forms.AnchorStyles.Right)));
6687
            this.btnAffairs0002.Location = new System.Drawing.Point(536, 39);
6689
            this.btnAffairs0002.Location = new System.Drawing.Point(528, 39);
6688 6690
            this.btnAffairs0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6689 6691
            this.btnAffairs0002.Name = "btnAffairs0002";
6690
            this.btnAffairs0002.Size = new System.Drawing.Size(189, 30);
6692
            this.btnAffairs0002.Size = new System.Drawing.Size(186, 30);
6691 6693
            this.btnAffairs0002.TabIndex = 0;
6692 6694
            this.btnAffairs0002.UseVisualStyleBackColor = true;
6693 6695
            this.btnAffairs0002.Click += new System.EventHandler(this.btnAffairs_Click);
......
6697 6699
            this.btnAffairs0003.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6698 6700
            | System.Windows.Forms.AnchorStyles.Left) 
6699 6701
            | System.Windows.Forms.AnchorStyles.Right)));
6700
            this.btnAffairs0003.Location = new System.Drawing.Point(750, 39);
6702
            this.btnAffairs0003.Location = new System.Drawing.Point(739, 39);
6701 6703
            this.btnAffairs0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6702 6704
            this.btnAffairs0003.Name = "btnAffairs0003";
6703
            this.btnAffairs0003.Size = new System.Drawing.Size(189, 30);
6705
            this.btnAffairs0003.Size = new System.Drawing.Size(186, 30);
6704 6706
            this.btnAffairs0003.TabIndex = 0;
6705 6707
            this.btnAffairs0003.UseVisualStyleBackColor = true;
6706 6708
            this.btnAffairs0003.Click += new System.EventHandler(this.btnAffairs_Click);
......
6710 6712
            this.btnAffairs0004.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6711 6713
            | System.Windows.Forms.AnchorStyles.Left) 
6712 6714
            | System.Windows.Forms.AnchorStyles.Right)));
6713
            this.btnAffairs0004.Location = new System.Drawing.Point(964, 39);
6715
            this.btnAffairs0004.Location = new System.Drawing.Point(950, 39);
6714 6716
            this.btnAffairs0004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6715 6717
            this.btnAffairs0004.Name = "btnAffairs0004";
6716
            this.btnAffairs0004.Size = new System.Drawing.Size(192, 30);
6718
            this.btnAffairs0004.Size = new System.Drawing.Size(189, 30);
6717 6719
            this.btnAffairs0004.TabIndex = 0;
6718 6720
            this.btnAffairs0004.UseVisualStyleBackColor = true;
6719 6721
            this.btnAffairs0004.Click += new System.EventHandler(this.btnAffairs_Click);
......
6723 6725
            this.btnAffairs0100.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6724 6726
            | System.Windows.Forms.AnchorStyles.Left) 
6725 6727
            | System.Windows.Forms.AnchorStyles.Right)));
6726
            this.btnAffairs0100.Location = new System.Drawing.Point(108, 111);
6728
            this.btnAffairs0100.Location = new System.Drawing.Point(106, 111);
6727 6729
            this.btnAffairs0100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6728 6730
            this.btnAffairs0100.Name = "btnAffairs0100";
6729
            this.btnAffairs0100.Size = new System.Drawing.Size(189, 30);
6731
            this.btnAffairs0100.Size = new System.Drawing.Size(186, 30);
6730 6732
            this.btnAffairs0100.TabIndex = 0;
6731 6733
            this.btnAffairs0100.Text = "出勤管理";
6732 6734
            this.btnAffairs0100.UseVisualStyleBackColor = true;
......
6737 6739
            this.btnAffairs0101.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6738 6740
            | System.Windows.Forms.AnchorStyles.Left) 
6739 6741
            | System.Windows.Forms.AnchorStyles.Right)));
6740
            this.btnAffairs0101.Location = new System.Drawing.Point(322, 111);
6742
            this.btnAffairs0101.Location = new System.Drawing.Point(317, 111);
6741 6743
            this.btnAffairs0101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6742 6744
            this.btnAffairs0101.Name = "btnAffairs0101";
6743
            this.btnAffairs0101.Size = new System.Drawing.Size(189, 30);
6745
            this.btnAffairs0101.Size = new System.Drawing.Size(186, 30);
6744 6746
            this.btnAffairs0101.TabIndex = 0;
6745 6747
            this.btnAffairs0101.UseVisualStyleBackColor = true;
6746 6748
            this.btnAffairs0101.Click += new System.EventHandler(this.btnAffairs_Click);
......
6750 6752
            this.btnAffairs0102.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6751 6753
            | System.Windows.Forms.AnchorStyles.Left) 
6752 6754
            | System.Windows.Forms.AnchorStyles.Right)));
6753
            this.btnAffairs0102.Location = new System.Drawing.Point(536, 111);
6755
            this.btnAffairs0102.Location = new System.Drawing.Point(528, 111);
6754 6756
            this.btnAffairs0102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6755 6757
            this.btnAffairs0102.Name = "btnAffairs0102";
6756
            this.btnAffairs0102.Size = new System.Drawing.Size(189, 30);
6758
            this.btnAffairs0102.Size = new System.Drawing.Size(186, 30);
6757 6759
            this.btnAffairs0102.TabIndex = 0;
6758 6760
            this.btnAffairs0102.UseVisualStyleBackColor = true;
6759 6761
            this.btnAffairs0102.Click += new System.EventHandler(this.btnAffairs_Click);
......
6763 6765
            this.btnAffairs0103.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6764 6766
            | System.Windows.Forms.AnchorStyles.Left) 
6765 6767
            | System.Windows.Forms.AnchorStyles.Right)));
6766
            this.btnAffairs0103.Location = new System.Drawing.Point(750, 111);
6768
            this.btnAffairs0103.Location = new System.Drawing.Point(739, 111);
6767 6769
            this.btnAffairs0103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6768 6770
            this.btnAffairs0103.Name = "btnAffairs0103";
6769
            this.btnAffairs0103.Size = new System.Drawing.Size(189, 30);
6771
            this.btnAffairs0103.Size = new System.Drawing.Size(186, 30);
6770 6772
            this.btnAffairs0103.TabIndex = 0;
6771 6773
            this.btnAffairs0103.UseVisualStyleBackColor = true;
6772 6774
            this.btnAffairs0103.Click += new System.EventHandler(this.btnAffairs_Click);
......
6776 6778
            this.btnAffairs0104.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6777 6779
            | System.Windows.Forms.AnchorStyles.Left) 
6778 6780
            | System.Windows.Forms.AnchorStyles.Right)));
6779
            this.btnAffairs0104.Location = new System.Drawing.Point(964, 111);
6781
            this.btnAffairs0104.Location = new System.Drawing.Point(950, 111);
6780 6782
            this.btnAffairs0104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6781 6783
            this.btnAffairs0104.Name = "btnAffairs0104";
6782
            this.btnAffairs0104.Size = new System.Drawing.Size(192, 30);
6784
            this.btnAffairs0104.Size = new System.Drawing.Size(189, 30);
6783 6785
            this.btnAffairs0104.TabIndex = 0;
6784 6786
            this.btnAffairs0104.UseVisualStyleBackColor = true;
6785 6787
            this.btnAffairs0104.Click += new System.EventHandler(this.btnAffairs_Click);
......
6793 6795
            this.lblAffairs00.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6794 6796
            this.lblAffairs00.Location = new System.Drawing.Point(3, 36);
6795 6797
            this.lblAffairs00.Name = "lblAffairs00";
6796
            this.lblAffairs00.Size = new System.Drawing.Size(98, 36);
6798
            this.lblAffairs00.Size = new System.Drawing.Size(96, 36);
6797 6799
            this.lblAffairs00.TabIndex = 19;
6798 6800
            this.lblAffairs00.Text = "毎日";
6799 6801
            this.lblAffairs00.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6807 6809
            this.lblAffairs01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
6808 6810
            this.lblAffairs01.Location = new System.Drawing.Point(3, 108);
6809 6811
            this.lblAffairs01.Name = "lblAffairs01";
6810
            this.lblAffairs01.Size = new System.Drawing.Size(98, 36);
6812
            this.lblAffairs01.Size = new System.Drawing.Size(96, 36);
6811 6813
            this.lblAffairs01.TabIndex = 19;
6812 6814
            this.lblAffairs01.Text = "毎日";
6813 6815
            this.lblAffairs01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
6819 6821
            this.tblLayoutAffairs.SetColumnSpan(this.lblAffairsLine01, 10);
6820 6822
            this.lblAffairsLine01.Location = new System.Drawing.Point(3, 195);
6821 6823
            this.lblAffairsLine01.Name = "lblAffairsLine01";
6822
            this.lblAffairsLine01.Size = new System.Drawing.Size(1154, 6);
6824
            this.lblAffairsLine01.Size = new System.Drawing.Size(1137, 6);
6823 6825
            this.lblAffairsLine01.TabIndex = 20;
6824 6826
            // 
6825 6827
            // btnAffairs0302
......
6827 6829
            this.btnAffairs0302.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6828 6830
            | System.Windows.Forms.AnchorStyles.Left) 
6829 6831
            | System.Windows.Forms.AnchorStyles.Right)));
6830
            this.btnAffairs0302.Location = new System.Drawing.Point(536, 327);
6832
            this.btnAffairs0302.Location = new System.Drawing.Point(528, 327);
6831 6833
            this.btnAffairs0302.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
6832 6834
            this.btnAffairs0302.Name = "btnAffairs0302";
6833
            this.btnAffairs0302.Size = new System.Drawing.Size(189, 30);
6835
            this.btnAffairs0302.Size = new System.Drawing.Size(186, 30);
6834 6836
            this.btnAffairs0302.TabIndex = 0;
6835 6837
            this.btnAffairs0302.Text = "請求書発送状況入力";
6836 6838
            this.btnAffairs0302.UseVisualStyleBackColor = true;
......
6841 6843
            this.btnAffairs0300.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
6842 6844
            | System.Windows.Forms.AnchorStyles.Left) 
6843 6845
            | System.Windows.Forms.AnchorStyles.Right)));
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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