プロジェクト

全般

プロフィール

リビジョン 86

堀内7年以上前に追加

工事詳細台帳登録時バグ修正・データ連携機能プロトタイプ実装

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsSystemOnceExecute.cs
317 317
                if (!cbiDB.ExecuteReader(strSQL, ref arList)) return false;
318 318

  
319 319
                string DetailString = string.Empty;
320
                int SalesPersonCode = 0;
320
                //int SalesPersonCode = 0;
321 321
                string SalesPersonName = string.Empty;
322 322
                int ConstructionPersonCode = 0;
323 323
                string ConstructionPersonName = string.Empty;
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOEstimateBudget.cs
386 386
                        break;
387 387
                }
388 388

  
389
                strcmd += ", UpdateDate = STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
389
                strcmd += ", UpdateDate = NOW()";
390 390
                strcmd += CreatePrimarykeyString(ConstructionCode);
391 391

  
392 392
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPurchaseOrderDetail.cs
220 220
                strcmd += string.Format(", {0}", work.OrdersLinePrice);         // 金額
221 221
                strcmd += string.Format(", {0}", work.SourceCode);              // 予算作成時工事番号
222 222

  
223
                strcmd += ", STR_TO_DATE(TO_CHAR(sysdate,'%Y/%m/%d %H:%i:%'),'%Y/%m/%d %H:%i:%s')";
224
                strcmd += ", STR_TO_DATE(TO_CHAR(sysdate,'%Y/%m/%d %H:%i:%'),'%Y/%m/%d %H:%i:%s')";
223
                strcmd += ", NOW()";
224
                strcmd += ", NOW()";
225 225
                strcmd = strcmd + ")";
226 226

  
227 227
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOSystemExecute.cs
184 184
            strcmd += string.Format(",{0}", work.SystemVersion);
185 185
            strcmd += string.Format(",{0}", work.UpDateCopyVersion);
186 186

  
187
            strcmd += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%'),'%Y/%m/%d %H:%i:%s')";
188
            strcmd += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%'),'%Y/%m/%d %H:%i:%s')";
187
            strcmd += ", NOW()";
188
            strcmd += ", NOW()";
189 189
            strcmd = strcmd + ")";
190 190

  
191 191
            return strcmd;
......
267 267
                strcmd += string.Format(", SystemVersion = {0}", data.SystemVersion);
268 268
                strcmd += string.Format(", UpDateCopyVersion = {0}", data.UpDateCopyVersion);
269 269

  
270
                strcmd += ", UpdateDate = STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%'),'%Y/%m/%d %H:%i:%s')";
270
                strcmd += ", UpdateDate = NOW()";
271 271
                strcmd += AddSQLString;
272 272

  
273 273
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalPerson/SourceUpdate.cs
147 147
                strSQL += " MailAddress,";
148 148
                strSQL += " Note,";
149 149
                strSQL += " 0,";
150
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s'),";
151
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
150
                strSQL += " NOW(),";
151
                strSQL += " NOW()";
152 152
                strSQL += " FROM COSTOMERREGIST";
153 153

  
154 154
                strSQL += SourceSQL;
......
213 213
                strSQL += string.Format(", Note = '{0}'", RegistRec.Note);
214 214
                strSQL += string.Format(", MailAddress = '{0}'", RegistRec.MailAddress);
215 215

  
216
                strSQL += ", UpdateDate = STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
216
                strSQL += ", UpdateDate = NOW()";
217 217

  
218 218
                strSQL += OrderDB.CreatePrimarykeyString(RegistRec.SourceCotegory, RegistRec.SourceCode);
219 219
                if (!OrderDB.ExecuteNonQuery(strSQL, false))
......
340 340
                strSQL += " Note,";
341 341
                strSQL += " labourKind,";
342 342
                strSQL += " 0,";
343
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s'),";
344
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
343
                strSQL += " NOW(),";
344
                strSQL += " NOW()";
345 345
                strSQL += " FROM SUBCONSTRREGIST";
346 346

  
347 347
                strSQL += SourceSQL;
......
398 398
                strSQL += string.Format(" {0},", RegistRec.SourceCode);
399 399
                strSQL += " ItemCode,";
400 400
                strSQL += " DisplayOrder,";
401
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s'),";
402
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
401
                strSQL += " NOW(),";
402
                strSQL += " NOW()";
403 403
                strSQL += " FROM SubConstrJobItemRegist";
404 404

  
405 405
                strSQL += SourceSQL;
......
442 442
                strSQL += string.Format(" {0},", RegistRec.SourceCode);
443 443
                strSQL += " JobCategoryCode,";
444 444
                strSQL += " DisplayOrder,";
445
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s'),";
446
                strSQL += " STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
445
                strSQL += " NOW(),";
446
                strSQL += " NOW()";
447 447
                strSQL += " FROM SubConstrJobLinkRegist";
448 448

  
449 449
                strSQL += SourceSQL;
......
496 496
                strSQL += string.Format(", Note = '{0}'", RegistRec.Note);
497 497
                strSQL += string.Format(", labourKind = {0}", RegistRec.labourKind);
498 498

  
499
                strSQL += ", UpdateDate = STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
499
                strSQL += ", UpdateDate = NOW()";
500 500

  
501 501
                strSQL += SubDB.CreatePrimarykeyString(RegistRec.SourceCode);
502 502
                if (!SubDB.ExecuteNonQuery(strSQL, false))
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmConstructionLedger.cs
624 624
        /// </summary>
625 625
        private bool m_RollBackJoinLedger = false;
626 626

  
627
        // *-----* ?????????A?g *-----*
628
        /// <summary>
629
        /// ?????????A?g?t???O
630
        /// </summary>
631
        private bool m_BillingProc = false;
632

  
633
        /// <summary>
634
        /// ?????????A?g?p?e?n???h??
635
        /// </summary>
636
        private FrmLedgerTest m_FrmLedgerTest = null;
637
        // *-----* ?????????A?g *-----*
627 638
        #endregion
628 639

  
629 640
        #region ?v???p?e?B
......
760 771
            get { return m_RollBackJoinLedger; }
761 772
            set { m_RollBackJoinLedger = value; }
762 773
        }
774

  
775
        // *-----* ?????????A?g *-----*
776
        /// <summary>
777
        /// ?????????A?g?t???O
778
        /// </summary>
779
        public bool BillingProc
780
        {
781
            get { return m_BillingProc; }
782
            set { m_BillingProc = value; }
783
        }
784
        /// <summary>
785
        /// ?????????A?g?p?e?n???h??
786
        /// </summary>
787
        public FrmLedgerTest FrmLedgerTest
788
        {
789
            set { m_FrmLedgerTest = value; }
790
        }
791
        // *-----* ?????????A?g *-----*
792

  
763 793
        #endregion
764 794

  
765 795
        #region ?R???X?g???N?^
......
1180 1210
            // ?^?C?g????????????
