プロジェクト

全般

プロフィール

リビジョン 320

堀内ほぼ7年前に追加

掲示板アクセス:書込み者の読み取り権限チェックを追加
工事予算書:仮設費の計算受注金額ではなく発注金額を元に計算
工事日報:対象を受注より後にする
メニュー完了工事:是正完了日:請求確認日を追加、ソート順を是正完了日>請求確認日>施工完了日に変更

差分を表示:

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsMessageBoradAccess.cs
7 7
using System.Security.Cryptography;
8 8
using System.Text;
9 9
using System.Threading.Tasks;
10
using System.Windows.Forms;
10 11

  
11 12
using log4net;
12 13
using log4net.Appender;
......
213 214
                int FromCode = CommonMotions.cnvInt(objRec[(int)IOMessageBoardData.ColumnCnt.FromCode]);
214 215
                // 書込み者セキュリティランクの取得
215 216
                int TargetSecRank = CommonMotions.cnvInt(objRec[SecBaseDataCnt + (int)IOMSecurity.TableColumn.SecRank]);
216
                
217

  
217 218
                // 秘書からの連絡は編集対象外
218 219
                if (FromCode == CommonDefine.s_MsgBoardSystemCode) return false;
219 220

  
......
231 232
                    // ----- 経営者アクセス(すべて対象)
232 233
                    return true;
233 234
                }
234
                else
235

  
236
                // ----- 統括者アクセス
237
                // ----- 所属長アクセス(参照部署のみ対象)
238
                // 書込み者が自分より上位ランクのデータは編集できない
239
                if (CommonMotions.LoginUserData.SecCode < TargetSecRank) return false;
240

  
241
                // ----- 一般使用者アクセス(一般者は自分のメッセージのみ編集できる)
242
                if (CommonMotions.LoginUserSecurity.SecRank == (int)CommonDefine.SecurityRankList[NRank].Key) return false;
243

  
244
                int depcode = 0;
245
                if (FromCode < 99999)
235 246
                {
236
                    // ----- 統括者アクセス
237
                    // ----- 所属長アクセス(参照部署のみ対象)
238
                    // 書込み者が自分より上位ランクのデータは編集できない
239
                    if (CommonMotions.LoginUserData.SecCode < TargetSecRank) return false;
247
                    // 部署の書込み
248
                    depcode = FromCode;
240 249

  
241
                    // ----- 一般使用者アクセス(一般者は自分のメッセージのみ編集できる)
242
                    if (CommonMotions.LoginUserSecurity.SecRank != (int)CommonDefine.SecurityRankList[NRank].Key) return false;
250
                    // 部署のMAXのセキュリティ区分を取得する
251
                    StringBuilder strSECSQL = new StringBuilder();
252
                    strSECSQL.Append("SELECT");
253
                    strSECSQL.Append(" MAX(B.SECRANK)");
254
                    strSECSQL.Append(" FROM");
255
                    strSECSQL.Append(" PERSONINCHARGEMASTER A");
256
                    strSECSQL.Append(", SECURITYMASTER B");
257
                    strSECSQL.Append(" WHERE");
258
                    strSECSQL.AppendFormat(" DEPARTMENTCODE = {0}", FromCode);
259
                    strSECSQL.Append(" AND B.SECCODE = A.SECCODE");
243 260

  
244
                    int depcode = 0;
245
                    if (FromCode < 99999)
261
                    ArrayList SecarList = new ArrayList();
262
                    secDB.ExecuteReader(strSECSQL.ToString(), ref SecarList);
263
                    object[] objSecRec = (object[])SecarList[0];
264
                    int OfficeSec = CommonMotions.cnvInt(objSecRec[0]);
265
                    if (OfficeSec != 0)
246 266
                    {
247
                        // 部署の書込み
248
                        depcode = FromCode;
249

  
250
                        // 部署のMAXのセキュリティ区分を取得する
251
                        StringBuilder strSECSQL = new StringBuilder();
252
                        strSECSQL.Append("SELECT");
253
                        strSECSQL.Append(" MAX(B.SECRANK)");
254
                        strSECSQL.Append(" FROM");
255
                        strSECSQL.Append(" PERSONINCHARGEMASTER A");
256
                        strSECSQL.Append(", SECURITYMASTER B");
257
                        strSECSQL.Append(" WHERE");
258
                        strSECSQL.AppendFormat(" DEPARTMENTCODE = {0}", FromCode);
259
                        strSECSQL.Append(" AND B.SECCODE = A.SECCODE"); 
260

  
261
                        ArrayList SecarList = new ArrayList();
262
                        secDB.ExecuteReader(strSECSQL.ToString(), ref SecarList);
263
                        object[] objSecRec = (object[])SecarList[0];
264
                        int OfficeSec = CommonMotions.cnvInt(objSecRec[0]);
265
                        if (OfficeSec != 0)
267
                        // 経営者アクセス権限者の部署は当事者しかアクセスできない
268
                        if (OfficeSec == (int)CommonDefine.SecurityRankList[SRank].Key)
266 269
                        {
267
                            // 経営者アクセス権限者の部署は当事者しかアクセスできない
268
                            if (OfficeSec == (int)CommonDefine.SecurityRankList[SRank].Key)
269
                            {
270
                                if (CommonMotions.LoginUserSecurity.SecRank != (int)CommonDefine.SecurityRankList[SRank].Key) return false;
271
                            }
270
                            if (CommonMotions.LoginUserSecurity.SecRank != (int)CommonDefine.SecurityRankList[SRank].Key) return false;
272 271
                        }
273 272
                    }
274
                    else
275
                    {
276
                        // 担当者の書込み
277
                        depcode = CommonMotions.cnvInt(objRec[PersonBaseBoardDataCnt + (int)IOMPersonInCharge.ColumnCnt.DepartmentCode]);
278
                    }
279
                    // 参照部署があるかのチェック
280
                    foreach (PersonDepartmentMaster wrkRec in CommonMotions.LoginUserRefDepartment)
281
                    {
282
                        if (depcode == wrkRec.DepartmentCode) return true;
283
                    }
284 273
                }
274
                else
275
                {
276
                    // 担当者の書込み
277
                    depcode = CommonMotions.cnvInt(objRec[PersonBaseBoardDataCnt + (int)IOMPersonInCharge.ColumnCnt.DepartmentCode]);
278
                }
279
                // 参照部署があるかのチェック
280
                foreach (PersonDepartmentMaster wrkRec in CommonMotions.LoginUserRefDepartment)
281
                {
282
                    if (depcode == wrkRec.DepartmentCode) return true;
283
                }
285 284

  
286 285
                return false;
287 286
            }
......
323 322
            {
324 323
                // 権限ランク取得
325 324
                int SRank = (int)CommonDefine.SecurityRankPos.SpecialAuthority;   // 経営者アクセス
326
                int FRank = (int)CommonDefine.SecurityRankPos.FreeAuthority;      // 統括者アクセス
327
                int LRank = (int)CommonDefine.SecurityRankPos.LimitedAuthority;   // 所属長アクセス
325
                //int FRank = (int)CommonDefine.SecurityRankPos.FreeAuthority;      // 統括者アクセス
326
                //int LRank = (int)CommonDefine.SecurityRankPos.LimitedAuthority;   // 所属長アクセス
328 327
                int NRank = (int)CommonDefine.SecurityRankPos.NormalAuthority;    // 一般者アクセス
329 328

  
330 329
                if (CommonMotions.LoginUserData.PersonCode == CommonDefine.AdminCode)
......
337 336
                    // ----- 経営者アクセス(すべて対象)
338 337
                    return true;
339 338
                }
339

  
340
                // ----- その他のアクセス権限
341
                ArrayList TargetList = new ArrayList();
342
                /// 読込ターゲット取得
343
                if (!GetReadTarget(mbtDB, RecoadNo, BuranchNo, ref TargetList)) return false;
344
                if (TargetList.Count == 0) return false;
345

  
346
                // 対象テーブルにあるか?
347
                int TergetCnt = Enum.GetNames(typeof(IOMessageBoardTerget.NameColumn)).Length;
348
                object[] objFirst = (object[])TargetList[0];
349
                // 書込み者は最上位者か?
350
                int WriterCode = CommonMotions.cnvInt(objFirst[TergetCnt + (int)GetTarget.FromCode]);
351
                bool bProtect = DecideLockData(WriterCode);
352

  
353
                // 書込み側対象者判定
354
                if (WriterCode < 99999)
355
                {
356
                    // 対象者コードが5桁以下ならば部署コード
357
                    if (WriterCode == CommonMotions.LoginUserData.DepartmentCode) return true;
358
                }
340 359
                else
341 360
                {
342
                    ArrayList TargetList = new ArrayList();
343
                    /// 読込ターゲット取得
344
                    if (!GetReadTarget(mbtDB, RecoadNo, BuranchNo, ref TargetList)) return false;
345
                    if (TargetList.Count == 0) return false;
361
                    if (WriterCode == CommonMotions.LoginUserData.PersonCode) return true;
362
                }
346 363

  
364
                MessageBoardTerget wrkRec = new MessageBoardTerget();
365
                foreach (object[] objRec in TargetList)
