プロジェクト

全般

プロフィール

リビジョン 282

堀内約7年前に追加

工事詳細台帳:実行金額が0の時に支払可能額・超過金額を計算しないようにしていたのを計算するように変更
工事情報:請求完了状態を請求準備へ戻すボタンを最高責任者ログイン時に追加
メニュー:人員配置タイトル文字不具合修正
グリッドの背景色を白へ変更

差分を表示:

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOBankBusinessDayMaster.cs
72 72
            {
73 73
                // SQL作成(DateTime型が変換できないのでCharに変換しておく)
74 74
                strcmd.Append("SELECT");
75
                strcmd.Append("  YearMonth, BankBusinessDay, Note, DeleteFlg");
76
                strcmd.Append(" ,DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s')");
77
                strcmd.Append(" ,DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s')");
75
                strcmd.Append(" YearMonth");
76
                strcmd.Append(", BankBusinessDay");
77
                strcmd.Append(", Note");
78
                strcmd.Append(", DeleteFlg");
79
                strcmd.Append(string.Format(", ifnull(DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s'),'{0}')", DateTime.Now));
80
                strcmd.Append(string.Format(", ifnull(DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s'),'{0}')", DateTime.Now));
78 81
                strcmd.Append(" FROM BankBusinessDayMaster");
79 82
                strcmd.Append(AddSQLString);
80 83

  
......
215 218
                wrk.Note = objwrk[(int)NameColumn.Note].ToString();
216 219
                wrk.DeleteFlg = int.Parse(objwrk[(int)NameColumn.DeleteFlg].ToString());
217 220

  
218
                wrk.EntryDate = objwrk[(int)NameColumn.EntryDate].ToString()=="" ? DateTime.Parse("2001/01/01"): DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
219
                wrk.UpdateDate = objwrk[(int)NameColumn.UpdateDate].ToString()=="" ? DateTime.Parse("2001/01/01") : DateTime.Parse(objwrk[(int)NameColumn.UpdateDate].ToString());
221
                wrk.EntryDate = DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
222
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)NameColumn.UpdateDate].ToString());
220 223
            }
221 224
            catch (MySqlException myex)
222 225
            {
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IODeadLineMaster.cs
74 74
            {
75 75
                // SQL作成(DateTime型が変換できないのでCharに変換しておく)
76 76
                strcmd.Append("SELECT");
77
                strcmd.Append("  LabourKind, DeadLine, PayDay, Note, DeleteFlg");
78
                strcmd.Append(" ,DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s')");
79
                strcmd.Append(" ,DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s')");
77
                strcmd.Append(" LabourKind");
78
                strcmd.Append(", DeadLine");
79
                strcmd.Append(", PayDay");
80
                strcmd.Append(", Note");
81
                strcmd.Append(", DeleteFlg");
82
                strcmd.Append(string.Format(", ifnull(DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s'),'{0}')", DateTime.Now));
83
                strcmd.Append(string.Format(", ifnull(DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s'),'{0}')", DateTime.Now));
80 84
                strcmd.Append(" FROM DeadLineMaster");
81 85
                strcmd.Append(AddSQLString);
82 86

  
......
220 224
                wrk.Note = objwrk[(int)NameColumn.Note].ToString();
221 225
                wrk.DeleteFlg = int.Parse(objwrk[(int)NameColumn.DeleteFlg].ToString());
222 226

  
223
                wrk.EntryDate = objwrk[(int)NameColumn.EntryDate].ToString()=="" ? DateTime.Parse("2001/01/01") : DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
224
                wrk.UpdateDate = objwrk[(int)NameColumn.UpdateDate].ToString()=="" ? DateTime.Parse("2001/01/01") : DateTime.Parse(objwrk[(int)NameColumn.UpdateDate].ToString());
227
                wrk.EntryDate = DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
228
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)NameColumn.UpdateDate].ToString());
225 229
            }
226 230
            catch (MySqlException myex)
227 231
            {
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOMaterialTypes.cs
72 72
                // SQL作成(DateTime型が変換できないのでCharに変換しておく)
73 73
                strcmd.Append("SELECT");
74 74
                strcmd.Append(" MaterialKindCode, MaterialKindName, DisplayOrder, DeleteFlg");
75
                strcmd.Append(" ,DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s')");
76
                strcmd.Append(" ,DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s')");
75
                strcmd.Append(string.Format(", ifnull(DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s'),'{0}')", DateTime.Now));
76
                strcmd.Append(string.Format(", ifnull(DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s'),'{0}')", DateTime.Now));
77 77
                strcmd.Append(" FROM MaterialKindMaster");
78 78
                strcmd.Append(AddSQLString);
79 79

  
......
213 213
                wrk.DisplayOrder = int.Parse(objwrk[(int)NameColumn.DisplayOrder].ToString());
214 214
                wrk.DeleteFlg = int.Parse(objwrk[(int)NameColumn.DeleteFlg].ToString());
215 215

  
216
                wrk.EntryDate = objwrk[(int)NameColumn.ENTRYDATE].ToString() == "" ? DateTime.Parse("2001/01/01") : DateTime.Parse(objwrk[(int)NameColumn.ENTRYDATE].ToString());
217
                wrk.UpdateDate = objwrk[(int)NameColumn.UPDATEDATE].ToString()=="" ? DateTime.Parse("2001/01/01") : DateTime.Parse(objwrk[(int)NameColumn.UPDATEDATE].ToString());
216
                wrk.EntryDate = DateTime.Parse(objwrk[(int)NameColumn.ENTRYDATE].ToString());
217
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)NameColumn.UPDATEDATE].ToString());
218 218
            }
219 219
            catch (MySqlException myex)