1181 1211
            if (CommonMotions.cnvInt(dgv.CurrentRow.Cells[(int)GridColumn.TitleFlg].Value) == 1) return;
1182 1212

  
1183
            switch (e.ColumnIndex)
1213
            // ?????????A?g
1214
            if (m_BillingProc) BillingLinkOutPut();
1215

  
1216
                switch (e.ColumnIndex)
1184 1217
            {
1185 1218
                // ----- ????????Z??
1186 1219
                case (int)GridColumn.CompanyName:
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmConstructionLedgerAuxiliary.cs
4383 4383
                strSQL += string.Format(", {0}", CommonMotions.cnvDouble(wrkRow.Cells[(int)GridColumn.SalaryOnRegist].Value));      // 登録時月額給与
4384 4384
                strSQL += string.Format(", {0}", CommonMotions.cnvInt(wrkRow.Cells[(int)GridColumn.PurchaseOrderFlg].Value));       // 注文書発行フラグ
4385 4385

  
4386
                strSQL += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
4387
                strSQL += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
4386
                strSQL += ", NOW()";
4387
                strSQL += ", NOW()";
4388 4388
                strSQL = strSQL + ")";
4389 4389

  
4390 4390
            }
......
4490 4490
                } // iRows
4491 4491

  
4492 4492
                // データ登録
4493
                if (strInsert.Length > 0)
4493
                if (strInsert.Length < 0) return true;
4494

  
4495
                string strSQL = "INSERT INTO CONSTRUCTIONLEDGEREXCUTE";
4496
                strSQL += " (";
4497
                bool bFirst = true;
4498
                foreach (var gender in Enum.GetValues(typeof(IOConstructionLedgerExcute.TableColumn)))