366
                {
367
                    mbtDB.ClearStruct(ref wrkRec);
368
                    mbtDB.Reader2Struct(objRec, ref wrkRec);
347 369

  
348
                    bool bProtect = false;
349
                    // 対象テーブルにあるか?
350
                    int TergetCnt = Enum.GetNames(typeof(IOMessageBoardTerget.NameColumn)).Length;
351
                    MessageBoardTerget wrkRec = new MessageBoardTerget();
352
                    for (int i = 0; i < TargetList.Count; i++)
370
                    // ----------
371
                    int CurRecRank = 0;
372
                    int DepCode = 0;
373
                    // 対象者コードが5桁以下ならば部署コード
374
                    if (wrkRec.ToCode < 99999)
353 375
                    {
354
                        mbtDB.ClearStruct(ref wrkRec);
355
                        object[] objRec = (object[])TargetList[i];
356
                        mbtDB.Reader2Struct(objRec, ref wrkRec);
376
                        // 所属部署が対象ならばOK
377
                        if (wrkRec.ToCode == CommonMotions.LoginUserData.DepartmentCode) return true;
357 378

  
358
                        if (i == 0)
379
                        // 管理者対象フラグがONの時にログイン者が一般ユーザーの場合はメッセージを見せない
380
                        if (CommonMotions.LoginUserSecurity.SecRank == CommonDefine.SecurityRankList[NRank].Key)
359 381
                        {
360
                            // ロック判定部署か?
361
                            bProtect = DecideLockData(CommonMotions.cnvInt(objRec[TergetCnt + (int)GetTarget.FromCode]));
362
                        }
363

  
364
                        // ----------
365
                        int CurRecRank = 0;
366
                        int DepCode = 0;
367
                        // 対象者コードが5桁以下ならば部署コード
368
                        if (wrkRec.ToCode < 99999)
369
                        {
370
                            // 所属部署が対象ならばOK
371
                            if (wrkRec.ToCode == CommonMotions.LoginUserData.DepartmentCode) return true;
372

  
373
                            // 管理者対象フラグ取得
374 382
                            int ShareFlag = CommonMotions.cnvInt(objRec[TergetCnt + (int)GetTarget.ShareFlag]);
375
                            // 管理者対象フラグがONの時にログイン者が一般ユーザーの場合はメッセージを見せない
376
                            if (CommonMotions.LoginUserSecurity.SecRank == CommonDefine.SecurityRankList[NRank].Key)
377
                            {
378
                                if (ShareFlag != 0) return false;
379
                            }
380
                            DepCode = wrkRec.ToCode;
383
                            if (ShareFlag != 0) return false;
381 384
                        }
382
                        else
383
                        {   // ----- 以外は担当者コード
384
                            // 全員の場合はOK
385
                            if (wrkRec.ToCode == CommonDefine.s_AllMembersCode) return true;
385
                        DepCode = wrkRec.ToCode;
386
                    }
387
                    else
388
                    {   // ----- 以外は担当者コード
389
                        // 全員の場合はOK
390
                        if (wrkRec.ToCode == CommonDefine.s_AllMembersCode) return true;
386 391

  
387
                            // 対象に自分があればOK
388
                            if (wrkRec.ToCode == CommonMotions.LoginUserData.PersonCode) return true;
392
                        // 対象に自分があればOK
393
                        if (wrkRec.ToCode == CommonMotions.LoginUserData.PersonCode) return true;
389 394

  
390
                            // 読込対象者の所属部署を取得する
391
                            DepCode = CommonMotions.cnvInt(objRec[TergetCnt + (int)GetTarget.DepartmentCode]);
395
                        // 読込対象者の所属部署を取得する
396
                        DepCode = CommonMotions.cnvInt(objRec[TergetCnt + (int)GetTarget.DepartmentCode]);
392 397

  
393
                            // アクセスランクを取得する
394
                            CurRecRank = CommonMotions.cnvInt(objRec[TergetCnt + (int)GetTarget.SecRank]);
395
                            // ランク無は最大値をセット
396
                            if (CurRecRank == 0) CurRecRank = 9;
397
                        }
398
                        // アクセスランクを取得する
399
                        CurRecRank = CommonMotions.cnvInt(objRec[TergetCnt + (int)GetTarget.SecRank]);
400
                        // ランク無は最大値をセット
401
                        if (CurRecRank == 0) CurRecRank = 9;
402
                    }
398 403

  
399
                        if (!bProtect)
404
                    if (!bProtect)
405
                    {
406
                        // 参照部署にあるかのチェック
407
                        foreach (PersonDepartmentMaster RefDepRec in CommonMotions.LoginUserRefDepartment)
400 408
                        {
401
                            // ログイン者が所属長の場合は対象者の所属部署を参照部署と比較
402
                            if (CommonMotions.LoginUserSecurity.SecRank == CommonDefine.SecurityRankList[FRank].Key
403
                                || CommonMotions.LoginUserSecurity.SecRank == CommonDefine.SecurityRankList[LRank].Key)
409
                            if (DepCode == RefDepRec.DepartmentCode)
404 410
                            {
405
                                // 参照部署にあるかのチェック
406
                                foreach (PersonDepartmentMaster RefDepRec in CommonMotions.LoginUserRefDepartment)
411
                                if (wrkRec.ToCode < 99999)
407 412
                                {
408
                                    if (DepCode == RefDepRec.DepartmentCode)
409
                                    {
410
                                        if (wrkRec.ToCode < 99999)
411
                                        {
412
                                            return true;
413
                                        }
414
                                        else
415
                                        {
416
                                            // 書込み者が自分より上位者では無い場合は読み込める
417
                                            if (CommonMotions.LoginUserSecurity.SecRank <= CurRecRank) return true;
418
                                        }
419
                                    }
413
                                    return true;
420 414
                                }
415
                                else
416
                                {
417
                                    // 書込み者が自分より上位者では無い場合は読み込める
418
                                    if (CommonMotions.LoginUserSecurity.SecRank <= CurRecRank) return true;
419
                                }
421 420
                            }
422 421
                        }
423 422
                    }
......
482 481
        }
483 482
        #endregion
484 483

  
485
        #region 最上位部署ロック判定
484
        #region 対象コードがログイン者にアクセス権限があるかのチェック
486 485
        /// <summary>
487
        /// 最上位部署ロック判定
486
        /// 対象コードがログイン者にアクセス権限があるかのチェック
488 487
        /// </summary>
488
        /// <param name="SourceCode"></param>
489
        /// <returns></returns>
490
        private static bool DataReadPermission(int SourceCode)
491
        {
492
            IOMPersonInCharge PersonDB = new IOMPersonInCharge();
493
            try
494
            {
495
                // ----- 対象者コードが5桁以下ならば部署コード
496
                if (SourceCode < 99999)
497
                {
498
                    // 自部署ならばOK
499
                    if (SourceCode == CommonMotions.LoginUserData.DepartmentCode)
500
                    {
501
                        return true;
502
                    }
503

  
504
                    // アクセス権対象部署の場合はOK
505
                    foreach (PersonDepartmentMaster wrkRec in CommonMotions.LoginUserRefDepartment)
506
                    {
507
                        if (SourceCode == wrkRec.DepartmentCode)
508
                        {
509
                            return true;
510
                        }
511
                    }
512

  
513
                    return false;
514
                }
515

  
516
                // ----- 5桁より大きいならば担当者コード
517
                // ログイン者ならばOK
518
                if (SourceCode == CommonMotions.LoginUserData.PersonCode)
519
                {
520
                    return true;
521
                }
522

  
523
                // 対象者の個人情報データを取得する
524
                StringBuilder strSQL = new StringBuilder();
525
                strSQL.Append(PersonDB.CreatePrimarykeyString(SourceCode));
526
                PersonInChargeMaster PersonRec = new PersonInChargeMaster();
527
                if (!PersonDB.SelectAction(strSQL.ToString(), ref PersonRec))
528
                {
529
                    return false;
530
                }
531

  
532
                // 対象部署所属者はOK
533
                foreach (PersonDepartmentMaster wrkRec in CommonMotions.LoginUserRefDepartment)
534
                {
535
                    if (PersonRec.DepartmentCode == wrkRec.DepartmentCode)
536
                    {
537
                        return true;
538
                    }
539
                }
540
                    
541
                return false;
542
            }
543
            catch (Exception ex)
544
            {
545
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
546
                return false;
547
            }
548
            finally
549
            {
550
                PersonDB.close(); PersonDB = null;
551
            }
552
        }
553
        #endregion
554

  
555
        #region 書込み者が最上位部署ロック判定
556
        /// <summary>
557
        /// 書込み者が最上位部署ロック判定
558
        /// </summary>
489 559
        private static bool DecideLockData(int nFromCode)
490 560
        {
491 561
            IOMSecurity SecDB = new IOMSecurity();
......
502 572
                    strSQL.Append(" MIN(B.SECRANK)");
503 573
                    strSQL.Append(" FROM");
504 574
                    strSQL.Append(" PERSONINCHARGEMASTER A");
505
                    strSQL.Append(", SECURITYMASTER B");
575
                    strSQL.Append(" Inner Join SECURITYMASTER B On B.SECCODE = A.SECCODE");
506 576
                    strSQL.AppendFormat(" WHERE A.DEPARTMENTCODE = {0}", nFromCode);
507
                    strSQL.Append(" AND B.SECCODE = A.SECCODE");
508

  
509 577
                }
510 578
                else
511 579
                {   // ----- 対象者コードが5桁以上ならば担当者コード
......
514 582
                    strSQL.Append(" B.SECRANK");
515 583
                    strSQL.Append(" FROM");
516 584
                    strSQL.Append(" PERSONINCHARGEMASTER A");
517
                    strSQL.Append(", SECURITYMASTER B");
585
                    strSQL.Append(" Inner Join SECURITYMASTER B On B.SECCODE = A.SECCODE");
518 586
                    strSQL.AppendFormat(" WHERE A.PERSONCODE = {0}", nFromCode);
519
                    strSQL.Append(" AND B.SECCODE = A.SECCODE");
520 587

  
521 588
                }
522 589
                ArrayList arData = new ArrayList();
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/FrmConstructionBudgetAuxiliary.cs
722 722
            try
723 723
            {
724 724
                // 自社施工の時はタイトルをカスタマイズする
725
                CustomRow.Cells[(int)GridColumn.TextName].Value = "※仮設費は工事受注金額の5%程度が目安です";
725
                CustomRow.Cells[(int)GridColumn.TextName].Value = "※仮設費は発注予定金額の5%程度が目安です";
726 726
                CustomRow.Cells[(int)GridColumn.TextName].Style.ForeColor = Color.Red;
727 727

  
728 728
                int nParcent = 4;
729
                int nOrderValue = CommonMotions.cnvInt(label6.Text);
729
                long nOrderValue = CalcConstrCosts();
730 730
                double nDispValue = 0;
731 731
                for (int ix = (int)GridColumn.EstimatePrice; ix < (int)GridColumn.Percent; ix++)
732 732
                {
......
759 759
        }
760 760
        #endregion
761 761

  
762
        #region 施工費合計
763
        /// <summary>
764
        /// 施工費合計
765
        /// </summary>
766
        /// <returns></returns>
767
        private long CalcConstrCosts()
768
        {
769
            try
770
            {
771

  
772
                // 外注費行を取得(発注希望金額)
773
                DataGridView dgv = dgvAllDisplay;
774
                long lRet = dgv.Rows.Cast<DataGridViewRow>().Where(x => CommonMotions.cnvInt(x.Cells[(int)GridColumn.GroupCount].Value) == (int)DataGroup.OutSourceCosts)
775
                                                                .Sum(y => CommonMotions.cnvInt(y.Cells[(int)GridColumn.HopePrice].Value));
776

  
777
                return lRet;
778
            }
779
            catch (System.Exception ex)
780
            {
781
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
782
                return 0;
783
            }
784
        }
785
        #endregion
786

  
762 787
        #region セル結合描画処理
763 788
        /// <summary>
764 789
        /// セル結合描画処理
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRList/FrmDRListAuxiliary.cs
216 216
            StringBuilder strSub2 = new StringBuilder();
217 217
            try
218 218
            {
219
                int nCodeStart = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("??@?@??")).Key;
219 220
                int iCode = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("?????m?F")).Key;