220 220
            {
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPaymentDataDetail.cs
300 300
        #endregion
301 301

  
302 302
        #region 件数取得
303

  
304 303
        /// <summary>
305 304
        /// 件数取得
306 305
        /// </summary>
......
311 310
        { 
312 311
            StringBuilder strcmd = new StringBuilder();
313 312
            ArrayList arData = new ArrayList();
314
            int iReturn = 0;
313
            int iReturn = -1;
315 314
            try
316 315
            {
317 316
                // SQL作成(DateTime型が変換できないのでCharに変換しておく)
......
327 326
                {
328 327
                    iReturn = CommonMotions.cnvInt(objwrk[0]);
329 328
                }
329
                // 件数があればセットする
330
                if (arData.Count > 0) iReturn = arData.Count;
330 331

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

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalPerson/FrmApprovalPersonAuxiliary.cs
1270 1270
            try
1271 1271
            {
1272 1272
                strSQL.Append("Select");
1273
                //strSQL.Append("AppM.DisplayOrder");
1274
                //strSQL.Append(", AppM.ApprovalPerson");
1275
                //strSQL.Append(", AppPersonM.SealPrintName");
1276
                //strSQL.Append(", AppM.ApprovalAuthority");
1277 1273

  
1278 1274
                strSQL.Append(" payDataDetail.COMPANYCODE");
1279 1275
                strSQL.Append(", payDataDetail.TARGETDATE");
......
1284 1280
                strSQL.Append(", ifnull(payAppInfo.APPROVALPERSON, AppM.ApprovalPerson) As AppPersonCode");
1285 1281
                strSQL.Append(", ifnull(payAppInfo.APPROVALPERSONNAME, AppPersonM.SealPrintName) As AppPersonName");
1286 1282
                strSQL.Append(", ifnull(payAppInfo.APPROVALAUTHORITY, AppM.ApprovalAuthority) As ApprovalAuthority");
1287
                strSQL.Append(", ifnull(DATE_FORMAT(payAppInfo.APPROVALDATE, '%Y/%m/%d'), '2001/01/01') As  APPROVALDATE");
1283
                strSQL.AppendFormat(", ifnull(DATE_FORMAT(payAppInfo.APPROVALDATE, '%Y/%m/%d'), '{0}') As  APPROVALDATE",DateTime.MinValue.ToShortDateString());
1288 1284
                strSQL.Append(" From");
1289 1285
                strSQL.Append(" personapproval As PersonApp");
1290 1286

  
......
1311 1307
                strSQL.Append(" Where");
1312 1308
                strSQL.AppendFormat(" PersonApp.PersonCode = {0}", m_PersonCode);
1313 1309
                strSQL.AppendFormat(" And PersonApp.ApprovalCode = {0}", m_ApprovalCode);
1314
                strSQL.Append(" And DATE (PersonApp.OrderDate) = STR_TO_DATE('2017/07/01', '%Y/%m/%d')");
1315
                strSQL.Append(" And PersonApp.OrderNo = 1");
1310
                strSQL.AppendFormat(" And DATE (PersonApp.OrderDate) = STR_TO_DATE('{0}', '%Y/%m/%d')", m_OrderDate.ToShortDateString());
1311
                strSQL.AppendFormat(" And PersonApp.OrderNo = {0}", (int)CommonDefine.s_Default_OrderNo);
1316 1312
                strSQL.Append(" And PersonApp.SeqNo = 1");
1317 1313
                strSQL.Append(" ORDER BY AppM.DisplayOrder desc");
1318 1314

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.cs
1347 1347
                    // ?S???R???g???[?????b?N
1348 1348
                    SeeModeLock();
1349 1349
                }
1350

  
1351
                // ?????????{?^???\??
1352
                DispbtnRestore();
1353

  
1350 1354
                // ?V?Z?L?????e?B?f?[?^??????????m?F????
1351 1355
                if (CommonMotions.LoginUserData.SecCode == 0)
1352 1356
                {
......
1996 2000
            SetBillingTypeName();
1997 2001
        }
1998 2002
        #endregion
2003

  
2004
        #region ?????????????{?^??????
2005
        /// <summary>
2006
        /// ?????????????{?^??????
2007
        /// </summary>
2008
        /// <param name="sender"></param>
2009
        /// <param name="e"></param>
2010
        private void btnRestore_Click(object sender, EventArgs e)
2011
        {
2012
            // ????????????O????????
2013
            if (!rdbStatus10.Checked) return;
2014

  
2015
            if (MessageBox.Show("??????????????????X??????B",
2016
                                "????X?m?F",
2017
                                MessageBoxButtons.OKCancel,
2018
                                MessageBoxIcon.Information) == DialogResult.Cancel) return;
2019

  
2020
            // ????X
2021
            BillingStatusChage();
2022

  
2023
            CommonMotions.EntryEndMessage("????????????", "??X");
2024
            
2025
            this.Close();
2026
        }
2027
        #endregion
1999 2028
    }
2000 2029
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs
78 78
            this.txtInput07 = new System.Windows.Forms.TextBox();
79 79
            this.label6 = new System.Windows.Forms.Label();
80 80
            this.label8 = new System.Windows.Forms.Label();
81
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
82
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
81 83
            this.label4 = new System.Windows.Forms.Label();
82 84
            this.panel2 = new System.Windows.Forms.Panel();
83 85
            this.rdbEstimateType2 = new System.Windows.Forms.RadioButton();
84 86
            this.rdbEstimateType3 = new System.Windows.Forms.RadioButton();
85 87
            this.rdbEstimateType1 = new System.Windows.Forms.RadioButton();
88
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
86 89
            this.txtInput08 = new System.Windows.Forms.TextBox();
87 90
            this.btnSerchZip = new System.Windows.Forms.Button();
88 91
            this.label20 = new System.Windows.Forms.Label();
......
115 118
            this.label44 = new System.Windows.Forms.Label();
116 119
            this.label14 = new System.Windows.Forms.Label();
117 120
            this.label5 = new System.Windows.Forms.Label();
121
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
118 122
            this.btnOrderer = new System.Windows.Forms.Button();
123
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
119 124
            this.txtInput05 = new System.Windows.Forms.TextBox();
120 125
            this.panel4 = new System.Windows.Forms.Panel();
121 126
            this.btnChangePrice = new System.Windows.Forms.Button();
......
125 130
            this.label97 = new System.Windows.Forms.Label();
126 131
            this.label39 = new System.Windows.Forms.Label();
127 132
            this.label30 = new System.Windows.Forms.Label();
133
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
128 134
            this.label27 = new System.Windows.Forms.Label();
135
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
129 136
            this.lblTransferDate = new System.Windows.Forms.Label();
130 137
            this.label36 = new System.Windows.Forms.Label();
138
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
131 139
            this.txtInput26 = new System.Windows.Forms.TextBox();
132 140
            this.label10 = new System.Windows.Forms.Label();
133 141
            this.txtInput01 = new System.Windows.Forms.TextBox();
134 142
            this.label33 = new System.Windows.Forms.Label();
143
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
144
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
135 145
            this.label24 = new System.Windows.Forms.Label();
146
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
136 147
            this.label22 = new System.Windows.Forms.Label();
148
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
137 149
            this.label12 = new System.Windows.Forms.Label();
150
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
138 151
            this.label15 = new System.Windows.Forms.Label();
139 152
            this.label38 = new System.Windows.Forms.Label();
140 153
            this.label68 = new System.Windows.Forms.Label();
......
145 158
            this.label23 = new System.Windows.Forms.Label();
146 159
            this.label70 = new System.Windows.Forms.Label();
147 160
            this.label71 = new System.Windows.Forms.Label();
161
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
162
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
163
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
148 164
            this.label62 = new System.Windows.Forms.Label();
149 165
            this.label72 = new System.Windows.Forms.Label();
150 166
            this.label73 = new System.Windows.Forms.Label();
151 167
            this.label61 = new System.Windows.Forms.Label();
152 168
            this.label55 = new System.Windows.Forms.Label();
169
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
153 170
            this.label54 = new System.Windows.Forms.Label();
171
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
154 172
            this.label66 = new System.Windows.Forms.Label();
155 173
            this.label56 = new System.Windows.Forms.Label();
156 174
            this.label75 = new System.Windows.Forms.Label();
......
169 187
            this.btnFluctuation = new System.Windows.Forms.Button();
170 188
            this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton();
171 189
            this.rdbNotFluctuation = new System.Windows.Forms.RadioButton();
190
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
191
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
192
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
172 193
            this.label46 = new System.Windows.Forms.Label();
173 194
            this.txtInput32 = new System.Windows.Forms.TextBox();
174 195
            this.label47 = new System.Windows.Forms.Label();
......
176 197
            this.txtInput31 = new System.Windows.Forms.TextBox();
177 198
            this.label41 = new System.Windows.Forms.Label();
178 199
            this.label50 = new System.Windows.Forms.Label();
200
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
201
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
179 202
            this.label25 = new System.Windows.Forms.Label();
203
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
180 204
            this.label42 = new System.Windows.Forms.Label();
205
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
206
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
207
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
208
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
181 209
            this.label81 = new System.Windows.Forms.Label();
182 210
            this.label82 = new System.Windows.Forms.Label();
183 211
            this.label77 = new System.Windows.Forms.Label();
......
186 214
            this.label67 = new System.Windows.Forms.Label();
187 215
            this.label79 = new System.Windows.Forms.Label();
188 216
            this.label31 = new System.Windows.Forms.Label();
217
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
218
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
219
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
189 220
            this.label113 = new System.Windows.Forms.Label();
190 221
            this.label76 = new System.Windows.Forms.Label();
191 222
            this.label112 = new System.Windows.Forms.Label();
......
237 268
            this.label124 = new System.Windows.Forms.Label();
238 269
            this.label129 = new System.Windows.Forms.Label();
239 270
            this.label125 = new System.Windows.Forms.Label();
271
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
240 272
            this.label126 = new System.Windows.Forms.Label();
241 273
            this.label87 = new System.Windows.Forms.Label();
242 274
            this.label86 = new System.Windows.Forms.Label();
243 275
            this.label60 = new System.Windows.Forms.Label();
276
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
244 277
            this.label127 = new System.Windows.Forms.Label();
245 278
            this.textBox2 = new System.Windows.Forms.TextBox();
246 279
            this.label128 = new System.Windows.Forms.Label();
......
255 288
            this.label28 = new System.Windows.Forms.Label();
256 289
            this.label16 = new System.Windows.Forms.Label();
257 290
            this.panel5 = new System.Windows.Forms.Panel();
291
            this.btnRestore = new System.Windows.Forms.Button();
258 292
            this.rdbStatus16 = new System.Windows.Forms.RadioButton();
259 293
            this.rdbStatus8 = new System.Windows.Forms.RadioButton();
260 294
            this.rdbStatus6 = new System.Windows.Forms.RadioButton();
......
275 309
            this.label29 = new System.Windows.Forms.Label();
276 310
            this.lblLastUpdate = new System.Windows.Forms.Label();
277 311
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
312
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
313
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
278 314
            this.btnApprovalList = new System.Windows.Forms.Button();
279 315
            this.btnOtherProc = new System.Windows.Forms.Button();
280 316
            this.lblJointLabel = new System.Windows.Forms.Label();
281
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
282
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
283
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
284
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
285
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
286
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
287
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
288
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
289
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
290
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
291
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
292
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
293
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
294
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
295
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
296
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
297
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
298
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
299
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
300
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
301
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
302
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
303
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
304
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
305
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
306
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
307
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
308
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
309
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
310
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
311
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
312
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
313
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
314
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
315
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
317
            this.groupBoxEx1 = new ProcessManagement.Forms.CustomControls.GroupBoxEx();
316 318
            this.BasePanel.SuspendLayout();
317 319
            this.tableLayoutPanel2.SuspendLayout();
318 320
            this.panel10.SuspendLayout();
......
330 332
            this.panel9.SuspendLayout();
331 333
            ((System.ComponentModel.ISupportInitialize)(this.dgvBillingDate)).BeginInit();
332 334
            this.panel5.SuspendLayout();
335
            this.groupBoxEx1.SuspendLayout();
333 336
            this.SuspendLayout();
334 337
            // 
335 338
            // label1
......
467 470
            this.dgvPayment.AllowUserToDeleteRows = false;
468 471
            this.dgvPayment.AllowUserToResizeColumns = false;
469 472
            this.dgvPayment.AllowUserToResizeRows = false;
473
            this.dgvPayment.BackgroundColor = System.Drawing.Color.White;
470 474
            this.dgvPayment.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
471 475
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
472 476
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
......
483 487
            this.dataGridViewTextBoxColumn2,
484 488
            this.dataGridViewTextBoxColumn3,
485 489
            this.dataGridViewTextBoxColumn4});
