プロジェクト

全般

プロフィール

リビジョン 37

堀内約8年前に追加

最新ソース

差分を表示:

trunk/src/ProcessManagement/ProcessManagement/Common/CommonDefine.cs
227 227
        public static Color s_clrNormal = Color.White;
228 228
        #endregion
229 229

  
230
        #region 曜日文字
231
        /// <summary>
232
        /// 曜日文字
233
        /// </summary>
234
        public static string[] DayOfTheWeekString = new string[] { "日", "月", "火", "水", "木", "金", "土" };
235
        #endregion
236

  
230 237
        #region 掲示板:関連定義
231 238
        #region 掲示板グリッド返信文字
232 239
        /// <summary>
......
1383 1390
            /// <summary>
1384 1391
            /// 1:親データ
1385 1392
            /// </summary>
1386
            Pearent,
1393
            Parent,
1387 1394
            /// <summary>
1388 1395
            /// 2:紐付きデータ
1389 1396
            /// </summary>
trunk/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs
407 407
        }
408 408
        #endregion
409 409

  
410
        #region 今の年号を取得する
411
        /// <summary>
412
        /// 今の年号を取得する
413
        /// </summary>
414
        /// <returns></returns>
415
        public static string GetNameOfAnEra(DateTime TargetDate)
416
        {
417
            try
418
            {
419
                string strRet = string.Empty;
420

  
421
                CultureInfo culture = new CultureInfo("ja-JP", true);
422
                culture.DateTimeFormat.Calendar = new JapaneseCalendar();
423

  
424
                string result = TargetDate.ToString("ggyy年M月d日", culture);
425

  
426
                int strLength = 0;
427
                foreach (char c in result)
428
                {
429
                    if (char.IsNumber(c)) break;
430

  
431
                    strLength++;
432
                }
433

  
434
                strRet = result.Substring(0, strLength);
435

  
436
                return strRet;
437
            }
438
            catch (Exception ex)
439
            {
440
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
441
                return string.Empty;
442
            }
443
        }
444
        #endregion
445

  
410 446
        #region Int値より文字列に変化して指定位置に指定文字を入れる。(工事番号編集)
411 447
        /// <summary>
412 448
        /// Int値より文字列に変化して指定位置に指定文字を入れる。
......
806 842
                int CnvCode = Convert.ToInt32("0041", 16);      // 'A'
807 843
                int LastCode = Convert.ToInt32("005A", 16);     // 'Z'
808 844

  
809
                // 変換値を加算する
810
                CnvCode += num;
845
                // 'Z'を超えたら余剰を使って変換する
846
                int work = (CnvCode + num);
847
                if (work <= LastCode)
848
                {
849
                    // 変換値を加算する
850
                    CnvCode += num;
851
                }
852
                else
853
                {
854
                    CnvCode += (work % LastCode);
855
                }
811 856
                // 'Z'を超えたら採番しない
812
                if (CnvCode > LastCode) return string.Empty;
857
                //if (CnvCode > LastCode) return string.Empty;
813 858

  
814 859
                // 数値(文字コード) -> 文字
