プロジェクト

全般

プロフィール

リビジョン 7

堀内8年以上前に追加

秘書からの連絡バグ修正(最終データの未表示)
承認一覧表示高速化
行動一覧表示高速化
他画面移動バグ修正(工事日報・議事録ファームハンドル位置間違え)

差分を表示:

trunk/src/ProcessManagement/ProcessManagement/Common/Process/ClsExcute.cs
1081 1081
            try
1082 1082
            {
1083 1083
                // 自分のハンドルをリストへセットする
1084
                int ProcessNo = (int)ClsExcute.ProcessExecuteNo.EstimateInput;
1084
                int ProcessNo = (int)ClsExcute.ProcessExecuteNo.DRConstruction;
1085 1085
                ClsExcute.SubFormHandleList[ProcessNo].ProcessNo = ProcessNo;
1086 1086
                ClsExcute.SubFormHandleList[ProcessNo].SubFormHandle = (Form)frm;
1087 1087

  
......
1116 1116
            try
1117 1117
            {
1118 1118
                // 自分のハンドルをリストへセットする
1119
                int ProcessNo = (int)ClsExcute.ProcessExecuteNo.EstimateInput;
1119
                int ProcessNo = (int)ClsExcute.ProcessExecuteNo.Proceedings;
1120 1120
                ClsExcute.SubFormHandleList[ProcessNo].ProcessNo = ProcessNo;
1121 1121
                ClsExcute.SubFormHandleList[ProcessNo].SubFormHandle = (Form)frm;
1122 1122

  
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOActionScheduleData.cs
56 56

  
57 57
        #endregion
58 58

  
59
        #region パブリックメソッド
59
        #region 行動予定検索
60 60
        /// <summary>
61 61
        /// 行動予定検索
62 62
        /// </summary>
......
104 104
            }
105 105

  
106 106
        }
107
        #endregion
107 108

  
109
        #region 行動予定複数追加
108 110
        /// <summary>
109
        /// 行動予定追加
111
        /// 行動予定複数追加
110 112
        /// </summary>
111 113
        /// <param name="data">行動予定データ</param>
112 114
        /// <returns>true:成功 false:失敗</returns>
......
128 130
                return false;
129 131
            }
130 132
        }
133
        #endregion
134

  
135
        #region 行動予定1件追加
136
        /// <summary>
137
        /// 行動予定1件追加
138
        /// </summary>
139
        /// <param name="data"></param>
140
        /// <param name="bConnect"></param>
141
        /// <returns></returns>
131 142
        public bool InsertAction(ActionScheduleData data, bool bConnect = true)
132 143
        {
133 144
            string strcmd = "";
......
159 170
                return false;
160 171
            }
161 172
        }
173
        #endregion
162 174

  
175
        #region 行動予定更新
163 176
        /// <summary>
164 177
        /// 行動予定更新
165 178
        /// </summary>
......
196 209
                return false;
197 210
            }
198 211
        }
212
        #endregion
199 213

  
200

  
214
        #region 行動予定削除
201 215
        /// <summary>
202 216
        /// 行動予定削除
203 217
        /// </summary>
......
222 236
                return false;
223 237
            }
224 238
        }
239
        #endregion
225 240

  
241
        #region OracleDataReaderより構造体へセットする
226 242
        /// <summary>
227 243
        /// OracleDataReaderより構造体へセットする
228 244
        /// </summary>
......
252 268
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
253 269
            }
254 270
        }
271
        #endregion
255 272

  
273
        #region 構造体クリア
274
        /// <summary>
275
        /// 構造体クリア
276
        /// </summary>
277
        /// <param name="wrk"></param>
278
        public void ClearStruct(ref ActionScheduleData wrk)
279
        {
280
            try
281
            {
282
                // データ取得
283
                wrk.TargetDate = DateTime.MinValue;
284
                wrk.PersonCode = 0;
285
                wrk.ActionSchedule = string.Empty;
286
                wrk.TargetYear = 0;
287
                wrk.TargetMonth = 0;
288
                wrk.TargetDay = 0;
289

  
290
                wrk.EntryDate = DateTime.Now;
291
                wrk.UpdateDate = DateTime.Now;
292
            }
293
            catch (OracleException oraex)
294
            {
295
                logger.ErrorFormat("オラクルエラー:{0}:{1}", CommonMotions.GetMethodName(), oraex.Message);
296
            }
297
            catch (Exception ex)
298
            {
299
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
300
            }
301
        }
256 302
        #endregion
257 303

  
258
        #region パブリックメソッド(特殊処理)
259

  
304
        #region 主キー検索の文字列を返す
260 305
        /// <summary>
261 306
        /// 主キー検索の文字列を返す
262 307
        /// </summary>
......
279 324

  
280 325
            return strWork;
281 326
        }
327
        #endregion
328

  
329
        #region サブキー検索の文字列を返す
282 330
        /// <summary>
283 331
        /// サブキー検索の文字列を返す
284 332
        /// </summary>
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOMDepartment.cs
56 56

  
57 57
        #endregion
58 58

  
59
        #region パブリックメソッド
59
        #region 部署マスタ検索文字列作成
60 60
        /// <summary>
61
        /// 部署マスタ検索
61
        /// 部署マスタ検索文字列作成
62 62
        /// </summary>
63 63
        /// <param name="AddSQLString">検索条件SQL文字列</param>
64 64
        /// <param name="data">部署マスタデータ</param>
......
81 81

  
82 82
            return strcmd;
83 83
        }
84
        #endregion
85

  
86
        #region 部署マスタ1件検索
87
        /// <summary>
88
        /// 部署マスタ1件検索
89
        /// </summary>
90
        /// <param name="AddSQLString"></param>
91
        /// <param name="data"></param>
92
        /// <param name="bConnect"></param>
93
        /// <returns></returns>
84 94
        public bool SelectAction(string AddSQLString, ref DepartmentMaster data, bool bConnect = true)
85 95
        {
86 96
            //Oracle インターフェース
......
109 119
            }
110 120

  
111 121
        }
122
        #endregion
123

  
124
        #region 部署マスタ複数検索
112 125
        /// <summary>
113 126
        /// 部署マスタ検索
114 127
        /// </summary>
......
146 159
            }
147 160

  
148 161
        }
162
        #endregion
149 163

  
164
        #region 部署マスタ追加
150 165
        /// <summary>
151 166
        /// 部署マスタ追加
152 167
        /// </summary>
......
185 200
                return false;
186 201
            }
187 202
        }
203
        #endregion
188 204

  
205
        #region 部署マスタ更新
189 206
        /// <summary>
190 207
        /// 部署マスタ更新
191 208
        /// </summary>
......
222 239
                return false;
223 240
            }
224 241
        }
242
        #endregion
225 243

  
226

  
244
        #region 部署マスタ削除
227 245
        /// <summary>
228 246
        /// 部署マスタ削除
229 247
        /// </summary>
......
248 266
                return false;
249 267
            }
250 268
        }
269
        #endregion
251 270

  
271
        #region 論理削除
252 272
        /// <summary>
253 273
        /// 論理削除
254 274
        /// </summary>
......
283 303
                return false;
284 304
            }
285 305
        }
306
        #endregion
307

  
308
        #region OracleDataReaderより構造体へセットする
286 309
        /// <summary>
287 310
        /// OracleDataReaderより構造体へセットする
288 311
        /// </summary>
......
312 335
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
313 336
            }
314 337
        }
338
        #endregion
315 339

  
340
        #region 構造体クリア
341
        /// <summary>
342
        /// 構造体クリア
343
        /// </summary>
344
        /// <param name="wrk"></param>
345
        public void ClearStruct(ref DepartmentMaster wrk)