220 221

  
221 222
                // ----- ??????????
......
242 243
                strSub1.Append(", C.DISPLAYORDER");
243 244

  
244 245
                // strSub1.Append(", E.COMPLATEFLG"); 2017/10/30 ?????o???????????????????????
245
                
246

  
246 247
                strSub1.Append(", 0");
247 248
                strSub1.Append(" FROM CONSTRUCTIONBASEINFO A");
248 249
                strSub1.Append(", CONSTRUCTIONBASEINFODETAIL B");
......
250 251
                strSub1.Append(", DEPARTMENTMASTER D");
251 252

  
252 253
                // strSub1.Append(", CONSTRUCTIONLEDGER E"); 2017/10/30 ?????o???????????????????????
253
                
254

  
254 255
                strSub1.Append(" WHERE NOT EXISTS (SELECT * FROM DAILYDATACONSTRUCTION Z WHERE Z.CONSTRUCTIONCODE = A.CONSTRUCTIONCODE AND Z.PERSONCODE = A.CONSTRUCTIONPERSONCODE)");
255 256
                strSub1.AppendFormat(" And A.TyingFlg != {0}", (int)ConstructionBaseInfo.TyingFlgDef.Tying);
256 257

  
257 258
                // ?????m?F??~????O
258
                strSub1.AppendFormat(" AND ((A.CONSTRUCTIONSTATUSFLG < {0})", iCode);
259
                strSub1.AppendFormat(" AND (({0} <= A.CONSTRUCTIONSTATUSFLG And A.CONSTRUCTIONSTATUSFLG < {1})", nCodeStart, iCode);
259 260
                // ?????m?F??A7????????????\?????
260 261
                strSub1.AppendFormat(" OR (A.CONSTRUCTIONSTATUSFLG = {0}", iCode);
261 262
                strSub1.AppendFormat(" AND STR_TO_DATE('{0}','%Y/%m/%d') <= DATE(A.BILLINGDATE)))", DateTime.Now.AddDays(-7).ToShortDateString());
262
                
263

  
263 264
                // ?S????I?????????
264 265
                if (PersonCode > 0)
265 266
                    strSub1.AppendFormat(" AND (A.ConstructionPersonCode = {0} OR A.ConstructionInstructor = {0} OR A.ConstrSubPersonCode = {0})", PersonCode);
......
370 371
                strSub1.Append(", DEPARTMENTMASTER D");
371 372

  
372 373
                strSub1.Append(" WHERE NOT EXISTS (SELECT * FROM PROCEEDINGSDATA Z WHERE Z.CONSTRUCTIONCODE = A.CONSTRUCTIONCODE)");
373
                
374

  
374 375
                strSub1.AppendFormat(" And A.TyingFlg != {0}", (int)ConstructionBaseInfo.TyingFlgDef.Tying);
375 376

  
376 377
                // ?????m?F??~????O
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryListAuxiliary.cs
1490 1490
                else
1491 1491
                {
1492 1492
                    // ----- ??????
1493
                    // ???O???b?h???????K?????????????????K??????
1493 1494
                    if (rows.Count() > 0)
1494 1495
                    {
1495 1496
                        SelRow = rows.Cast<DataGridViewRow>().LastOrDefault();
......
1497 1498
                        Result = SelRow == null ? -1 : SelRow.Index;
1498 1499
                        Result++;
1499 1500
                    }
1500
                    else
1501
                    {
1502
                        SelRow = dgv.Rows.Cast<DataGridViewRow>().Where(x => CommonMotions.cnvInt(x.Cells[m_Company_DispColumn].Value) < nCompCode
1503
                                                                            && CommonMotions.cnvInt(x.Cells[m_Genba_Column].Value) == nConstrCode
1504
                                                                            && CommonMotions.cnvInt(x.Cells[(int)DispColumn.RowType].Value) == (int)RowsTypeDef.????)
1505
                                                                        .LastOrDefault();
1506

  
1507
                        if (SelRow == null)
1508
                        {
1509
                            Result = dgv.RowCount;
1510
                        }
1511
                        else
1512
                        {
1513
                            Result = SelRow.Index;
1514
                        }
1515
                    }
1516 1501
                }
1517 1502

  
1518 1503
                return Result;
......
1983 1968
                    return;
1984 1969
                }
1985 1970

  
1986
                // ?I???H????????????????
1987
                DataGridViewRow[] SelRows = dgv.Rows.Cast<DataGridViewRow>().Where(x => CommonMotions.cnvInt(x.Cells[m_Company_DispColumn].Value) == nCompanyCode
1988
                                                                                && CommonMotions.cnvInt(x.Cells[m_Genba_Column].Value) == nConstructionCode
1989
                                                                                && CommonMotions.cnvInt(x.Cells[(int)DispColumn.RowVisible].Value) == (int)RowVisibleDef.Visible
1990
                                                                                && CommonMotions.cnvInt(x.Cells[(int)DispColumn.RowType].Value) == (int)RowsTypeDef.????)
1991
                                                                            .OrderBy(y => CommonMotions.cnvInt(y.Cells[m_Company_DispColumn].Value))
1992
                                                                            .ToArray();
1971
                // ----- ???v?s??????????
1972
                MakeIndex = SearchRowIndexCompany(nCompanyCode, false, nConstructionCode);
1993 1973

  
1994
                bool bLastAdd = true;
1995
                 bLastAdd = false;
1996
                if (nCompanyCode == 0) bLastAdd = false;
1997

  
1998
                if (bLastAdd)
1999
                {
2000
                    // ----- ???v?s??????????
2001
                    MakeIndex = SearchRowIndexCompany(nCompanyCode, false, nConstructionCode);
2002
                }
2003
                else
2004
                {
2005
                    // ----- ????????????????
2006
                    int DataCnt = SelRows.Count();
2007
                    MakeIndex = SelRows[DataCnt].Index;
2008
                }
2009

  
2010 1974
                // ?s??
2011 1975
                MakeNewRow(nCompanyCode, strCompnyName, nConstructionCode, 0, nRowCol, ref MakeIndex, -1, MakeIndex, strConstructionName);
2012 1976
                dgv.Rows[MakeIndex].Cells[(int)DispColumn.RowState].Value = DataRowState.Added;
......
2708 2672
                int Shoukei = dgv.Rows.Cast<DataGridViewRow>().Where(x => CommonMotions.cnvInt(x.Cells[Code_Column].Value) == Code
2709 2673
                                                                            && CommonMotions.cnvInt(x.Cells[(int)DispColumn.RowType].Value) == (int)RowsTypeDef.????
2710 2674
                                                                            && CommonMotions.cnvInt(x.Cells[(int)DispColumn.RowVisible].Value) == (int)RowVisibleDef.Visible)
2711
                                                                .Sum(y => CommonMotions.cnvInt(y.Cells[(int)TargetColumn].Value));
2675
                                                                .Sum(y => CommonMotions.cnvInt(y.Cells[TargetColumn].Value));
2712 2676

  
2713 2677
                dgv[TargetColumn, ShoukeiRowIndex].Value = Shoukei;
2714 2678

  
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmLogin.cs
388 388
                // パスワードの比較
389 389
                if (!wrkrec.PassWord.Equals(LoginPassString)) return false;
390 390

  
391
                // データセット(フォームは破棄されるの値をセットする)
391
                // データセット(フォームは破棄されるの値をセットする)
392 392
                SetLoginUserData(wrkrec);
393 393

  
394 394
                // ----- 参照部署データ取得
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenu.Designer.cs
166 166
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
167 167
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle136 = new System.Windows.Forms.DataGridViewCellStyle();
168 168
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle137 = new System.Windows.Forms.DataGridViewCellStyle();
169
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle138 = new System.Windows.Forms.DataGridViewCellStyle();
170
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle139 = new System.Windows.Forms.DataGridViewCellStyle();
171
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle140 = new System.Windows.Forms.DataGridViewCellStyle();
172
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle141 = new System.Windows.Forms.DataGridViewCellStyle();
173
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle142 = new System.Windows.Forms.DataGridViewCellStyle();
174
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle143 = new System.Windows.Forms.DataGridViewCellStyle();
175
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle144 = new System.Windows.Forms.DataGridViewCellStyle();
176
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle145 = new System.Windows.Forms.DataGridViewCellStyle();
177
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle146 = new System.Windows.Forms.DataGridViewCellStyle();
178
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle147 = new System.Windows.Forms.DataGridViewCellStyle();
179
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle148 = new System.Windows.Forms.DataGridViewCellStyle();
180
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle149 = new System.Windows.Forms.DataGridViewCellStyle();
181
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle150 = new System.Windows.Forms.DataGridViewCellStyle();
182
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle151 = new System.Windows.Forms.DataGridViewCellStyle();
183 169
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle152 = new System.Windows.Forms.DataGridViewCellStyle();
184 170
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle153 = new System.Windows.Forms.DataGridViewCellStyle();
185 171
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle154 = new System.Windows.Forms.DataGridViewCellStyle();
......
214 200
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle183 = new System.Windows.Forms.DataGridViewCellStyle();
215 201
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle184 = new System.Windows.Forms.DataGridViewCellStyle();
216 202
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle185 = new System.Windows.Forms.DataGridViewCellStyle();
217
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle189 = new System.Windows.Forms.DataGridViewCellStyle();
218 203
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle186 = new System.Windows.Forms.DataGridViewCellStyle();
219 204
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle187 = new System.Windows.Forms.DataGridViewCellStyle();
205
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle191 = new System.Windows.Forms.DataGridViewCellStyle();
220 206
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle188 = new System.Windows.Forms.DataGridViewCellStyle();
207
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle189 = new System.Windows.Forms.DataGridViewCellStyle();
208
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle190 = new System.Windows.Forms.DataGridViewCellStyle();
221 209
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
222 210
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
223 211
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
......
227 215
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
228 216
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
229 217
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
218
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle138 = new System.Windows.Forms.DataGridViewCellStyle();
219
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle139 = new System.Windows.Forms.DataGridViewCellStyle();
220
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle140 = new System.Windows.Forms.DataGridViewCellStyle();
221
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle141 = new System.Windows.Forms.DataGridViewCellStyle();
222
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle142 = new System.Windows.Forms.DataGridViewCellStyle();
223
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle143 = new System.Windows.Forms.DataGridViewCellStyle();
224
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle144 = new System.Windows.Forms.DataGridViewCellStyle();
225
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle145 = new System.Windows.Forms.DataGridViewCellStyle();
226
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle146 = new System.Windows.Forms.DataGridViewCellStyle();
227
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle147 = new System.Windows.Forms.DataGridViewCellStyle();
228
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle148 = new System.Windows.Forms.DataGridViewCellStyle();
229
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle149 = new System.Windows.Forms.DataGridViewCellStyle();
230
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle150 = new System.Windows.Forms.DataGridViewCellStyle();
231
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle151 = new System.Windows.Forms.DataGridViewCellStyle();
230 232
            this.lblTitle = new System.Windows.Forms.Label();