815 860
                char c = Convert.ToChar(CnvCode);
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IODailyData.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Data;
6
using System.Collections;
7

  
8
using log4net;
9
using Oracle.ManagedDataAccess.Client;
10

  
11
using ProcessManagement.DB.Oracle;
12
using ProcessManagement.DB.Core;
13
using ProcessManagement.DataModel;
14
using ProcessManagement.Common;
15

  
16
namespace ProcessManagement.DB.IOAccess
17
{
18
    /// <summary>
19
    /// 日報データDBアクセス
20
    /// </summary>
21
    public class IODailyData : OracleProcess
22
    {
23
        #region 定義部
24
        /// <summary>
25
        /// log4netログを使用する
26
        /// </summary>
27
        private static readonly ILog logger = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
28
        #endregion
29

  
30
        #region 定数
31
        /// <summary>
32
        /// データフィールド並び
33
        /// </summary>
34
        public enum DataColumn
35
        {
36
            /// <summary>
37
            /// 作成者コード
38
            /// </summary>
39
            PersonCode,
40
            /// <summary>
41
            /// 日報作成日
42
            /// </summary>
43
            DailyDataDate,
44
            /// <summary>
45
            /// 行番号
46
            /// </summary>
47
            LineCount,
48
            /// <summary>
49
            /// 工事番号
50
            /// </summary>
51
            ConstructionCode,
52
            /// <summary>
53
            /// 作業内容
54
            /// </summary>
55
            WorkContentsText,
56
            /// <summary>
57
            /// 登録年月日
58
            /// </summary>
59
            EntryDate,
60
            /// <summary>
61
            /// 更新年月日
62
            /// </summary>
63
            UpdateDate,
64
        }
65
        #endregion
66

  
67
        #region コンストラクタ
68
        /// <summary>
69
        /// コンストラクタ
70
        /// </summary>
71
        /// <param name="ConnectionString"></param>
72
        public IODailyData()
73
            : base(DBCommon.Instance.DBConnectString)
74
        {
75
        }
76

  
77
        #endregion
78

  
79
        #region SQL作成
80
        /// <summary>
81
        /// SQL作成
82
        /// </summary>
83
        private string CreateSelectSQL()
84
        {
85
            // SQL作成(oracleのDateTime型が変換できないのでCharに変換しておく)
86
            string strcmd = "SELECT";
87

  
88
            strcmd += "  PersonCode";                                       // 担当者コード
89
            strcmd += " ,TO_CHAR(DailyDataDate, 'YYYY/MM/DD')";             // 日報作成日
90
            strcmd += " ,LineCount";                                        // 行番号
91
            strcmd += " ,ConstructionCode";                                 // 工事番号
92
            strcmd += " ,WorkContentsText";                                 // 作業内容
93
            strcmd += ", TO_CHAR(EntryDate, 'YYYY/MM/DD HH24:MI:ss')";      // 登録年月日
94
            strcmd += ", TO_CHAR(UpdateDate, 'YYYY/MM/DD HH24:MI:ss')";     // 更新年月日
95
            strcmd += " FROM DailyData";
96

  
97
            return strcmd;
98
        }
99
        #endregion
100

  
101
        #region 複数読込み処理
102
        public bool SelectAction(string AddSQLString, ref List<DailyData> data, bool bConnect = true)
103
        {
104
            //Oracle インターフェース
105
            string strcmd = "";
106
            ArrayList arData = new ArrayList();
107

  
108
            try
109
            {
110
                // SQL作成
111
                strcmd = CreateSelectSQL() + AddSQLString;
112

  
113
                // SQL実行
114
                if (!ExecuteReader(strcmd, ref arData, bConnect)) return false;
115

  
116
                // データセット
117
                foreach (object[] objwrk in arData)
118
                {
119
                    DailyData work = new DailyData();
120
                    Reader2Struct(objwrk, ref work);
121
                    data.Add(work);
122
                }
123

  
124
                return true;
125
            }
126
            catch (Exception ex)
127
            {
128
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
129
                return false;
130
            }
131
        }
132
        #endregion
133

  
134
        #region 1件読込み処理
135
        public bool SelectAction(string AddSQLString, ref DailyData data, bool bConnect = true)
136
        {
137
            //Oracle インターフェース
138
            string strcmd = "";
139
            ArrayList arData = new ArrayList();
140

  
141
            try
142
            {
143
                strcmd = CreateSelectSQL() + AddSQLString;
144

  
145
                // SQL実行
146
                if (!ExecuteReader(strcmd, ref arData, bConnect)) return false;
147
                if (arData.Count == 0) return false;
148

  
149
                // データセット
150
                foreach (object[] objwrk in arData)
151
                {
152
                    Reader2Struct(objwrk, ref data);
153
                    break;
154
                }
155

  
156
                return true;
157
            }
158
            catch (Exception ex)
159
            {
160
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
161
                return false;
162
            }
163
        }
164
        #endregion
165

  
166
        #region 1件追加処理
167
        /// <summary>
168
        /// 担当者毎経費データ追加
169
        /// </summary>
170
        /// <param name="data">担当者毎経費データデータ</param>
171
        /// <returns>true:成功 false:失敗</returns>
172
        public bool InsertAction(DailyData work, bool bConnect = true)
173
        {
174
            string strcmd = "";
175
            try
176
            {
177
                strcmd = "INSERT INTO DailyData";
178

  
179
                strcmd += " VALUES (";
180

  
181
                strcmd += string.Format("  {0}", work.PersonCode);                      // 担当者コード
182
                strcmd += string.Format(", TO_DATE('{0}','YYYY/MM/DD')"
183
                                            , work.DailyDataDate.ToShortDateString());  // 日報作成日
184
                strcmd += string.Format(", {0}", work.LineCoount);                      // 行番号
185
                strcmd += string.Format(", {0}", work.ConstructionCode);                // 工事番号
186
                strcmd += string.Format(",'{0}'", work.WorkContentsText);               // 作業内容
187

  
188
                strcmd += ", TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
189
                strcmd += ", TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
190
                strcmd = strcmd + ")";
191

  
192
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
193

  
194
                return true;
195
            }
196
            catch (Exception ex)
197
            {
198
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
199
                return false;
200
            }
201
        }
202
        #endregion
203

  
204
        #region 複数追加処理
205
        public bool InsertAction(List<DailyData> data, bool bConnect = true)
206
        {
207
            string strcmd = "";
208
            try
209
            {
210

  
211
                foreach (DailyData work in data)
212
                {
213
                    if (!InsertAction(work, bConnect)) return false;
214
                }
215
                return true;
216
            }
217
            catch (Exception ex)
218
            {
219
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
220
                return false;
221
            }
222
        }
223
        #endregion
224

  
225
        #region 更新処理
226
        /// <summary>
227
        /// 担当者毎経費データ更新
228
        /// </summary>
229
        /// <param name="AddSQLString">更新条件SQL文字列</param>
230
        /// <param name="data">担当者毎経費データデータ</param>
231
        /// <returns>true:成功 false:失敗</returns>
232
        public bool UpdateAction(string AddSQLString, DailyData data, bool bConnect = true)
233
        {
234
            string strcmd = "";
235
            try
236
            {
237

  
238
                strcmd = "UPDATE DailyData";
239

  
240
                strcmd += " SET";
241

  
242
                strcmd += string.Format(" PersonCode = {0}", data.PersonCode);                  // 担当者コード
243
                strcmd += string.Format(",DailyDataDate = TO_DATE('{0}','YYYY/MM/DD')"
244
                                        , data.DailyDataDate.ToShortDateString());              // 日報作成日
245
                strcmd += string.Format(",LineCoount = {0}", data.LineCoount);                  // 行番号
246
                strcmd += string.Format(",ConstructionCode = {0}", data.ConstructionCode);      // 工事番号
247
                strcmd += string.Format(",WorkContentsText = '{0}'", data.WorkContentsText);    // 作業内容
248
                
249
                strcmd += ", UpdateDate = TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
250
                strcmd += AddSQLString;
251

  
252
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
253

  
254
                return true;
255
            }
256
            catch (Exception ex)
257
            {
258
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
259
                return false;
260
            }
261
        }
262
        #endregion
263

  
264
        #region 削除処理
265
        /// <summary>
266
        /// 担当者毎経費データ削除
267
        /// </summary>
268
        /// <param name="AddSQLString">削除条件SQL文字列</param>
269
        /// <param name="data">担当者毎経費データデータ</param>
270
        /// <returns>true:成功 false:失敗</returns>
271
        public bool DeleteAction(string AddSQLString, bool bConnect = true)
272
        {
273
            //Oracle インターフェース
274
            string strcmd = "";
275
            try
276
            {
277
                strcmd = string.Format("{0}{1}", "DELETE FROM DailyData", AddSQLString);
278

  
279
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
280

  
281
                return true;
282
            }
283
            catch (Exception ex)
284
            {
285
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
286
                return false;
287
            }
288
        }
289
        #endregion
290

  
291
        #region データセット処理
292
        /// <summary>
293
        /// OracleDataReaderより構造体へセットする
294
        /// </summary>
295
        /// <param name="reader">OracleDataReader</param>
296
        /// <param name="wrk">構造体</param>
297
        public void Reader2Struct(object[] objwrk, ref DailyData wrk)
298
        {
299
            try
300
            {
301
                // データ取得
302
                wrk.PersonCode = int.Parse(objwrk[(int)DataColumn.PersonCode].ToString());                  // 担当者コード
303
                wrk.DailyDataDate = DateTime.Parse(objwrk[(int)DataColumn.DailyDataDate].ToString());       // 日報作成日
304
                wrk.LineCoount = int.Parse(objwrk[(int)DataColumn.LineCount].ToString());                   // 行番号
305
                wrk.ConstructionCode = int.Parse(objwrk[(int)DataColumn.ConstructionCode].ToString());      // 工事番号
306
                wrk.WorkContentsText = objwrk[(int)DataColumn.WorkContentsText].ToString();                 // 作業内容
307

  
308
                wrk.EntryDate = DateTime.Parse(objwrk[(int)DataColumn.EntryDate].ToString());
309
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)DataColumn.UpdateDate].ToString());
310
            }
311
            catch (OracleException oraex)
312
            {
313
                logger.ErrorFormat("オラクルエラー:{0}:{1}", CommonMotions.GetMethodName(2), oraex.Message);
314
            }
315
            catch (Exception ex)
316
            {
317
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(2), ex.Message);
318
            }