346
        {
347
            try
348
            {
349
                // データ取得
350
                wrk.DepartmentCode = 0;
351
                wrk.DisplayOrder = 0;
352
                wrk.DepartmentString = string.Empty;
353
                wrk.ActionScheduleFlg = 0;
354
                wrk.StaffAssignFlg = 0;
355
                wrk.DeleteFlg = 0;
356

  
357
                wrk.EntryDate = DateTime.Now;
358
                wrk.UpdateDate = DateTime.Now;
359
            }
360
            catch (OracleException oraex)
361
            {
362
                logger.ErrorFormat("オラクルエラー:{0}:{1}", CommonMotions.GetMethodName(), oraex.Message);
363
            }
364
            catch (Exception ex)
365
            {
366
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
367
            }
368
        }
316 369
        #endregion
317 370

  
318
        #region パブリックメソッド(特殊処理)
319

  
371
        #region 部署コードの最大値を取得する
320 372
        /// <summary>
321
        /// カテゴリ履歴の最大値を取得する
373
        /// 部署コードの最大値を取得する
322 374
        /// </summary>
323 375
        /// <param name="AddSQLString"></param>
324 376
        /// <param name="bConnect"></param>
......
353 405

  
354 406
            return iRet;
355 407
        }
408
        #endregion
356 409

  
410
        #region 主キー検索の文字列を返す
357 411
        /// <summary>
358 412
        /// 主キー検索の文字列を返す
359 413
        /// </summary>
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOMPersonInCharge.cs
32 32
        /// <summary>
33 33
        /// 担当者マスタフィールド並び
34 34
        /// </summary>
35
        public enum PersonInChargeColumn
35
        public enum NameColumn
36 36
        {
37 37
            PersonCode = 0,
38 38
            DisplayOrder,
......
67 67

  
68 68
        #endregion
69 69

  
70
        #region パブリックメソッド(通常アクセス)
70
        #region 担当者マスタ検索文字列作成
71 71
        /// <summary>
72
        /// 担当者マスタ検索
72
        /// 担当者マスタ検索文字列作成
73 73
        /// </summary>
74 74
        /// <param name="AddSQLString">検索条件SQL文字列</param>
75 75
        /// <param name="data">担当者マスタデータ</param>
......
101 101

  
102 102
            return strcmd;
103 103
        }
104
        #endregion
105

  
106
        #region 担当者マスタ複数検索
107
        /// <summary>
108
        /// 担当者マスタ複数検索
109
        /// </summary>
110
        /// <param name="AddSQLString"></param>
111
        /// <param name="data"></param>
112
        /// <param name="bConnect"></param>
113
        /// <returns></returns>
104 114
        public bool SelectAction(string AddSQLString, ref List<PersonInChargeMaster> data, bool bConnect = true)
105 115
        {
106 116
            //Oracle インターフェース
......
131 141
                return false;
132 142
            }
133 143
        }
144
        #endregion
145

  
146
        #region 担当者マスタ1件検索
147
        /// <summary>
148
        /// 担当者マスタ1件検索
149
        /// </summary>
150
        /// <param name="AddSQLString"></param>
151
        /// <param name="data"></param>
152
        /// <param name="bConnect"></param>
153
        /// <returns></returns>
134 154
        public bool SelectAction(string AddSQLString, ref PersonInChargeMaster data, bool bConnect = true)
135 155
        {
136 156
            //Oracle インターフェース
......
158 178
                return false;
159 179
            }
160 180
        }
181
        #endregion
161 182

  
183
        #region 担当者マスタ追加
162 184
        /// <summary>
163 185
        /// 担当者マスタ追加
164 186
        /// </summary>
......
207 229
                return false;
208 230
            }
209 231
        }
232
        #endregion
210 233

  
234
        #region 担当者マスタ更新
211 235
        /// <summary>
212 236
        /// 担当者マスタ更新
213 237
        /// </summary>
......
254 278
                return false;
255 279
            }
256 280
        }
281
        #endregion
257 282

  
258

  
283
        #region 担当者マスタ削除
259 284
        /// <summary>
260 285
        /// 担当者マスタ削除
261 286
        /// </summary>
......
280 305
                return false;
281 306
            }
282 307
        }
308
        #endregion
283 309

  
310
        #region OracleDataReaderより構造体へセットする
284 311
        /// <summary>
285 312
        /// OracleDataReaderより構造体へセットする
286 313
        /// </summary>
......
291 318
            try
292 319
            {
293 320
                // データ取得
294
                wrk.PersonCode = int.Parse(objwrk[(int)PersonInChargeColumn.PersonCode].ToString());
295
                wrk.DisplayOrder = int.Parse(objwrk[(int)PersonInChargeColumn.DisplayOrder].ToString());
296
                wrk.PersonName = objwrk[(int)PersonInChargeColumn.PersonName].ToString();
297
                wrk.StartDate = DateTime.Parse(objwrk[(int)PersonInChargeColumn.StartDate].ToString());
298
                wrk.EndDate = DateTime.Parse(objwrk[(int)PersonInChargeColumn.EndDate].ToString());
299
                wrk.PassWord = objwrk[(int)PersonInChargeColumn.PassWord].ToString();
300
                wrk.SecurityManagement = int.Parse(objwrk[(int)PersonInChargeColumn.SecurityManagement].ToString());
301
                wrk.MsgBackColor = objwrk[(int)PersonInChargeColumn.MsgBackColor].ToString();
302
                wrk.DisplayString = objwrk[(int)PersonInChargeColumn.DisplayString].ToString();
303
                wrk.DepartmentCode = int.Parse(objwrk[(int)PersonInChargeColumn.DepartmentCode].ToString());
304
                wrk.MonthlySalary = double.Parse(objwrk[(int)PersonInChargeColumn.MonthlySalary].ToString());
305
                wrk.YearSalary = double.Parse(objwrk[(int)PersonInChargeColumn.YearSalary].ToString());
306
                wrk.Qualification = objwrk[(int)PersonInChargeColumn.Qualification].ToString();
307
                wrk.SealPrintName = objwrk[(int)PersonInChargeColumn.SealPrintName].ToString();
308
                wrk.EmployeeClassFlg = int.Parse(objwrk[(int)PersonInChargeColumn.EmployeeClassFlg].ToString());
321
                wrk.PersonCode = int.Parse(objwrk[(int)NameColumn.PersonCode].ToString());
322
                wrk.DisplayOrder = int.Parse(objwrk[(int)NameColumn.DisplayOrder].ToString());
323
                wrk.PersonName = objwrk[(int)NameColumn.PersonName].ToString();
324
                wrk.StartDate = DateTime.Parse(objwrk[(int)NameColumn.StartDate].ToString());
325
                wrk.EndDate = DateTime.Parse(objwrk[(int)NameColumn.EndDate].ToString());
326
                wrk.PassWord = objwrk[(int)NameColumn.PassWord].ToString();
327
                wrk.SecurityManagement = int.Parse(objwrk[(int)NameColumn.SecurityManagement].ToString());
328
                wrk.MsgBackColor = objwrk[(int)NameColumn.MsgBackColor].ToString();
329
                wrk.DisplayString = objwrk[(int)NameColumn.DisplayString].ToString();
330
                wrk.DepartmentCode = int.Parse(objwrk[(int)NameColumn.DepartmentCode].ToString());
331
                wrk.MonthlySalary = double.Parse(objwrk[(int)NameColumn.MonthlySalary].ToString());
332
                wrk.YearSalary = double.Parse(objwrk[(int)NameColumn.YearSalary].ToString());
333
                wrk.Qualification = objwrk[(int)NameColumn.Qualification].ToString();
334
                wrk.SealPrintName = objwrk[(int)NameColumn.SealPrintName].ToString();
335
                wrk.EmployeeClassFlg = int.Parse(objwrk[(int)NameColumn.EmployeeClassFlg].ToString());
309 336

  
310
                wrk.DeleteFlg = int.Parse(objwrk[(int)PersonInChargeColumn.DeleteFlg].ToString());
311
                wrk.EntryDate = DateTime.Parse(objwrk[(int)PersonInChargeColumn.EntryDate].ToString());
312
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)PersonInChargeColumn.UpdateDate].ToString());
337
                wrk.DeleteFlg = int.Parse(objwrk[(int)NameColumn.DeleteFlg].ToString());