231 233
            this.btnEnd = new System.Windows.Forms.Button();
232 234
            this.tabMenu = new System.Windows.Forms.TabControl();
......
426 428
            this.label17 = new System.Windows.Forms.Label();
427 429
            this.label14 = new System.Windows.Forms.Label();
428 430
            this.dgvCompletionOfConstruction = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
429
            this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
430
            this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
431
            this.dataGridViewTextBoxActionColDays13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
432
            this.dataGridViewTextBoxActionColDays14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
433
            this.Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
434
            this.dataGridViewTextBoxActionColDays15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
435
            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
436
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
437
            this.dataGridViewTextBoxActionColDays16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
438
            this.dataGridViewTextBoxActionColDays17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
439
            this.dataGridViewTextBoxActionColDays18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
440
            this.dataGridViewTextBoxActionColDays19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
441 431
            this.tabPage12 = new System.Windows.Forms.TabPage();
442 432
            this.dgvActionSchedule = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
443 433
            this.ActionCol00 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
695 685
            this.btnDataCopy = new System.Windows.Forms.Button();
696 686
            this.btnConstrSearch = new System.Windows.Forms.Button();
697 687
            this.lblUpdateNotice = new System.Windows.Forms.Label();
688
            this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
689
            this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
690
            this.dataGridViewTextBoxActionColDays13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
691
            this.dataGridViewTextBoxActionColDays14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
692
            this.Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
693
            this.dataGridViewTextBoxActionColDays15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
694
            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
695
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
696
            this.Column51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
697
            this.Column50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
698
            this.dataGridViewTextBoxActionColDays16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
699
            this.dataGridViewTextBoxActionColDays17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
700
            this.dataGridViewTextBoxActionColDays18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
701
            this.dataGridViewTextBoxActionColDays19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
698 702
            this.tabMenu.SuspendLayout();
699 703
            this.tabPage1.SuspendLayout();
700 704
            ((System.ComponentModel.ISupportInitialize)(this.dgvBusinessMessage)).BeginInit();
......
3526 3530
            this.dataGridViewTextBoxActionColDays15,
3527 3531
            this.Column13,
3528 3532
            this.Column14,
3533
            this.Column51,
3534
            this.Column50,
3529 3535
            this.dataGridViewTextBoxActionColDays16,
3530 3536
            this.dataGridViewTextBoxActionColDays17,
3531 3537
            this.dataGridViewTextBoxActionColDays18,
......
3545 3551
            this.dgvCompletionOfConstruction.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSalesInProjects_CellDoubleClick);
3546 3552
            this.dgvCompletionOfConstruction.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.GridHeader_ColumnHeaderMouseClick);
3547 3553
            // 
3548
            // dataGridViewTextBoxColumn15
3549
            // 
3550
            dataGridViewCellStyle138.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
3551
            this.dataGridViewTextBoxColumn15.DefaultCellStyle = dataGridViewCellStyle138;
3552
            this.dataGridViewTextBoxColumn15.Frozen = true;
3553
            this.dataGridViewTextBoxColumn15.HeaderText = "工事コード";
3554
            this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
3555
            this.dataGridViewTextBoxColumn15.ReadOnly = true;
3556
            this.dataGridViewTextBoxColumn15.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3557
            this.dataGridViewTextBoxColumn15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3558
            this.dataGridViewTextBoxColumn15.Visible = false;
3559
            this.dataGridViewTextBoxColumn15.Width = 5;
3560
            // 
3561
            // Column18
3562
            // 
3563
            dataGridViewCellStyle139.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3564
            dataGridViewCellStyle139.ForeColor = System.Drawing.Color.Black;
3565
            this.Column18.DefaultCellStyle = dataGridViewCellStyle139;
3566
            this.Column18.Frozen = true;
3567
            this.Column18.HeaderText = "№";
3568
            this.Column18.Name = "Column18";
3569
            this.Column18.ReadOnly = true;
3570
            this.Column18.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3571
            this.Column18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3572
            this.Column18.Width = 60;
3573
            // 
3574
            // dataGridViewTextBoxActionColDays13
3575
            // 
3576
            dataGridViewCellStyle140.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3577
            this.dataGridViewTextBoxActionColDays13.DefaultCellStyle = dataGridViewCellStyle140;
3578
            this.dataGridViewTextBoxActionColDays13.Frozen = true;
3579
            this.dataGridViewTextBoxActionColDays13.HeaderText = "営業期";
3580
            this.dataGridViewTextBoxActionColDays13.Name = "dataGridViewTextBoxActionColDays13";
3581
            this.dataGridViewTextBoxActionColDays13.ReadOnly = true;
3582
            this.dataGridViewTextBoxActionColDays13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3583
            this.dataGridViewTextBoxActionColDays13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3584
            this.dataGridViewTextBoxActionColDays13.Width = 50;
3585
            // 
3586
            // dataGridViewTextBoxActionColDays14
3587
            // 
3588
            dataGridViewCellStyle141.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
3589
            this.dataGridViewTextBoxActionColDays14.DefaultCellStyle = dataGridViewCellStyle141;
3590
            this.dataGridViewTextBoxActionColDays14.Frozen = true;
3591
            this.dataGridViewTextBoxActionColDays14.HeaderText = "現  場  名  ・  工  事  名";
3592
            this.dataGridViewTextBoxActionColDays14.Name = "dataGridViewTextBoxActionColDays14";
3593
            this.dataGridViewTextBoxActionColDays14.ReadOnly = true;
3594
            this.dataGridViewTextBoxActionColDays14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3595
            this.dataGridViewTextBoxActionColDays14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3596
            this.dataGridViewTextBoxActionColDays14.Width = 460;
3597
            // 
3598
            // Column23
3599
            // 
3600
            dataGridViewCellStyle142.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3601
            this.Column23.DefaultCellStyle = dataGridViewCellStyle142;
3602
            this.Column23.HeaderText = "状   態";
3603
            this.Column23.Name = "Column23";
3604
            this.Column23.ReadOnly = true;
3605
            this.Column23.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3606
            this.Column23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3607
            // 
3608
            // dataGridViewTextBoxActionColDays15
3609
            // 
3610
            dataGridViewCellStyle143.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3611
            this.dataGridViewTextBoxActionColDays15.DefaultCellStyle = dataGridViewCellStyle143;
3612
            this.dataGridViewTextBoxActionColDays15.HeaderText = "営業担当者";
3613
            this.dataGridViewTextBoxActionColDays15.Name = "dataGridViewTextBoxActionColDays15";
3614
            this.dataGridViewTextBoxActionColDays15.ReadOnly = true;
3615
            this.dataGridViewTextBoxActionColDays15.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3616
            this.dataGridViewTextBoxActionColDays15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3617
            // 
3618
            // Column13
3619
            // 
3620
            dataGridViewCellStyle144.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3621
            this.Column13.DefaultCellStyle = dataGridViewCellStyle144;
3622
            this.Column13.HeaderText = "工事担当者";
3623
            this.Column13.Name = "Column13";
3624
            this.Column13.ReadOnly = true;
3625
            this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3626
            this.Column13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3627
            // 
3628
            // Column14
3629
            // 
3630
            dataGridViewCellStyle145.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3631
            this.Column14.DefaultCellStyle = dataGridViewCellStyle145;
3632
            this.Column14.HeaderText = "受注日";
3633
            this.Column14.Name = "Column14";
3634
            this.Column14.ReadOnly = true;
3635
            this.Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3636
            this.Column14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3637
            // 
3638
            // dataGridViewTextBoxActionColDays16
3639
            // 
3640
            dataGridViewCellStyle146.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3641
            this.dataGridViewTextBoxActionColDays16.DefaultCellStyle = dataGridViewCellStyle146;
3642
            this.dataGridViewTextBoxActionColDays16.HeaderText = "施工開始日";
3643
            this.dataGridViewTextBoxActionColDays16.Name = "dataGridViewTextBoxActionColDays16";
3644
            this.dataGridViewTextBoxActionColDays16.ReadOnly = true;
3645
            this.dataGridViewTextBoxActionColDays16.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3646
            this.dataGridViewTextBoxActionColDays16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3647
            // 
3648
            // dataGridViewTextBoxActionColDays17
3649
            // 
3650
            dataGridViewCellStyle147.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3651
            this.dataGridViewTextBoxActionColDays17.DefaultCellStyle = dataGridViewCellStyle147;
3652
            this.dataGridViewTextBoxActionColDays17.HeaderText = "施工完了日";
3653
            this.dataGridViewTextBoxActionColDays17.Name = "dataGridViewTextBoxActionColDays17";
3654
            this.dataGridViewTextBoxActionColDays17.ReadOnly = true;