319
        }
320
        #endregion
321

  
322
        #region 検索文字列作成処理
323
        /// <summary>
324
        /// 主キー検索の文字列を返す
325
        /// </summary>
326
        /// <param name="PersonCode"></param>
327
        /// <param name="ActionDate"></param>
328
        /// <param name="DataType"></param>
329
        /// <param name="DataAddCount"></param>
330
        /// <returns></returns>
331
        public string CreatePrimarykeyString(int PersonCode, DateTime DailyDataDate, int LineCount)
332
        {
333
            string strWork = "";
334
            try
335
            {
336
                strWork = string.Format(" WHERE PersonCode = {0}", PersonCode);
337
                if (DailyDataDate != DateTime.MinValue)
338
                    strWork += string.Format(" AND DailyDataDate = TO_DATE('{0}','YYYY/MM/DD')", DailyDataDate.ToShortDateString());
339
                if (LineCount != 0)
340
                    strWork += string.Format(" AND LineCount = {0}", LineCount);
341
            }
342
            catch (Exception ex)
343
            {
344
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strWork);
345
            }
346

  
347
            return strWork;
348
        }
349
        #endregion
350

  
351
    }
352
}
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOConstructionBaseInfoDetail.cs
304 304

  
305 305
        #endregion
306 306

  
307
        #region 1項目更新処理
308
        /// <summary>
309
        /// 1項目の更新を行う
310
        /// </summary>
311
        /// <returns></returns>
312
        public bool UpdateFeild(int ConstructionCode, int FeildNo, object value, bool bConnect = true)
313
        {
314
            string strcmd = "";
315
            try
316
            {
317
                strcmd = "UPDATE ConstructionBaseInfoDetail";
318

  
319
                strcmd += " SET";
320
                switch (FeildNo)
321
                {
322
                    case (int)TableColumn.CONSTRUCTION_CODE:
323
                        strcmd += string.Format(" ConstructionCode = {0}", ((int)value).ToString());
324
                        break;
325
                    case (int)TableColumn.DETAIL_NO:
326
                        strcmd += string.Format(" DetailNo = {0}", ((int)value).ToString());
327
                        break;
328
                    case (int)TableColumn.DETAIL_STRING:
329
                        strcmd += string.Format(" DetailString = '{0}'", value.ToString());
330
                        break;
331
                }
332

  
333
                strcmd += ", UpdateDate = TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
334
                strcmd += CreatePrimarykeyString(ConstructionCode);
335

  
336
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
337

  
338
                return true;
339
            }
340
            catch (Exception ex)
341
            {
342
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
343
                return false;
344
            }
345
        }
346
        #endregion
347

  
307 348
        #region 検索の文字列を返す
308 349

  
309 350
        /// <summary>
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOConstructionLink.cs
31 31
        /// <summary>
32 32
        /// 工事増減情報フィールド並び
33 33
        /// </summary>
34
        public enum ConstructionLinkColumn
34
        public enum TableColumn
35 35
        {
36 36
            CONSTRUCTION_CODE = 0,
37 37
            FLUCTUATION_CODE,
......
280 280
            try
281 281
            {
282 282
                // データ取得
283
                wrk.ConstructionCode = int.Parse(objwrk[(int)ConstructionLinkColumn.CONSTRUCTION_CODE].ToString());
284
                wrk.FluctuationCode = int.Parse(objwrk[(int)ConstructionLinkColumn.FLUCTUATION_CODE].ToString());
283
                wrk.ConstructionCode = int.Parse(objwrk[(int)TableColumn.CONSTRUCTION_CODE].ToString());
284
                wrk.FluctuationCode = int.Parse(objwrk[(int)TableColumn.FLUCTUATION_CODE].ToString());
285 285
                
286
                wrk.EntryDate = DateTime.Parse(objwrk[(int)ConstructionLinkColumn.ENTRY_DATE].ToString());
287
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)ConstructionLinkColumn.UPDATE_DATE].ToString());
286
                wrk.EntryDate = DateTime.Parse(objwrk[(int)TableColumn.ENTRY_DATE].ToString());
287
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)TableColumn.UPDATE_DATE].ToString());
288 288
            }
289 289
            catch (OracleException oraex)
290 290
            {
......
299 299

  
300 300
        #endregion
301 301

  
302
        #region 1項目更新処理
303
        /// <summary>
304
        /// 1項目の更新を行う
305
        /// </summary>
306
        /// <returns></returns>
307
        public bool UpdateFeild(int ConstructionCode, int FeildNo, object value, bool bConnect = true)
308
        {
309
            string strcmd = "";
310
            try
311
            {
312
                strcmd = "UPDATE ConstructionLink";
313

  
314
                strcmd += " SET";
315
                switch (FeildNo)
316
                {
317
                    case (int)TableColumn.CONSTRUCTION_CODE:
318
                        strcmd += string.Format(" ConstructionCode = {0}", ((int)value).ToString());
319
                        break;
320
                    case (int)TableColumn.FLUCTUATION_CODE:
321
                        strcmd += string.Format(" FluctuationCode = {0}", ((int)value).ToString());
322
                        break;
323
                }
324

  
325
                strcmd += ", UpdateDate = TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
326
                strcmd += CreatePrimarykeyString(ConstructionCode);
327

  
328
                if (!ExecuteNonQuery(strcmd, bConnect)) return false;
329

  
330
                return true;
331
            }
332
            catch (Exception ex)
333
            {
334
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd);
335
                return false;
336
            }
337
        }
338
        #endregion
339

  
302 340
        #region 検索の文字列を返す
303 341

  
304 342
        /// <summary>
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IODailyDataDetail.cs
458 458
        /// <param name="DataType"></param>
459 459
        /// <param name="DataAddCount"></param>
460 460
        /// <returns></returns>
461
        public string CreatePrimarykeyString(int PersonCode, DateTime DailyDataDate, int ConstructionCode, int SeqNo)
461
        public string CreatePrimarykeyString(int PersonCode, DateTime DailyDataDate, int ConstructionCode = 0, int SeqNo = 0)