490
            this.dgvPayment.EnableHeadersVisualStyles = false;
486 491
            this.dgvPayment.Location = new System.Drawing.Point(129, 1);
487 492
            this.dgvPayment.Name = "dgvPayment";
488 493
            this.dgvPayment.RowHeadersVisible = false;
......
786 791
            this.label8.Text = "工事場所";
787 792
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
788 793
            // 
794
            // comboBoxEX1
795
            // 
796
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
797
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
798
            this.comboBoxEX1.FormattingEnabled = true;
799
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
800
            this.comboBoxEX1.Name = "comboBoxEX1";
801
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
802
            this.comboBoxEX1.TabIndex = 22;
803
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
804
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
805
            // 
806
            // cmbDisplayPerson
807
            // 
808
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
809
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
810
            this.cmbDisplayPerson.FormattingEnabled = true;
811
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
812
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
813
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
814
            this.cmbDisplayPerson.TabIndex = 23;
815
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
816
            // 
789 817
            // label4
790 818
            // 
791 819
            this.label4.BackColor = System.Drawing.Color.CornflowerBlue;
......
851 879
            this.rdbEstimateType1.UseVisualStyleBackColor = false;
852 880
            this.rdbEstimateType1.CheckedChanged += new System.EventHandler(this.valueChange);
853 881
            // 
882
            // cmbConstructionType
883
            // 
884
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
885
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
886
            this.cmbConstructionType.FormattingEnabled = true;
887
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
888
            this.cmbConstructionType.Name = "cmbConstructionType";
889
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
890
            this.cmbConstructionType.TabIndex = 21;
891
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
892
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
893
            // 
854 894
            // txtInput08
855 895
            // 
856 896
            this.txtInput08.ImeMode = System.Windows.Forms.ImeMode.Disable;
......
1238 1278
            this.label5.Text = "発 注 者";
1239 1279
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1240 1280
            // 
1281
            // cmbOrdersDivision
1282
            // 
1283
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1284
            | System.Windows.Forms.AnchorStyles.Right)));
1285
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
1286
            "株式会社",
1287
            "有限会社",
1288
            "合名会社",
1289
            "合資会社",
1290
            "合同会社"});
1291
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1292
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1293
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1294
            this.cmbOrdersDivision.FormattingEnabled = true;
1295
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
1296
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
1297
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
1298
            this.cmbOrdersDivision.TabIndex = 7;
1299
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
1300
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
1301
            // 
1241 1302
            // btnOrderer
1242 1303
            // 
1243 1304
            this.btnOrderer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
......
1253 1314
            this.btnOrderer.Visible = false;
1254 1315
            this.btnOrderer.Click += new System.EventHandler(this.btnOrderer_Click);
1255 1316
            // 
1317
            // cmbDisplayOrderers
1318
            // 
1319
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1320
            | System.Windows.Forms.AnchorStyles.Right)));
1321
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1322
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1323
            this.cmbDisplayOrderers.FormattingEnabled = true;
1324
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 184);
1325
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
1326
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(376, 27);
1327
            this.cmbDisplayOrderers.TabIndex = 8;
1328
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
1329
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
1330
            // 
1256 1331
            // txtInput05
1257 1332
            // 
1258 1333
            this.txtInput05.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1419 1494
            this.label30.Text = "税込\r\n受注決定金額";
1420 1495
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1421 1496
            // 
1497
            // txtInput28
1498
            // 
1499
            this.txtInput28.BackColor = System.Drawing.Color.White;
1500
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1501
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
1502
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
1503
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
1504
            this.txtInput28.MaxLength = 10;
1505
            this.txtInput28.Name = "txtInput28";
1506
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
1507
            this.txtInput28.TabIndex = 28;
1508
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1509
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
1510
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
1511
            // 
1422 1512
            // label27
1423 1513
            // 
1424 1514
            this.label27.BackColor = System.Drawing.Color.MidnightBlue;
......
1432 1522
            this.label27.Text = "税別\r\n受注決定金額";
1433 1523
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1434 1524
            // 
1525
            // txtInput25
1526
            // 
1527
            this.txtInput25.BackColor = System.Drawing.Color.White;
1528
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1529
            this.txtInput25.ForeColor = System.Drawing.Color.Black;
1530
            this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable;
1531
            this.txtInput25.Location = new System.Drawing.Point(128, 64);
1532
            this.txtInput25.MaxLength = 10;
1533
            this.txtInput25.Name = "txtInput25";
1534
            this.txtInput25.Size = new System.Drawing.Size(274, 34);
1535
            this.txtInput25.TabIndex = 27;
1536
            this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1537
            this.txtInput25.TextChanged += new System.EventHandler(this.valueChange);
1538
            this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated);
1539
            // 
1435 1540
            // lblTransferDate
1436 1541
            // 
1437 1542
            this.lblTransferDate.BackColor = System.Drawing.SystemColors.Window;
......
1454 1559
            this.label36.Text = "部署引継日";
1455 1560
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1456 1561
            // 
1562
            // cmbTransferConstruction
1563
            // 
1564
            this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1565
            this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1566
            this.cmbTransferConstruction.FormattingEnabled = true;
1567
            this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843);
1568
            this.cmbTransferConstruction.Name = "cmbTransferConstruction";
1569
            this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27);
1570
            this.cmbTransferConstruction.TabIndex = 39;
1571
            this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged);
1572
            this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange);
1573
            // 
1457 1574
            // txtInput26
1458 1575
            // 
1459 1576
            this.txtInput26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1504 1621
            this.label33.Text = "見積提出期限";
1505 1622
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1506 1623
            // 
1624
            // txtInput27
1625
            // 
1626
            this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable;
1627
            this.txtInput27.Location = new System.Drawing.Point(128, 33);
1628
            this.txtInput27.MaxLength = 10;
1629
            this.txtInput27.Name = "txtInput27";
1630
            this.txtInput27.Size = new System.Drawing.Size(120, 26);
1631
            this.txtInput27.TabIndex = 26;
1632
            this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1633
            this.txtInput27.TextChanged += new System.EventHandler(this.valueChange);
1634
            // 
1635
            // txtInput02
1636
            // 
1637
            this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable;
1638
            this.txtInput02.Location = new System.Drawing.Point(128, 182);
1639
            this.txtInput02.MaxLength = 10;
1640
            this.txtInput02.Name = "txtInput02";
1641
            this.txtInput02.Size = new System.Drawing.Size(120, 26);
1642
            this.txtInput02.TabIndex = 29;
1643
            this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1644
            this.txtInput02.TextChanged += new System.EventHandler(this.valueChange);
1645
            this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged);
1646
            // 
1507 1647
            // label24
1508 1648
            // 
1509 1649
            this.label24.BackColor = System.Drawing.Color.LightBlue;
......
1516 1656
            this.label24.Text = "見積提出日";
1517 1657
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1518 1658
            // 
1659
            // txtInput06
1660
            // 
1661
            this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable;
1662
            this.txtInput06.Location = new System.Drawing.Point(128, 212);
1663
            this.txtInput06.MaxLength = 10;
1664
            this.txtInput06.Name = "txtInput06";
1665
            this.txtInput06.Size = new System.Drawing.Size(120, 26);
1666
            this.txtInput06.TabIndex = 30;
1667
            this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1668
            this.txtInput06.TextChanged += new System.EventHandler(this.valueChange);