338
                wrk.EntryDate = DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
339
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)NameColumn.UpdateDate].ToString());
313 340
            }
314 341
            catch (OracleException oraex)
315 342
            {
......
320 347
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(2), ex.Message);
321 348
            }
322 349
        }
350
        #endregion
351

  
352
        #region 構造体クリア
323 353
        /// <summary>
324 354
        /// 構造体クリア
325 355
        /// </summary>
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOMVehicle.cs
70 70

  
71 71
        #endregion
72 72

  
73
        #region パブリックメソッド
73
        #region 車両マスタ検索
74 74
        /// <summary>
75 75
        /// 車両マスタ検索
76 76
        /// </summary>
......
134 134
            }
135 135

  
136 136
        }
137
        #endregion
137 138

  
139
        #region 車両マスタ追加
138 140
        /// <summary>
139 141
        /// 車両マスタ追加
140 142
        /// </summary>
......
187 189
                return false;
188 190
            }
189 191
        }
192
        #endregion
190 193

  
194
        #region 車両マスタ更新
191 195
        /// <summary>
192 196
        /// 車両マスタ更新
193 197
        /// </summary>
......
239 243
                return false;
240 244
            }
241 245
        }
246
        #endregion
242 247

  
243

  
248
        #region 車両マスタ削除
244 249
        /// <summary>
245 250
        /// 車両マスタ削除
246 251
        /// </summary>
......
265 270
                return false;
266 271
            }
267 272
        }
273
        #endregion
268 274

  
275
        #region OracleDataReaderより構造体へセットする
269 276
        /// <summary>
270 277
        /// OracleDataReaderより構造体へセットする
271 278
        /// </summary>
......
309 316
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
310 317
            }
311 318
        }
319
        #endregion
312 320

  
321
        #region 構造体クリア
322
        /// <summary>
323
        /// 構造体クリア
324
        /// </summary>
325
        /// <param name="wrk"></param>
326
        public void ClearStruct(ref VehicleMaster wrk)
327
        {
328
            try
329
            {
330
                // データ取得
331
                wrk.VehicleCode = 0;
332
                wrk.DisplayOrder = 0;
333
                wrk.VehicleName = string.Empty;
334
                wrk.RegistrationNumber = string.Empty;
335
                wrk.IdentificationNumber = string.Empty;
336
                wrk.ModelCode = string.Empty;
337
                wrk.DepartmentCode = 0;
338
                wrk.VehicleScheduleFlg = 0;
339
                wrk.PurchaseDate = DateTime.MinValue;
340
                wrk.PurchaseName = string.Empty;
341
                wrk.PurchaseContactPersons = string.Empty;
342
                wrk.PurchasePhone = string.Empty;
343
                wrk.LeaseDate = DateTime.MinValue;
344
                wrk.LeaseDestination = string.Empty;
345
                wrk.LeaseContactPersons = string.Empty;
346
                wrk.LeasePhone = string.Empty;
347
                wrk.InsuranceCompany = string.Empty;
348
                wrk.InsuranceContactPersons = string.Empty;
349
                wrk.InsurancePhone = string.Empty;
350
                wrk.Note = string.Empty;
351

  
352
                wrk.EntryDate = DateTime.Now;
353
                wrk.UpdateDate = DateTime.Now;
354
            }
355
            catch (OracleException oraex)
356
            {
357
                logger.ErrorFormat("オラクルエラー:{0}:{1}", CommonMotions.GetMethodName(), oraex.Message);
358
            }
359
            catch (Exception ex)
360
            {
361
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
362
            }
363
        }
313 364
        #endregion
314 365

  
315
        #region パブリックメソッド(特殊処理)
316

  
366
        #region 主キー検索の文字列を返す
317 367
        /// <summary>
318 368
        /// 主キー検索の文字列を返す
319 369
        /// </summary>
......
334 384

  
335 385
            return strWork;
336 386
        }
387
        #endregion
337 388

  
389
        #region 最大値を取得する
338 390
        /// <summary>
339 391
        /// 最大値を取得する
340 392
        /// </summary>
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOVehicleScheduleData.cs
57 57

  
58 58
        #endregion
59 59

  
60
        #region パブリックメソッド
60
        #region 行動予定検索
61 61
        /// <summary>
62 62
        /// 行動予定検索
63 63
        /// </summary>
......
106 106
            }
107 107

  
108 108
        }
109
        #endregion
109 110

  
111
        #region 行動予定複数追加
110 112
        /// <summary>
111
        /// 行動予定追加
113
        /// 行動予定複数追加
112 114
        /// </summary>
113 115
        /// <param name="data">行動予定データ</param>
114 116
        /// <returns>true:成功 false:失敗</returns>
......
130 132
                return false;
131 133
            }
132 134
        }
135
        #endregion
136

  
137
        #region 行動予定1件追加
138
        /// <summary>
139
        /// 行動予定1件追加
140
        /// </summary>
141
        /// <param name="data"></param>
142
        /// <param name="bConnect"></param>
143
        /// <returns></returns>
133 144
        public bool OneRecInsertAction(VehicleScheduleData data, bool bConnect = true)
134 145
        {
135 146
            string strcmd = "";
......
162 173
                return false;
163 174
            }
164 175
        }
176
        #endregion
165 177

  
178
        #region 行動予定更新
166 179
        /// <summary>
167 180
        /// 行動予定更新
168 181
        /// </summary>
......
200 213
                return false;
201 214
            }
202 215
        }
216
        #endregion
203 217

  
204

  
218
        #region 行動予定削除
205 219
        /// <summary>
206 220
        /// 行動予定削除
207 221
        /// </summary>
......
226 240
                return false;
227 241
            }
228 242
        }
243
        #endregion
229 244

  
245
        #region OracleDataReaderより構造体へセットする
230 246
        /// <summary>
231 247
        /// OracleDataReaderより構造体へセットする
232 248
        /// </summary>
......
257 273
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
258 274
            }
259 275
        }
276
        #endregion
260 277

  
278
        #region 構造体クリア
279
        /// <summary>
280
        /// 構造体クリア
281
        /// </summary>
282
        /// <param name="wrk"></param>
283
        public void ClearStruct(ref VehicleScheduleData wrk)
284
        {
285
            try
286
            {
287
                // データ取得
288
                wrk.TargetDate = DateTime.MinValue;
289
                wrk.VehicleCode = 0;
290
                wrk.MorningAfternoon = 0;
291
                wrk.PersonCode = 0;
292
                wrk.TargetYear = 0;
293
                wrk.TargetMonth = 0;
294
                wrk.TargetDay = 0;
295

  
296
                wrk.EntryDate = DateTime.Now;
297
                wrk.UpdateDate = DateTime.Now;
298
            }
299
            catch (OracleException oraex)
300
            {
301
                logger.ErrorFormat("オラクルエラー:{0}:{1}", CommonMotions.GetMethodName(), oraex.Message);
302
            }
303
            catch (Exception ex)
304
            {
305
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(), ex.Message);
306
            }
307
        }
261 308
        #endregion
262 309

  
263
        #region パブリックメソッド(特殊処理)
264

  
310
        #region 主キー検索の文字列を返す
265 311
        /// <summary>
266 312
        /// 主キー検索の文字列を返す
267 313
        /// </summary>
......
286 332

  
287 333
            return strWork;
288 334
        }
335
        #endregion
336

  
337
        #region サブキー検索の文字列を返す
289 338
        /// <summary>
290 339
        /// サブキー検索の文字列を返す
291 340
        /// </summary>