462 462
        {
463 463
            string strWork = "";
464 464
            try
trunk/src/ProcessManagement/ProcessManagement/DataModel/DailyData.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace ProcessManagement.DataModel
7
{
8
    /// <summary>
9
    /// 日報データ定義クラス
10
    /// </summary>
11
    public class DailyData
12
    {
13
        #region メンバ変数
14
        /// <summary>
15
        /// 作成者コード
16
        /// </summary>
17
        private int         m_PersonCode = 0;
18
        /// <summary>
19
        /// 日報作成日
20
        /// </summary>
21
        private DateTime    m_DailyDataDate = DateTime.MinValue;
22
        /// <summary>
23
        /// 行番号
24
        /// </summary>
25
        private int         m_LineCoount = 0;
26
        /// <summary>
27
        /// 工事番号
28
        /// </summary>
29
        private int         m_ConstructionCode = 0;
30
        /// <summary>
31
        /// 作業内容
32
        /// </summary>
33
        private string      m_WorkContentsText = string.Empty;
34
        /// <summary>
35
        /// 登録年月日
36
        /// </summary>
37
        private DateTime    m_EntryDate = DateTime.Now;
38
        /// <summary>
39
        /// 更新年月日
40
        /// </summary>
41
        private DateTime    m_UpdateDate = DateTime.Now;
42
        #endregion
43

  
44
        #region プロパティ
45
        /// <summary>
46
        /// 作成者コード
47
        /// </summary>
48
        public int PersonCode
49
        {
50
            get { return m_PersonCode; }
51
            set { m_PersonCode = value; }
52
        }
53
        /// <summary>
54
        /// 日報作成日
55
        /// </summary>
56
        public DateTime DailyDataDate
57
        {
58
            get { return m_DailyDataDate; }
59
            set { m_DailyDataDate = value; }
60
        }
61
        /// <summary>
62
        /// 行番号
63
        /// </summary>
64
        public int LineCoount
65
        {
66
            get { return m_LineCoount; }
67
            set { m_LineCoount = value; }
68
        }
69
        /// <summary>
70
        /// 工事番号
71
        /// </summary>
72
        public int ConstructionCode
73
        {
74
            get { return m_ConstructionCode; }
75
            set { m_ConstructionCode = value; }
76
        }
77
        /// <summary>
78
        /// 作業内容
79
        /// </summary>
80
        public string WorkContentsText
81
        {
82
            get { return m_WorkContentsText; }
83
            set { m_WorkContentsText = value; }
84
        }
85
        /// <summary>
86
        /// 登録年月日
87
        /// </summary>
88
        public DateTime EntryDate
89
        {
90
            get { return m_EntryDate; }
91
            set { m_EntryDate = value; }
92
        }
93
        /// <summary>
94
        /// 更新年月日
95
        /// </summary>
96
        public DateTime UpdateDate
97
        {
98
            get { return m_UpdateDate; }
99
            set { m_UpdateDate = value; }
100
        }
101
        #endregion
102
    }
103
}
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalScreen/FrmApprovalScreenAuxiliary.cs
163 163

  
164 164
                // 増減なしの工事・本体工事はチェック無
165 165
                if (m_ConstructionBaseInfo.TyingFlg == (int)CommonDefine.BaseInfoTyingFlg.Standard
166
                    || m_ConstructionBaseInfo.TyingFlg == (int)CommonDefine.BaseInfoTyingFlg.Pearent) return true;
166
                    || m_ConstructionBaseInfo.TyingFlg == (int)CommonDefine.BaseInfoTyingFlg.Parent) return true;
167 167

  
168 168
                // 増減工事の子データのみ表示
169 169
                string strSQL = " SELECT * FROM CONSTRUCTIONLINK A, CONSTRUCTIONLEDGER B";
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstractionList/FrmConstructionListAuxiliary.cs
1278 1278
                    }
1279 1279
                }
1280 1280

  
1281
                // ????????g?p??????O?C????????????R???{????????
1282
                if (CommonMotions.LoginUserSecurity.GeneralAffairs == (int)CommonDefine.GeneralAffairs.GeneralDep) return;
1283

  
1281 1284
                // ???????????R???{?{?b?N?X?f?[?^??????Z?b?g????
1282 1285
                for (int i = 0; i < cmbDepartment.Items.Count; i++)
1283 1286
                {
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/DataChange.cs
258 258
                strSQL = DB1.CreatePrimarykeyString(OrgCode);
259 259
                if (!DB1.UpdateFeild(OrgCode,
260 260
                                (int)IOConstructionBaseInfo.TableColumn.TyingFlg,
261
                                (int)CommonDefine.BaseInfoTyingFlg.Pearent, false)) return false;
261
                                (int)CommonDefine.BaseInfoTyingFlg.Parent, false)) return false;
262 262

  
263 263
                // ???f?[?^???????????
264 264
                if (!InitSetBaseInfo(ToCode, DB1)) return false;
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.cs
1920 1920
            ReleaseFluctuation();
1921 1921
        }
1922 1922
        #endregion
1923

  
1924
        #region ?H???????{?^??????????
1925
        /// <summary>
1926
        /// ?H???????{?^??????????
1927
        /// </summary>
1928
        /// <param name="sender"></param>
1929
        /// <param name="e"></param>
1930
        private void btlConstrSplit_Click(object sender, EventArgs e)
1931
        {
1932
            ConstructionSplit();
1933
        }
1934
        #endregion
1923 1935
    }
1924 1936
}
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs
52 52
            this.txtInput07 = new System.Windows.Forms.TextBox();
53 53
            this.label6 = new System.Windows.Forms.Label();
54 54
            this.label8 = new System.Windows.Forms.Label();
55
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
56
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
55 57
            this.label4 = new System.Windows.Forms.Label();
56 58
            this.panel2 = new System.Windows.Forms.Panel();
57 59
            this.rdbEstimateType2 = new System.Windows.Forms.RadioButton();
58 60
            this.rdbEstimateType3 = new System.Windows.Forms.RadioButton();
59 61
            this.rdbEstimateType1 = new System.Windows.Forms.RadioButton();
62
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
60 63
            this.txtInput08 = new System.Windows.Forms.TextBox();
61 64
            this.btnSerchZip = new System.Windows.Forms.Button();
62 65
            this.label20 = new System.Windows.Forms.Label();
......
89 92
            this.label44 = new System.Windows.Forms.Label();
90 93
            this.label14 = new System.Windows.Forms.Label();
91 94
            this.label5 = new System.Windows.Forms.Label();
95
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
92 96
            this.btnOrderer = new System.Windows.Forms.Button();
97
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
93 98
            this.txtInput05 = new System.Windows.Forms.TextBox();
94 99
            this.panel4 = new System.Windows.Forms.Panel();
95 100
            this.btnChangePrice = new System.Windows.Forms.Button();
......
99 104
            this.label97 = new System.Windows.Forms.Label();
100 105
            this.label39 = new System.Windows.Forms.Label();
101 106
            this.label30 = new System.Windows.Forms.Label();
107
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
102 108
            this.label27 = new System.Windows.Forms.Label();
109
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
103 110
            this.lblTransferDate = new System.Windows.Forms.Label();
104 111
            this.label36 = new System.Windows.Forms.Label();
112
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
105 113
            this.txtInput26 = new System.Windows.Forms.TextBox();
106 114
            this.label10 = new System.Windows.Forms.Label();
107 115
            this.txtInput01 = new System.Windows.Forms.TextBox();