1669
            this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1670
            // 
1519 1671
            // label22
1520 1672
            // 
1521 1673
            this.label22.BackColor = System.Drawing.Color.LightBlue;
......
1528 1680
            this.label22.Text = "見積有効期限";
1529 1681
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1530 1682
            // 
1683
            // txtInput12
1684
            // 
1685
            this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable;
1686
            this.txtInput12.Location = new System.Drawing.Point(128, 302);
1687
            this.txtInput12.MaxLength = 10;
1688
            this.txtInput12.Name = "txtInput12";
1689
            this.txtInput12.Size = new System.Drawing.Size(120, 26);
1690
            this.txtInput12.TabIndex = 31;
1691
            this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1692
            this.txtInput12.TextChanged += new System.EventHandler(this.valueChange);
1693
            this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1694
            // 
1531 1695
            // label12
1532 1696
            // 
1533 1697
            this.label12.BackColor = System.Drawing.Color.LightBlue;
......
1540 1704
            this.label12.Text = "工事期間 開始";
1541 1705
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1542 1706
            // 
1707
            // txtInput13
1708
            // 
1709
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
1710
            this.txtInput13.Location = new System.Drawing.Point(128, 332);
1711
            this.txtInput13.MaxLength = 10;
1712
            this.txtInput13.Name = "txtInput13";
1713
            this.txtInput13.Size = new System.Drawing.Size(120, 26);
1714
            this.txtInput13.TabIndex = 32;
1715
            this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1716
            this.txtInput13.TextChanged += new System.EventHandler(this.valueChange);
1717
            this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1718
            // 
1543 1719
            // label15
1544 1720
            // 
1545 1721
            this.label15.BackColor = System.Drawing.Color.LightBlue;
......
1662 1838
            this.label71.Text = "非受注日";
1663 1839
            this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1664 1840
            // 
1841
            // textBoxEX2
1842
            // 
1843
            this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable;
1844
            this.textBoxEX2.Location = new System.Drawing.Point(128, 562);
1845
            this.textBoxEX2.MaxLength = 10;
1846
            this.textBoxEX2.Name = "textBoxEX2";
1847
            this.textBoxEX2.Size = new System.Drawing.Size(120, 26);
1848
            this.textBoxEX2.TabIndex = 35;
1849
            this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1850
            this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
1851
            this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1852
            // 
1853
            // textBoxEX1
1854
            // 
1855
            this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable;
1856
            this.textBoxEX1.Location = new System.Drawing.Point(128, 502);
1857
            this.textBoxEX1.MaxLength = 10;
1858
            this.textBoxEX1.Name = "textBoxEX1";
1859
            this.textBoxEX1.Size = new System.Drawing.Size(120, 26);
1860
            this.textBoxEX1.TabIndex = 33;
1861
            this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1862
            this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
1863
            this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1864
            // 
1865
            // txtInput03
1866
            // 
1867
            this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable;
1868
            this.txtInput03.Location = new System.Drawing.Point(128, 532);
1869
            this.txtInput03.MaxLength = 10;
1870
            this.txtInput03.Name = "txtInput03";
1871
            this.txtInput03.Size = new System.Drawing.Size(120, 26);
1872
            this.txtInput03.TabIndex = 34;
1873
            this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1874
            this.txtInput03.TextChanged += new System.EventHandler(this.valueChange);
1875
            this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1876
            // 
1665 1877
            // label62
1666 1878
            // 
1667 1879
            this.label62.BackColor = System.Drawing.Color.Black;
......
1727 1939
            this.label55.Text = "※「施工開始予定日」はおおよその工事開始日(現場着手時期)を\r\n「受注日」入力時に入力して下さい";
1728 1940
            this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1729 1941
            // 
1942
            // txtInput38
1943
            // 
1944
            this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable;
1945
            this.txtInput38.Location = new System.Drawing.Point(128, 632);
1946
            this.txtInput38.MaxLength = 10;
1947
            this.txtInput38.Name = "txtInput38";
1948
            this.txtInput38.Size = new System.Drawing.Size(120, 26);
1949
            this.txtInput38.TabIndex = 36;
1950
            this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1951
            this.txtInput38.TextChanged += new System.EventHandler(this.valueChange);
1952
            this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1953
            // 
1730 1954
            // label54
1731 1955
            // 
1732 1956
            this.label54.BackColor = System.Drawing.Color.LightBlue;
......
1740 1964
            this.label54.Text = "受注時施工完了予定日";
1741 1965
            this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1742 1966
            // 
1967
            // txtInput34
1968
            // 
1969
            this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable;
1970
            this.txtInput34.Location = new System.Drawing.Point(128, 662);
1971
            this.txtInput34.MaxLength = 10;
1972
            this.txtInput34.Name = "txtInput34";
1973
            this.txtInput34.Size = new System.Drawing.Size(120, 26);
1974
            this.txtInput34.TabIndex = 37;
1975
            this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1976
            this.txtInput34.TextChanged += new System.EventHandler(this.valueChange);
1977
            this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1978
            // 
1743 1979
            // label66
1744 1980
            // 
1745 1981
            this.label66.BackColor = System.Drawing.Color.Black;
......
1965 2201
            // 
1966 2202
            this.btnFluctuation.BackColor = System.Drawing.Color.Black;
1967 2203
            this.btnFluctuation.Enabled = false;
2204
            this.btnFluctuation.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1968 2205
            this.btnFluctuation.ForeColor = System.Drawing.Color.WhiteSmoke;
1969 2206
            this.btnFluctuation.Location = new System.Drawing.Point(318, 6);
1970 2207
            this.btnFluctuation.Name = "btnFluctuation";
......
1977 2214
            // rdbExistsFluctuation
1978 2215
            // 
1979 2216
            this.rdbExistsFluctuation.AutoSize = true;
2217
            this.rdbExistsFluctuation.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1980 2218
            this.rdbExistsFluctuation.Location = new System.Drawing.Point(175, 13);
1981 2219
            this.rdbExistsFluctuation.Name = "rdbExistsFluctuation";
1982 2220
            this.rdbExistsFluctuation.Size = new System.Drawing.Size(111, 20);
......
1989 2227
            // 
1990 2228
            this.rdbNotFluctuation.AutoSize = true;
1991 2229
            this.rdbNotFluctuation.Checked = true;
2230
            this.rdbNotFluctuation.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1992 2231
            this.rdbNotFluctuation.Location = new System.Drawing.Point(48, 12);
1993 2232
            this.rdbNotFluctuation.Name = "rdbNotFluctuation";
1994 2233
            this.rdbNotFluctuation.Size = new System.Drawing.Size(111, 20);
......
1998 2237
            this.rdbNotFluctuation.UseVisualStyleBackColor = true;
1999 2238
            this.rdbNotFluctuation.CheckedChanged += new System.EventHandler(this.rdbFluctuation_CheckedChanged);
2000 2239
            // 
2240
            // comboBoxEX4
2241
            // 
2242
            this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2243
            this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2244
            this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2245
            this.comboBoxEX4.FormattingEnabled = true;
2246
            this.comboBoxEX4.Location = new System.Drawing.Point(129, 93);
2247
            this.comboBoxEX4.Name = "comboBoxEX4";
2248
            this.comboBoxEX4.Size = new System.Drawing.Size(255, 27);
2249
            this.comboBoxEX4.TabIndex = 44;
2250
            this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2251
            // 
2252
            // comboBoxEX3
2253
            // 
2254
            this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2255
            this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2256
            this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2257
            this.comboBoxEX3.FormattingEnabled = true;
2258
            this.comboBoxEX3.Location = new System.Drawing.Point(129, 63);
2259
            this.comboBoxEX3.Name = "comboBoxEX3";
2260
            this.comboBoxEX3.Size = new System.Drawing.Size(255, 27);
2261
            this.comboBoxEX3.TabIndex = 42;
2262
            this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2263
            // 
2264
            // cmbDisplayConstrSubPerson
2265
            // 
2266
            this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2267
            this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2268
            this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2269
            this.cmbDisplayConstrSubPerson.FormattingEnabled = true;
2270
            this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(384, 63);
2271
            this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson";
2272
            this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(255, 27);
2273
            this.cmbDisplayConstrSubPerson.TabIndex = 43;
2274
            // 
2001 2275
            // label46
2002 2276
            // 
2003 2277
            this.label46.BackColor = System.Drawing.Color.Black;
......
2081 2355
            // 
2082 2356
            this.label50.BackColor = System.Drawing.Color.LightGreen;
2083 2357
            this.label50.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2358
            this.label50.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2084 2359
            this.label50.ForeColor = System.Drawing.Color.Red;