3655
            this.dataGridViewTextBoxActionColDays17.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3656
            this.dataGridViewTextBoxActionColDays17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3657
            // 
3658
            // dataGridViewTextBoxActionColDays18
3659
            // 
3660
            dataGridViewCellStyle148.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
3661
            this.dataGridViewTextBoxActionColDays18.DefaultCellStyle = dataGridViewCellStyle148;
3662
            this.dataGridViewTextBoxActionColDays18.HeaderText = "現場住所";
3663
            this.dataGridViewTextBoxActionColDays18.Name = "dataGridViewTextBoxActionColDays18";
3664
            this.dataGridViewTextBoxActionColDays18.ReadOnly = true;
3665
            this.dataGridViewTextBoxActionColDays18.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3666
            this.dataGridViewTextBoxActionColDays18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3667
            this.dataGridViewTextBoxActionColDays18.Width = 400;
3668
            // 
3669
            // dataGridViewTextBoxActionColDays19
3670
            // 
3671
            dataGridViewCellStyle149.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
3672
            this.dataGridViewTextBoxActionColDays19.DefaultCellStyle = dataGridViewCellStyle149;
3673
            this.dataGridViewTextBoxActionColDays19.HeaderText = "取 引 先";
3674
            this.dataGridViewTextBoxActionColDays19.Name = "dataGridViewTextBoxActionColDays19";
3675
            this.dataGridViewTextBoxActionColDays19.ReadOnly = true;
3676
            this.dataGridViewTextBoxActionColDays19.Resizable = System.Windows.Forms.DataGridViewTriState.False;
3677
            this.dataGridViewTextBoxActionColDays19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
3678
            this.dataGridViewTextBoxActionColDays19.Width = 350;
3679
            // 
3680 3554
            // tabPage12
3681 3555
            // 
3682 3556
            this.tabPage12.BackColor = System.Drawing.Color.Black;
......
3696 3570
            this.dgvActionSchedule.AllowUserToDeleteRows = false;
3697 3571
            this.dgvActionSchedule.AllowUserToResizeColumns = false;
3698 3572
            this.dgvActionSchedule.AllowUserToResizeRows = false;
3699
            dataGridViewCellStyle150.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
3700
            this.dgvActionSchedule.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle150;
3573
            dataGridViewCellStyle152.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
3574
            this.dgvActionSchedule.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle152;
3701 3575
            this.dgvActionSchedule.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
3702 3576
            | System.Windows.Forms.AnchorStyles.Left) 
3703 3577
            | System.Windows.Forms.AnchorStyles.Right)));
3704 3578
            this.dgvActionSchedule.BackgroundColor = System.Drawing.Color.White;
3705 3579
            this.dgvActionSchedule.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3706
            dataGridViewCellStyle151.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3707
            dataGridViewCellStyle151.BackColor = System.Drawing.SystemColors.Control;
3708
            dataGridViewCellStyle151.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3709
            dataGridViewCellStyle151.ForeColor = System.Drawing.SystemColors.WindowText;
3710
            dataGridViewCellStyle151.SelectionBackColor = System.Drawing.SystemColors.Highlight;
3711
            dataGridViewCellStyle151.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
3712
            dataGridViewCellStyle151.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
3713
            this.dgvActionSchedule.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle151;
3580
            dataGridViewCellStyle153.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3581
            dataGridViewCellStyle153.BackColor = System.Drawing.SystemColors.Control;
3582
            dataGridViewCellStyle153.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3583
            dataGridViewCellStyle153.ForeColor = System.Drawing.SystemColors.WindowText;
3584
            dataGridViewCellStyle153.SelectionBackColor = System.Drawing.SystemColors.Highlight;
3585
            dataGridViewCellStyle153.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
3586
            dataGridViewCellStyle153.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
3587
            this.dgvActionSchedule.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle153;
3714 3588
            this.dgvActionSchedule.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
3715 3589
            this.dgvActionSchedule.ColumnHeadersVisible = false;
3716 3590
            this.dgvActionSchedule.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
3785 3659
            // 
3786 3660
            // ActionCol01
3787 3661
            // 
3788
            dataGridViewCellStyle152.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3789
            dataGridViewCellStyle152.ForeColor = System.Drawing.Color.Black;
3790
            this.ActionCol01.DefaultCellStyle = dataGridViewCellStyle152;
3662
            dataGridViewCellStyle154.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3663
            dataGridViewCellStyle154.ForeColor = System.Drawing.Color.Black;
3664
            this.ActionCol01.DefaultCellStyle = dataGridViewCellStyle154;
3791 3665
            this.ActionCol01.Frozen = true;
3792 3666
            this.ActionCol01.HeaderText = "部署";
3793 3667
            this.ActionCol01.Name = "ActionCol01";
......
3808 3682
            // 
3809 3683
            // ActionCol02
3810 3684
            // 
3811
            dataGridViewCellStyle153.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3812
            dataGridViewCellStyle153.ForeColor = System.Drawing.Color.Black;
3813
            this.ActionCol02.DefaultCellStyle = dataGridViewCellStyle153;
3685
            dataGridViewCellStyle155.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3686
            dataGridViewCellStyle155.ForeColor = System.Drawing.Color.Black;
3687
            this.ActionCol02.DefaultCellStyle = dataGridViewCellStyle155;
3814 3688
            this.ActionCol02.Frozen = true;
3815 3689
            this.ActionCol02.HeaderText = "担当名";
3816 3690
            this.ActionCol02.Name = "ActionCol02";
......
3821 3695
            // 
3822 3696
            // ActionCol04
3823 3697
            // 
3824
            dataGridViewCellStyle154.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3825
            dataGridViewCellStyle154.ForeColor = System.Drawing.Color.Black;
3826
            this.ActionCol04.DefaultCellStyle = dataGridViewCellStyle154;
3698
            dataGridViewCellStyle156.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3699
            dataGridViewCellStyle156.ForeColor = System.Drawing.Color.Black;
3700
            this.ActionCol04.DefaultCellStyle = dataGridViewCellStyle156;
3827 3701
            this.ActionCol04.Frozen = true;
3828 3702
            this.ActionCol04.HeaderText = "行動";
3829 3703
            this.ActionCol04.Name = "ActionCol04";
......
3831 3705
            // 
3832 3706
            // ActionColDays01
3833 3707
            // 
3834
            dataGridViewCellStyle155.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3835
            dataGridViewCellStyle155.ForeColor = System.Drawing.Color.Black;
3836
            this.ActionColDays01.DefaultCellStyle = dataGridViewCellStyle155;
3708
            dataGridViewCellStyle157.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3709
            dataGridViewCellStyle157.ForeColor = System.Drawing.Color.Black;
3710
            this.ActionColDays01.DefaultCellStyle = dataGridViewCellStyle157;
3837 3711
            this.ActionColDays01.HeaderText = "1日";
3838 3712
            this.ActionColDays01.Name = "ActionColDays01";
3839 3713
            this.ActionColDays01.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3841 3715
            // 
3842 3716
            // ActionColDays02
3843 3717
            // 
3844
            dataGridViewCellStyle156.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3845
            dataGridViewCellStyle156.ForeColor = System.Drawing.Color.Black;
3846
            this.ActionColDays02.DefaultCellStyle = dataGridViewCellStyle156;
3718
            dataGridViewCellStyle158.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3719
            dataGridViewCellStyle158.ForeColor = System.Drawing.Color.Black;
3720
            this.ActionColDays02.DefaultCellStyle = dataGridViewCellStyle158;
3847 3721
            this.ActionColDays02.HeaderText = "2日";
3848 3722
            this.ActionColDays02.Name = "ActionColDays02";
3849 3723
            this.ActionColDays02.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3851 3725
            // 
3852 3726
            // ActionColDays03
3853 3727
            // 
3854
            dataGridViewCellStyle157.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3855
            dataGridViewCellStyle157.ForeColor = System.Drawing.Color.Black;
3856
            this.ActionColDays03.DefaultCellStyle = dataGridViewCellStyle157;
3728
            dataGridViewCellStyle159.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3729
            dataGridViewCellStyle159.ForeColor = System.Drawing.Color.Black;
3730
            this.ActionColDays03.DefaultCellStyle = dataGridViewCellStyle159;
3857 3731
            this.ActionColDays03.HeaderText = "3日";
3858 3732
            this.ActionColDays03.Name = "ActionColDays03";
3859 3733
            this.ActionColDays03.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3861 3735
            // 
3862 3736
            // ActionColDays04
3863 3737
            // 
3864
            dataGridViewCellStyle158.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3865
            dataGridViewCellStyle158.ForeColor = System.Drawing.Color.Black;
3866
            this.ActionColDays04.DefaultCellStyle = dataGridViewCellStyle158;
3738
            dataGridViewCellStyle160.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3739
            dataGridViewCellStyle160.ForeColor = System.Drawing.Color.Black;
3740
            this.ActionColDays04.DefaultCellStyle = dataGridViewCellStyle160;
3867 3741
            this.ActionColDays04.HeaderText = "4日";
3868 3742
            this.ActionColDays04.Name = "ActionColDays04";
3869 3743
            this.ActionColDays04.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3871 3745
            // 
3872 3746
            // ActionColDays05
3873 3747
            // 
3874
            dataGridViewCellStyle159.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3875
            dataGridViewCellStyle159.ForeColor = System.Drawing.Color.Black;
3876
            this.ActionColDays05.DefaultCellStyle = dataGridViewCellStyle159;
3748
            dataGridViewCellStyle161.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3749
            dataGridViewCellStyle161.ForeColor = System.Drawing.Color.Black;
3750
            this.ActionColDays05.DefaultCellStyle = dataGridViewCellStyle161;
3877 3751
            this.ActionColDays05.HeaderText = "5日";
3878 3752
            this.ActionColDays05.Name = "ActionColDays05";
3879 3753
            this.ActionColDays05.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3881 3755
            // 
3882 3756
            // ActionColDays06
3883 3757
            // 
3884
            dataGridViewCellStyle160.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3885
            dataGridViewCellStyle160.ForeColor = System.Drawing.Color.Black;
3886
            this.ActionColDays06.DefaultCellStyle = dataGridViewCellStyle160;
3758
            dataGridViewCellStyle162.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3759
            dataGridViewCellStyle162.ForeColor = System.Drawing.Color.Black;