108 116
            this.label33 = new System.Windows.Forms.Label();
117
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
118
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
109 119
            this.label24 = new System.Windows.Forms.Label();
120
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
110 121
            this.label22 = new System.Windows.Forms.Label();
122
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
111 123
            this.label12 = new System.Windows.Forms.Label();
124
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
112 125
            this.label15 = new System.Windows.Forms.Label();
113 126
            this.label38 = new System.Windows.Forms.Label();
114 127
            this.label68 = new System.Windows.Forms.Label();
......
119 132
            this.label23 = new System.Windows.Forms.Label();
120 133
            this.label70 = new System.Windows.Forms.Label();
121 134
            this.label71 = new System.Windows.Forms.Label();
135
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
136
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
137
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
122 138
            this.label62 = new System.Windows.Forms.Label();
123 139
            this.label72 = new System.Windows.Forms.Label();
124 140
            this.label73 = new System.Windows.Forms.Label();
125 141
            this.label61 = new System.Windows.Forms.Label();
126 142
            this.label55 = new System.Windows.Forms.Label();
143
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
127 144
            this.label54 = new System.Windows.Forms.Label();
145
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
128 146
            this.label66 = new System.Windows.Forms.Label();
129 147
            this.label56 = new System.Windows.Forms.Label();
130 148
            this.label75 = new System.Windows.Forms.Label();
......
143 161
            this.btnFluctuation = new System.Windows.Forms.Button();
144 162
            this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton();
145 163
            this.rdbNotFluctuation = new System.Windows.Forms.RadioButton();
164
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
165
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
166
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
146 167
            this.label46 = new System.Windows.Forms.Label();
147 168
            this.txtInput32 = new System.Windows.Forms.TextBox();
148 169
            this.label47 = new System.Windows.Forms.Label();
......
150 171
            this.txtInput31 = new System.Windows.Forms.TextBox();
151 172
            this.label41 = new System.Windows.Forms.Label();
152 173
            this.label50 = new System.Windows.Forms.Label();
174
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
175
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
153 176
            this.label25 = new System.Windows.Forms.Label();
177
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
154 178
            this.label42 = new System.Windows.Forms.Label();
179
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
180
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
181
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
182
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
155 183
            this.label81 = new System.Windows.Forms.Label();
156 184
            this.label82 = new System.Windows.Forms.Label();
157 185
            this.label77 = new System.Windows.Forms.Label();
......
160 188
            this.label67 = new System.Windows.Forms.Label();
161 189
            this.label79 = new System.Windows.Forms.Label();
162 190
            this.label31 = new System.Windows.Forms.Label();
191
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
192
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
193
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
163 194
            this.label113 = new System.Windows.Forms.Label();
164 195
            this.label76 = new System.Windows.Forms.Label();
165 196
            this.label112 = new System.Windows.Forms.Label();
......
195 226
            this.label109 = new System.Windows.Forms.Label();
196 227
            this.label43 = new System.Windows.Forms.Label();
197 228
            this.label45 = new System.Windows.Forms.Label();
229
            this.textBoxEX10 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
230
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
231
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
198 232
            this.label59 = new System.Windows.Forms.Label();
199 233
            this.panel9 = new System.Windows.Forms.Panel();
200 234
            this.label98 = new System.Windows.Forms.Label();
......
214 248
            this.label87 = new System.Windows.Forms.Label();
215 249
            this.label60 = new System.Windows.Forms.Label();
216 250
            this.label86 = new System.Windows.Forms.Label();
251
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
252
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
253
            this.txtInput37 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
217 254
            this.label2 = new System.Windows.Forms.Label();
218 255
            this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton();
219 256
            this.lblConstructionCodelabel = new System.Windows.Forms.Label();
......
244 281
            this.label29 = new System.Windows.Forms.Label();
245 282
            this.lblLastUpdate = new System.Windows.Forms.Label();
246 283
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
284
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
285
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
247 286
            this.btnApprovalList = new System.Windows.Forms.Button();
248 287
            this.btnOtherProc = new System.Windows.Forms.Button();
249
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
250
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
251
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
252
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
253
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
254
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
255
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
256
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
257
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
258
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
259
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
260
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
261
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
262
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
263
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
264
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
265
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
266
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
267
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
268
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
269
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
270
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
271
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
272
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
273
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
274
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
275
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
276
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
277
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
278
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
279
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
280
            this.textBoxEX10 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
281
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
282
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
283
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
284
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
285
            this.txtInput37 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
286
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
287
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
288
            this.btlConstrSplit = new System.Windows.Forms.Button();
289
            this.btnJoin = new System.Windows.Forms.Button();
288 290
            this.BasePanel.SuspendLayout();
289 291
            this.tableLayoutPanel2.SuspendLayout();
290 292
            this.panel1.SuspendLayout();
......
586 588
            this.label8.Text = "工事場所";
587 589
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
588 590
            // 
591
            // comboBoxEX1
592
            // 
593
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
594
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
595
            this.comboBoxEX1.FormattingEnabled = true;
596
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
597
            this.comboBoxEX1.Name = "comboBoxEX1";
598
            this.comboBoxEX1.Size = new System.Drawing.Size(250, 27);
599
            this.comboBoxEX1.TabIndex = 22;
600
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
601
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
602
            // 
603
            // cmbDisplayPerson
604
            // 
605
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
606
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
607
            this.cmbDisplayPerson.FormattingEnabled = true;
608
            this.cmbDisplayPerson.Location = new System.Drawing.Point(379, 724);
609
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
610
            this.cmbDisplayPerson.Size = new System.Drawing.Size(250, 27);
611
            this.cmbDisplayPerson.TabIndex = 23;
612
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
613
            // 
589 614
            // label4
590 615
            // 
591 616
            this.label4.BackColor = System.Drawing.Color.CornflowerBlue;
......
651 676
            this.rdbEstimateType1.UseVisualStyleBackColor = false;
652 677
            this.rdbEstimateType1.CheckedChanged += new System.EventHandler(this.valueChange);
653 678
            // 
679
            // cmbConstructionType
680
            // 
681
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
682
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
683
            this.cmbConstructionType.FormattingEnabled = true;
684
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
685
            this.cmbConstructionType.Name = "cmbConstructionType";
686
            this.cmbConstructionType.Size = new System.Drawing.Size(300, 27);
687
            this.cmbConstructionType.TabIndex = 21;
688
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
689
            // 
654 690
            // txtInput08
655 691
            // 
656 692
            this.txtInput08.ImeMode = System.Windows.Forms.ImeMode.Disable;
......
1037 1073
            this.label5.Text = "発 注 者";
1038 1074
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1039 1075
            // 
1076
            // cmbOrdersDivision
1077
            // 
1078
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1079
            | System.Windows.Forms.AnchorStyles.Right)));
1080
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
1081
            "株式会社",