2085 2360
            this.label50.Location = new System.Drawing.Point(1, 301);
2086 2361
            this.label50.Name = "label50";
......
2089 2364
            this.label50.Text = "施工開始日";
2090 2365
            this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2091 2366
            // 
2367
            // textBoxEX3
2368
            // 
2369
            this.textBoxEX3.Enabled = false;
2370
            this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2371
            this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable;
2372
            this.textBoxEX3.Location = new System.Drawing.Point(129, 273);
2373
            this.textBoxEX3.MaxLength = 10;
2374
            this.textBoxEX3.Name = "textBoxEX3";
2375
            this.textBoxEX3.Size = new System.Drawing.Size(120, 26);
2376
            this.textBoxEX3.TabIndex = 50;
2377
            this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2378
            this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange);
2379
            this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2380
            // 
2381
            // txtInput35
2382
            // 
2383
            this.txtInput35.Enabled = false;
2384
            this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2385
            this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable;
2386
            this.txtInput35.Location = new System.Drawing.Point(129, 303);
2387
            this.txtInput35.MaxLength = 10;
2388
            this.txtInput35.Name = "txtInput35";
2389
            this.txtInput35.Size = new System.Drawing.Size(120, 26);
2390
            this.txtInput35.TabIndex = 51;
2391
            this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2392
            this.txtInput35.TextChanged += new System.EventHandler(this.valueChange);
2393
            this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2394
            // 
2092 2395
            // label25
2093 2396
            // 
2094 2397
            this.label25.BackColor = System.Drawing.Color.LightGreen;
2095 2398
            this.label25.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2399
            this.label25.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2096 2400
            this.label25.ForeColor = System.Drawing.Color.Red;
2097 2401
            this.label25.Location = new System.Drawing.Point(1, 331);
2098 2402
            this.label25.Name = "label25";
......
2101 2405
            this.label25.Text = "施工完了日";
2102 2406
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2103 2407
            // 
2408
            // txtInput04
2409
            // 
2410
            this.txtInput04.Enabled = false;
2411
            this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2412
            this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable;
2413
            this.txtInput04.Location = new System.Drawing.Point(129, 333);
2414
            this.txtInput04.MaxLength = 10;
2415
            this.txtInput04.Name = "txtInput04";
2416
            this.txtInput04.Size = new System.Drawing.Size(120, 26);
2417
            this.txtInput04.TabIndex = 52;
2418
            this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2419
            this.txtInput04.TextChanged += new System.EventHandler(this.valueChange);
2420
            this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2421
            // 
2104 2422
            // label42
2105 2423
            // 
2106 2424
            this.label42.BackColor = System.Drawing.Color.Black;
......
2113 2431
            this.label42.Text = "※「着工」・「完成」は契約書に基づき記入して下さい\r\n(当社、発給の契約書・施工計画書に記載されます)";
2114 2432
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2115 2433
            // 
2434
            // textBoxEX5
2435
            // 
2436
            this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2437
            this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable;
2438
            this.textBoxEX5.Location = new System.Drawing.Point(393, 183);
2439
            this.textBoxEX5.MaxLength = 10;
2440
            this.textBoxEX5.Name = "textBoxEX5";
2441
            this.textBoxEX5.Size = new System.Drawing.Size(120, 26);
2442
            this.textBoxEX5.TabIndex = 49;
2443
            this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2444
            this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange);
2445
            this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2446
            // 
2447
            // textBoxEX4
2448
            // 
2449
            this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2450
            this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable;
2451
            this.textBoxEX4.Location = new System.Drawing.Point(393, 153);
2452
            this.textBoxEX4.MaxLength = 10;
2453
            this.textBoxEX4.Name = "textBoxEX4";
2454
            this.textBoxEX4.Size = new System.Drawing.Size(120, 26);
2455
            this.textBoxEX4.TabIndex = 47;
2456
            this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2457
            this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange);
2458
            this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2459
            // 
2460
            // txtInput29
2461
            // 
2462
            this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2463
            this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable;
2464
            this.txtInput29.Location = new System.Drawing.Point(189, 153);
2465
            this.txtInput29.MaxLength = 10;
2466
            this.txtInput29.Name = "txtInput29";
2467
            this.txtInput29.Size = new System.Drawing.Size(120, 26);
2468
            this.txtInput29.TabIndex = 46;
2469
            this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2470
            this.txtInput29.TextChanged += new System.EventHandler(this.valueChange);
2471
            this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2472
            // 
2473
            // txtInput30
2474
            // 
2475
            this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2476
            this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable;
2477
            this.txtInput30.Location = new System.Drawing.Point(189, 183);
2478
            this.txtInput30.MaxLength = 10;
2479
            this.txtInput30.Name = "txtInput30";
2480
            this.txtInput30.Size = new System.Drawing.Size(120, 26);
2481
            this.txtInput30.TabIndex = 48;
2482
            this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2483
            this.txtInput30.TextChanged += new System.EventHandler(this.valueChange);
2484
            this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2485
            // 
2116 2486
            // label81
2117 2487
            // 
2118 2488
            this.label81.BackColor = System.Drawing.Color.LightGreen;
......
2202 2572
            // 
2203 2573
            this.label31.BackColor = System.Drawing.Color.LightGreen;
2204 2574
            this.label31.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2575
            this.label31.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2205 2576
            this.label31.Location = new System.Drawing.Point(1, 91);
2206 2577
            this.label31.Name = "label31";
2207 2578
            this.label31.Size = new System.Drawing.Size(120, 30);
......
2209 2580
            this.label31.Text = "工事指導";
2210 2581
            this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2211 2582
            // 
2583
            // cmbConstructionInstructor
2584
            // 
2585
            this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2586
            this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2587
            this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2588
            this.cmbConstructionInstructor.FormattingEnabled = true;
2589
            this.cmbConstructionInstructor.Location = new System.Drawing.Point(384, 93);
2590
            this.cmbConstructionInstructor.Name = "cmbConstructionInstructor";
2591
            this.cmbConstructionInstructor.Size = new System.Drawing.Size(255, 27);
2592
            this.cmbConstructionInstructor.TabIndex = 45;
2593
            this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange);
2594
            // 
2595
            // comboBoxEX2
2596
            // 
2597
            this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2598
            this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2599
            this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2600
            this.comboBoxEX2.FormattingEnabled = true;
2601
            this.comboBoxEX2.Location = new System.Drawing.Point(129, 33);
2602
            this.comboBoxEX2.Name = "comboBoxEX2";
2603
            this.comboBoxEX2.Size = new System.Drawing.Size(255, 27);
2604
            this.comboBoxEX2.TabIndex = 40;
2605
            this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2606
            this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
2607
            // 
2608
            // cmbDisplayConstructionPerson
2609
            // 
2610
            this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2611
            this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2612
            this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2613
            this.cmbDisplayConstructionPerson.FormattingEnabled = true;
2614
            this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(384, 33);
2615
            this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson";
2616
            this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(255, 27);
2617
            this.cmbDisplayConstructionPerson.TabIndex = 41;
2618
            this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayConstructionPerson_SelectedIndexChanged);
2619
            this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange);
2620
            // 
2212 2621
            // label113
2213 2622
            // 
2214 2623
            this.label113.BackColor = System.Drawing.Color.LightGreen;
2215 2624
            this.label113.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2625
            this.label113.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2216 2626
            this.label113.Location = new System.Drawing.Point(384, 1);
2217 2627
            this.label113.Name = "label113";
2218 2628
            this.label113.Size = new System.Drawing.Size(255, 30);
......
2224 2634
            // 
2225 2635
            this.label76.BackColor = System.Drawing.Color.LightGreen;
2226 2636
            this.label76.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2637
            this.label76.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2227 2638
            this.label76.Location = new System.Drawing.Point(129, 1);
2228 2639
            this.label76.Name = "label76";
2229 2640
            this.label76.Size = new System.Drawing.Size(255, 30);
......
2235 2646
            // 
2236 2647
            this.label112.BackColor = System.Drawing.Color.LightGreen;
2237 2648
            this.label112.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2649
            this.label112.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2238 2650
            this.label112.Location = new System.Drawing.Point(1, 61);
2239 2651
            this.label112.Name = "label112";
2240 2652
            this.label112.Size = new System.Drawing.Size(120, 30);
......
2246 2658
            // 
2247 2659
            this.label21.BackColor = System.Drawing.Color.LightGreen;
2248 2660
            this.label21.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2661
            this.label21.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2249 2662
            this.label21.Location = new System.Drawing.Point(1, 31);
2250 2663
            this.label21.Name = "label21";