3760
            this.ActionColDays06.DefaultCellStyle = dataGridViewCellStyle162;
3887 3761
            this.ActionColDays06.HeaderText = "6日";
3888 3762
            this.ActionColDays06.Name = "ActionColDays06";
3889 3763
            this.ActionColDays06.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3891 3765
            // 
3892 3766
            // ActionColDays07
3893 3767
            // 
3894
            dataGridViewCellStyle161.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3895
            dataGridViewCellStyle161.ForeColor = System.Drawing.Color.Black;
3896
            this.ActionColDays07.DefaultCellStyle = dataGridViewCellStyle161;
3768
            dataGridViewCellStyle163.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3769
            dataGridViewCellStyle163.ForeColor = System.Drawing.Color.Black;
3770
            this.ActionColDays07.DefaultCellStyle = dataGridViewCellStyle163;
3897 3771
            this.ActionColDays07.HeaderText = "7日";
3898 3772
            this.ActionColDays07.Name = "ActionColDays07";
3899 3773
            this.ActionColDays07.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3901 3775
            // 
3902 3776
            // ActionColDays08
3903 3777
            // 
3904
            dataGridViewCellStyle162.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3905
            dataGridViewCellStyle162.ForeColor = System.Drawing.Color.Black;
3906
            this.ActionColDays08.DefaultCellStyle = dataGridViewCellStyle162;
3778
            dataGridViewCellStyle164.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3779
            dataGridViewCellStyle164.ForeColor = System.Drawing.Color.Black;
3780
            this.ActionColDays08.DefaultCellStyle = dataGridViewCellStyle164;
3907 3781
            this.ActionColDays08.HeaderText = "8日";
3908 3782
            this.ActionColDays08.Name = "ActionColDays08";
3909 3783
            this.ActionColDays08.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3911 3785
            // 
3912 3786
            // ActionColDays09
3913 3787
            // 
3914
            dataGridViewCellStyle163.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3915
            dataGridViewCellStyle163.ForeColor = System.Drawing.Color.Black;
3916
            this.ActionColDays09.DefaultCellStyle = dataGridViewCellStyle163;
3788
            dataGridViewCellStyle165.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3789
            dataGridViewCellStyle165.ForeColor = System.Drawing.Color.Black;
3790
            this.ActionColDays09.DefaultCellStyle = dataGridViewCellStyle165;
3917 3791
            this.ActionColDays09.HeaderText = "9日";
3918 3792
            this.ActionColDays09.Name = "ActionColDays09";
3919 3793
            this.ActionColDays09.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3921 3795
            // 
3922 3796
            // ActionColDays10
3923 3797
            // 
3924
            dataGridViewCellStyle164.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3925
            dataGridViewCellStyle164.ForeColor = System.Drawing.Color.Black;
3926
            this.ActionColDays10.DefaultCellStyle = dataGridViewCellStyle164;
3798
            dataGridViewCellStyle166.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3799
            dataGridViewCellStyle166.ForeColor = System.Drawing.Color.Black;
3800
            this.ActionColDays10.DefaultCellStyle = dataGridViewCellStyle166;
3927 3801
            this.ActionColDays10.HeaderText = "10日";
3928 3802
            this.ActionColDays10.Name = "ActionColDays10";
3929 3803
            this.ActionColDays10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3931 3805
            // 
3932 3806
            // ActionColDays11
3933 3807
            // 
3934
            dataGridViewCellStyle165.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3935
            dataGridViewCellStyle165.ForeColor = System.Drawing.Color.Black;
3936
            this.ActionColDays11.DefaultCellStyle = dataGridViewCellStyle165;
3808
            dataGridViewCellStyle167.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3809
            dataGridViewCellStyle167.ForeColor = System.Drawing.Color.Black;
3810
            this.ActionColDays11.DefaultCellStyle = dataGridViewCellStyle167;
3937 3811
            this.ActionColDays11.HeaderText = "11日";
3938 3812
            this.ActionColDays11.Name = "ActionColDays11";
3939 3813
            this.ActionColDays11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3941 3815
            // 
3942 3816
            // ActionColDays12
3943 3817
            // 
3944
            dataGridViewCellStyle166.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3945
            dataGridViewCellStyle166.ForeColor = System.Drawing.Color.Black;
3946
            this.ActionColDays12.DefaultCellStyle = dataGridViewCellStyle166;
3818
            dataGridViewCellStyle168.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3819
            dataGridViewCellStyle168.ForeColor = System.Drawing.Color.Black;
3820
            this.ActionColDays12.DefaultCellStyle = dataGridViewCellStyle168;
3947 3821
            this.ActionColDays12.HeaderText = "12日";
3948 3822
            this.ActionColDays12.Name = "ActionColDays12";
3949 3823
            this.ActionColDays12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3951 3825
            // 
3952 3826
            // ActionColDays13
3953 3827
            // 
3954
            dataGridViewCellStyle167.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3955
            dataGridViewCellStyle167.ForeColor = System.Drawing.Color.Black;
3956
            this.ActionColDays13.DefaultCellStyle = dataGridViewCellStyle167;
3828
            dataGridViewCellStyle169.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3829
            dataGridViewCellStyle169.ForeColor = System.Drawing.Color.Black;
3830
            this.ActionColDays13.DefaultCellStyle = dataGridViewCellStyle169;
3957 3831
            this.ActionColDays13.HeaderText = "13日";
3958 3832
            this.ActionColDays13.Name = "ActionColDays13";
3959 3833
            this.ActionColDays13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3961 3835
            // 
3962 3836
            // ActionColDays14
3963 3837
            // 
3964
            dataGridViewCellStyle168.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3965
            dataGridViewCellStyle168.ForeColor = System.Drawing.Color.Black;
3966
            this.ActionColDays14.DefaultCellStyle = dataGridViewCellStyle168;
3838
            dataGridViewCellStyle170.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3839
            dataGridViewCellStyle170.ForeColor = System.Drawing.Color.Black;
3840
            this.ActionColDays14.DefaultCellStyle = dataGridViewCellStyle170;
3967 3841
            this.ActionColDays14.HeaderText = "14日";
3968 3842
            this.ActionColDays14.Name = "ActionColDays14";
3969 3843
            this.ActionColDays14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3971 3845
            // 
3972 3846
            // ActionColDays15
3973 3847
            // 
3974
            dataGridViewCellStyle169.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3975
            dataGridViewCellStyle169.ForeColor = System.Drawing.Color.Black;
3976
            this.ActionColDays15.DefaultCellStyle = dataGridViewCellStyle169;
3848
            dataGridViewCellStyle171.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3849
            dataGridViewCellStyle171.ForeColor = System.Drawing.Color.Black;
3850
            this.ActionColDays15.DefaultCellStyle = dataGridViewCellStyle171;
3977 3851
            this.ActionColDays15.HeaderText = "15日";
3978 3852
            this.ActionColDays15.Name = "ActionColDays15";
3979 3853
            this.ActionColDays15.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3981 3855
            // 
3982 3856
            // ActionColDays16
3983 3857
            // 
3984
            dataGridViewCellStyle170.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3985
            dataGridViewCellStyle170.ForeColor = System.Drawing.Color.Black;
3986
            this.ActionColDays16.DefaultCellStyle = dataGridViewCellStyle170;
3858
            dataGridViewCellStyle172.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3859
            dataGridViewCellStyle172.ForeColor = System.Drawing.Color.Black;
3860
            this.ActionColDays16.DefaultCellStyle = dataGridViewCellStyle172;
3987 3861
            this.ActionColDays16.HeaderText = "16日";
3988 3862
            this.ActionColDays16.Name = "ActionColDays16";
3989 3863
            this.ActionColDays16.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
3991 3865
            // 
3992 3866
            // ActionColDays17
3993 3867
            // 
3994
            dataGridViewCellStyle171.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3995
            dataGridViewCellStyle171.ForeColor = System.Drawing.Color.Black;
3996
            this.ActionColDays17.DefaultCellStyle = dataGridViewCellStyle171;
3868
            dataGridViewCellStyle173.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3869
            dataGridViewCellStyle173.ForeColor = System.Drawing.Color.Black;
3870
            this.ActionColDays17.DefaultCellStyle = dataGridViewCellStyle173;
3997 3871
            this.ActionColDays17.HeaderText = "17日";
3998 3872
            this.ActionColDays17.Name = "ActionColDays17";
3999 3873
            this.ActionColDays17.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4001 3875
            // 
4002 3876
            // ActionColDays18
4003 3877
            // 
4004
            dataGridViewCellStyle172.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4005
            dataGridViewCellStyle172.ForeColor = System.Drawing.Color.Black;
4006
            this.ActionColDays18.DefaultCellStyle = dataGridViewCellStyle172;
3878
            dataGridViewCellStyle174.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3879
            dataGridViewCellStyle174.ForeColor = System.Drawing.Color.Black;
3880
            this.ActionColDays18.DefaultCellStyle = dataGridViewCellStyle174;
4007 3881
            this.ActionColDays18.HeaderText = "18日";
4008 3882
            this.ActionColDays18.Name = "ActionColDays18";
4009 3883
            this.ActionColDays18.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4011 3885
            // 
4012 3886
            // ActionColDays19
4013 3887
            // 
4014
            dataGridViewCellStyle173.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4015
            dataGridViewCellStyle173.ForeColor = System.Drawing.Color.Black;
4016
            this.ActionColDays19.DefaultCellStyle = dataGridViewCellStyle173;
3888
            dataGridViewCellStyle175.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3889
            dataGridViewCellStyle175.ForeColor = System.Drawing.Color.Black;
3890
            this.ActionColDays19.DefaultCellStyle = dataGridViewCellStyle175;
4017 3891
            this.ActionColDays19.HeaderText = "19日";
4018 3892
            this.ActionColDays19.Name = "ActionColDays19";
4019 3893
            this.ActionColDays19.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4021 3895
            // 
4022 3896
            // ActionColDays20
4023 3897
            // 
4024
            dataGridViewCellStyle174.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4025
            dataGridViewCellStyle174.ForeColor = System.Drawing.Color.Black;
4026
            this.ActionColDays20.DefaultCellStyle = dataGridViewCellStyle174;