trunk/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.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
54
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
55
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
56
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
57
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
58
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
59
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
60
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
61
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
62
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
63
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
64
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
65
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
66
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
67
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
68
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
69
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
70
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
71
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
72
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
73
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
74
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
75
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
76
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
77
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
78
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
79
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
80
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
81
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
82
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
83
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
84
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
85
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
86
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
87
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
88
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
89
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
90
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
91
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
92
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
93
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
94
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
95
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
96
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
97
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
98
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
99
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
100
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
101
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
102
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
103
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
104
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
105
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
106
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
107
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
108
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
109
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
110
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
111
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
112
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
113
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
114
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
115
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
116
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
117
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
118
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
119
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
120
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
121
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
122
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
123
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
124
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
125
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
126
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
127
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
128
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
129
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
130
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
131
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
132
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
133
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
134
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
135
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
136
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
137
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
138
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
139
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
140
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
141
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
142
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
143
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
144
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
145
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
146
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
147
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
148
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle117 = new System.Windows.Forms.DataGridViewCellStyle();
149
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle118 = new System.Windows.Forms.DataGridViewCellStyle();
150
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle119 = new System.Windows.Forms.DataGridViewCellStyle();
151
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle120 = new System.Windows.Forms.DataGridViewCellStyle();
152
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle121 = new System.Windows.Forms.DataGridViewCellStyle();
153
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle122 = new System.Windows.Forms.DataGridViewCellStyle();
154
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle123 = new System.Windows.Forms.DataGridViewCellStyle();
155
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle124 = new System.Windows.Forms.DataGridViewCellStyle();
156
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle125 = new System.Windows.Forms.DataGridViewCellStyle();
157
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle126 = new System.Windows.Forms.DataGridViewCellStyle();
158
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle127 = new System.Windows.Forms.DataGridViewCellStyle();
159
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle128 = new System.Windows.Forms.DataGridViewCellStyle();
160
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle129 = new System.Windows.Forms.DataGridViewCellStyle();
161
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle130 = new System.Windows.Forms.DataGridViewCellStyle();
162
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle131 = new System.Windows.Forms.DataGridViewCellStyle();
163
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle132 = new System.Windows.Forms.DataGridViewCellStyle();
164
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle133 = new System.Windows.Forms.DataGridViewCellStyle();
165
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle134 = new System.Windows.Forms.DataGridViewCellStyle();
166
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
167
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle136 = new System.Windows.Forms.DataGridViewCellStyle();
168
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle137 = new System.Windows.Forms.DataGridViewCellStyle();
169
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle138 = new System.Windows.Forms.DataGridViewCellStyle();
170
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle139 = new System.Windows.Forms.DataGridViewCellStyle();
171
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle140 = new System.Windows.Forms.DataGridViewCellStyle();
172
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle141 = new System.Windows.Forms.DataGridViewCellStyle();
173
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle145 = new System.Windows.Forms.DataGridViewCellStyle();
174
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle142 = new System.Windows.Forms.DataGridViewCellStyle();
175
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle143 = new System.Windows.Forms.DataGridViewCellStyle();
176
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle144 = new System.Windows.Forms.DataGridViewCellStyle();
177
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
178
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
179
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
180
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
181
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
182
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle146 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle147 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle148 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle149 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle150 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle151 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle152 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle153 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle154 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle155 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle156 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle157 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle158 = new System.Windows.Forms.DataGridViewCellStyle();
45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle159 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle160 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle161 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle162 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle163 = new System.Windows.Forms.DataGridViewCellStyle();
50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle164 = new System.Windows.Forms.DataGridViewCellStyle();
51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle165 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle166 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle167 = new System.Windows.Forms.DataGridViewCellStyle();
54
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle168 = new System.Windows.Forms.DataGridViewCellStyle();
55
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle169 = new System.Windows.Forms.DataGridViewCellStyle();
56
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle170 = new System.Windows.Forms.DataGridViewCellStyle();
57
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle171 = new System.Windows.Forms.DataGridViewCellStyle();
58
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle172 = new System.Windows.Forms.DataGridViewCellStyle();
59
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle173 = new System.Windows.Forms.DataGridViewCellStyle();
60
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle174 = new System.Windows.Forms.DataGridViewCellStyle();
61
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle175 = new System.Windows.Forms.DataGridViewCellStyle();
62
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle176 = new System.Windows.Forms.DataGridViewCellStyle();
63
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle177 = new System.Windows.Forms.DataGridViewCellStyle();
64
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle178 = new System.Windows.Forms.DataGridViewCellStyle();
65
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle179 = new System.Windows.Forms.DataGridViewCellStyle();
66
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle180 = new System.Windows.Forms.DataGridViewCellStyle();
67
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle181 = new System.Windows.Forms.DataGridViewCellStyle();
68
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle182 = new System.Windows.Forms.DataGridViewCellStyle();
69
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle183 = new System.Windows.Forms.DataGridViewCellStyle();
70
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle184 = new System.Windows.Forms.DataGridViewCellStyle();
71
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle185 = new System.Windows.Forms.DataGridViewCellStyle();
72
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle186 = new System.Windows.Forms.DataGridViewCellStyle();
73
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle187 = new System.Windows.Forms.DataGridViewCellStyle();
74
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle188 = new System.Windows.Forms.DataGridViewCellStyle();
75
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle189 = new System.Windows.Forms.DataGridViewCellStyle();
76
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle190 = new System.Windows.Forms.DataGridViewCellStyle();
77
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle191 = new System.Windows.Forms.DataGridViewCellStyle();
78
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle192 = new System.Windows.Forms.DataGridViewCellStyle();
79
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle193 = new System.Windows.Forms.DataGridViewCellStyle();
80
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle194 = new System.Windows.Forms.DataGridViewCellStyle();
81
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle195 = new System.Windows.Forms.DataGridViewCellStyle();
82
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle196 = new System.Windows.Forms.DataGridViewCellStyle();
83
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle197 = new System.Windows.Forms.DataGridViewCellStyle();
84
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle198 = new System.Windows.Forms.DataGridViewCellStyle();
85
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle199 = new System.Windows.Forms.DataGridViewCellStyle();
86
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle200 = new System.Windows.Forms.DataGridViewCellStyle();
87
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle201 = new System.Windows.Forms.DataGridViewCellStyle();
88
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle202 = new System.Windows.Forms.DataGridViewCellStyle();
89
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle203 = new System.Windows.Forms.DataGridViewCellStyle();
90
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle204 = new System.Windows.Forms.DataGridViewCellStyle();
91
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle205 = new System.Windows.Forms.DataGridViewCellStyle();
92
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle206 = new System.Windows.Forms.DataGridViewCellStyle();
93
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle207 = new System.Windows.Forms.DataGridViewCellStyle();
94
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle208 = new System.Windows.Forms.DataGridViewCellStyle();
95
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle209 = new System.Windows.Forms.DataGridViewCellStyle();
96
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle210 = new System.Windows.Forms.DataGridViewCellStyle();
97
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle211 = new System.Windows.Forms.DataGridViewCellStyle();
98
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle212 = new System.Windows.Forms.DataGridViewCellStyle();
99
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle213 = new System.Windows.Forms.DataGridViewCellStyle();
100
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle214 = new System.Windows.Forms.DataGridViewCellStyle();
101
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle215 = new System.Windows.Forms.DataGridViewCellStyle();
102
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle216 = new System.Windows.Forms.DataGridViewCellStyle();
103
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle217 = new System.Windows.Forms.DataGridViewCellStyle();
104
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle218 = new System.Windows.Forms.DataGridViewCellStyle();
105
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle219 = new System.Windows.Forms.DataGridViewCellStyle();
106
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle220 = new System.Windows.Forms.DataGridViewCellStyle();
107
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle221 = new System.Windows.Forms.DataGridViewCellStyle();
108
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle222 = new System.Windows.Forms.DataGridViewCellStyle();
109
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle223 = new System.Windows.Forms.DataGridViewCellStyle();
110
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle224 = new System.Windows.Forms.DataGridViewCellStyle();
111
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle225 = new System.Windows.Forms.DataGridViewCellStyle();
112
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle226 = new System.Windows.Forms.DataGridViewCellStyle();
113
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle227 = new System.Windows.Forms.DataGridViewCellStyle();
114
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle228 = new System.Windows.Forms.DataGridViewCellStyle();
115
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle229 = new System.Windows.Forms.DataGridViewCellStyle();
116
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle230 = new System.Windows.Forms.DataGridViewCellStyle();
117
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle231 = new System.Windows.Forms.DataGridViewCellStyle();
118
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle232 = new System.Windows.Forms.DataGridViewCellStyle();
119
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle233 = new System.Windows.Forms.DataGridViewCellStyle();
120
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle234 = new System.Windows.Forms.DataGridViewCellStyle();
121
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle235 = new System.Windows.Forms.DataGridViewCellStyle();
122
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle236 = new System.Windows.Forms.DataGridViewCellStyle();
123
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle237 = new System.Windows.Forms.DataGridViewCellStyle();
124
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle238 = new System.Windows.Forms.DataGridViewCellStyle();
125
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle239 = new System.Windows.Forms.DataGridViewCellStyle();
126
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle240 = new System.Windows.Forms.DataGridViewCellStyle();
127
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle241 = new System.Windows.Forms.DataGridViewCellStyle();
128
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle242 = new System.Windows.Forms.DataGridViewCellStyle();
129
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle243 = new System.Windows.Forms.DataGridViewCellStyle();
130
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle244 = new System.Windows.Forms.DataGridViewCellStyle();
131
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle245 = new System.Windows.Forms.DataGridViewCellStyle();
132
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle246 = new System.Windows.Forms.DataGridViewCellStyle();
133
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle247 = new System.Windows.Forms.DataGridViewCellStyle();
134
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle248 = new System.Windows.Forms.DataGridViewCellStyle();
135
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle249 = new System.Windows.Forms.DataGridViewCellStyle();
136
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle250 = new System.Windows.Forms.DataGridViewCellStyle();
137
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle251 = new System.Windows.Forms.DataGridViewCellStyle();
138
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle252 = new System.Windows.Forms.DataGridViewCellStyle();
139
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle253 = new System.Windows.Forms.DataGridViewCellStyle();
140
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle254 = new System.Windows.Forms.DataGridViewCellStyle();
141
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle255 = new System.Windows.Forms.DataGridViewCellStyle();
142
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle256 = new System.Windows.Forms.DataGridViewCellStyle();
143
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle257 = new System.Windows.Forms.DataGridViewCellStyle();
144
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle258 = new System.Windows.Forms.DataGridViewCellStyle();
145
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle259 = new System.Windows.Forms.DataGridViewCellStyle();
146
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle260 = new System.Windows.Forms.DataGridViewCellStyle();
147
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle261 = new System.Windows.Forms.DataGridViewCellStyle();
148
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle262 = new System.Windows.Forms.DataGridViewCellStyle();
149
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle263 = new System.Windows.Forms.DataGridViewCellStyle();
150
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle264 = new System.Windows.Forms.DataGridViewCellStyle();
151
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle265 = new System.Windows.Forms.DataGridViewCellStyle();
152
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle266 = new System.Windows.Forms.DataGridViewCellStyle();
153
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle267 = new System.Windows.Forms.DataGridViewCellStyle();
154
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle268 = new System.Windows.Forms.DataGridViewCellStyle();
155
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle269 = new System.Windows.Forms.DataGridViewCellStyle();
156
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle270 = new System.Windows.Forms.DataGridViewCellStyle();
157
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle271 = new System.Windows.Forms.DataGridViewCellStyle();
158
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle272 = new System.Windows.Forms.DataGridViewCellStyle();
159
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle273 = new System.Windows.Forms.DataGridViewCellStyle();
160
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle274 = new System.Windows.Forms.DataGridViewCellStyle();
161
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle275 = new System.Windows.Forms.DataGridViewCellStyle();
162
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle276 = new System.Windows.Forms.DataGridViewCellStyle();
163
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle277 = new System.Windows.Forms.DataGridViewCellStyle();
164
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle278 = new System.Windows.Forms.DataGridViewCellStyle();
165
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle279 = new System.Windows.Forms.DataGridViewCellStyle();
166
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle280 = new System.Windows.Forms.DataGridViewCellStyle();
167
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle281 = new System.Windows.Forms.DataGridViewCellStyle();
168
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle282 = new System.Windows.Forms.DataGridViewCellStyle();
169
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle283 = new System.Windows.Forms.DataGridViewCellStyle();
170
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle284 = new System.Windows.Forms.DataGridViewCellStyle();
171
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle285 = new System.Windows.Forms.DataGridViewCellStyle();
172
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle286 = new System.Windows.Forms.DataGridViewCellStyle();
173
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle290 = new System.Windows.Forms.DataGridViewCellStyle();
174
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle287 = new System.Windows.Forms.DataGridViewCellStyle();
175
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle288 = new System.Windows.Forms.DataGridViewCellStyle();
176
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle289 = new System.Windows.Forms.DataGridViewCellStyle();
177
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
178
            System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