2251 2664
            this.label21.Size = new System.Drawing.Size(120, 30);
......
2428 2841
            this.dgvPurchaseOrder.AllowUserToDeleteRows = false;
2429 2842
            this.dgvPurchaseOrder.AllowUserToResizeColumns = false;
2430 2843
            this.dgvPurchaseOrder.AllowUserToResizeRows = false;
2844
            this.dgvPurchaseOrder.BackgroundColor = System.Drawing.Color.White;
2431 2845
            this.dgvPurchaseOrder.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2432 2846
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2433 2847
            dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
2434
            dataGridViewCellStyle6.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2848
            dataGridViewCellStyle6.Font = new System.Drawing.Font("MS Pゴシック", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2435 2849
            dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
2436 2850
            dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
2437 2851
            dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
......
2444 2858
            this.Column8,
2445 2859
            this.Column9,
2446 2860
            this.Column10});
2861
            this.dgvPurchaseOrder.EnableHeadersVisualStyles = false;
2447 2862
            this.dgvPurchaseOrder.Location = new System.Drawing.Point(128, 123);
2448 2863
            this.dgvPurchaseOrder.Name = "dgvPurchaseOrder";
2449 2864
            this.dgvPurchaseOrder.RowHeadersVisible = false;
......
2507 2922
            this.dgvLink.AllowUserToResizeRows = false;
2508 2923
            this.dgvLink.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
2509 2924
            | System.Windows.Forms.AnchorStyles.Right)));
2925
            this.dgvLink.BackgroundColor = System.Drawing.Color.White;
2510 2926
            this.dgvLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2511 2927
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2512 2928
            dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
2513
            dataGridViewCellStyle11.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2929
            dataGridViewCellStyle11.Font = new System.Drawing.Font("MS Pゴシック", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2514 2930
            dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
2515 2931
            dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
2516 2932
            dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
......
2526 2942
            this.Column2,
2527 2943
            this.Column4,
2528 2944
            this.Column6});
2945
            this.dgvLink.EnableHeadersVisualStyles = false;
2529 2946
            this.dgvLink.Location = new System.Drawing.Point(1, 369);
2530 2947
            this.dgvLink.Name = "dgvLink";
2531 2948
            this.dgvLink.RowHeadersVisible = false;
......
2799 3216
            this.dgvBillingDate.AllowUserToDeleteRows = false;
2800 3217
            this.dgvBillingDate.AllowUserToResizeColumns = false;
2801 3218
            this.dgvBillingDate.AllowUserToResizeRows = false;
3219
            this.dgvBillingDate.BackgroundColor = System.Drawing.Color.White;
2802 3220
            this.dgvBillingDate.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2803 3221
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2804 3222
            dataGridViewCellStyle17.BackColor = System.Drawing.SystemColors.Control;
......
2815 3233
            this.BillingGridColumn2,
2816 3234
            this.BillingGridColumn3,
2817 3235
            this.BillingGridColumn4});
3236
            this.dgvBillingDate.EnableHeadersVisualStyles = false;
2818 3237
            this.dgvBillingDate.Location = new System.Drawing.Point(129, 93);
2819 3238
            this.dgvBillingDate.Name = "dgvBillingDate";
2820 3239
            this.dgvBillingDate.RowHeadersVisible = false;
......
2905 3324
            this.label125.Text = "請求書郵送日";
2906 3325
            this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2907 3326
            // 
3327
            // textBoxEX6
3328
            // 
3329
            this.textBoxEX6.ImeMode = System.Windows.Forms.ImeMode.Disable;
3330
            this.textBoxEX6.Location = new System.Drawing.Point(129, 257);
3331
            this.textBoxEX6.MaxLength = 10;
3332
            this.textBoxEX6.Name = "textBoxEX6";
3333
            this.textBoxEX6.Size = new System.Drawing.Size(120, 26);
3334
            this.textBoxEX6.TabIndex = 63;
3335
            this.textBoxEX6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3336
            this.textBoxEX6.TextChanged += new System.EventHandler(this.valueChange);
3337
            this.textBoxEX6.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3338
            // 
2908 3339
            // label126
2909 3340
            // 
2910 3341
            this.label126.BackColor = System.Drawing.Color.Moccasin;
......
2952 3383
            this.label60.Text = "請求準備開始日";
2953 3384
            this.label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2954 3385
            // 
3386
            // txtInput36
3387
            // 
3388
            this.txtInput36.ImeMode = System.Windows.Forms.ImeMode.Disable;
3389
            this.txtInput36.Location = new System.Drawing.Point(129, 49);
3390
            this.txtInput36.MaxLength = 10;
3391
            this.txtInput36.Name = "txtInput36";
3392
            this.txtInput36.Size = new System.Drawing.Size(120, 26);
3393
            this.txtInput36.TabIndex = 63;
3394
            this.txtInput36.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3395
            this.txtInput36.TextChanged += new System.EventHandler(this.valueChange);
3396
            this.txtInput36.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3397
            // 
2955 3398
            // label127
2956 3399
            // 
2957 3400
            this.label127.BackColor = System.Drawing.Color.Moccasin;
......
3007 3450
            // 
3008 3451
            this.label2.BackColor = System.Drawing.Color.RoyalBlue;
3009 3452
            this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3010
            this.label2.Location = new System.Drawing.Point(528, 37);
3453
            this.label2.Location = new System.Drawing.Point(516, 4);
3011 3454
            this.label2.Name = "label2";
3012 3455
            this.label2.Size = new System.Drawing.Size(115, 25);
3013 3456
            this.label2.TabIndex = 0;
......
3021 3464
            this.rdbStatusHikitugiFlg.BackColor = System.Drawing.Color.Transparent;
3022 3465
            this.rdbStatusHikitugiFlg.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3023 3466
            this.rdbStatusHikitugiFlg.ForeColor = System.Drawing.Color.White;
3024
            this.rdbStatusHikitugiFlg.Location = new System.Drawing.Point(1024, 94);
3467
            this.rdbStatusHikitugiFlg.Location = new System.Drawing.Point(811, 7);
3025 3468
            this.rdbStatusHikitugiFlg.Name = "rdbStatusHikitugiFlg";
3026 3469
            this.rdbStatusHikitugiFlg.Size = new System.Drawing.Size(212, 19);
3027 3470
            this.rdbStatusHikitugiFlg.TabIndex = 86;
......
3034 3477
            // 
3035 3478
            this.lblConstructionCodelabel.BackColor = System.Drawing.Color.RoyalBlue;
3036 3479
            this.lblConstructionCodelabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3037
            this.lblConstructionCodelabel.Location = new System.Drawing.Point(20, 37);
3480
            this.lblConstructionCodelabel.Location = new System.Drawing.Point(8, 4);
3038 3481
            this.lblConstructionCodelabel.Name = "lblConstructionCodelabel";
3039 3482
            this.lblConstructionCodelabel.Size = new System.Drawing.Size(115, 25);
3040 3483
            this.lblConstructionCodelabel.TabIndex = 0;
......
3045 3488
            // 
3046 3489
            this.lblConstructionCode.BackColor = System.Drawing.SystemColors.Window;
3047 3490
            this.lblConstructionCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3048
            this.lblConstructionCode.Location = new System.Drawing.Point(143, 37);
3491
            this.lblConstructionCode.Location = new System.Drawing.Point(131, 4);
3049 3492
            this.lblConstructionCode.Name = "lblConstructionCode";
3050 3493
            this.lblConstructionCode.Size = new System.Drawing.Size(115, 25);
3051 3494
            this.lblConstructionCode.TabIndex = 92;
......
3056 3499
            this.label48.BackColor = System.Drawing.Color.RoyalBlue;
3057 3500
            this.label48.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3058 3501
            this.label48.ForeColor = System.Drawing.Color.Black;
3059
            this.label48.Location = new System.Drawing.Point(20, 67);
3502
            this.label48.Location = new System.Drawing.Point(8, 31);
3060 3503
            this.label48.Name = "label48";
3061 3504
            this.label48.Size = new System.Drawing.Size(115, 26);
3062 3505
            this.label48.TabIndex = 0;
......
3069 3512
            | System.Windows.Forms.AnchorStyles.Right)));
3070 3513
            this.txtInput33.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3071 3514
            this.txtInput33.ImeMode = System.Windows.Forms.ImeMode.On;
3072
            this.txtInput33.Location = new System.Drawing.Point(143, 67);
3515
            this.txtInput33.Location = new System.Drawing.Point(131, 31);
3073 3516
            this.txtInput33.MaxLength = 120;
3074 3517
            this.txtInput33.Name = "txtInput33";