3898
            dataGridViewCellStyle176.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3899
            dataGridViewCellStyle176.ForeColor = System.Drawing.Color.Black;
3900
            this.ActionColDays20.DefaultCellStyle = dataGridViewCellStyle176;
4027 3901
            this.ActionColDays20.HeaderText = "20日";
4028 3902
            this.ActionColDays20.Name = "ActionColDays20";
4029 3903
            this.ActionColDays20.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4031 3905
            // 
4032 3906
            // ActionColDays21
4033 3907
            // 
4034
            dataGridViewCellStyle175.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4035
            dataGridViewCellStyle175.ForeColor = System.Drawing.Color.Black;
4036
            this.ActionColDays21.DefaultCellStyle = dataGridViewCellStyle175;
3908
            dataGridViewCellStyle177.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3909
            dataGridViewCellStyle177.ForeColor = System.Drawing.Color.Black;
3910
            this.ActionColDays21.DefaultCellStyle = dataGridViewCellStyle177;
4037 3911
            this.ActionColDays21.HeaderText = "21日";
4038 3912
            this.ActionColDays21.Name = "ActionColDays21";
4039 3913
            this.ActionColDays21.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4041 3915
            // 
4042 3916
            // ActionColDays22
4043 3917
            // 
4044
            dataGridViewCellStyle176.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4045
            dataGridViewCellStyle176.ForeColor = System.Drawing.Color.Black;
4046
            this.ActionColDays22.DefaultCellStyle = dataGridViewCellStyle176;
3918
            dataGridViewCellStyle178.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3919
            dataGridViewCellStyle178.ForeColor = System.Drawing.Color.Black;
3920
            this.ActionColDays22.DefaultCellStyle = dataGridViewCellStyle178;
4047 3921
            this.ActionColDays22.HeaderText = "22日";
4048 3922
            this.ActionColDays22.Name = "ActionColDays22";
4049 3923
            this.ActionColDays22.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4051 3925
            // 
4052 3926
            // ActionColDays23
4053 3927
            // 
4054
            dataGridViewCellStyle177.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4055
            dataGridViewCellStyle177.ForeColor = System.Drawing.Color.Black;
4056
            this.ActionColDays23.DefaultCellStyle = dataGridViewCellStyle177;
3928
            dataGridViewCellStyle179.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3929
            dataGridViewCellStyle179.ForeColor = System.Drawing.Color.Black;
3930
            this.ActionColDays23.DefaultCellStyle = dataGridViewCellStyle179;
4057 3931
            this.ActionColDays23.HeaderText = "23日";
4058 3932
            this.ActionColDays23.Name = "ActionColDays23";
4059 3933
            this.ActionColDays23.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4061 3935
            // 
4062 3936
            // ActionColDays24
4063 3937
            // 
4064
            dataGridViewCellStyle178.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4065
            dataGridViewCellStyle178.ForeColor = System.Drawing.Color.Black;
4066
            this.ActionColDays24.DefaultCellStyle = dataGridViewCellStyle178;
3938
            dataGridViewCellStyle180.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3939
            dataGridViewCellStyle180.ForeColor = System.Drawing.Color.Black;
3940
            this.ActionColDays24.DefaultCellStyle = dataGridViewCellStyle180;
4067 3941
            this.ActionColDays24.HeaderText = "24日";
4068 3942
            this.ActionColDays24.Name = "ActionColDays24";
4069 3943
            this.ActionColDays24.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4071 3945
            // 
4072 3946
            // ActionColDays25
4073 3947
            // 
4074
            dataGridViewCellStyle179.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4075
            dataGridViewCellStyle179.ForeColor = System.Drawing.Color.Black;
4076
            this.ActionColDays25.DefaultCellStyle = dataGridViewCellStyle179;
3948
            dataGridViewCellStyle181.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3949
            dataGridViewCellStyle181.ForeColor = System.Drawing.Color.Black;
3950
            this.ActionColDays25.DefaultCellStyle = dataGridViewCellStyle181;
4077 3951
            this.ActionColDays25.HeaderText = "25日";
4078 3952
            this.ActionColDays25.Name = "ActionColDays25";
4079 3953
            this.ActionColDays25.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4081 3955
            // 
4082 3956
            // ActionColDays26
4083 3957
            // 
4084
            dataGridViewCellStyle180.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4085
            dataGridViewCellStyle180.ForeColor = System.Drawing.Color.Black;
4086
            this.ActionColDays26.DefaultCellStyle = dataGridViewCellStyle180;
3958
            dataGridViewCellStyle182.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3959
            dataGridViewCellStyle182.ForeColor = System.Drawing.Color.Black;
3960
            this.ActionColDays26.DefaultCellStyle = dataGridViewCellStyle182;
4087 3961
            this.ActionColDays26.HeaderText = "26日";
4088 3962
            this.ActionColDays26.Name = "ActionColDays26";
4089 3963
            this.ActionColDays26.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4091 3965
            // 
4092 3966
            // ActionColDays27
4093 3967
            // 
4094
            dataGridViewCellStyle181.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4095
            dataGridViewCellStyle181.ForeColor = System.Drawing.Color.Black;
4096
            this.ActionColDays27.DefaultCellStyle = dataGridViewCellStyle181;
3968
            dataGridViewCellStyle183.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3969
            dataGridViewCellStyle183.ForeColor = System.Drawing.Color.Black;
3970
            this.ActionColDays27.DefaultCellStyle = dataGridViewCellStyle183;
4097 3971
            this.ActionColDays27.HeaderText = "27日";
4098 3972
            this.ActionColDays27.Name = "ActionColDays27";
4099 3973
            this.ActionColDays27.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4101 3975
            // 
4102 3976
            // ActionColDays28
4103 3977
            // 
4104
            dataGridViewCellStyle182.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4105
            dataGridViewCellStyle182.ForeColor = System.Drawing.Color.Black;
4106
            this.ActionColDays28.DefaultCellStyle = dataGridViewCellStyle182;
3978
            dataGridViewCellStyle184.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3979
            dataGridViewCellStyle184.ForeColor = System.Drawing.Color.Black;
3980
            this.ActionColDays28.DefaultCellStyle = dataGridViewCellStyle184;
4107 3981
            this.ActionColDays28.HeaderText = "28日";
4108 3982
            this.ActionColDays28.Name = "ActionColDays28";
4109 3983
            this.ActionColDays28.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4111 3985
            // 
4112 3986
            // ActionColDays29
4113 3987
            // 
4114
            dataGridViewCellStyle183.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4115
            dataGridViewCellStyle183.ForeColor = System.Drawing.Color.Black;
4116
            this.ActionColDays29.DefaultCellStyle = dataGridViewCellStyle183;
3988
            dataGridViewCellStyle185.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3989
            dataGridViewCellStyle185.ForeColor = System.Drawing.Color.Black;
3990
            this.ActionColDays29.DefaultCellStyle = dataGridViewCellStyle185;
4117 3991
            this.ActionColDays29.HeaderText = "29日";
4118 3992
            this.ActionColDays29.Name = "ActionColDays29";
4119 3993
            this.ActionColDays29.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4121 3995
            // 
4122 3996
            // ActionColDays30
4123 3997
            // 
4124
            dataGridViewCellStyle184.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4125
            dataGridViewCellStyle184.ForeColor = System.Drawing.Color.Black;
4126
            this.ActionColDays30.DefaultCellStyle = dataGridViewCellStyle184;
3998
            dataGridViewCellStyle186.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
3999
            dataGridViewCellStyle186.ForeColor = System.Drawing.Color.Black;
4000
            this.ActionColDays30.DefaultCellStyle = dataGridViewCellStyle186;
4127 4001
            this.ActionColDays30.HeaderText = "30日";
4128 4002
            this.ActionColDays30.Name = "ActionColDays30";
4129 4003
            this.ActionColDays30.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4131 4005
            // 
4132 4006
            // ActionColDays31
4133 4007
            // 
4134
            dataGridViewCellStyle185.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4135
            dataGridViewCellStyle185.ForeColor = System.Drawing.Color.Black;
4136
            this.ActionColDays31.DefaultCellStyle = dataGridViewCellStyle185;
4008
            dataGridViewCellStyle187.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4009
            dataGridViewCellStyle187.ForeColor = System.Drawing.Color.Black;
4010
            this.ActionColDays31.DefaultCellStyle = dataGridViewCellStyle187;
4137 4011
            this.ActionColDays31.HeaderText = "31日";
4138 4012
            this.ActionColDays31.Name = "ActionColDays31";
4139 4013
            this.ActionColDays31.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
4233 4107
            this.dgvStaffAssignment.RowHeadersVisible = false;
4234 4108
            this.dgvStaffAssignment.RowHeadersWidth = 20;
4235 4109
            this.dgvStaffAssignment.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
4236
            dataGridViewCellStyle189.BackColor = System.Drawing.Color.White;
4237
            this.dgvStaffAssignment.RowsDefaultCellStyle = dataGridViewCellStyle189;
4110
            dataGridViewCellStyle191.BackColor = System.Drawing.Color.White;
4111
            this.dgvStaffAssignment.RowsDefaultCellStyle = dataGridViewCellStyle191;
4238 4112
            this.dgvStaffAssignment.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
4239 4113
            this.dgvStaffAssignment.RowTemplate.DefaultCellStyle.BackColor = System.Drawing.Color.White;
4240 4114
            this.dgvStaffAssignment.RowTemplate.DefaultCellStyle.ForeColor = System.Drawing.Color.Black;
......
4259 4133
            // 
4260 4134
            // StaffFixColumn01
4261 4135
            // 
4262
            dataGridViewCellStyle186.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4263
            dataGridViewCellStyle186.ForeColor = System.Drawing.Color.Black;
4264
            this.StaffFixColumn01.DefaultCellStyle = dataGridViewCellStyle186;
4136
            dataGridViewCellStyle188.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4137
            dataGridViewCellStyle188.ForeColor = System.Drawing.Color.Black;
4138
            this.StaffFixColumn01.DefaultCellStyle = dataGridViewCellStyle188;
4265 4139
            this.StaffFixColumn01.Frozen = true;
4266 4140
            this.StaffFixColumn01.HeaderText = "部署";
4267 4141
            this.StaffFixColumn01.Name = "StaffFixColumn01";
......
4283 4157
            // 