179
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
180
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
181
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
182
            System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
183 183
            this.lblTitle = new System.Windows.Forms.Label();
184 184
            this.btnEnd = new System.Windows.Forms.Button();
185 185
            this.tabMenu = new System.Windows.Forms.TabControl();
......
801 801
            this.dgvBusinessMessage.AllowUserToDeleteRows = false;
802 802
            this.dgvBusinessMessage.AllowUserToResizeColumns = false;
803 803
            this.dgvBusinessMessage.AllowUserToResizeRows = false;
804
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
805
            this.dgvBusinessMessage.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
804
            dataGridViewCellStyle146.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
805
            this.dgvBusinessMessage.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle146;
806 806
            this.dgvBusinessMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
807 807
            | System.Windows.Forms.AnchorStyles.Left) 
808 808
            | System.Windows.Forms.AnchorStyles.Right)));
809 809
            this.dgvBusinessMessage.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
810 810
            this.dgvBusinessMessage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
811
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
812
            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
813
            dataGridViewCellStyle2.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
814
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
815
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
816
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
817
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
818
            this.dgvBusinessMessage.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
811
            dataGridViewCellStyle147.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
812
            dataGridViewCellStyle147.BackColor = System.Drawing.SystemColors.Control;
813
            dataGridViewCellStyle147.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
814
            dataGridViewCellStyle147.ForeColor = System.Drawing.SystemColors.WindowText;
815
            dataGridViewCellStyle147.SelectionBackColor = System.Drawing.SystemColors.Highlight;
816
            dataGridViewCellStyle147.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
817
            dataGridViewCellStyle147.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
818
            this.dgvBusinessMessage.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle147;
819 819
            this.dgvBusinessMessage.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
820 820
            this.dgvBusinessMessage.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
821 821
            this.dataGridViewTextBoxColumn79,
......
858 858
            // 
859 859
            // dataGridViewTextBoxColumn81
860 860
            // 
861
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
862
            this.dataGridViewTextBoxColumn81.DefaultCellStyle = dataGridViewCellStyle3;
861
            dataGridViewCellStyle148.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
862
            this.dataGridViewTextBoxColumn81.DefaultCellStyle = dataGridViewCellStyle148;
863 863
            this.dataGridViewTextBoxColumn81.Frozen = true;
864 864
            this.dataGridViewTextBoxColumn81.HeaderText = "書込み者";
865 865
            this.dataGridViewTextBoxColumn81.Name = "dataGridViewTextBoxColumn81";
......
869 869
            // 
870 870
            // dataGridViewTextBoxColumn82
871 871
            // 
872
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
873
            this.dataGridViewTextBoxColumn82.DefaultCellStyle = dataGridViewCellStyle4;
872
            dataGridViewCellStyle149.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