3075
            this.txtInput33.Size = new System.Drawing.Size(1182, 26);
3518
            this.txtInput33.Size = new System.Drawing.Size(1202, 26);
3076 3519
            this.txtInput33.TabIndex = 1;
3077 3520
            this.txtInput33.TextChanged += new System.EventHandler(this.valueChange);
3078 3521
            this.txtInput33.Validated += new System.EventHandler(this.txtInput33_Validated);
......
3083 3526
            this.label49.BackColor = System.Drawing.Color.Black;
3084 3527
            this.label49.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3085 3528
            this.label49.ForeColor = System.Drawing.Color.Red;
3086
            this.label49.Location = new System.Drawing.Point(143, 97);
3529
            this.label49.Location = new System.Drawing.Point(137, 59);
3087 3530
            this.label49.Name = "label49";
3088 3531
            this.label49.Size = new System.Drawing.Size(467, 16);
3089 3532
            this.label49.TabIndex = 0;
......
3094 3537
            // 
3095 3538
            this.label28.BackColor = System.Drawing.Color.RoyalBlue;
3096 3539
            this.label28.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3097
            this.label28.Location = new System.Drawing.Point(274, 37);
3540
            this.label28.Location = new System.Drawing.Point(262, 4);
3098 3541
            this.label28.Name = "label28";
3099 3542
            this.label28.Size = new System.Drawing.Size(115, 25);
3100 3543
            this.label28.TabIndex = 0;
......
3106 3549
            this.label16.BackColor = System.Drawing.Color.Red;
3107 3550
            this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
3108 3551
            this.label16.ForeColor = System.Drawing.Color.White;
3109
            this.label16.Location = new System.Drawing.Point(20, 116);
3552
            this.label16.Location = new System.Drawing.Point(8, 77);
3110 3553
            this.label16.Name = "label16";
3111 3554
            this.label16.Size = new System.Drawing.Size(115, 44);
3112 3555
            this.label16.TabIndex = 0;
......
3119 3562
            | System.Windows.Forms.AnchorStyles.Right)));
3120 3563
            this.panel5.BackColor = System.Drawing.Color.Red;
3121 3564
            this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
3565
            this.panel5.Controls.Add(this.btnRestore);
3122 3566
            this.panel5.Controls.Add(this.rdbStatus16);
3123 3567
            this.panel5.Controls.Add(this.rdbStatus8);
3124 3568
            this.panel5.Controls.Add(this.rdbStatus6);
......
3136 3580
            this.panel5.Controls.Add(this.rdbStatus3);
3137 3581
            this.panel5.Controls.Add(this.rdbStatus1);
3138 3582
            this.panel5.Controls.Add(this.rdbStatus0);
3139
            this.panel5.Location = new System.Drawing.Point(141, 116);
3583
            this.panel5.Location = new System.Drawing.Point(131, 77);
3140 3584
            this.panel5.Name = "panel5";
3141
            this.panel5.Size = new System.Drawing.Size(1184, 44);
3585
            this.panel5.Size = new System.Drawing.Size(1204, 44);
3142 3586
            this.panel5.TabIndex = 0;
3143 3587
            // 
3588
            // btnRestore
3589
            // 
3590
            this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
3591
            this.btnRestore.BackColor = System.Drawing.Color.Blue;