1082
            "有限会社",
1083
            "合名会社",
1084
            "合資会社",
1085
            "合同会社"});
1086
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1087
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1088
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1089
            this.cmbOrdersDivision.FormattingEnabled = true;
1090
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 152);
1091
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
1092
            this.cmbOrdersDivision.Size = new System.Drawing.Size(528, 27);
1093
            this.cmbOrdersDivision.TabIndex = 7;
1094
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
1095
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
1096
            // 
1040 1097
            // btnOrderer
1041 1098
            // 
1042 1099
            this.btnOrderer.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
......
1050 1107
            this.btnOrderer.Visible = false;
1051 1108
            this.btnOrderer.Click += new System.EventHandler(this.btnOrderer_Click);
1052 1109
            // 
1110
            // cmbDisplayOrderers
1111
            // 
1112
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1113
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1114
            this.cmbDisplayOrderers.FormattingEnabled = true;
1115
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 183);
1116
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
1117
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(372, 27);
1118
            this.cmbDisplayOrderers.TabIndex = 8;
1119
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
1120
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
1121
            // 
1053 1122
            // txtInput05
1054 1123
            // 
1055 1124
            this.txtInput05.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1215 1284
            this.label30.Text = "税込\r\n受注決定金額";
1216 1285
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1217 1286
            // 
1287
            // txtInput28
1288
            // 
1289
            this.txtInput28.BackColor = System.Drawing.Color.White;
1290
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1291
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
1292
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
1293
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
1294
            this.txtInput28.MaxLength = 10;
1295
            this.txtInput28.Name = "txtInput28";
1296
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
1297
            this.txtInput28.TabIndex = 28;
1298
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1299
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
1300
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
1301
            // 
1218 1302
            // label27
1219 1303
            // 
1220 1304
            this.label27.BackColor = System.Drawing.Color.MidnightBlue;
......
1228 1312
            this.label27.Text = "税別\r\n受注決定金額";
1229 1313
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1230 1314
            // 
1315
            // txtInput25
1316
            // 
1317
            this.txtInput25.BackColor = System.Drawing.Color.White;
1318
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1319
            this.txtInput25.ForeColor = System.Drawing.Color.Black;
1320
            this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable;
1321
            this.txtInput25.Location = new System.Drawing.Point(128, 64);
1322
            this.txtInput25.MaxLength = 10;
1323
            this.txtInput25.Name = "txtInput25";
1324
            this.txtInput25.Size = new System.Drawing.Size(274, 34);
1325
            this.txtInput25.TabIndex = 27;
1326
            this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1327
            this.txtInput25.TextChanged += new System.EventHandler(this.valueChange);
1328
            this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated);
1329
            // 
1231 1330
            // lblTransferDate
1232 1331
            // 
1233 1332
            this.lblTransferDate.BackColor = System.Drawing.SystemColors.Window;
......
1250 1349
            this.label36.Text = "部署引継日";
1251 1350
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1252 1351
            // 
1352
            // cmbTransferConstruction
1353
            // 
1354
            this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1355
            this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1356
            this.cmbTransferConstruction.FormattingEnabled = true;
1357
            this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843);
1358
            this.cmbTransferConstruction.Name = "cmbTransferConstruction";
1359
            this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27);
1360
            this.cmbTransferConstruction.TabIndex = 39;
1361
            this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged);
1362
            this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange);
1363
            // 
1253 1364
            // txtInput26
1254 1365
            // 
1255 1366
            this.txtInput26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1300 1411
            this.label33.Text = "見積提出期限";
1301 1412
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1302 1413
            // 
1414
            // txtInput27
1415
            // 
1416
            this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable;
1417
            this.txtInput27.Location = new System.Drawing.Point(128, 33);
1418
            this.txtInput27.MaxLength = 10;
1419
            this.txtInput27.Name = "txtInput27";
1420
            this.txtInput27.Size = new System.Drawing.Size(120, 26);
1421
            this.txtInput27.TabIndex = 26;
1422
            this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1423
            this.txtInput27.TextChanged += new System.EventHandler(this.valueChange);
1424
            // 
1425
            // txtInput02
1426
            // 
1427
            this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable;
1428
            this.txtInput02.Location = new System.Drawing.Point(128, 182);
1429
            this.txtInput02.MaxLength = 10;
1430
            this.txtInput02.Name = "txtInput02";
1431
            this.txtInput02.Size = new System.Drawing.Size(120, 26);
1432
            this.txtInput02.TabIndex = 29;
1433
            this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1434
            this.txtInput02.TextChanged += new System.EventHandler(this.valueChange);
1435
            this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged);
1436
            // 
1303 1437
            // label24
1304 1438
            // 
1305 1439
            this.label24.BackColor = System.Drawing.Color.LightBlue;
......
1312 1446
            this.label24.Text = "見積提出日";
1313 1447
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1314 1448
            // 
1449
            // txtInput06
1450
            // 
1451
            this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable;
1452
            this.txtInput06.Location = new System.Drawing.Point(128, 212);
1453
            this.txtInput06.MaxLength = 10;
1454
            this.txtInput06.Name = "txtInput06";
1455
            this.txtInput06.Size = new System.Drawing.Size(120, 26);
1456
            this.txtInput06.TabIndex = 30;
1457
            this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1458
            this.txtInput06.TextChanged += new System.EventHandler(this.valueChange);
1459
            this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1460
            // 
1315 1461
            // label22
1316 1462
            // 
1317 1463
            this.label22.BackColor = System.Drawing.Color.LightBlue;
......
1324 1470
            this.label22.Text = "見積有効期限";
1325 1471
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1326 1472
            // 
1473
            // txtInput12
1474
            // 
1475
            this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable;
1476
            this.txtInput12.Location = new System.Drawing.Point(128, 302);
1477
            this.txtInput12.MaxLength = 10;
1478
            this.txtInput12.Name = "txtInput12";
1479
            this.txtInput12.Size = new System.Drawing.Size(120, 26);
1480
            this.txtInput12.TabIndex = 31;
1481
            this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1482
            this.txtInput12.TextChanged += new System.EventHandler(this.valueChange);
1483
            this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1484
            // 
1327 1485
            // label12
1328 1486
            // 
1329 1487
            this.label12.BackColor = System.Drawing.Color.LightBlue;
......
1336 1494
            this.label12.Text = "工事期間 開始";
1337 1495
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1338 1496
            // 
1497
            // txtInput13
1498
            // 
1499
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
1500
            this.txtInput13.Location = new System.Drawing.Point(128, 332);
1501
            this.txtInput13.MaxLength = 10;
1502
            this.txtInput13.Name = "txtInput13";
1503
            this.txtInput13.Size = new System.Drawing.Size(120, 26);
1504
            this.txtInput13.TabIndex = 32;