4494 4499
                {
4495
                    string strSQL = "INSERT ALL";
4496
                    strSQL += strInsert;
4497
                    strSQL += " SELECT * FROM DUAL";
4498
                    if (!ExcuteDB.ExecuteNonQuery(strSQL, false))
4499
                    {
4500
                        MessageBox.Show("工事詳細台帳実行データ:追加登録に失敗しました。", "登録エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
4501
                        return false;
4502
                    }
4500
                    if (!bFirst) strSQL += " ,";
4501
                    strSQL += gender.ToString();
4502
                    bFirst = false;
4503 4503
                }
4504
                strSQL += ") VALUES";
4505
                strSQL += strInsert;
4506
                if (!ExcuteDB.ExecuteNonQuery(strSQL, false))
4507
                {
4508
                    MessageBox.Show("工事詳細台帳実行データ:追加登録に失敗しました。", "登録エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
4509
                    return false;
4510
                }
4504 4511

  
4505 4512
                return true;
4506 4513
            }
......
4520 4527
        {
4521 4528
            try
4522 4529
            {
4523
                strSQL += " INTO CONSTRUCTIONLEDGEREXCUTE";
4530
                if (strSQL.Length == 0) strSQL += " (";
4531
                else strSQL += ", (";
4524 4532

  
4525
                strSQL += " (";
4526
                bool bFirst = true;
4527
                foreach (var gender in Enum.GetValues(typeof(IOConstructionLedgerExcute.TableColumn)))
4528
                {
4529
                    if (!bFirst) strSQL += " ,";
4530
                    strSQL += gender.ToString();
4531
                    bFirst = false;
4532
                }
4533
                strSQL += ") VALUES (";
4534 4533
                strSQL += string.Format("  {0}", m_ConstructionCode);                                                           // 工事番号
4535 4534
                strSQL += string.Format(", {0}", CommonMotions.cnvInt(wrkRow.Cells[(int)GridColumn.GroupCount].Value));         // グループ番号
4536 4535
                strSQL += string.Format(", {0}", RowLineCnt);                                                                   // 行番号
......
4539 4538
                string strTarget = CommonMotions.cnvString(dgvAllDisplay.Columns[ColCnt].HeaderCell.Value).Replace("年", "/").Replace("月", "/") + "01";
4540 4539
                strSQL += string.Format(", STR_TO_DATE('{0}','%Y/%m/%d')", CommonMotions.cnvDate(strTarget).ToShortDateString()); // 対象年月
4541 4540

  
4542
                strSQL += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
4543
                strSQL += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
4541
                strSQL += ", NOW()";
4542
                strSQL += ", NOW()";
4544 4543
                strSQL += ")";
4545 4544
            }
4546 4545
            catch (System.Exception ex)
......
7813 7812
        #endregion
7814 7813
        // ---------- 終了時台帳データ削除↑↑
7815 7814

  
7815
        // ---------- データ連携処理↓↓
7816
        /// <summary>
7817
        /// 請求処理連携時アウトプット処理
7818
        /// </summary>
7819
        private void BillingLinkOutPut()
7820
        {
7821
            try
7822
            {
7823
                DataGridView dgv = dgvAllDisplay;
7824
                m_FrmLedgerTest.GetchildData(dgv.CurrentCell);
7825
            }
7826
            catch (Exception ex)
7827
            {
7828
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
7829
            }
7830
        }
7831
        /// <summary>
7832
        /// 請求処理連携時インプット処理
7833
        /// </summary>
7834
        public void BillingLinkInPut(int SetRow, int SetCol, int SetValue)
7835
        {
7836
            try
7837
            {
7838
                // 請求処理連携以外は処理しない
7839
                if (!m_BillingProc) return;
7840

  
7841
                DataGridView dgv = dgvAllDisplay;
7842

  
7843
                dgv.Rows[SetRow].Cells[SetCol].Value = SetValue;
7844
                dgv.EndEdit();
7845
            }
7846
            catch (Exception ex)
7847
            {
7848
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
7849
            }
7850
        }
7851
        // ---------- データ連携処理↑↑
7852

  
7816 7853
        // ---------- データコンバートロジック
7817 7854
        #region フラグコンバート
7818 7855
        /// <summary>
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmLedgerTest.Designer.cs
1
namespace ProcessManagement.Forms.DataEntry
2
{
3
    partial class FrmLedgerTest
4
    {
5
        /// <summary>
6
        /// Required designer variable.
7
        /// </summary>
8
        private System.ComponentModel.IContainer components = null;
9

  
10
        /// <summary>
11
        /// Clean up any resources being used.
12
        /// </summary>
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
        protected override void Dispose(bool disposing)
15
        {
16
            if (disposing && (components != null))
17
            {
18
                components.Dispose();
19
            }
20
            base.Dispose(disposing);
21
        }
22

  
23
        #region Windows Form Designer generated code
24

  
25
        /// <summary>
26
        /// Required method for Designer support - do not modify
27
        /// the contents of this method with the code editor.
28
        /// </summary>
29
        private void InitializeComponent()
30
        {
31
            this.btnExec = new System.Windows.Forms.Button();
32
            this.btnEnd = new System.Windows.Forms.Button();
33
            this.label1 = new System.Windows.Forms.Label();
34
            this.textBox1 = new System.Windows.Forms.TextBox();
35
            this.btnSetValue = new System.Windows.Forms.Button();
36
            this.label2 = new System.Windows.Forms.Label();
37
            this.label3 = new System.Windows.Forms.Label();
38
            this.label4 = new System.Windows.Forms.Label();
39
            this.label5 = new System.Windows.Forms.Label();
40
            this.lblDsp01 = new System.Windows.Forms.Label();
41
            this.lblDsp02 = new System.Windows.Forms.Label();
42
            this.textBox2 = new System.Windows.Forms.TextBox();
43
            this.SuspendLayout();
44
            // 
45
            // btnExec
46
            // 
47
            this.btnExec.BackColor = System.Drawing.Color.LimeGreen;
48
            this.btnExec.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
49
            this.btnExec.ForeColor = System.Drawing.Color.Black;
50
            this.btnExec.Location = new System.Drawing.Point(332, 10);
51
            this.btnExec.Name = "btnExec";
52
            this.btnExec.Size = new System.Drawing.Size(140, 36);
53
            this.btnExec.TabIndex = 0;
54
            this.btnExec.Text = "画面起動";
55
            this.btnExec.UseVisualStyleBackColor = false;
56
            this.btnExec.Click += new System.EventHandler(this.btnExec_Click);
57
            // 
58
            // btnEnd
59
            // 
60
            this.btnEnd.BackColor = System.Drawing.Color.Red;
61
            this.btnEnd.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
62
            this.btnEnd.ForeColor = System.Drawing.Color.White;
63
            this.btnEnd.Location = new System.Drawing.Point(332, 199);
64
            this.btnEnd.Name = "btnEnd";
65
            this.btnEnd.Size = new System.Drawing.Size(140, 36);
66
            this.btnEnd.TabIndex = 3;
67
            this.btnEnd.Text = "終 了";
68
            this.btnEnd.UseVisualStyleBackColor = false;
69
            this.btnEnd.Click += new System.EventHandler(this.btnEnd_Click);
70
            // 
71
            // label1
72
            // 
73
            this.label1.AutoSize = true;
74
            this.label1.Location = new System.Drawing.Point(24, 20);
75
            this.label1.Name = "label1";
76
            this.label1.Size = new System.Drawing.Size(76, 16);
77
            this.label1.TabIndex = 4;
78
            this.label1.Text = "工事番号";
79
            // 
80
            // textBox1
81
            // 
82
            this.textBox1.Location = new System.Drawing.Point(139, 17);
83
            this.textBox1.Name = "textBox1";
84
            this.textBox1.Size = new System.Drawing.Size(151, 23);
85
            this.textBox1.TabIndex = 5;
86
            // 
87
            // btnSetValue
88
            // 
89
            this.btnSetValue.BackColor = System.Drawing.Color.Green;
90
            this.btnSetValue.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
91
            this.btnSetValue.ForeColor = System.Drawing.Color.Black;
92
            this.btnSetValue.Location = new System.Drawing.Point(332, 140);
93
            this.btnSetValue.Name = "btnSetValue";
94
            this.btnSetValue.Size = new System.Drawing.Size(140, 36);
95
            this.btnSetValue.TabIndex = 0;
96
            this.btnSetValue.Text = "入力値セット";
97
            this.btnSetValue.UseVisualStyleBackColor = false;
98
            this.btnSetValue.Click += new System.EventHandler(this.btnSetValue_Click);
99
            // 
100
            // label2
101
            // 
102
            this.label2.AutoSize = true;
103
            this.label2.Location = new System.Drawing.Point(24, 85);
104
            this.label2.Name = "label2";
105
            this.label2.Size = new System.Drawing.Size(93, 16);
106
            this.label2.TabIndex = 4;
107
            this.label2.Text = "台帳行情報";
108
            // 
109
            // label3
110
            // 
111
            this.label3.AutoSize = true;
112
            this.label3.Location = new System.Drawing.Point(24, 150);
113
            this.label3.Name = "label3";
114
            this.label3.Size = new System.Drawing.Size(76, 16);
115
            this.label3.TabIndex = 4;
116
            this.label3.Text = "セット値";
117
            // 
118
            // label4
119
            // 
120
            this.label4.AutoSize = true;
121
            this.label4.Location = new System.Drawing.Point(136, 85);
122
            this.label4.Name = "label4";
123
            this.label4.Size = new System.Drawing.Size(25, 16);
124
            this.label4.TabIndex = 6;
125
            this.label4.Text = "行";
126
            // 
127
            // label5
128
            // 
129
            this.label5.AutoSize = true;
130
            this.label5.Location = new System.Drawing.Point(217, 85);
131
            this.label5.Name = "label5";
132
            this.label5.Size = new System.Drawing.Size(59, 16);
133
            this.label5.TabIndex = 6;
134
            this.label5.Text = "カラム";
135
            // 
136
            // lblDsp01
137
            // 
138
            this.lblDsp01.BackColor = System.Drawing.Color.White;
139
            this.lblDsp01.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
140
            this.lblDsp01.Location = new System.Drawing.Point(169, 78);
141
            this.lblDsp01.Name = "lblDsp01";
142
            this.lblDsp01.Size = new System.Drawing.Size(40, 30);
143
            this.lblDsp01.TabIndex = 6;
144
            this.lblDsp01.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
145
            // 
146
            // lblDsp02
147
            // 
148
            this.lblDsp02.BackColor = System.Drawing.Color.White;
149
            this.lblDsp02.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
150
            this.lblDsp02.Location = new System.Drawing.Point(284, 78);
151
            this.lblDsp02.Name = "lblDsp02";
152
            this.lblDsp02.Size = new System.Drawing.Size(40, 30);
153
            this.lblDsp02.TabIndex = 6;
154
            this.lblDsp02.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
155
            // 
156
            // textBox2
157
            // 
158
            this.textBox2.Location = new System.Drawing.Point(139, 147);
159
            this.textBox2.Name = "textBox2";
160
            this.textBox2.Size = new System.Drawing.Size(151, 23);
161
            this.textBox2.TabIndex = 5;
162
            // 
163
            // FrmLedgerTest
164
            // 
165
            this.AcceptButton = this.btnExec;
166
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
167
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
168
            this.BackColor = System.Drawing.Color.WhiteSmoke;
169
            this.ClientSize = new System.Drawing.Size(490, 244);
170
            this.Controls.Add(this.label5);
171
            this.Controls.Add(this.lblDsp02);
172
            this.Controls.Add(this.lblDsp01);
173
            this.Controls.Add(this.label4);
174
            this.Controls.Add(this.textBox2);
175
            this.Controls.Add(this.textBox1);
176
            this.Controls.Add(this.label3);
177
            this.Controls.Add(this.label2);
178
            this.Controls.Add(this.label1);
179
            this.Controls.Add(this.btnEnd);
180
            this.Controls.Add(this.btnSetValue);
181
            this.Controls.Add(this.btnExec);
182
            this.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
183
            this.ForeColor = System.Drawing.Color.Black;
184
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
185
            this.KeyPreview = true;
186
            this.MaximizeBox = false;
187
            this.MinimizeBox = false;
188
            this.Name = "FrmLedgerTest";
189
            this.ShowIcon = false;
190
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
191
            this.Text = "台帳テスト親フォーム";
192
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmLedgerTest_FormClosed);
193
            this.Load += new System.EventHandler(this.FrmCostStructureDiag_Load);
194
            this.ResumeLayout(false);
195
            this.PerformLayout();
196

  
197
        }
198

  
199
        #endregion
200

  
201
        private System.Windows.Forms.Button btnExec;
202
        private System.Windows.Forms.Button btnEnd;
203
        private System.Windows.Forms.Label label1;
204
        private System.Windows.Forms.TextBox textBox1;
205
        private System.Windows.Forms.Button btnSetValue;
206
        private System.Windows.Forms.Label label2;
207
        private System.Windows.Forms.Label label3;
208
        private System.Windows.Forms.Label label4;
209
        private System.Windows.Forms.Label label5;
210
        private System.Windows.Forms.Label lblDsp01;
211
        private System.Windows.Forms.Label lblDsp02;
212
        private System.Windows.Forms.TextBox textBox2;
213
    }
214
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmLedgerTest.cs
1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel;
4
using System.Data;
5
using System.Drawing;
6
using System.Linq;
7
using System.Text;
8
using System.Windows.Forms;
9

  
10
using ProcessManagement.Common;
11
using ProcessManagement.DB.IOAccess;
12
using ProcessManagement.DataModel;
13
using ProcessManagement.Forms.CustomControls;
14
using ProcessManagement.Forms.ControlsAction;
15

  
16
namespace ProcessManagement.Forms.DataEntry
17
{
18
    public partial class FrmLedgerTest : Form
19
    {
20
        #region ログ使用定義
21
        //log4netログを使用する
22
        private static readonly log4net.ILog logger = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
23
        #endregion
24

  
25
        #region 定数
26

  
27
        #endregion
28

  
29
        #region 変数
30
        /// <summary>
31
        /// 工事番号
32
        /// </summary>
33
        private int m_ConstructionCode = 0;
34

  
35
        /// <summary>
36
        /// 台帳ハンドル
37
        /// </summary>
38
        FrmConstructionLedger m_FrmLedger = null;
39
        #endregion
40

  
41
        #region プロパティ
42
        /// <summary>
43
        /// 工事番号
44
        /// </summary>
45
        public int ConstructionCode
46
        {
47
            get { return m_ConstructionCode; }
48
            set { m_ConstructionCode = value; }
49
        }
50

  
51
        #endregion
52

  
53
        #region ×ボタン
54
        /// <summary>
55
        /// ×ボタン押下処理
56
        /// </summary>
57
        /// <param name="sender"></param>
58
        /// <param name="e"></param>
59
        private void FrmLedgerTest_FormClosed(object sender, FormClosedEventArgs e)
60
        {
61
        }
62
        #endregion
63

  
64
        #region コンストラクタ
65
        /// <summary>
66
        /// フォーム初期化
67
        /// </summary>
68
        public FrmLedgerTest()
69
        {
70
            InitializeComponent();
71
        }
72
        #endregion
73

  
74
        #region フォームロード
75
        /// <summary>
76
        /// フォームロード
77
        /// </summary>
78
        /// <param name="sender"></param>
79
        /// <param name="e"></param>
80
        private void FrmCostStructureDiag_Load(object sender, EventArgs e)
81
        {
82

  
83
        }
84
        #endregion
85

  
86
        #region 台帳画面起動
87
        /// <summary>
88
        /// 台帳画面起動
89
        /// </summary>
90
        /// <param name="sender"></param>
91
        /// <param name="e"></param>
92
        private void btnExec_Click(object sender, EventArgs e)
93
        {
94
            try
95
            {
96
                m_FrmLedger = new FrmConstructionLedger();
97
                m_FrmLedger.FrmLedgerTest = this;
98
                m_FrmLedger.BillingProc = true;
99
                m_FrmLedger.ConstructionCode = CommonMotions.cnvInt(textBox1.Text);
100
                m_FrmLedger.Show();
101
            }
102
            catch (Exception ex)
103
            {
104
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
105
            }
106
        }
107
        #endregion
108

  
109
        /// <summary>
110
        /// 終了ボタン
111
        /// </summary>
112
        /// <param name="sender"></param>
113
        /// <param name="e"></param>
114
        private void btnEnd_Click(object sender, EventArgs e)
115
        {
116
            try
117
            {
118
                if (m_FrmLedger != null)
119
                {
120
                    m_FrmLedger.FrmLedgerTest = null;
121
                    m_FrmLedger.Dispose(); m_FrmLedger = null;
122
                }
123
                this.Close();
124
            }
125
            catch (Exception ex)
126
            {
127
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
128
            }
129
        }
130

  
131
        private DataGridViewCell m_LedgerCell = null;
132
        /// <summary>
133
        /// 入力値セット
134
        /// </summary>
135
        /// <param name="sender"></param>
136
        /// <param name="e"></param>
137
        private void btnSetValue_Click(object sender, EventArgs e)
138
        {
139
            try
140
            {
141
                m_FrmLedger.BillingLinkInPut(m_LedgerCell.RowIndex,
142
                                                m_LedgerCell.ColumnIndex,
143
                                                CommonMotions.cnvInt(textBox2.Text));
144
            }
145
            catch (Exception ex)
146
            {
147
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
148
            }
149
        }
150

  
151
        /// <summary>
152
        /// データ取得処理
153
        /// </summary>
154
        /// <param name="CurRow"></param>
155
        public void GetchildData(DataGridViewCell CurCell)
156
        {
157
            try
158
            {
159
                m_LedgerCell = CurCell;
160

  
161
                lblDsp01.Text = m_LedgerCell.RowIndex.ToString();
162
                lblDsp02.Text = m_LedgerCell.ColumnIndex.ToString();
163
                
164
                m_FrmLedger.BillingLinkInPut(m_LedgerCell.RowIndex,
165
                                                m_LedgerCell.ColumnIndex,
166
                                                1000);
167
                
168
            }
169
            catch (Exception ex)
170
            {
171
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
172
            }
173
        }
174
    }
175
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmLedgerTest.resx
1
<?xml version="1.0" encoding="utf-8"?>
2
<root>
3
  <!-- 
4
    Microsoft ResX Schema 
5
    
6
    Version 2.0
7
    
8
    The primary goals of this format is to allow a simple XML format 
9
    that is mostly human readable. The generation and parsing of the 
10
    various data types are done through the TypeConverter classes 
11
    associated with the data types.
12
    
13
    Example:
14
    
15
    ... ado.net/XML headers & schema ...
16
    <resheader name="resmimetype">text/microsoft-resx</resheader>
17
    <resheader name="version">2.0</resheader>
18
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23
        <value>[base64 mime encoded serialized .NET Framework object]</value>
24
    </data>
25
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27
        <comment>This is a comment</comment>
28
    </data>
29
                
30
    There are any number of "resheader" rows that contain simple 
31
    name/value pairs.
32
    
33
    Each data row contains a name, and value. The row also contains a 
34
    type or mimetype. Type corresponds to a .NET class that support 
35
    text/value conversion through the TypeConverter architecture. 
36
    Classes that don't support this are serialized and stored with the 
37
    mimetype set.
38
    
39
    The mimetype is used for serialized objects, and tells the 
40
    ResXResourceReader how to depersist the object. This is currently not 
41
    extensible. For a given mimetype the value must be set accordingly:
42
    
43
    Note - application/x-microsoft.net.object.binary.base64 is the format 
44
    that the ResXResourceWriter will generate, however the reader can 
45
    read any of the formats listed below.
46
    
47
    mimetype: application/x-microsoft.net.object.binary.base64
48
    value   : The object must be serialized with 
49
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50
            : and then encoded with base64 encoding.
51
    
52
    mimetype: application/x-microsoft.net.object.soap.base64
53
    value   : The object must be serialized with 
54
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55
            : and then encoded with base64 encoding.
56

  
57
    mimetype: application/x-microsoft.net.object.bytearray.base64
58
    value   : The object must be serialized into a byte array 
59
            : using a System.ComponentModel.TypeConverter
60
            : and then encoded with base64 encoding.
61
    -->
62
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64
    <xsd:element name="root" msdata:IsDataSet="true">
65
      <xsd:complexType>
66
        <xsd:choice maxOccurs="unbounded">
67
          <xsd:element name="metadata">
68
            <xsd:complexType>
69
              <xsd:sequence>
70
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
71
              </xsd:sequence>
72
              <xsd:attribute name="name" use="required" type="xsd:string" />
73
              <xsd:attribute name="type" type="xsd:string" />
74
              <xsd:attribute name="mimetype" type="xsd:string" />
75
              <xsd:attribute ref="xml:space" />
76
            </xsd:complexType>
77
          </xsd:element>
78
          <xsd:element name="assembly">
79
            <xsd:complexType>
80
              <xsd:attribute name="alias" type="xsd:string" />
81
              <xsd:attribute name="name" type="xsd:string" />
82
            </xsd:complexType>
83
          </xsd:element>
84
          <xsd:element name="data">
85
            <xsd:complexType>
86
              <xsd:sequence>
87
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89
              </xsd:sequence>
90
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93
              <xsd:attribute ref="xml:space" />
94
            </xsd:complexType>
95
          </xsd:element>
96
          <xsd:element name="resheader">
97
            <xsd:complexType>
98
              <xsd:sequence>
99
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100
              </xsd:sequence>
101
              <xsd:attribute name="name" type="xsd:string" use="required" />
102
            </xsd:complexType>
103
          </xsd:element>
104
        </xsd:choice>
105
      </xsd:complexType>
106
    </xsd:element>
107
  </xsd:schema>
108
  <resheader name="resmimetype">
109
    <value>text/microsoft-resx</value>
110
  </resheader>
111
  <resheader name="version">
112
    <value>2.0</value>
113
  </resheader>
114
  <resheader name="reader">
115
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116
  </resheader>
117
  <resheader name="writer">
118
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119
  </resheader>
120
</root>
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionSplit/FrmConstructionSplitAuxiliary.cs
856 856
            try
857 857
            {
858 858
                // バックアップを取る
859
                string strSQL = "INSERT INTO BK_ESTIMATEDATA SELECT SYSDATE, A.* FROM ESTIMATEDATA A";
859
                string strSQL = "INSERT INTO BK_ESTIMATEDATA SELECT NOW(), A.* FROM ESTIMATEDATA A";
860 860
                strSQL += string.Format(" WHERE A.CONSTRUCTIONCODE = {0}", m_SelectionCode);
861 861
                if (!EstimateDB.ExecuteNonQuery(strSQL, false)) return false;
862 862

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRWork/FrmDRWorkAuxiliary.cs
1556 1556
                strSQL += string.Format(", {0}", FlgArrary[3]);                             // 有料通勤帰宅フラグ
1557 1557
                strSQL += string.Format(", {0}", FlgArrary[4]);                             // 資材置場フラグ
1558 1558

  
1559
                strSQL += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
1560
                strSQL += ", STR_TO_DATE(DATE_FORMAT(sysdate,'%Y/%m/%d %H:%i:%s'),'%Y/%m/%d %H:%i:%s')";
1559
                strSQL += ", NOW()";
1560
                strSQL += ", NOW()";
1561 1561
                strSQL += ")";
1562 1562

  
1563 1563
            }
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenu.Designer.cs
29 29
        private void InitializeComponent()
30 30
        {
31 31
            this.components = new System.ComponentModel.Container();
32
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
33
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
34
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
35
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
36
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
37
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
32 38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
33 39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
34 44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
35 45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
36 50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
37 51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
54
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
55
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
56
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
57
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
58
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
59
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
60
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
61
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
62
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
38 63
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
39 64
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
65
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
66
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
67
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
68
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
69
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
70
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
71
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
72
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
73
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
74
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
40 75
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
41 76
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
42 77
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
......
188 223
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle185 = new System.Windows.Forms.DataGridViewCellStyle();
189 224
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle186 = new System.Windows.Forms.DataGridViewCellStyle();
190 225
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle187 = new System.Windows.Forms.DataGridViewCellStyle();
191
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
192
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
193
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
194
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
195
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
196
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
197
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
198
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
199
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
200
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
201
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
202
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
203
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
204
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
205
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
206
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
207
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
208
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
209
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
210
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
211
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
212
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
213
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
214
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
215
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
216
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
217
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
218
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
219
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
220
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
221
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
222
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
223
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
224
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
225
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
226 226
            this.lblTitle = new System.Windows.Forms.Label();
227 227
            this.btnEnd = new System.Windows.Forms.Button();
228 228
            this.tabMenu = new System.Windows.Forms.TabControl();
229 229
            this.tabPage1 = new System.Windows.Forms.TabPage();
230 230
            this.BusinessProgress = new System.Windows.Forms.ProgressBar();
231 231
            this.btnReLoadBusinessMsg = new System.Windows.Forms.Button();
232
            this.dgvBusinessMessage = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
233 232
            this.tabPage2 = new System.Windows.Forms.TabPage();
234 233
            this.btnMessageEntry = new System.Windows.Forms.Button();
235 234
            this.UpDateProgress = new System.Windows.Forms.ProgressBar();
236 235
            this.btnReLoadMessage = new System.Windows.Forms.Button();
237
            this.dgvMessageBoard = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
238 236
            this.tabPage3 = new System.Windows.Forms.TabPage();
239 237
            this.label31 = new System.Windows.Forms.Label();
240 238
            this.label27 = new System.Windows.Forms.Label();
......
243 241
            this.label25 = new System.Windows.Forms.Label();
244 242
            this.btnReLoadConstrApp = new System.Windows.Forms.Button();
245 243
            this.ProgressConstrApp = new System.Windows.Forms.ProgressBar();
246
            this.dgvApproval = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
247 244
            this.tabPage4 = new System.Windows.Forms.TabPage();
248 245
            this.label5 = new System.Windows.Forms.Label();
249 246
            this.label6 = new System.Windows.Forms.Label();
......
251 248
            this.label8 = new System.Windows.Forms.Label();
252 249
            this.btnReLoadPersonApp = new System.Windows.Forms.Button();
253 250
            this.ProgressPersonApp = new System.Windows.Forms.ProgressBar();
254
            this.dgvPersonApp = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
255 251
            this.label4 = new System.Windows.Forms.Label();
256 252
            this.tabPage5 = new System.Windows.Forms.TabPage();
257
            this.dgvSalesInProjects = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
258
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
259
            this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
260
            this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
261
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
262
            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
263
            this.Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
264
            this.Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
265
            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
266
            this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
267
            this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
268
            this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
269
            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
270
            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
271 253
            this.btnDataCopyA = new System.Windows.Forms.Button();
272 254
            this.btnDataEntry = new System.Windows.Forms.Button();
273 255
            this.ProgressSalesProjects = new System.Windows.Forms.ProgressBar();
......
278 260
            this.btnReLoadTenders = new System.Windows.Forms.Button();
279 261
            this.ProgressTenders = new System.Windows.Forms.ProgressBar();
280 262
            this.label21 = new System.Windows.Forms.Label();
281
            this.dgvTenders = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
282
            this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
283
            this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
284
            this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
285
            this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
286
            this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
287
            this.Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
288
            this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
289
            this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
290
            this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
291
            this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
292
            this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
293
            this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
294
            this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
295 263
            this.tabPage7 = new System.Windows.Forms.TabPage();
296 264
            this.btnDataCopyC = new System.Windows.Forms.Button();
297 265
            this.btnReLoadBudgetUp = new System.Windows.Forms.Button();
298 266
            this.ProgressBudgetUp = new System.Windows.Forms.ProgressBar();
299 267
            this.label22 = new System.Windows.Forms.Label();
300
            this.dgvBudgetUp = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
301
            this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
302
            this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
303
            this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
304
            this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
305
            this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
306
            this.Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
307
            this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
308
            this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
309
            this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
310
            this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
311
            this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
312
            this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
313
            this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
314 268
            this.tabPage8 = new System.Windows.Forms.TabPage();
315
            this.dgvOrderTotal = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
316
            this.Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
317
            this.Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
318
            this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
319
            this.Column36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
320
            this.Column37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
321
            this.Column38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
322
            this.Column39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
323
            this.Column40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
324 269
            this.numUDConstPro = new System.Windows.Forms.NumericUpDown();
325 270
            this.lblTotal03 = new System.Windows.Forms.Label();
326 271
            this.lblTotal02 = new System.Windows.Forms.Label();
......
332 277
            this.ProgressConstructionProjects = new System.Windows.Forms.ProgressBar();
333 278
            this.btnReloadConstructionProjects = new System.Windows.Forms.Button();
334 279
            this.label12 = new System.Windows.Forms.Label();
335
            this.dgvConstructionProjects = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
336
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
337
            this.Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
338
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
339
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
340
            this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
341
            this.Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
342
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
343
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
344
            this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
345
            this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
346
            this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
347
            this.Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
348
            this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
349
            this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
350
            this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
351 280
            this.tabPage9 = new System.Windows.Forms.TabPage();
352 281
            this.btnDataCopyF = new System.Windows.Forms.Button();
353 282
            this.btnReloadFluctuationProjects = new System.Windows.Forms.Button();
354 283
            this.ProgressFluctuationProjects = new System.Windows.Forms.ProgressBar();
355 284
            this.label59 = new System.Windows.Forms.Label();
356
            this.dgvFluctuationProjects = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
357
            this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
358
            this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
359
            this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
360
            this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
361
            this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
362
            this.Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
363
            this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
364
            this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
365
            this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
366
            this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
367
            this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
368
            this.Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
369
            this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
370
            this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
371
            this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
372 285
            this.tabPage10 = new System.Windows.Forms.TabPage();
373 286
            this.label39 = new System.Windows.Forms.Label();
374 287
            this.numUDNonOrder = new System.Windows.Forms.NumericUpDown();
......
378 291
            this.ProgressNonOrders = new System.Windows.Forms.ProgressBar();
379 292
            this.btnReloadNonOrders = new System.Windows.Forms.Button();
380 293
            this.label13 = new System.Windows.Forms.Label();
381
            this.dgvNonOrders = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
382
            this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
383
            this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
384
            this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
385
            this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
386
            this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
387
            this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
388
            this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
389 294
            this.tabPage11 = new System.Windows.Forms.TabPage();
390 295
            this.lblCompTotal04 = new System.Windows.Forms.Label();
391 296
            this.lblCompTitle04 = new System.Windows.Forms.Label();
......
402 307
            this.ProgressCompletionOfConstruction = new System.Windows.Forms.ProgressBar();
403 308
            this.btnReloadCompletionOfConstruction = new System.Windows.Forms.Button();
404 309
            this.label14 = new System.Windows.Forms.Label();
405
            this.dgvCompletionOfConstruction = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
406
            this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
407
            this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
408
            this.dataGridViewTextBoxActionColDays13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
409
            this.dataGridViewTextBoxActionColDays14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
410
            this.Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
411
            this.dataGridViewTextBoxActionColDays15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
412
            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
413
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
414
            this.dataGridViewTextBoxActionColDays16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
415
            this.dataGridViewTextBoxActionColDays17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
416
            this.dataGridViewTextBoxActionColDays18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
417
            this.dataGridViewTextBoxActionColDays19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
418 310
            this.tabPage12 = new System.Windows.Forms.TabPage();
419
            this.dgvActionSchedule = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
420
            this.ActionCol00 = new System.Windows.Forms.DataGridViewTextBoxColumn();
421
            this.Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
422
            this.ActionCol01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
423
            this.ActionCol03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
424
            this.ActionCol02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
425
            this.ActionCol04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
426
            this.ActionColDays01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
427
            this.ActionColDays02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
428
            this.ActionColDays03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
429
            this.ActionColDays04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
430
            this.ActionColDays05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
431
            this.ActionColDays06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
432
            this.ActionColDays07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
433
            this.ActionColDays08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
434
            this.ActionColDays09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
435
            this.ActionColDays10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
436
            this.ActionColDays11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
437
            this.ActionColDays12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
438
            this.ActionColDays13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
439
            this.ActionColDays14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
440
            this.ActionColDays15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
441
            this.ActionColDays16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
442
            this.ActionColDays17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
443
            this.ActionColDays18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
444
            this.ActionColDays19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
445
            this.ActionColDays20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
446
            this.ActionColDays21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
447
            this.ActionColDays22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
448
            this.ActionColDays23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
449
            this.ActionColDays24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
450
            this.ActionColDays25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
451
            this.ActionColDays26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
452
            this.ActionColDays27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
453
            this.ActionColDays28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
454
            this.ActionColDays29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
455
            this.ActionColDays30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
456
            this.ActionColDays31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
457 311
            this.btnDispRight = new System.Windows.Forms.Button();
458 312
            this.btnDispLeft = new System.Windows.Forms.Button();
459 313
            this.btnVehicleSchdule = new System.Windows.Forms.Button();
......
464 318
            this.progBarStaffAssignment = new System.Windows.Forms.ProgressBar();
465 319
            this.btnReLoadStaffAssignment = new System.Windows.Forms.Button();
466 320
            this.label15 = new System.Windows.Forms.Label();
467
            this.dgvStaffAssignment = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
468
            this.StaffFixColumn00 = new System.Windows.Forms.DataGridViewTextBoxColumn();
469
            this.StaffFixColumn01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
470
            this.StaffFixColumn02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
471
            this.StaffFixColumn03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
472
            this.StaffFixColumn04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
473
            this.StaffFixColumn05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
474
            this.StaffFixColumn06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
475 321
            this.tabPage14 = new System.Windows.Forms.TabPage();
476 322
            this.label36 = new System.Windows.Forms.Label();
477 323
            this.SalseGraphNum = new System.Windows.Forms.NumericUpDown();
......
674 520
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
675 521
            this.timer_StaffAssign = new System.Windows.Forms.Timer(this.components);
676 522
            this.btnDataCopyE = new System.Windows.Forms.Button();
677
            this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
678
            this.Column42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
679
            this.Column43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
680
            this.Column45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
681
            this.Column46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
682
            this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
683
            this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
684
            this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
685
            this.Column44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
686
            this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
687
            this.Column41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
688
            this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
689
            this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
690
            this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
691
            this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
523
            this.button1 = new System.Windows.Forms.Button();
524
            this.dgvBusinessMessage = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
692 525
            this.dataGridViewTextBoxColumn79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
693 526
            this.dataGridViewTextBoxColumn80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
694 527
            this.dataGridViewTextBoxColumn81 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
697 530
            this.Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
698 531
            this.dataGridViewTextBoxColumn84 = new System.Windows.Forms.DataGridViewTextBoxColumn();
699 532
            this.dataGridViewTextBoxColumn85 = new System.Windows.Forms.DataGridViewTextBoxColumn();
533
            this.dgvMessageBoard = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
700 534
            this.Column05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
701 535
            this.Column06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
702 536
            this.Column03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
704 538
            this.Column02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
705 539
            this.Column04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
706 540
            this.Column07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
541
            this.dgvApproval = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
707 542
            this.ApprovalColumn02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
708 543
            this.ApprovalColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
709 544
            this.Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
717 552
            this.ApprovalColumn09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
718 553
            this.ApprovalColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
719 554
            this.ApprovalColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
555
            this.dgvPersonApp = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
556
            this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
557
            this.Column42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
558
            this.Column43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
559
            this.Column45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
560
            this.Column46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
561
            this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
562
            this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
563
            this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
564
            this.Column44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
565
            this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
566
            this.Column41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
567
            this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
568
            this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
569
            this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
570
            this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
571
            this.dgvSalesInProjects = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
572
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
573
            this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
574
            this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
575
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
576
            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
577
            this.Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
578
            this.Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
579
            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
580
            this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
581
            this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
582
            this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
583
            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
584
            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
585
            this.dgvTenders = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
586
            this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
587
            this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
588
            this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
589
            this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
590
            this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
591
            this.Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
592
            this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
593
            this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
594
            this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
595
            this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
596
            this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
597
            this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
598
            this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
599
            this.dgvBudgetUp = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
600
            this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
601
            this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
602
            this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
603
            this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
604
            this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
605
            this.Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
606
            this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
607
            this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
608
            this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
609
            this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
610
            this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
611
            this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
612
            this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
613
            this.dgvOrderTotal = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
614
            this.Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
615
            this.Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
616
            this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
617
            this.Column36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
618
            this.Column37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
619
            this.Column38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
620
            this.Column39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
621
            this.Column40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
622
            this.dgvConstructionProjects = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
623
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
624
            this.Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
625
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
626
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
627
            this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
628
            this.Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
629
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
630
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
631
            this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
632
            this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
633
            this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
634
            this.Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
635
            this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
636
            this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
637
            this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
638
            this.dgvFluctuationProjects = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
639
            this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
640
            this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
641
            this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
642
            this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
643
            this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
644
            this.Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
645
            this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
646
            this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
647
            this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
648
            this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
649
            this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
650
            this.Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
651
            this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
652
            this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
653
            this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
654
            this.dgvNonOrders = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
655
            this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
656
            this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
657
            this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
658
            this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
659
            this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
660
            this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
661
            this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
662
            this.dgvCompletionOfConstruction = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
663
            this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
664
            this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
665
            this.dataGridViewTextBoxActionColDays13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
666
            this.dataGridViewTextBoxActionColDays14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
667
            this.Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
668
            this.dataGridViewTextBoxActionColDays15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
669
            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
670
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
671
            this.dataGridViewTextBoxActionColDays16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
672
            this.dataGridViewTextBoxActionColDays17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
673
            this.dataGridViewTextBoxActionColDays18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
674
            this.dataGridViewTextBoxActionColDays19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
675
            this.dgvActionSchedule = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
676
            this.ActionCol00 = new System.Windows.Forms.DataGridViewTextBoxColumn();
677
            this.Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
678
            this.ActionCol01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
679
            this.ActionCol03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
680
            this.ActionCol02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
681
            this.ActionCol04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
682
            this.ActionColDays01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
683
            this.ActionColDays02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
684
            this.ActionColDays03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
685
            this.ActionColDays04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
686
            this.ActionColDays05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
687
            this.ActionColDays06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
688
            this.ActionColDays07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
689
            this.ActionColDays08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
690
            this.ActionColDays09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
691
            this.ActionColDays10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
692
            this.ActionColDays11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
693
            this.ActionColDays12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
694
            this.ActionColDays13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
695
            this.ActionColDays14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
696
            this.ActionColDays15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
697
            this.ActionColDays16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
698
            this.ActionColDays17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
699
            this.ActionColDays18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
700
            this.ActionColDays19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
701
            this.ActionColDays20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
702
            this.ActionColDays21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
703
            this.ActionColDays22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
704
            this.ActionColDays23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
705
            this.ActionColDays24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
706
            this.ActionColDays25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
707
            this.ActionColDays26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
708
            this.ActionColDays27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
709
            this.ActionColDays28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
710
            this.ActionColDays29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
711
            this.ActionColDays30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
712
            this.ActionColDays31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
713
            this.dgvStaffAssignment = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
714
            this.StaffFixColumn00 = new System.Windows.Forms.DataGridViewTextBoxColumn();
715
            this.StaffFixColumn01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
716
            this.StaffFixColumn02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
717
            this.StaffFixColumn03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
718
            this.StaffFixColumn04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
719
            this.StaffFixColumn05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
720
            this.StaffFixColumn06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
720 721
            this.tabMenu.SuspendLayout();
721 722
            this.tabPage1.SuspendLayout();
722
            ((System.ComponentModel.ISupportInitialize)(this.dgvBusinessMessage)).BeginInit();
723 723
            this.tabPage2.SuspendLayout();
724
            ((System.ComponentModel.ISupportInitialize)(this.dgvMessageBoard)).BeginInit();
725 724
            this.tabPage3.SuspendLayout();
726
            ((System.ComponentModel.ISupportInitialize)(this.dgvApproval)).BeginInit();
727 725
            this.tabPage4.SuspendLayout();
728
            ((System.ComponentModel.ISupportInitialize)(this.dgvPersonApp)).BeginInit();
729 726
            this.tabPage5.SuspendLayout();
730
            ((System.ComponentModel.ISupportInitialize)(this.dgvSalesInProjects)).BeginInit();
731 727
            this.tabPage6.SuspendLayout();
732
            ((System.ComponentModel.ISupportInitialize)(this.dgvTenders)).BeginInit();
733 728
            this.tabPage7.SuspendLayout();
734
            ((System.ComponentModel.ISupportInitialize)(this.dgvBudgetUp)).BeginInit();
735 729
            this.tabPage8.SuspendLayout();
736
            ((System.ComponentModel.ISupportInitialize)(this.dgvOrderTotal)).BeginInit();
737 730
            ((System.ComponentModel.ISupportInitialize)(this.numUDConstPro)).BeginInit();
738
            ((System.ComponentModel.ISupportInitialize)(this.dgvConstructionProjects)).BeginInit();
739 731
            this.tabPage9.SuspendLayout();
740
            ((System.ComponentModel.ISupportInitialize)(this.dgvFluctuationProjects)).BeginInit();
741 732
            this.tabPage10.SuspendLayout();
742 733
            ((System.ComponentModel.ISupportInitialize)(this.numUDNonOrder)).BeginInit();
743
            ((System.ComponentModel.ISupportInitialize)(this.dgvNonOrders)).BeginInit();
744 734
            this.tabPage11.SuspendLayout();
745 735
            ((System.ComponentModel.ISupportInitialize)(this.numUDCompletion)).BeginInit();
746
            ((System.ComponentModel.ISupportInitialize)(this.dgvCompletionOfConstruction)).BeginInit();
747 736
            this.tabPage12.SuspendLayout();
748
            ((System.ComponentModel.ISupportInitialize)(this.dgvActionSchedule)).BeginInit();
749 737
            this.tabPage13.SuspendLayout();
750
            ((System.ComponentModel.ISupportInitialize)(this.dgvStaffAssignment)).BeginInit();
751 738
            this.tabPage14.SuspendLayout();
752 739
            ((System.ComponentModel.ISupportInitialize)(this.SalseGraphNum)).BeginInit();
753 740
            ((System.ComponentModel.ISupportInitialize)(this.chartSalesGraph)).BeginInit();
......
763 750
            this.tableLayoutDocuments.SuspendLayout();
764 751
            this.tabPage19.SuspendLayout();
765 752
            this.pnlMaster01.SuspendLayout();
753
            ((System.ComponentModel.ISupportInitialize)(this.dgvBusinessMessage)).BeginInit();
754
            ((System.ComponentModel.ISupportInitialize)(this.dgvMessageBoard)).BeginInit();
755
            ((System.ComponentModel.ISupportInitialize)(this.dgvApproval)).BeginInit();
756
            ((System.ComponentModel.ISupportInitialize)(this.dgvPersonApp)).BeginInit();
757
            ((System.ComponentModel.ISupportInitialize)(this.dgvSalesInProjects)).BeginInit();
758
            ((System.ComponentModel.ISupportInitialize)(this.dgvTenders)).BeginInit();
759
            ((System.ComponentModel.ISupportInitialize)(this.dgvBudgetUp)).BeginInit();
760
            ((System.ComponentModel.ISupportInitialize)(this.dgvOrderTotal)).BeginInit();
761
            ((System.ComponentModel.ISupportInitialize)(this.dgvConstructionProjects)).BeginInit();
762
            ((System.ComponentModel.ISupportInitialize)(this.dgvFluctuationProjects)).BeginInit();
763
            ((System.ComponentModel.ISupportInitialize)(this.dgvNonOrders)).BeginInit();
764
            ((System.ComponentModel.ISupportInitialize)(this.dgvCompletionOfConstruction)).BeginInit();
765
            ((System.ComponentModel.ISupportInitialize)(this.dgvActionSchedule)).BeginInit();
766
            ((System.ComponentModel.ISupportInitialize)(this.dgvStaffAssignment)).BeginInit();
766 767
            this.SuspendLayout();
767 768
            // 
768 769
            // lblTitle
......
868 869
            this.btnReLoadBusinessMsg.UseVisualStyleBackColor = false;
869 870
            this.btnReLoadBusinessMsg.Click += new System.EventHandler(this.btnReLoad_Click);
870 871
            // 
871
            // dgvBusinessMessage
872
            // 
873
            this.dgvBusinessMessage.AllowUserToAddRows = false;
874
            this.dgvBusinessMessage.AllowUserToDeleteRows = false;
875
            this.dgvBusinessMessage.AllowUserToResizeColumns = false;
876
            this.dgvBusinessMessage.AllowUserToResizeRows = false;
877
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
878
            this.dgvBusinessMessage.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
879
            this.dgvBusinessMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
880
            | System.Windows.Forms.AnchorStyles.Left) 
881
            | System.Windows.Forms.AnchorStyles.Right)));
882
            this.dgvBusinessMessage.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
883
            this.dgvBusinessMessage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
884
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
885
            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
886
            dataGridViewCellStyle2.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
887
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
888
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
889
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
890
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
891
            this.dgvBusinessMessage.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
892
            this.dgvBusinessMessage.ColumnHeadersHeight = 20;
893
            this.dgvBusinessMessage.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
894
            this.dgvBusinessMessage.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
895
            this.dataGridViewTextBoxColumn79,
896
            this.dataGridViewTextBoxColumn80,
897
            this.dataGridViewTextBoxColumn81,
898
            this.dataGridViewTextBoxColumn82,
899
            this.dataGridViewTextBoxColumn83,
900
            this.Column24,
901
            this.dataGridViewTextBoxColumn84,
902
            this.dataGridViewTextBoxColumn85});
903
            this.dgvBusinessMessage.Location = new System.Drawing.Point(6, 3);
904
            this.dgvBusinessMessage.MultiSelect = false;
905
            this.dgvBusinessMessage.Name = "dgvBusinessMessage";
906
            this.dgvBusinessMessage.RowHeadersVisible = false;
907
            this.dgvBusinessMessage.RowHeadersWidth = 20;
908
            this.dgvBusinessMessage.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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