873
            this.dataGridViewTextBoxColumn82.DefaultCellStyle = dataGridViewCellStyle149;
874 874
            this.dataGridViewTextBoxColumn82.Frozen = true;
875 875
            this.dataGridViewTextBoxColumn82.HeaderText = "対象者";
876 876
            this.dataGridViewTextBoxColumn82.Name = "dataGridViewTextBoxColumn82";
......
879 879
            // 
880 880
            // dataGridViewTextBoxColumn83
881 881
            // 
882
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
883
            this.dataGridViewTextBoxColumn83.DefaultCellStyle = dataGridViewCellStyle5;
882
            dataGridViewCellStyle150.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
883
            this.dataGridViewTextBoxColumn83.DefaultCellStyle = dataGridViewCellStyle150;
884 884
            this.dataGridViewTextBoxColumn83.Frozen = true;
885 885
            this.dataGridViewTextBoxColumn83.HeaderText = "伝言タイトル";
886 886
            this.dataGridViewTextBoxColumn83.Name = "dataGridViewTextBoxColumn83";
......
898 898
            // 
899 899
            // dataGridViewTextBoxColumn84
900 900
            // 
901
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
902
            this.dataGridViewTextBoxColumn84.DefaultCellStyle = dataGridViewCellStyle6;
901
            dataGridViewCellStyle151.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
902
            this.dataGridViewTextBoxColumn84.DefaultCellStyle = dataGridViewCellStyle151;
903 903
            this.dataGridViewTextBoxColumn84.Frozen = true;
904 904
            this.dataGridViewTextBoxColumn84.HeaderText = "書 込 日 付";
905 905
            this.dataGridViewTextBoxColumn84.Name = "dataGridViewTextBoxColumn84";
......
976 976
            this.dgvMessageBoard.AllowUserToDeleteRows = false;
977 977
            this.dgvMessageBoard.AllowUserToResizeColumns = false;
978 978
            this.dgvMessageBoard.AllowUserToResizeRows = false;
979
            dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
980
            this.dgvMessageBoard.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle7;
979
            dataGridViewCellStyle152.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
980
            this.dgvMessageBoard.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle152;
981 981
            this.dgvMessageBoard.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
982 982
            | System.Windows.Forms.AnchorStyles.Left) 
983 983
            | System.Windows.Forms.AnchorStyles.Right)));
984 984
            this.dgvMessageBoard.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
985 985
            this.dgvMessageBoard.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
986
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
987
            dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
988
            dataGridViewCellStyle8.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
989
            dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
990
            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
991
            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
992
            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
993
            this.dgvMessageBoard.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle8;
986
            dataGridViewCellStyle153.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
987
            dataGridViewCellStyle153.BackColor = System.Drawing.SystemColors.Control;
988
            dataGridViewCellStyle153.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
989
            dataGridViewCellStyle153.ForeColor = System.Drawing.SystemColors.WindowText;
990
            dataGridViewCellStyle153.SelectionBackColor = System.Drawing.SystemColors.Highlight;
991
            dataGridViewCellStyle153.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
992
            dataGridViewCellStyle153.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
993
            this.dgvMessageBoard.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle153;
994 994
            this.dgvMessageBoard.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
995 995
            this.dgvMessageBoard.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
996 996
            this.Column05,
......
1032 1032
            // 
1033 1033
            // Column03
1034 1034
            // 
1035
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1036
            this.Column03.DefaultCellStyle = dataGridViewCellStyle9;
1035
            dataGridViewCellStyle154.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1036
            this.Column03.DefaultCellStyle = dataGridViewCellStyle154;
1037 1037
            this.Column03.Frozen = true;
1038 1038
            this.Column03.HeaderText = "書込み者";
1039 1039
            this.Column03.Name = "Column03";
......
1043 1043
            // 
1044 1044
            // Column01
1045 1045
            // 
1046
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1047
            this.Column01.DefaultCellStyle = dataGridViewCellStyle10;
1046
            dataGridViewCellStyle155.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1047
            this.Column01.DefaultCellStyle = dataGridViewCellStyle155;
1048 1048
            this.Column01.Frozen = true;
1049 1049
            this.Column01.HeaderText = "対象者";
1050 1050
            this.Column01.Name = "Column01";
......
1054 1054
            // 
1055 1055
            // Column02
1056 1056
            // 
1057
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1058
            this.Column02.DefaultCellStyle = dataGridViewCellStyle11;
1057
            dataGridViewCellStyle156.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1058
            this.Column02.DefaultCellStyle = dataGridViewCellStyle156;
1059 1059
            this.Column02.Frozen = true;
1060 1060
            this.Column02.HeaderText = "伝  言  タ イ ト ル";
1061 1061
            this.Column02.Name = "Column02";
......
1065 1065
            // 
1066 1066
            // Column04
1067 1067
            // 
1068
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1069
            this.Column04.DefaultCellStyle = dataGridViewCellStyle12;
1068
            dataGridViewCellStyle157.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1069
            this.Column04.DefaultCellStyle = dataGridViewCellStyle157;
1070 1070
            this.Column04.Frozen = true;
1071 1071
            this.Column04.HeaderText = "書 込 日 付";
1072 1072
            this.Column04.Name = "Column04";
......
1194 1194
            this.dgvApproval.AllowUserToDeleteRows = false;
1195 1195
            this.dgvApproval.AllowUserToResizeColumns = false;
1196 1196
            this.dgvApproval.AllowUserToResizeRows = false;
1197
            dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1198
            this.dgvApproval.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
1197
            dataGridViewCellStyle158.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1198
            this.dgvApproval.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle158;
1199 1199
            this.dgvApproval.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
1200 1200
            | System.Windows.Forms.AnchorStyles.Left) 
1201 1201
            | System.Windows.Forms.AnchorStyles.Right)));
1202 1202
            this.dgvApproval.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1203 1203
            this.dgvApproval.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1204
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1205
            dataGridViewCellStyle14.BackColor = System.Drawing.SystemColors.Control;
1206
            dataGridViewCellStyle14.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1207
            dataGridViewCellStyle14.ForeColor = System.Drawing.SystemColors.WindowText;
1208
            dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1209
            dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1210
            dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1211
            this.dgvApproval.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
1204
            dataGridViewCellStyle159.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1205
            dataGridViewCellStyle159.BackColor = System.Drawing.SystemColors.Control;
1206
            dataGridViewCellStyle159.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1207
            dataGridViewCellStyle159.ForeColor = System.Drawing.SystemColors.WindowText;
1208
            dataGridViewCellStyle159.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1209
            dataGridViewCellStyle159.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1210
            dataGridViewCellStyle159.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1211
            this.dgvApproval.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle159;
1212 1212
            this.dgvApproval.ColumnHeadersHeight = 20;
1213 1213
            this.dgvApproval.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1214 1214
            this.dgvApproval.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1240 1240
            // 
1241 1241
            // ApprovalColumn02
1242 1242
            // 
1243
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1244
            dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
1245
            dataGridViewCellStyle15.ForeColor = System.Drawing.Color.Black;
1246
            this.ApprovalColumn02.DefaultCellStyle = dataGridViewCellStyle15;
1243
            dataGridViewCellStyle160.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1244
            dataGridViewCellStyle160.BackColor = System.Drawing.Color.White;
1245
            dataGridViewCellStyle160.ForeColor = System.Drawing.Color.Black;
1246
            this.ApprovalColumn02.DefaultCellStyle = dataGridViewCellStyle160;
1247 1247
            this.ApprovalColumn02.Frozen = true;
1248 1248
            this.ApprovalColumn02.HeaderText = "工事コード";
1249 1249
            this.ApprovalColumn02.Name = "ApprovalColumn02";
......
1264 1264
            // 
1265 1265
            // ApprovalColumn01
1266 1266
            // 
1267
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1268
            dataGridViewCellStyle16.BackColor = System.Drawing.Color.White;