1505
            this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1506
            this.txtInput13.TextChanged += new System.EventHandler(this.valueChange);
1507
            this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1508
            // 
1339 1509
            // label15
1340 1510
            // 
1341 1511
            this.label15.BackColor = System.Drawing.Color.LightBlue;
......
1458 1628
            this.label71.Text = "非受注日";
1459 1629
            this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1460 1630
            // 
1631
            // textBoxEX2
1632
            // 
1633
            this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable;
1634
            this.textBoxEX2.Location = new System.Drawing.Point(128, 562);
1635
            this.textBoxEX2.MaxLength = 10;
1636
            this.textBoxEX2.Name = "textBoxEX2";
1637
            this.textBoxEX2.Size = new System.Drawing.Size(120, 26);
1638
            this.textBoxEX2.TabIndex = 35;
1639
            this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1640
            this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
1641
            this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1642
            // 
1643
            // textBoxEX1
1644
            // 
1645
            this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable;
1646
            this.textBoxEX1.Location = new System.Drawing.Point(128, 502);
1647
            this.textBoxEX1.MaxLength = 10;
1648
            this.textBoxEX1.Name = "textBoxEX1";
1649
            this.textBoxEX1.Size = new System.Drawing.Size(120, 26);
1650
            this.textBoxEX1.TabIndex = 33;
1651
            this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1652
            this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
1653
            this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1654
            // 
1655
            // txtInput03
1656
            // 
1657
            this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable;
1658
            this.txtInput03.Location = new System.Drawing.Point(128, 532);
1659
            this.txtInput03.MaxLength = 10;
1660
            this.txtInput03.Name = "txtInput03";
1661
            this.txtInput03.Size = new System.Drawing.Size(120, 26);
1662
            this.txtInput03.TabIndex = 34;
1663
            this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1664
            this.txtInput03.TextChanged += new System.EventHandler(this.valueChange);
1665
            this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1666
            // 
1461 1667
            // label62
1462 1668
            // 
1463 1669
            this.label62.BackColor = System.Drawing.Color.Black;
......
1523 1729
            this.label55.Text = "※「施工開始予定日」はおおよその工事開始日(現場着手時期)を\r\n「受注日」入力時に入力して下さい";
1524 1730
            this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1525 1731
            // 
1732
            // txtInput38
1733
            // 
1734
            this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable;
1735
            this.txtInput38.Location = new System.Drawing.Point(128, 632);
1736
            this.txtInput38.MaxLength = 10;
1737
            this.txtInput38.Name = "txtInput38";
1738
            this.txtInput38.Size = new System.Drawing.Size(120, 26);
1739
            this.txtInput38.TabIndex = 36;
1740
            this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1741
            this.txtInput38.TextChanged += new System.EventHandler(this.valueChange);
1742
            this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1743
            // 
1526 1744
            // label54
1527 1745
            // 
1528 1746
            this.label54.BackColor = System.Drawing.Color.LightBlue;
......
1536 1754
            this.label54.Text = "受注時施工完了予定日";
1537 1755
            this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1538 1756
            // 
1757
            // txtInput34
1758
            // 
1759
            this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable;
1760
            this.txtInput34.Location = new System.Drawing.Point(128, 662);
1761
            this.txtInput34.MaxLength = 10;
1762
            this.txtInput34.Name = "txtInput34";
1763
            this.txtInput34.Size = new System.Drawing.Size(120, 26);
1764
            this.txtInput34.TabIndex = 37;
1765
            this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1766
            this.txtInput34.TextChanged += new System.EventHandler(this.valueChange);
1767
            this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1768
            // 
1539 1769
            // label66
1540 1770
            // 
1541 1771
            this.label66.BackColor = System.Drawing.Color.Black;
......
1793 2023
            this.rdbNotFluctuation.UseVisualStyleBackColor = true;
1794 2024
            this.rdbNotFluctuation.CheckedChanged += new System.EventHandler(this.rdbFluctuation_CheckedChanged);
1795 2025
            // 
2026
            // comboBoxEX4
2027
            // 
2028
            this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2029
            this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2030
            this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2031
            this.comboBoxEX4.FormattingEnabled = true;
2032
            this.comboBoxEX4.Location = new System.Drawing.Point(129, 93);
2033
            this.comboBoxEX4.Name = "comboBoxEX4";
2034
            this.comboBoxEX4.Size = new System.Drawing.Size(250, 27);
2035
            this.comboBoxEX4.TabIndex = 44;
2036
            this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2037
            // 
2038
            // comboBoxEX3
2039
            // 
2040
            this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2041
            this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2042
            this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2043
            this.comboBoxEX3.FormattingEnabled = true;
2044
            this.comboBoxEX3.Location = new System.Drawing.Point(129, 63);
2045
            this.comboBoxEX3.Name = "comboBoxEX3";
2046
            this.comboBoxEX3.Size = new System.Drawing.Size(250, 27);
2047
            this.comboBoxEX3.TabIndex = 42;
2048
            this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2049
            // 
2050
            // cmbDisplayConstrSubPerson
2051
            // 
2052
            this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2053
            this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2054
            this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2055
            this.cmbDisplayConstrSubPerson.FormattingEnabled = true;
2056
            this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(379, 63);
2057
            this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson";
2058
            this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(250, 27);
2059
            this.cmbDisplayConstrSubPerson.TabIndex = 43;
2060
            // 
1796 2061
            // label46
1797 2062
            // 
1798 2063
            this.label46.BackColor = System.Drawing.Color.Black;
......
1884 2149
            this.label50.Text = "施工開始日";
1885 2150
            this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1886 2151
            // 
2152
            // textBoxEX3
2153
            // 
2154
            this.textBoxEX3.Enabled = false;
2155
            this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2156
            this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable;
2157
            this.textBoxEX3.Location = new System.Drawing.Point(129, 273);
2158
            this.textBoxEX3.MaxLength = 10;
2159
            this.textBoxEX3.Name = "textBoxEX3";
2160
            this.textBoxEX3.Size = new System.Drawing.Size(120, 26);
2161
            this.textBoxEX3.TabIndex = 50;
2162
            this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2163
            this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange);
2164
            this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2165
            // 
2166
            // txtInput35
2167
            // 
2168
            this.txtInput35.Enabled = false;
2169
            this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2170
            this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable;
2171
            this.txtInput35.Location = new System.Drawing.Point(129, 303);
2172
            this.txtInput35.MaxLength = 10;
2173
            this.txtInput35.Name = "txtInput35";
2174
            this.txtInput35.Size = new System.Drawing.Size(120, 26);
2175
            this.txtInput35.TabIndex = 51;
2176
            this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2177
            this.txtInput35.TextChanged += new System.EventHandler(this.valueChange);
2178
            this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2179
            // 
1887 2180
            // label25