3592
            this.btnRestore.Font = new System.Drawing.Font("MS Pゴシック", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3593
            this.btnRestore.ForeColor = System.Drawing.Color.White;
3594
            this.btnRestore.Location = new System.Drawing.Point(1120, 13);
3595
            this.btnRestore.Name = "btnRestore";
3596
            this.btnRestore.Size = new System.Drawing.Size(76, 30);
3597
            this.btnRestore.TabIndex = 99;
3598
            this.btnRestore.Text = "請求解除";
3599
            this.btnRestore.UseVisualStyleBackColor = false;
3600
            this.btnRestore.Visible = false;
3601
            this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
3602
            // 
3144 3603
            // rdbStatus16
3145 3604
            // 
3146 3605
            this.rdbStatus16.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
3149 3608
            this.rdbStatus16.BackColor = System.Drawing.Color.Transparent;
3150 3609
            this.rdbStatus16.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3151 3610
            this.rdbStatus16.ForeColor = System.Drawing.Color.White;
3152
            this.rdbStatus16.Location = new System.Drawing.Point(137, 23);
3611
            this.rdbStatus16.Location = new System.Drawing.Point(146, 23);
3153 3612
            this.rdbStatus16.Name = "rdbStatus16";
3154 3613
            this.rdbStatus16.Size = new System.Drawing.Size(128, 20);
3155 3614
            this.rdbStatus16.TabIndex = 92;
......
3181 3640
            this.rdbStatus6.BackColor = System.Drawing.Color.Transparent;
3182 3641
            this.rdbStatus6.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3183 3642
            this.rdbStatus6.ForeColor = System.Drawing.Color.White;
3184
            this.rdbStatus6.Location = new System.Drawing.Point(799, 2);
3643
            this.rdbStatus6.Location = new System.Drawing.Point(791, 2);
3185 3644
            this.rdbStatus6.Name = "rdbStatus6";
3186 3645
            this.rdbStatus6.Size = new System.Drawing.Size(94, 20);
3187 3646
            this.rdbStatus6.TabIndex = 89;
......
3197 3656
            this.rdbStatus17.BackColor = System.Drawing.Color.Transparent;
3198 3657
            this.rdbStatus17.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3199 3658
            this.rdbStatus17.ForeColor = System.Drawing.Color.White;
3200
            this.rdbStatus17.Location = new System.Drawing.Point(280, 23);
3659
            this.rdbStatus17.Location = new System.Drawing.Point(282, 23);
3201 3660
            this.rdbStatus17.Name = "rdbStatus17";
3202 3661
            this.rdbStatus17.Size = new System.Drawing.Size(145, 20);
3203 3662
            this.rdbStatus17.TabIndex = 90;
......
3214 3673
            this.radioButton1.Enabled = false;
3215 3674
            this.radioButton1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3216 3675
            this.radioButton1.ForeColor = System.Drawing.Color.White;
3217
            this.radioButton1.Location = new System.Drawing.Point(689, 23);
3676
            this.radioButton1.Location = new System.Drawing.Point(672, 23);
3218 3677
            this.radioButton1.Name = "radioButton1";
3219 3678
            this.radioButton1.Size = new System.Drawing.Size(111, 20);
3220 3679
            this.radioButton1.TabIndex = 90;
......
3232 3691
            this.rdbStatus13.Enabled = false;
3233 3692
            this.rdbStatus13.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3234 3693
            this.rdbStatus13.ForeColor = System.Drawing.Color.White;
3235
            this.rdbStatus13.Location = new System.Drawing.Point(944, 23);
3694
            this.rdbStatus13.Location = new System.Drawing.Point(927, 23);
3236 3695
            this.rdbStatus13.Name = "rdbStatus13";
3237 3696
            this.rdbStatus13.Size = new System.Drawing.Size(179, 20);
3238 3697
            this.rdbStatus13.TabIndex = 90;
......
3249 3708
            this.rdbStatus12.Enabled = false;
3250 3709
            this.rdbStatus12.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3251 3710
            this.rdbStatus12.ForeColor = System.Drawing.Color.White;
3252
            this.rdbStatus12.Location = new System.Drawing.Point(808, 23);
3711
            this.rdbStatus12.Location = new System.Drawing.Point(791, 23);
3253 3712
            this.rdbStatus12.Name = "rdbStatus12";
3254 3713
            this.rdbStatus12.Size = new System.Drawing.Size(128, 20);
3255 3714
            this.rdbStatus12.TabIndex = 90;
......
3266 3725
            this.rdbStatus10.Enabled = false;
3267 3726
            this.rdbStatus10.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3268 3727
            this.rdbStatus10.ForeColor = System.Drawing.Color.White;
3269
            this.rdbStatus10.Location = new System.Drawing.Point(579, 23);
3728
            this.rdbStatus10.Location = new System.Drawing.Point(570, 23);
3270 3729
            this.rdbStatus10.Name = "rdbStatus10";
3271 3730
            this.rdbStatus10.Size = new System.Drawing.Size(94, 20);
3272 3731
            this.rdbStatus10.TabIndex = 90;
......
3298 3757
            this.rdbStatus7.BackColor = System.Drawing.Color.Transparent;
3299 3758
            this.rdbStatus7.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3300 3759
            this.rdbStatus7.ForeColor = System.Drawing.Color.White;
3301
            this.rdbStatus7.Location = new System.Drawing.Point(909, 2);
3760
            this.rdbStatus7.Location = new System.Drawing.Point(927, 2);
3302 3761
            this.rdbStatus7.Name = "rdbStatus7";
3303 3762
            this.rdbStatus7.Size = new System.Drawing.Size(94, 20);
3304 3763
            this.rdbStatus7.TabIndex = 90;
......
3346 3805
            this.rdbStatus5.BackColor = System.Drawing.Color.Transparent;
3347 3806
            this.rdbStatus5.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3348 3807
            this.rdbStatus5.ForeColor = System.Drawing.Color.White;
3349
            this.rdbStatus5.Location = new System.Drawing.Point(689, 2);
3808
            this.rdbStatus5.Location = new System.Drawing.Point(672, 2);
3350 3809
            this.rdbStatus5.Name = "rdbStatus5";
3351 3810
            this.rdbStatus5.Size = new System.Drawing.Size(94, 20);
3352 3811
            this.rdbStatus5.TabIndex = 86;
......
3362 3821
            this.rdbStatus4.BackColor = System.Drawing.Color.Transparent;
3363 3822
            this.rdbStatus4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3364 3823
            this.rdbStatus4.ForeColor = System.Drawing.Color.White;
3365
            this.rdbStatus4.Location = new System.Drawing.Point(579, 2);
3824
            this.rdbStatus4.Location = new System.Drawing.Point(570, 2);
3366 3825
            this.rdbStatus4.Name = "rdbStatus4";
3367 3826
            this.rdbStatus4.Size = new System.Drawing.Size(94, 20);
3368 3827
            this.rdbStatus4.TabIndex = 86;
......
3425 3884
            this.label29.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
3426 3885
            this.label29.AutoSize = true;
3427 3886
            this.label29.BackColor = System.Drawing.Color.Transparent;
3887
            this.label29.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3428 3888
            this.label29.ForeColor = System.Drawing.Color.White;
3429 3889
            this.label29.Location = new System.Drawing.Point(1033, 12);
3430 3890
            this.label29.Name = "label29";
......
3446 3906
            this.lblLastUpdate.Text = "2015年12月31日";
3447 3907
            this.lblLastUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3448 3908
            // 
3909
            // cmbConstructionPeriod
3910
            // 
3911
            this.cmbConstructionPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3912
            this.cmbConstructionPeriod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3913
            this.cmbConstructionPeriod.FormattingEnabled = true;
3914
            this.cmbConstructionPeriod.Location = new System.Drawing.Point(385, 4);
3915
            this.cmbConstructionPeriod.Name = "cmbConstructionPeriod";
3916
            this.cmbConstructionPeriod.Size = new System.Drawing.Size(115, 24);
3917
            this.cmbConstructionPeriod.TabIndex = 1;
3918
            this.toolTip1.SetToolTip(this.cmbConstructionPeriod, "売り上げ計上を行う営業期を入力してください");
3919
            // 
3920
            // cmbConstructionYear
3921
            // 
3922
            this.cmbConstructionYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3923
            this.cmbConstructionYear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3924
            this.cmbConstructionYear.FormattingEnabled = true;
3925
            this.cmbConstructionYear.Location = new System.Drawing.Point(639, 4);
3926
            this.cmbConstructionYear.Name = "cmbConstructionYear";
3927
            this.cmbConstructionYear.Size = new System.Drawing.Size(134, 24);
3928
            this.cmbConstructionYear.TabIndex = 0;
3929
            this.toolTip1.SetToolTip(this.cmbConstructionYear, "工事の着工開始年度を入力してください");
3930
            this.cmbConstructionYear.Visible = false;
3931
            // 
3449 3932
            // btnApprovalList
3450 3933
            // 
3451 3934
            this.btnApprovalList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
3452 3935
            this.btnApprovalList.BackColor = System.Drawing.Color.Gold;
3453 3936
            this.btnApprovalList.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3454 3937
            this.btnApprovalList.ForeColor = System.Drawing.Color.Black;
3455
            this.btnApprovalList.Location = new System.Drawing.Point(1085, 37);
3938
            this.btnApprovalList.Location = new System.Drawing.Point(1133, 4);
3456 3939
            this.btnApprovalList.Name = "btnApprovalList";
3457
            this.btnApprovalList.Size = new System.Drawing.Size(240, 24);
3940
            this.btnApprovalList.Size = new System.Drawing.Size(200, 24);
3458 3941
            this.btnApprovalList.TabIndex = 44;
3459 3942
            this.btnApprovalList.Text = "申請状況確認";
3460 3943
            this.btnApprovalList.UseVisualStyleBackColor = false;
......
3487 3970
            this.lblJointLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3488 3971
            this.lblJointLabel.Visible = false;
3489 3972
            // 
3490
            // comboBoxEX1
3973
            // groupBoxEx1
3491 3974
            // 
3492
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3493
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3494
            this.comboBoxEX1.FormattingEnabled = true;
3495
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
3496
            this.comboBoxEX1.Name = "comboBoxEX1";
3497
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
3498
            this.comboBoxEX1.TabIndex = 22;
3499
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
3500
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
3975
            this.groupBoxEx1.BorderColor = System.Drawing.Color.White;
3976
            this.groupBoxEx1.Controls.Add(this.btnApprovalList);
3977
            this.groupBoxEx1.Controls.Add(this.rdbStatusHikitugiFlg);
3978
            this.groupBoxEx1.Controls.Add(this.lblConstructionCodelabel);
3979
            this.groupBoxEx1.Controls.Add(this.cmbConstructionYear);
3980
            this.groupBoxEx1.Controls.Add(this.label2);
3981
            this.groupBoxEx1.Controls.Add(this.txtInput33);
3982
            this.groupBoxEx1.Controls.Add(this.label48);
3983
            this.groupBoxEx1.Controls.Add(this.cmbConstructionPeriod);
3984
            this.groupBoxEx1.Controls.Add(this.label28);
3985
            this.groupBoxEx1.Controls.Add(this.lblConstructionCode);
3986
            this.groupBoxEx1.Controls.Add(this.label16);
3987
            this.groupBoxEx1.Controls.Add(this.panel5);
3988
            this.groupBoxEx1.Controls.Add(this.label49);
3989
            this.groupBoxEx1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3990
            this.groupBoxEx1.Location = new System.Drawing.Point(3, 37);
3991
            this.groupBoxEx1.Name = "groupBoxEx1";
3992
            this.groupBoxEx1.Size = new System.Drawing.Size(1340, 126);
3993
            this.groupBoxEx1.TabIndex = 98;
3994
            this.groupBoxEx1.TabStop = false;
3501 3995
            // 
3502
            // cmbDisplayPerson
3503
            // 
3504
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3505
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3506
            this.cmbDisplayPerson.FormattingEnabled = true;
3507
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
3508
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
3509
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
3510
            this.cmbDisplayPerson.TabIndex = 23;
3511
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
3512
            // 
3513
            // cmbConstructionType
3514
            // 
3515
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3516
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3517
            this.cmbConstructionType.FormattingEnabled = true;
3518
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
3519
            this.cmbConstructionType.Name = "cmbConstructionType";
3520
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
3521
            this.cmbConstructionType.TabIndex = 21;
3522
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
3523
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
3524
            // 
3525
            // cmbOrdersDivision
3526
            // 
3527
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
3528
            | System.Windows.Forms.AnchorStyles.Right)));
3529
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
3530
            "株式会社",
3531
            "有限会社",
3532
            "合名会社",
3533
            "合資会社",
3534
            "合同会社"});
3535
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3536
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3537
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3538
            this.cmbOrdersDivision.FormattingEnabled = true;
3539
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
3540
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
3541
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
3542
            this.cmbOrdersDivision.TabIndex = 7;
3543
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
3544
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
3545
            // 
3546
            // cmbDisplayOrderers
3547
            // 
3548
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
3549
            | System.Windows.Forms.AnchorStyles.Right)));
3550
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3551
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3552
            this.cmbDisplayOrderers.FormattingEnabled = true;
3553
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 184);
3554
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
3555
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(376, 27);
3556
            this.cmbDisplayOrderers.TabIndex = 8;
3557
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
3558
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
3559
            // 
3560
            // txtInput28
3561
            // 
3562
            this.txtInput28.BackColor = System.Drawing.Color.White;
3563
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3564
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
3565
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
3566
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
3567
            this.txtInput28.MaxLength = 10;
3568
            this.txtInput28.Name = "txtInput28";
3569
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
3570
            this.txtInput28.TabIndex = 28;
3571
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3572
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
3573
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
3574
            // 
3575
            // txtInput25
3576
            // 
3577
            this.txtInput25.BackColor = System.Drawing.Color.White;
3578
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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