4284 4158
            // StaffFixColumn03
4285 4159
            // 
4286
            dataGridViewCellStyle187.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4287
            dataGridViewCellStyle187.ForeColor = System.Drawing.Color.Black;
4288
            this.StaffFixColumn03.DefaultCellStyle = dataGridViewCellStyle187;
4160
            dataGridViewCellStyle189.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4161
            dataGridViewCellStyle189.ForeColor = System.Drawing.Color.Black;
4162
            this.StaffFixColumn03.DefaultCellStyle = dataGridViewCellStyle189;
4289 4163
            this.StaffFixColumn03.Frozen = true;
4290 4164
            this.StaffFixColumn03.HeaderText = "担当名";
4291 4165
            this.StaffFixColumn03.Name = "StaffFixColumn03";
......
4316 4190
            // 
4317 4191
            // StaffFixColumn06
4318 4192
            // 
4319
            dataGridViewCellStyle188.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4320
            dataGridViewCellStyle188.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4321
            dataGridViewCellStyle188.ForeColor = System.Drawing.Color.Black;
4322
            this.StaffFixColumn06.DefaultCellStyle = dataGridViewCellStyle188;
4193
            dataGridViewCellStyle190.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
4194
            dataGridViewCellStyle190.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4195
            dataGridViewCellStyle190.ForeColor = System.Drawing.Color.Black;
4196
            this.StaffFixColumn06.DefaultCellStyle = dataGridViewCellStyle190;
4323 4197
            this.StaffFixColumn06.Frozen = true;
4324 4198
            this.StaffFixColumn06.HeaderText = "行動";
4325 4199
            this.StaffFixColumn06.Name = "StaffFixColumn06";
......
5044 4918
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5045 4919
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5046 4920
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5047
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1143, 1224);
4921
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1109, 1224);
5048 4922
            this.tblLayoutConstruction.TabIndex = 15;
5049 4923
            // 
5050 4924
            // lblConstrLine01
......
5054 4928
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine01, 10);
5055 4929
            this.lblConstrLine01.Location = new System.Drawing.Point(3, 267);
5056 4930
            this.lblConstrLine01.Name = "lblConstrLine01";
5057
            this.lblConstrLine01.Size = new System.Drawing.Size(1137, 6);
4931
            this.lblConstrLine01.Size = new System.Drawing.Size(1103, 6);
5058 4932
            this.lblConstrLine01.TabIndex = 15;
5059 4933
            // 
5060 4934
            // btnConstruction0000
5061 4935
            // 
5062 4936
            this.btnConstruction0000.Dock = System.Windows.Forms.DockStyle.Fill;
5063
            this.btnConstruction0000.Location = new System.Drawing.Point(106, 39);
4937
            this.btnConstruction0000.Location = new System.Drawing.Point(103, 39);
5064 4938
            this.btnConstruction0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5065 4939
            this.btnConstruction0000.Name = "btnConstruction0000";
5066
            this.btnConstruction0000.Size = new System.Drawing.Size(186, 30);
4940
            this.btnConstruction0000.Size = new System.Drawing.Size(180, 30);
5067 4941
            this.btnConstruction0000.TabIndex = 15;
5068 4942
            this.btnConstruction0000.Text = "各工事詳細台帳閲覧";
5069 4943
            this.btnConstruction0000.UseVisualStyleBackColor = true;
......
5076 4950
            | System.Windows.Forms.AnchorStyles.Right)));
5077 4951
            this.lblConstrTitle01.AutoSize = true;
5078 4952
            this.lblConstrTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5079
            this.lblConstrTitle01.Location = new System.Drawing.Point(105, 0);
4953
            this.lblConstrTitle01.Location = new System.Drawing.Point(102, 0);
5080 4954
            this.lblConstrTitle01.Name = "lblConstrTitle01";
5081
            this.lblConstrTitle01.Size = new System.Drawing.Size(188, 36);
4955
            this.lblConstrTitle01.Size = new System.Drawing.Size(182, 36);
5082 4956
            this.lblConstrTitle01.TabIndex = 15;
5083 4957
            this.lblConstrTitle01.Text = "日次(施工)管理";
5084 4958
            this.lblConstrTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5092 4966
            this.lblConstr00.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5093 4967
            this.lblConstr00.Location = new System.Drawing.Point(3, 36);
5094 4968
            this.lblConstr00.Name = "lblConstr00";
5095
            this.lblConstr00.Size = new System.Drawing.Size(96, 36);
4969
            this.lblConstr00.Size = new System.Drawing.Size(93, 36);
5096 4970
            this.lblConstr00.TabIndex = 15;
5097 4971
            this.lblConstr00.Text = "毎日";
5098 4972
            this.lblConstr00.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5100 4974
            // btnConstruction0001
5101 4975
            // 
5102 4976
            this.btnConstruction0001.Dock = System.Windows.Forms.DockStyle.Fill;
5103
            this.btnConstruction0001.Location = new System.Drawing.Point(317, 39);
4977
            this.btnConstruction0001.Location = new System.Drawing.Point(307, 39);
5104 4978
            this.btnConstruction0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5105 4979
            this.btnConstruction0001.Name = "btnConstruction0001";
5106
            this.btnConstruction0001.Size = new System.Drawing.Size(186, 30);
4980
            this.btnConstruction0001.Size = new System.Drawing.Size(180, 30);
5107 4981
            this.btnConstruction0001.TabIndex = 15;
5108 4982
            this.btnConstruction0001.Text = "各工事日報";
5109 4983
            this.btnConstruction0001.UseVisualStyleBackColor = true;
......
5112 4986
            // btnConstruction0002
5113 4987
            // 
5114 4988
            this.btnConstruction0002.Dock = System.Windows.Forms.DockStyle.Fill;
5115
            this.btnConstruction0002.Location = new System.Drawing.Point(528, 39);
4989
            this.btnConstruction0002.Location = new System.Drawing.Point(511, 39);
5116 4990
            this.btnConstruction0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5117 4991
            this.btnConstruction0002.Name = "btnConstruction0002";
5118
            this.btnConstruction0002.Size = new System.Drawing.Size(186, 30);
4992
            this.btnConstruction0002.Size = new System.Drawing.Size(180, 30);
5119 4993
            this.btnConstruction0002.TabIndex = 15;
5120 4994
            this.btnConstruction0002.Text = "各工事打合わせ議事録";
5121 4995
            this.btnConstruction0002.UseVisualStyleBackColor = true;
......
5124 4998
            // btnConstruction0003
5125 4999
            // 
5126 5000
            this.btnConstruction0003.Dock = System.Windows.Forms.DockStyle.Fill;
5127
            this.btnConstruction0003.Location = new System.Drawing.Point(739, 39);
5001
            this.btnConstruction0003.Location = new System.Drawing.Point(715, 39);
5128 5002
            this.btnConstruction0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5129 5003
            this.btnConstruction0003.Name = "btnConstruction0003";
5130
            this.btnConstruction0003.Size = new System.Drawing.Size(186, 30);
5004
            this.btnConstruction0003.Size = new System.Drawing.Size(180, 30);
5131 5005
            this.btnConstruction0003.TabIndex = 15;
5132 5006
            this.btnConstruction0003.Text = "各工事交通費・購入品入力";
5133 5007
            this.btnConstruction0003.UseVisualStyleBackColor = true;
......
5136 5010
            // btnConstruction0004
5137 5011
            // 
5138 5012
            this.btnConstruction0004.Dock = System.Windows.Forms.DockStyle.Fill;
5139
            this.btnConstruction0004.Location = new System.Drawing.Point(950, 39);
5013
            this.btnConstruction0004.Location = new System.Drawing.Point(919, 39);
5140 5014
            this.btnConstruction0004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5141 5015
            this.btnConstruction0004.Name = "btnConstruction0004";
5142
            this.btnConstruction0004.Size = new System.Drawing.Size(189, 30);
5016
            this.btnConstruction0004.Size = new System.Drawing.Size(186, 30);
5143 5017
            this.btnConstruction0004.TabIndex = 15;
5144 5018
            this.btnConstruction0004.Text = "出勤管理";
5145 5019
            this.btnConstruction0004.UseVisualStyleBackColor = true;
......
5148 5022
            // btnConstruction0100
5149 5023
            // 
5150 5024
            this.btnConstruction0100.Dock = System.Windows.Forms.DockStyle.Fill;
5151
            this.btnConstruction0100.Location = new System.Drawing.Point(106, 111);
5025
            this.btnConstruction0100.Location = new System.Drawing.Point(103, 111);
5152 5026
            this.btnConstruction0100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5153 5027
            this.btnConstruction0100.Name = "btnConstruction0100";
5154
            this.btnConstruction0100.Size = new System.Drawing.Size(186, 30);
5028
            this.btnConstruction0100.Size = new System.Drawing.Size(180, 30);
5155 5029
            this.btnConstruction0100.TabIndex = 15;
5156 5030
            this.btnConstruction0100.Text = "行動予定入力";
5157 5031
            this.btnConstruction0100.UseVisualStyleBackColor = true;
......
5160 5034
            // btnConstruction0101
5161 5035
            // 
5162 5036
            this.btnConstruction0101.Dock = System.Windows.Forms.DockStyle.Fill;
5163
            this.btnConstruction0101.Location = new System.Drawing.Point(317, 111);
5037
            this.btnConstruction0101.Location = new System.Drawing.Point(307, 111);
5164 5038
            this.btnConstruction0101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5165 5039
            this.btnConstruction0101.Name = "btnConstruction0101";
5166
            this.btnConstruction0101.Size = new System.Drawing.Size(186, 30);
5040
            this.btnConstruction0101.Size = new System.Drawing.Size(180, 30);
5167 5041
            this.btnConstruction0101.TabIndex = 15;
5168 5042
            this.btnConstruction0101.Text = "車両予約";
5169 5043
            this.btnConstruction0101.UseVisualStyleBackColor = true;
......
5178 5052
            this.lblConstr01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5179 5053
            this.lblConstr01.Location = new System.Drawing.Point(3, 108);
5180 5054
            this.lblConstr01.Name = "lblConstr01";
5181
            this.lblConstr01.Size = new System.Drawing.Size(96, 36);
5055
            this.lblConstr01.Size = new System.Drawing.Size(93, 36);
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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