1269
            dataGridViewCellStyle16.ForeColor = System.Drawing.Color.Black;
1270
            this.ApprovalColumn01.DefaultCellStyle = dataGridViewCellStyle16;
1267
            dataGridViewCellStyle161.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1268
            dataGridViewCellStyle161.BackColor = System.Drawing.Color.White;
1269
            dataGridViewCellStyle161.ForeColor = System.Drawing.Color.Black;
1270
            this.ApprovalColumn01.DefaultCellStyle = dataGridViewCellStyle161;
1271 1271
            this.ApprovalColumn01.Frozen = true;
1272 1272
            this.ApprovalColumn01.HeaderText = "№";
1273 1273
            this.ApprovalColumn01.Name = "ApprovalColumn01";
......
1278 1278
            // 
1279 1279
            // ApprovalColumn03
1280 1280
            // 
1281
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1282
            dataGridViewCellStyle17.BackColor = System.Drawing.Color.White;
1283
            dataGridViewCellStyle17.ForeColor = System.Drawing.Color.Black;
1284
            this.ApprovalColumn03.DefaultCellStyle = dataGridViewCellStyle17;
1281
            dataGridViewCellStyle162.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1282
            dataGridViewCellStyle162.BackColor = System.Drawing.Color.White;
1283
            dataGridViewCellStyle162.ForeColor = System.Drawing.Color.Black;
1284
            this.ApprovalColumn03.DefaultCellStyle = dataGridViewCellStyle162;
1285 1285
            this.ApprovalColumn03.Frozen = true;
1286 1286
            this.ApprovalColumn03.HeaderText = "工 事 名 称";
1287 1287
            this.ApprovalColumn03.Name = "ApprovalColumn03";
......
1291 1291
            // 
1292 1292
            // ApprovalColumn04
1293 1293
            // 
1294
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1295
            dataGridViewCellStyle18.BackColor = System.Drawing.Color.White;
1296
            dataGridViewCellStyle18.ForeColor = System.Drawing.Color.Black;
1297
            this.ApprovalColumn04.DefaultCellStyle = dataGridViewCellStyle18;
1294
            dataGridViewCellStyle163.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1295
            dataGridViewCellStyle163.BackColor = System.Drawing.Color.White;
1296
            dataGridViewCellStyle163.ForeColor = System.Drawing.Color.Black;
1297
            this.ApprovalColumn04.DefaultCellStyle = dataGridViewCellStyle163;
1298 1298
            this.ApprovalColumn04.HeaderText = "承認機能";
1299 1299
            this.ApprovalColumn04.Name = "ApprovalColumn04";
1300 1300
            this.ApprovalColumn04.ReadOnly = true;
......
1303 1303
            // 
1304 1304
            // ApprovalColumn05
1305 1305
            // 
1306
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1307
            dataGridViewCellStyle19.BackColor = System.Drawing.Color.White;
1308
            dataGridViewCellStyle19.ForeColor = System.Drawing.Color.Black;
1309
            this.ApprovalColumn05.DefaultCellStyle = dataGridViewCellStyle19;
1306
            dataGridViewCellStyle164.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1307
            dataGridViewCellStyle164.BackColor = System.Drawing.Color.White;
1308
            dataGridViewCellStyle164.ForeColor = System.Drawing.Color.Black;
1309
            this.ApprovalColumn05.DefaultCellStyle = dataGridViewCellStyle164;
1310 1310
            this.ApprovalColumn05.HeaderText = "申 請 者";
1311 1311
            this.ApprovalColumn05.Name = "ApprovalColumn05";
1312 1312
            this.ApprovalColumn05.ReadOnly = true;
......
1314 1314
            // 
1315 1315
            // ApprovalColumn06
1316 1316
            // 
1317
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1318
            dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
1319
            dataGridViewCellStyle20.ForeColor = System.Drawing.Color.Black;
1320
            this.ApprovalColumn06.DefaultCellStyle = dataGridViewCellStyle20;
1317
            dataGridViewCellStyle165.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1318
            dataGridViewCellStyle165.BackColor = System.Drawing.Color.White;
1319
            dataGridViewCellStyle165.ForeColor = System.Drawing.Color.Black;
1320
            this.ApprovalColumn06.DefaultCellStyle = dataGridViewCellStyle165;
1321 1321
            this.ApprovalColumn06.HeaderText = "申 請 日";
1322 1322
            this.ApprovalColumn06.Name = "ApprovalColumn06";
1323 1323
            this.ApprovalColumn06.ReadOnly = true;
......
1325 1325
            // 
1326 1326
            // ApprovalColumn07
1327 1327
            // 
1328
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1329
            dataGridViewCellStyle21.BackColor = System.Drawing.Color.White;
1330
            dataGridViewCellStyle21.ForeColor = System.Drawing.Color.Black;
1331
            this.ApprovalColumn07.DefaultCellStyle = dataGridViewCellStyle21;
1328
            dataGridViewCellStyle166.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1329
            dataGridViewCellStyle166.BackColor = System.Drawing.Color.White;
1330
            dataGridViewCellStyle166.ForeColor = System.Drawing.Color.Black;
1331
            this.ApprovalColumn07.DefaultCellStyle = dataGridViewCellStyle166;
1332 1332
            this.ApprovalColumn07.HeaderText = "承認希望日";
1333 1333
            this.ApprovalColumn07.Name = "ApprovalColumn07";
1334 1334
            this.ApprovalColumn07.ReadOnly = true;
......
1336 1336
            // 
1337 1337
            // ApprovalColumn08
1338 1338
            // 
1339
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1340
            dataGridViewCellStyle22.BackColor = System.Drawing.Color.White;
1341
            dataGridViewCellStyle22.ForeColor = System.Drawing.Color.Black;
1342
            this.ApprovalColumn08.DefaultCellStyle = dataGridViewCellStyle22;
1339
            dataGridViewCellStyle167.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1340
            dataGridViewCellStyle167.BackColor = System.Drawing.Color.White;
1341
            dataGridViewCellStyle167.ForeColor = System.Drawing.Color.Black;
1342
            this.ApprovalColumn08.DefaultCellStyle = dataGridViewCellStyle167;
1343 1343
            this.ApprovalColumn08.HeaderText = "承認者1";
1344 1344
            this.ApprovalColumn08.Name = "ApprovalColumn08";
1345 1345
            this.ApprovalColumn08.ReadOnly = true;
......
1347 1347
            // 
1348 1348
            // ApprovalColumn09
1349 1349
            // 
1350
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1351
            dataGridViewCellStyle23.BackColor = System.Drawing.Color.White;
1352
            dataGridViewCellStyle23.ForeColor = System.Drawing.Color.Black;
1353
            this.ApprovalColumn09.DefaultCellStyle = dataGridViewCellStyle23;
1350
            dataGridViewCellStyle168.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1351
            dataGridViewCellStyle168.BackColor = System.Drawing.Color.White;
1352
            dataGridViewCellStyle168.ForeColor = System.Drawing.Color.Black;
1353
            this.ApprovalColumn09.DefaultCellStyle = dataGridViewCellStyle168;
1354 1354
            this.ApprovalColumn09.HeaderText = "承認者2";
1355 1355
            this.ApprovalColumn09.Name = "ApprovalColumn09";
1356 1356
            this.ApprovalColumn09.ReadOnly = true;
......
1358 1358
            // 
1359 1359
            // ApprovalColumn10
1360 1360
            // 
1361
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1362
            dataGridViewCellStyle24.BackColor = System.Drawing.Color.White;
1363
            dataGridViewCellStyle24.ForeColor = System.Drawing.Color.Black;
1364
            this.ApprovalColumn10.DefaultCellStyle = dataGridViewCellStyle24;
1361
            dataGridViewCellStyle169.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1362
            dataGridViewCellStyle169.BackColor = System.Drawing.Color.White;