1888 2181
            // 
1889 2182
            this.label25.BackColor = System.Drawing.Color.LightGreen;
......
1896 2189
            this.label25.Text = "施工完了日";
1897 2190
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1898 2191
            // 
2192
            // txtInput04
2193
            // 
2194
            this.txtInput04.Enabled = false;
2195
            this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2196
            this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable;
2197
            this.txtInput04.Location = new System.Drawing.Point(129, 333);
2198
            this.txtInput04.MaxLength = 10;
2199
            this.txtInput04.Name = "txtInput04";
2200
            this.txtInput04.Size = new System.Drawing.Size(120, 26);
2201
            this.txtInput04.TabIndex = 52;
2202
            this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2203
            this.txtInput04.TextChanged += new System.EventHandler(this.valueChange);
2204
            this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2205
            // 
1899 2206
            // label42
1900 2207
            // 
1901 2208
            this.label42.BackColor = System.Drawing.Color.Black;
......
1908 2215
            this.label42.Text = "※「着工」・「完成」は契約書に乗っ取って記入して下さい\r\n(当社、発給の契約書・施工計画書に記載されます)";
1909 2216
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1910 2217
            // 
2218
            // textBoxEX5
2219
            // 
2220
            this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2221
            this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable;
2222
            this.textBoxEX5.Location = new System.Drawing.Point(362, 183);
2223
            this.textBoxEX5.MaxLength = 10;
2224
            this.textBoxEX5.Name = "textBoxEX5";
2225
            this.textBoxEX5.Size = new System.Drawing.Size(120, 26);
2226
            this.textBoxEX5.TabIndex = 49;
2227
            this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2228
            this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange);
2229
            this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2230
            // 
2231
            // textBoxEX4
2232
            // 
2233
            this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2234
            this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable;
2235
            this.textBoxEX4.Location = new System.Drawing.Point(362, 153);
2236
            this.textBoxEX4.MaxLength = 10;
2237
            this.textBoxEX4.Name = "textBoxEX4";
2238
            this.textBoxEX4.Size = new System.Drawing.Size(120, 26);
2239
            this.textBoxEX4.TabIndex = 47;
2240
            this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2241
            this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange);
2242
            this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2243
            // 
2244
            // txtInput29
2245
            // 
2246
            this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2247
            this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable;
2248
            this.txtInput29.Location = new System.Drawing.Point(161, 153);
2249
            this.txtInput29.MaxLength = 10;
2250
            this.txtInput29.Name = "txtInput29";
2251
            this.txtInput29.Size = new System.Drawing.Size(120, 26);
2252
            this.txtInput29.TabIndex = 46;
2253
            this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2254
            this.txtInput29.TextChanged += new System.EventHandler(this.valueChange);
2255
            this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2256
            // 
2257
            // txtInput30
2258
            // 
2259
            this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2260
            this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable;
2261
            this.txtInput30.Location = new System.Drawing.Point(161, 183);
2262
            this.txtInput30.MaxLength = 10;
2263
            this.txtInput30.Name = "txtInput30";
2264
            this.txtInput30.Size = new System.Drawing.Size(120, 26);
2265
            this.txtInput30.TabIndex = 48;
2266
            this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2267
            this.txtInput30.TextChanged += new System.EventHandler(this.valueChange);
2268
            this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2269
            // 
1911 2270
            // label81
1912 2271
            // 
1913 2272
            this.label81.BackColor = System.Drawing.Color.LightGreen;
......
2004 2363
            this.label31.Text = "工事指導";
2005 2364
            this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2006 2365
            // 
2366
            // cmbConstructionInstructor
2367
            // 
2368
            this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2369
            this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2370
            this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2371
            this.cmbConstructionInstructor.FormattingEnabled = true;
2372
            this.cmbConstructionInstructor.Location = new System.Drawing.Point(379, 93);
2373
            this.cmbConstructionInstructor.Name = "cmbConstructionInstructor";
2374
            this.cmbConstructionInstructor.Size = new System.Drawing.Size(250, 27);
2375
            this.cmbConstructionInstructor.TabIndex = 45;
2376
            this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange);
2377
            // 
2378
            // comboBoxEX2
2379
            // 
2380
            this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2381
            this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2382
            this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2383
            this.comboBoxEX2.FormattingEnabled = true;
2384
            this.comboBoxEX2.Location = new System.Drawing.Point(129, 33);
2385
            this.comboBoxEX2.Name = "comboBoxEX2";
2386
            this.comboBoxEX2.Size = new System.Drawing.Size(250, 27);
2387
            this.comboBoxEX2.TabIndex = 40;
2388
            this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2389
            this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
2390
            // 
2391
            // cmbDisplayConstructionPerson
2392
            // 
2393
            this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2394
            this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2395
            this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2396
            this.cmbDisplayConstructionPerson.FormattingEnabled = true;
2397
            this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(379, 33);
2398
            this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson";
2399
            this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(250, 27);
2400
            this.cmbDisplayConstructionPerson.TabIndex = 41;
2401
            this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayConstructionPerson_SelectedIndexChanged);
2402
            this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange);
2403
            // 
2007 2404
            // label113
2008 2405
            // 
2009 2406
            this.label113.BackColor = System.Drawing.Color.LightGreen;
......
2466 2863
            this.label45.Text = "工事予算承認日";
2467 2864
            this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2468 2865
            // 
2866
            // textBoxEX10
2867
            // 
2868
            this.textBoxEX10.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2869
            this.textBoxEX10.ImeMode = System.Windows.Forms.ImeMode.Disable;
2870
            this.textBoxEX10.Location = new System.Drawing.Point(128, 153);
2871
            this.textBoxEX10.MaxLength = 10;
2872
            this.textBoxEX10.Name = "textBoxEX10";
2873
            this.textBoxEX10.Size = new System.Drawing.Size(120, 26);
2874
            this.textBoxEX10.TabIndex = 60;
2875
            this.textBoxEX10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2876
            this.textBoxEX10.TextChanged += new System.EventHandler(this.valueChange);
2877
            this.textBoxEX10.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2878
            // 
2879
            // textBoxEX9
2880
            // 
2881
            this.textBoxEX9.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2882
            this.textBoxEX9.ImeMode = System.Windows.Forms.ImeMode.Disable;
2883
            this.textBoxEX9.Location = new System.Drawing.Point(128, 123);
2884
            this.textBoxEX9.MaxLength = 10;
2885
            this.textBoxEX9.Name = "textBoxEX9";
2886
            this.textBoxEX9.Size = new System.Drawing.Size(120, 26);
2887
            this.textBoxEX9.TabIndex = 59;
2888
            this.textBoxEX9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2889
            this.textBoxEX9.TextChanged += new System.EventHandler(this.valueChange);
2890
            this.textBoxEX9.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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