1363
            dataGridViewCellStyle169.ForeColor = System.Drawing.Color.Black;
1364
            this.ApprovalColumn10.DefaultCellStyle = dataGridViewCellStyle169;
1365 1365
            this.ApprovalColumn10.HeaderText = "承認者3";
1366 1366
            this.ApprovalColumn10.Name = "ApprovalColumn10";
1367 1367
            this.ApprovalColumn10.ReadOnly = true;
......
1369 1369
            // 
1370 1370
            // ApprovalColumn11
1371 1371
            // 
1372
            dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1373
            dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
1374
            dataGridViewCellStyle25.ForeColor = System.Drawing.Color.Black;
1375
            this.ApprovalColumn11.DefaultCellStyle = dataGridViewCellStyle25;
1372
            dataGridViewCellStyle170.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1373
            dataGridViewCellStyle170.BackColor = System.Drawing.Color.White;
1374
            dataGridViewCellStyle170.ForeColor = System.Drawing.Color.Black;
1375
            this.ApprovalColumn11.DefaultCellStyle = dataGridViewCellStyle170;
1376 1376
            this.ApprovalColumn11.HeaderText = "承認者4";
1377 1377
            this.ApprovalColumn11.Name = "ApprovalColumn11";
1378 1378
            this.ApprovalColumn11.ReadOnly = true;
......
1399 1399
            this.dgvSalesInProjects.AllowUserToDeleteRows = false;
1400 1400
            this.dgvSalesInProjects.AllowUserToResizeColumns = false;
1401 1401
            this.dgvSalesInProjects.AllowUserToResizeRows = false;
1402
            dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1403
            this.dgvSalesInProjects.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle26;
1402
            dataGridViewCellStyle171.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1403
            this.dgvSalesInProjects.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle171;
1404 1404
            this.dgvSalesInProjects.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
1405 1405
            | System.Windows.Forms.AnchorStyles.Left) 
1406 1406
            | System.Windows.Forms.AnchorStyles.Right)));
1407 1407
            this.dgvSalesInProjects.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1408 1408
            this.dgvSalesInProjects.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1409
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1410
            dataGridViewCellStyle27.BackColor = System.Drawing.SystemColors.Control;
1411
            dataGridViewCellStyle27.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1412
            dataGridViewCellStyle27.ForeColor = System.Drawing.SystemColors.WindowText;
1413
            dataGridViewCellStyle27.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1414
            dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1415
            dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1416
            this.dgvSalesInProjects.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle27;
1409
            dataGridViewCellStyle172.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1410
            dataGridViewCellStyle172.BackColor = System.Drawing.SystemColors.Control;
1411
            dataGridViewCellStyle172.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1412
            dataGridViewCellStyle172.ForeColor = System.Drawing.SystemColors.WindowText;
1413
            dataGridViewCellStyle172.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1414
            dataGridViewCellStyle172.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1415
            dataGridViewCellStyle172.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1416
            this.dgvSalesInProjects.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle172;
1417 1417
            this.dgvSalesInProjects.ColumnHeadersHeight = 20;
1418 1418
            this.dgvSalesInProjects.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1419 1419
            this.dgvSalesInProjects.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1444 1444
            // 
1445 1445
            // Column1
1446 1446
            // 
1447
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1448
            this.Column1.DefaultCellStyle = dataGridViewCellStyle28;
1447
            dataGridViewCellStyle173.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1448
            this.Column1.DefaultCellStyle = dataGridViewCellStyle173;
1449 1449
            this.Column1.Frozen = true;
1450 1450
            this.Column1.HeaderText = "工事コード";
1451 1451
            this.Column1.Name = "Column1";
......
1457 1457
            // 
1458 1458
            // Column15
1459 1459
            // 
1460
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1461
            dataGridViewCellStyle29.ForeColor = System.Drawing.Color.Black;
1462
            this.Column15.DefaultCellStyle = dataGridViewCellStyle29;
1460
            dataGridViewCellStyle174.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1461
            dataGridViewCellStyle174.ForeColor = System.Drawing.Color.Black;
1462
            this.Column15.DefaultCellStyle = dataGridViewCellStyle174;
1463 1463
            this.Column15.Frozen = true;
1464 1464
            this.Column15.HeaderText = "№";
1465 1465
            this.Column15.Name = "Column15";
......
1470 1470
            // 
1471 1471
            // Column10
1472 1472
            // 
1473
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1474
            this.Column10.DefaultCellStyle = dataGridViewCellStyle30;
1473
            dataGridViewCellStyle175.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1474
            this.Column10.DefaultCellStyle = dataGridViewCellStyle175;
1475 1475
            this.Column10.Frozen = true;
1476 1476
            this.Column10.HeaderText = "営業期";
1477 1477
            this.Column10.Name = "Column10";
......
1482 1482
            // 
1483 1483
            // Column2
1484 1484
            // 
1485
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1486
            this.Column2.DefaultCellStyle = dataGridViewCellStyle31;
1485
            dataGridViewCellStyle176.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1486
            this.Column2.DefaultCellStyle = dataGridViewCellStyle176;
1487 1487
            this.Column2.Frozen = true;
1488 1488
            this.Column2.HeaderText = "現  場  名  ・  工  事  名";
1489 1489
            this.Column2.Name = "Column2";
......
1494 1494
            // 
1495 1495
            // Column9
1496 1496
            // 
1497
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1498
            this.Column9.DefaultCellStyle = dataGridViewCellStyle32;
1497
            dataGridViewCellStyle177.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1498
            this.Column9.DefaultCellStyle = dataGridViewCellStyle177;
1499 1499
            this.Column9.HeaderText = "状   態";
1500 1500
            this.Column9.Name = "Column9";
1501 1501
            this.Column9.ReadOnly = true;
......
1504 1504
            // 
1505 1505
            // Column19
1506 1506
            // 
1507
            dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1508
            this.Column19.DefaultCellStyle = dataGridViewCellStyle33;
1507
            dataGridViewCellStyle178.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1508
            this.Column19.DefaultCellStyle = dataGridViewCellStyle178;
1509 1509
            this.Column19.HeaderText = "見積提出期限";
1510 1510
            this.Column19.Name = "Column19";
1511 1511
            this.Column19.ReadOnly = true;
......
1514 1514
            // 
1515 1515
            // Column3
1516 1516
            // 
1517
            dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1518
            this.Column3.DefaultCellStyle = dataGridViewCellStyle34;
1517
            dataGridViewCellStyle179.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1518
            this.Column3.DefaultCellStyle = dataGridViewCellStyle179;
1519 1519
            this.Column3.HeaderText = "営業担当者";
1520 1520
            this.Column3.Name = "Column3";
1521 1521
            this.Column3.ReadOnly = true;
......
1524 1524
            // 
1525 1525
            // Column4
1526 1526
            // 
1527
            dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1528
            this.Column4.DefaultCellStyle = dataGridViewCellStyle35;
1527
            dataGridViewCellStyle180.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1528
            this.Column4.DefaultCellStyle = dataGridViewCellStyle180;
1529 1529
            this.Column4.HeaderText = "工事予定者";
1530 1530
            this.Column4.Name = "Column4";
1531 1531
            this.Column4.ReadOnly = true;
......
1534 1534
            // 
1535 1535
            // Column5
1536 1536
            // 
1537
            dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1538
            this.Column5.DefaultCellStyle = dataGridViewCellStyle36;
1537
            dataGridViewCellStyle181.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1538
            this.Column5.DefaultCellStyle = dataGridViewCellStyle181;
1539 1539
            this.Column5.HeaderText = "着工予定日";
1540 1540
            this.Column5.Name = "Column5";
1541 1541
            this.Column5.ReadOnly = true;
......
1544 1544
            // 
1545 1545
            // Column6
1546 1546
            // 
1547
            dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1548
            this.Column6.DefaultCellStyle = dataGridViewCellStyle37;
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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