プロジェクト

全般

プロフィール

リビジョン 336

堀内ほぼ7年前に追加

工事詳細台帳:一般工事のデータ作成時に列の作成が出来ていないので落ちるバグを修正
担当者検索SQL:今期検索時に工事情報にあるものしか検索できないバグ修正

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs
2961 2961
        }
2962 2962
        #endregion
2963 2963

  
2964
        #region 今期の判定を行う
2965
        /// <summary>
2966
        /// 今期の判定を行う
2967
        /// </summary>
2968
        /// <returns></returns>
2969
        private static bool CheckNowSeason(int nTarget)
2970
        {
2971
            try
2972
            {
2973
                if (m_systemMaster.ConstructionNoBase == (int)SystemMaster.ConstrNoBaseDef.BusinessPeriod)
2974
                {   // 営業期数
2975
                    if (nTarget != m_systemMaster.BusinessPeriod) return false;
2976
                }
2977
                else
2978
                {   // 工事年度
2979
                    if (nTarget != m_systemMaster.ConstrYear) return false;
2980
                }
2981
                return true;
2982
            }
2983
            catch (Exception ex)
2984
            {
2985
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
2986
                return false;
2987
            }
2988
        }
2989
        #endregion
2990

  
2964 2991
        #region 部署コンボボックスデータ取得SQL作成
2965 2992
        /// <summary>
2966 2993
        /// 部署コンボボックスデータ取得SQL作成
......
2971 2998
            try
2972 2999
            {
2973 3000
                // 今期のデータかどうかを判定する
2974
                bool bNowSeason = true;
2975
                if (nTargetCount != CommonMotions.SystemMasterData.BusinessPeriod) bNowSeason = false;
3001
                bool bNowSeason = CheckNowSeason(nTargetCount);
2976 3002

  
2977 3003
                strSQL.Append("SELECT");
2978 3004
                strSQL.Append(" A.DEPARTMENTCODE");
......
3048 3074

  
3049 3075
                if (bNowSeason)
3050 3076
                {   // 今期は削除されていないもの
3051
                    //strSQL.Append(" A.DELETEFLG = 0");
3077
                    strSQL.Append(" A.DELETEFLG = 0");
3052 3078
                    DateTime dtDefaultEnd = CommonMotions.GetOpeningEndDate(nTargetCount, false);
3053 3079

  
3054
                    strSQL.AppendFormat(" C.ConstructionPeriod = {0}", nTargetCount);
3055 3080
                    strSQL.AppendFormat(" And DATE(A.StartDate) <= DATE('{0}')", dtDefaultEnd.ToShortDateString());
3081

  
3056 3082
                    // システム管理者以外は部署参照マスタよりデータ取得
3057 3083
                    if (CommonMotions.LoginUserData.PersonCode != CommonDefine.AdminCode)
3058 3084
                    {
......
3061 3087
                        strSQL.Append(" IN (SELECT A1.DEPARTMENTCODE FROM PERSONDEPARTMENTMASTER A1");
3062 3088
                        strSQL.AppendFormat(" WHERE A1.PERSONCODE = {0})", CommonMotions.LoginUserData.PersonCode);
3063 3089
                    }
3064
                    strSQL.Append(" AND");
3090
//                    strSQL.Append(" AND");
3065 3091
                }
3066
                strSQL.Append(" A.DepartmentCode IN(C.SalesDepCode, C.ConstrDepCode, C.ConstrSubDepCode, C.ConstrInstrDepCode)");
3092
                else
3093
                {
3094
                    strSQL.AppendFormat(" C.ConstructionPeriod = {0}", nTargetCount);
3095
                    strSQL.Append(" And A.DepartmentCode IN(C.SalesDepCode, C.ConstrDepCode, C.ConstrSubDepCode, C.ConstrInstrDepCode)");
3096
                }
3067 3097
                //strSQL.Append(" A.DEPARTMENTCODE = B.DEPARTMENTCODE");
3068 3098
                //strSQL.Append(" AND B.PERSONCODE = C.CONSTRUCTIONPERSONCODE");
3069 3099
                strSQL.Append(" GROUP BY A.DEPARTMENTCODE, A.DEPARTMENTSTRING, A.DISPLAYORDER");
branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs
14 14
        /// <summary>
15 15
        /// 本体バージョン
16 16
        /// </summary>
17
        public static int s_SystemVersion = 170;
17
        public static int s_SystemVersion = 171;
18 18

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOConstructionBaseInfo.cs
999 999
        /// <param name="bPeriod"></param>
1000 1000
        /// <param name="MinCode"></param>
1001 1001
        /// <param name="MaxCode"></param>
1002
        private void GetBaseCounstructionCode(bool bPeriod, int PeriodValue, ref int MinCode, ref int MaxCode)
1002
        private void GetBaseCounstrYear(bool bPeriod, int PeriodValue, ref int MinCode, ref int MaxCode)
1003 1003
        {
1004 1004
            try
1005 1005
            {
......
1063 1063
                StringBuilder strWhere = new StringBuilder();
1064 1064
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)SystemMaster.ConstrNoBaseDef.BusinessPeriod)
1065 1065
                {   // 営業期
1066
                    GetBaseCounstructionCode(true, PeriodValue,ref MinCode, ref  MaxCode);
1066
                    GetBaseCounstrYear(true, PeriodValue,ref MinCode, ref  MaxCode);
1067 1067
                }
1068 1068
                else
1069 1069
                {   // 工事年度
1070
                    GetBaseCounstructionCode(false, PeriodValue, ref MinCode, ref  MaxCode);
1070
                    GetBaseCounstrYear(false, PeriodValue, ref MinCode, ref  MaxCode);
1071 1071
                }
1072 1072
                strWhere.AppendFormat(" WHERE {0} <= CONSTRUCTIONCODE AND CONSTRUCTIONCODE < {1}", (MinCode * 1000000), (MaxCode * 1000000));
1073 1073

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.cs
2090 2090
            PersonCombBoxChange(sender);
2091 2091
        }
2092 2092
        #endregion
2093

  
2094
        #region ?c??????E?H???N?x??X
2095
        /// <summary>
2096
        /// ?c??????E?H???N?x??X
2097
        /// </summary>
2098
        /// <param name="sender"></param>
2099
        /// <param name="e"></param>
2100
        private void cmbYear_SelectedIndexChanged(object sender, EventArgs e)
2101
        {
2102
            // ?R???{?{?b?N?X?Z?b?g
2103
            SetDepartmentCombbox();                     // ????
2104
        }
2105
        #endregion
2093 2106
    }
2094 2107
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs
79 79
            this.txtInput07 = new System.Windows.Forms.TextBox();
80 80
            this.label6 = new System.Windows.Forms.Label();
81 81
            this.label8 = new System.Windows.Forms.Label();
82
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
83
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
82 84
            this.label4 = new System.Windows.Forms.Label();
83 85
            this.panel2 = new System.Windows.Forms.Panel();
84 86
            this.rdbEstimateType2 = new System.Windows.Forms.RadioButton();
85 87
            this.rdbEstimateType3 = new System.Windows.Forms.RadioButton();
86 88
            this.rdbEstimateType1 = new System.Windows.Forms.RadioButton();
89
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
87 90
            this.txtInput08 = new System.Windows.Forms.TextBox();
88 91
            this.btnSerchZip = new System.Windows.Forms.Button();
89 92
            this.label20 = new System.Windows.Forms.Label();
......
116 119
            this.label44 = new System.Windows.Forms.Label();
117 120
            this.label14 = new System.Windows.Forms.Label();
118 121
            this.label5 = new System.Windows.Forms.Label();
122
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
119 123
            this.btnOrderer = new System.Windows.Forms.Button();
124
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
120 125
            this.txtInput05 = new System.Windows.Forms.TextBox();
121 126
            this.panel4 = new System.Windows.Forms.Panel();
122 127
            this.label106 = new System.Windows.Forms.Label();
......
126 131
            this.label97 = new System.Windows.Forms.Label();
127 132
            this.label39 = new System.Windows.Forms.Label();
128 133
            this.label30 = new System.Windows.Forms.Label();
134
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
129 135
            this.label27 = new System.Windows.Forms.Label();
136
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
130 137
            this.lblTransferDate = new System.Windows.Forms.Label();
131 138
            this.label36 = new System.Windows.Forms.Label();
139
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
132 140
            this.txtInput26 = new System.Windows.Forms.TextBox();
133 141
            this.label10 = new System.Windows.Forms.Label();
134 142
            this.txtInput01 = new System.Windows.Forms.TextBox();
135 143
            this.label33 = new System.Windows.Forms.Label();
144
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
145
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
136 146
            this.label24 = new System.Windows.Forms.Label();
147
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
137 148
            this.label22 = new System.Windows.Forms.Label();
149
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
138 150
            this.label12 = new System.Windows.Forms.Label();
151
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
139 152
            this.label15 = new System.Windows.Forms.Label();
140 153
            this.label38 = new System.Windows.Forms.Label();
141 154
            this.label68 = new System.Windows.Forms.Label();
......
146 159
            this.label23 = new System.Windows.Forms.Label();
147 160
            this.label70 = new System.Windows.Forms.Label();
148 161
            this.label71 = new System.Windows.Forms.Label();
162
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
163
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
164
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
149 165
            this.label62 = new System.Windows.Forms.Label();
150 166
            this.label72 = new System.Windows.Forms.Label();
151 167
            this.label73 = new System.Windows.Forms.Label();
152 168
            this.label61 = new System.Windows.Forms.Label();
153 169
            this.label55 = new System.Windows.Forms.Label();
170
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
154 171
            this.label54 = new System.Windows.Forms.Label();
172
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
155 173
            this.label66 = new System.Windows.Forms.Label();
156 174
            this.label56 = new System.Windows.Forms.Label();
157 175
            this.label75 = new System.Windows.Forms.Label();
......
171 189
            this.btnFluctuation = new System.Windows.Forms.Button();
172 190
            this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton();
173 191
            this.rdbNotFluctuation = new System.Windows.Forms.RadioButton();
192
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
193
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
194
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
174 195
            this.label46 = new System.Windows.Forms.Label();
175 196
            this.txtInput32 = new System.Windows.Forms.TextBox();
176 197
            this.label47 = new System.Windows.Forms.Label();
......
179 200
            this.label41 = new System.Windows.Forms.Label();
180 201
            this.label50 = new System.Windows.Forms.Label();
181 202
            this.label88 = new System.Windows.Forms.Label();
203
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
204
            this.textBoxEX7 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
205
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
182 206
            this.label25 = new System.Windows.Forms.Label();
207
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
183 208
            this.label42 = new System.Windows.Forms.Label();
209
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
210
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
211
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
212
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
184 213
            this.label81 = new System.Windows.Forms.Label();
185 214
            this.label82 = new System.Windows.Forms.Label();
186 215
            this.label77 = new System.Windows.Forms.Label();
......
189 218
            this.label67 = new System.Windows.Forms.Label();
190 219
            this.label79 = new System.Windows.Forms.Label();
191 220
            this.label31 = new System.Windows.Forms.Label();
221
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
222
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
223
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
192 224
            this.label113 = new System.Windows.Forms.Label();
193 225
            this.label76 = new System.Windows.Forms.Label();
194 226
            this.label112 = new System.Windows.Forms.Label();
......
244 276
            this.label89 = new System.Windows.Forms.Label();
245 277
            this.label129 = new System.Windows.Forms.Label();
246 278
            this.label125 = new System.Windows.Forms.Label();
279
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
280
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
281
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
247 282
            this.label126 = new System.Windows.Forms.Label();
248 283
            this.label87 = new System.Windows.Forms.Label();
249 284
            this.label86 = new System.Windows.Forms.Label();
250 285
            this.label60 = new System.Windows.Forms.Label();
286
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
251 287
            this.label127 = new System.Windows.Forms.Label();
252 288
            this.textBox4 = new System.Windows.Forms.TextBox();
253 289
            this.textBox2 = new System.Windows.Forms.TextBox();
......
256 292
            this.label29 = new System.Windows.Forms.Label();
257 293
            this.lblLastUpdate = new System.Windows.Forms.Label();
258 294
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
295
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
296
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
259 297
            this.btnOtherProc = new System.Windows.Forms.Button();
260 298
            this.lblJointLabel = new System.Windows.Forms.Label();
261 299
            this.btnPA = new System.Windows.Forms.Button();
......
263 301
            this.btnApprovalList = new System.Windows.Forms.Button();
264 302
            this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton();
265 303
            this.lblConstructionCodelabel = new System.Windows.Forms.Label();
266
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
267 304
            this.label2 = new System.Windows.Forms.Label();
268 305
            this.txtInput33 = new System.Windows.Forms.TextBox();
269 306
            this.label48 = new System.Windows.Forms.Label();
270
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
271 307
            this.label28 = new System.Windows.Forms.Label();
272 308
            this.lblConstructionCode = new System.Windows.Forms.Label();
273 309
            this.label16 = new System.Windows.Forms.Label();
......
291 327
            this.rdbStatus1 = new System.Windows.Forms.RadioButton();
292 328
            this.rdbStatus0 = new System.Windows.Forms.RadioButton();
293 329
            this.label49 = new System.Windows.Forms.Label();
294
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
295
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
296
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
297
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
298
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
299
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
300
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
301
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
302
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
303
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
304
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
305
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
306
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
307
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
308
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
309
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
310
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
311
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
312
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
313
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
314
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
315
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
316
            this.textBoxEX7 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
317
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
318
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
319
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
320
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
321
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
322
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
323
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
324
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
325
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
326
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
327
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
328
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
329
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
330 330
            this.BasePanel.SuspendLayout();
331 331
            this.tableLayoutPanel2.SuspendLayout();
332 332
            this.panel10.SuspendLayout();
......
817 817
            this.label8.Text = "工事場所";
818 818
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
819 819
            // 
820
            // comboBoxEX1
821
            // 
822
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
823
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
824
            this.comboBoxEX1.FormattingEnabled = true;
825
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
826
            this.comboBoxEX1.Name = "comboBoxEX1";
827
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
828
            this.comboBoxEX1.TabIndex = 22;
829
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
830
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
831
            // 
832
            // cmbDisplayPerson
833
            // 
834
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
835
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
836
            this.cmbDisplayPerson.FormattingEnabled = true;
837
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
838
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
839
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
840
            this.cmbDisplayPerson.TabIndex = 23;
841
            this.cmbDisplayPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
842
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
843
            // 
820 844
            // label4
821 845
            // 
822 846
            this.label4.BackColor = System.Drawing.Color.CornflowerBlue;
......
882 906
            this.rdbEstimateType1.UseVisualStyleBackColor = false;
883 907
            this.rdbEstimateType1.CheckedChanged += new System.EventHandler(this.valueChange);
884 908
            // 
909
            // cmbConstructionType
910
            // 
911
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
912
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
913
            this.cmbConstructionType.FormattingEnabled = true;
914
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
915
            this.cmbConstructionType.Name = "cmbConstructionType";
916
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
917
            this.cmbConstructionType.TabIndex = 21;
918
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
919
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
920
            // 
885 921
            // txtInput08
886 922
            // 
887 923
            this.txtInput08.ImeMode = System.Windows.Forms.ImeMode.Disable;
......
1269 1305
            this.label5.Text = "発 注 者";
1270 1306
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1271 1307
            // 
1308
            // cmbOrdersDivision
1309
            // 
1310
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1311
            | System.Windows.Forms.AnchorStyles.Right)));
1312
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
1313
            "株式会社",
1314
            "有限会社",
1315
            "合名会社",
1316
            "合資会社",
1317
            "合同会社"});
1318
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1319
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1320
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1321
            this.cmbOrdersDivision.FormattingEnabled = true;
1322
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
1323
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
1324
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
1325
            this.cmbOrdersDivision.TabIndex = 7;
1326
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
1327
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
1328
            // 
1272 1329
            // btnOrderer
1273 1330
            // 
1274 1331
            this.btnOrderer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
......
1284 1341
            this.btnOrderer.Visible = false;
1285 1342
            this.btnOrderer.Click += new System.EventHandler(this.btnOrderer_Click);
1286 1343
            // 
1344
            // cmbDisplayOrderers
1345
            // 
1346
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1347
            | System.Windows.Forms.AnchorStyles.Right)));
1348
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1349
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1350
            this.cmbDisplayOrderers.FormattingEnabled = true;
1351
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 184);
1352
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
1353
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(376, 27);
1354
            this.cmbDisplayOrderers.TabIndex = 8;
1355
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
1356
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
1357
            // 
1287 1358
            // txtInput05
1288 1359
            // 
1289 1360
            this.txtInput05.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1448 1519
            this.label30.Text = "税込\r\n受注決定金額";
1449 1520
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1450 1521
            // 
1522
            // txtInput28
1523
            // 
1524
            this.txtInput28.BackColor = System.Drawing.Color.White;
1525
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1526
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
1527
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
1528
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
1529
            this.txtInput28.MaxLength = 10;
1530
            this.txtInput28.Name = "txtInput28";
1531
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
1532
            this.txtInput28.TabIndex = 28;
1533
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1534
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
1535
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
1536
            // 
1451 1537
            // label27
1452 1538
            // 
1453 1539
            this.label27.BackColor = System.Drawing.Color.MidnightBlue;
......
1461 1547
            this.label27.Text = "税別\r\n受注決定金額";
1462 1548
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1463 1549
            // 
1550
            // txtInput25
1551
            // 
1552
            this.txtInput25.BackColor = System.Drawing.Color.White;
1553
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1554
            this.txtInput25.ForeColor = System.Drawing.Color.Black;
1555
            this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable;
1556
            this.txtInput25.Location = new System.Drawing.Point(128, 64);
1557
            this.txtInput25.MaxLength = 10;
1558
            this.txtInput25.Name = "txtInput25";
1559
            this.txtInput25.Size = new System.Drawing.Size(274, 34);
1560
            this.txtInput25.TabIndex = 27;
1561
            this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1562
            this.txtInput25.TextChanged += new System.EventHandler(this.valueChange);
1563
            this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated);
1564
            // 
1464 1565
            // lblTransferDate
1465 1566
            // 
1466 1567
            this.lblTransferDate.BackColor = System.Drawing.SystemColors.Window;
......
1483 1584
            this.label36.Text = "部署引継日";
1484 1585
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1485 1586
            // 
1587
            // cmbTransferConstruction
1588
            // 
1589
            this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1590
            this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1591
            this.cmbTransferConstruction.FormattingEnabled = true;
1592
            this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843);
1593
            this.cmbTransferConstruction.Name = "cmbTransferConstruction";
1594
            this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27);
1595
            this.cmbTransferConstruction.TabIndex = 39;
1596
            this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged);
1597
            this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange);
1598
            // 
1486 1599
            // txtInput26
1487 1600
            // 
1488 1601
            this.txtInput26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1533 1646
            this.label33.Text = "見積提出期限";
1534 1647
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1535 1648
            // 
1649
            // txtInput27
1650
            // 
1651
            this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable;
1652
            this.txtInput27.Location = new System.Drawing.Point(128, 33);
1653
            this.txtInput27.MaxLength = 10;
1654
            this.txtInput27.Name = "txtInput27";
1655
            this.txtInput27.Size = new System.Drawing.Size(120, 26);
1656
            this.txtInput27.TabIndex = 26;
1657
            this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1658
            this.txtInput27.TextChanged += new System.EventHandler(this.valueChange);
1659
            this.txtInput27.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1660
            // 
1661
            // txtInput02
1662
            // 
1663
            this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable;
1664
            this.txtInput02.Location = new System.Drawing.Point(128, 182);
1665
            this.txtInput02.MaxLength = 10;
1666
            this.txtInput02.Name = "txtInput02";
1667
            this.txtInput02.Size = new System.Drawing.Size(120, 26);
1668
            this.txtInput02.TabIndex = 29;
1669
            this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1670
            this.txtInput02.TextChanged += new System.EventHandler(this.valueChange);
1671
            this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged);
1672
            // 
1536 1673
            // label24
1537 1674
            // 
1538 1675
            this.label24.BackColor = System.Drawing.Color.LightBlue;
......
1545 1682
            this.label24.Text = "見積提出日";
1546 1683
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1547 1684
            // 
1685
            // txtInput06
1686
            // 
1687
            this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable;
1688
            this.txtInput06.Location = new System.Drawing.Point(128, 212);
1689
            this.txtInput06.MaxLength = 10;
1690
            this.txtInput06.Name = "txtInput06";
1691
            this.txtInput06.Size = new System.Drawing.Size(120, 26);
1692
            this.txtInput06.TabIndex = 30;
1693
            this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1694
            this.txtInput06.TextChanged += new System.EventHandler(this.valueChange);
1695
            this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1696
            // 
1548 1697
            // label22
1549 1698
            // 
1550 1699
            this.label22.BackColor = System.Drawing.Color.LightBlue;
......
1557 1706
            this.label22.Text = "見積有効期限";
1558 1707
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1559 1708
            // 
1709
            // txtInput12
1710
            // 
1711
            this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable;
1712
            this.txtInput12.Location = new System.Drawing.Point(128, 302);
1713
            this.txtInput12.MaxLength = 10;
1714
            this.txtInput12.Name = "txtInput12";
1715
            this.txtInput12.Size = new System.Drawing.Size(120, 26);
1716
            this.txtInput12.TabIndex = 31;
1717
            this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1718
            this.txtInput12.TextChanged += new System.EventHandler(this.valueChange);
1719
            this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1720
            // 
1560 1721
            // label12
1561 1722
            // 
1562 1723
            this.label12.BackColor = System.Drawing.Color.LightBlue;
......
1569 1730
            this.label12.Text = "工事期間 開始";
1570 1731
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1571 1732
            // 
1733
            // txtInput13
1734
            // 
1735
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
1736
            this.txtInput13.Location = new System.Drawing.Point(128, 332);
1737
            this.txtInput13.MaxLength = 10;
1738
            this.txtInput13.Name = "txtInput13";
1739
            this.txtInput13.Size = new System.Drawing.Size(120, 26);
1740
            this.txtInput13.TabIndex = 32;
1741
            this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1742
            this.txtInput13.TextChanged += new System.EventHandler(this.valueChange);
1743
            this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1744
            // 
1572 1745
            // label15
1573 1746
            // 
1574 1747
            this.label15.BackColor = System.Drawing.Color.LightBlue;
......
1691 1864
            this.label71.Text = "非受注日";
1692 1865
            this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1693 1866
            // 
1867
            // textBoxEX2
1868
            // 
1869
            this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable;
1870
            this.textBoxEX2.Location = new System.Drawing.Point(128, 562);
1871
            this.textBoxEX2.MaxLength = 10;
1872
            this.textBoxEX2.Name = "textBoxEX2";
1873
            this.textBoxEX2.Size = new System.Drawing.Size(120, 26);
1874
            this.textBoxEX2.TabIndex = 35;
1875
            this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1876
            this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
1877
            this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1878
            // 
1879
            // textBoxEX1
1880
            // 
1881
            this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable;
1882
            this.textBoxEX1.Location = new System.Drawing.Point(128, 502);
1883
            this.textBoxEX1.MaxLength = 10;
1884
            this.textBoxEX1.Name = "textBoxEX1";
1885
            this.textBoxEX1.Size = new System.Drawing.Size(120, 26);
1886
            this.textBoxEX1.TabIndex = 33;
1887
            this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1888
            this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
1889
            this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1890
            // 
1891
            // txtInput03
1892
            // 
1893
            this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable;
1894
            this.txtInput03.Location = new System.Drawing.Point(128, 532);
1895
            this.txtInput03.MaxLength = 10;
1896
            this.txtInput03.Name = "txtInput03";
1897
            this.txtInput03.Size = new System.Drawing.Size(120, 26);
1898
            this.txtInput03.TabIndex = 34;
1899
            this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1900
            this.txtInput03.TextChanged += new System.EventHandler(this.valueChange);
1901
            this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1902
            // 
1694 1903
            // label62
1695 1904
            // 
1696 1905
            this.label62.BackColor = System.Drawing.Color.Black;
......
1756 1965
            this.label55.Text = "※「施工開始予定日」はおおよその工事開始日(現場着手時期)を\r\n「受注日」入力時に入力して下さい";
1757 1966
            this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1758 1967
            // 
1968
            // txtInput38
1969
            // 
1970
            this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable;
1971
            this.txtInput38.Location = new System.Drawing.Point(128, 632);
1972
            this.txtInput38.MaxLength = 10;
1973
            this.txtInput38.Name = "txtInput38";
1974
            this.txtInput38.Size = new System.Drawing.Size(120, 26);
1975
            this.txtInput38.TabIndex = 36;
1976
            this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1977
            this.txtInput38.TextChanged += new System.EventHandler(this.valueChange);
1978
            this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1979
            // 
1759 1980
            // label54
1760 1981
            // 
1761 1982
            this.label54.BackColor = System.Drawing.Color.LightBlue;
......
1769 1990
            this.label54.Text = "受注時施工完了予定日";
1770 1991
            this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1771 1992
            // 
1993
            // txtInput34
1994
            // 
1995
            this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable;
1996
            this.txtInput34.Location = new System.Drawing.Point(128, 662);
1997
            this.txtInput34.MaxLength = 10;
1998
            this.txtInput34.Name = "txtInput34";
1999
            this.txtInput34.Size = new System.Drawing.Size(120, 26);
2000
            this.txtInput34.TabIndex = 37;
2001
            this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2002
            this.txtInput34.TextChanged += new System.EventHandler(this.valueChange);
2003
            this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2004
            // 
1772 2005
            // label66
1773 2006
            // 
1774 2007
            this.label66.BackColor = System.Drawing.Color.Black;
......
2046 2279
            this.rdbNotFluctuation.UseVisualStyleBackColor = true;
2047 2280
            this.rdbNotFluctuation.CheckedChanged += new System.EventHandler(this.rdbFluctuation_CheckedChanged);
2048 2281
            // 
2282
            // comboBoxEX4
2283
            // 
2284
            this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2285
            this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2286
            this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2287
            this.comboBoxEX4.FormattingEnabled = true;
2288
            this.comboBoxEX4.Location = new System.Drawing.Point(129, 93);
2289
            this.comboBoxEX4.Name = "comboBoxEX4";
2290
            this.comboBoxEX4.Size = new System.Drawing.Size(255, 27);
2291
            this.comboBoxEX4.TabIndex = 44;
2292
            this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2293
            // 
2294
            // comboBoxEX3
2295
            // 
2296
            this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2297
            this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2298
            this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2299
            this.comboBoxEX3.FormattingEnabled = true;
2300
            this.comboBoxEX3.Location = new System.Drawing.Point(129, 63);
2301
            this.comboBoxEX3.Name = "comboBoxEX3";
2302
            this.comboBoxEX3.Size = new System.Drawing.Size(255, 27);
2303
            this.comboBoxEX3.TabIndex = 42;
2304
            this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2305
            // 
2306
            // cmbDisplayConstrSubPerson
2307
            // 
2308
            this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2309
            this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2310
            this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2311
            this.cmbDisplayConstrSubPerson.FormattingEnabled = true;
2312
            this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(384, 63);
2313
            this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson";
2314
            this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(255, 27);
2315
            this.cmbDisplayConstrSubPerson.TabIndex = 43;
2316
            this.cmbDisplayConstrSubPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
2317
            // 
2049 2318
            // label46
2050 2319
            // 
2051 2320
            this.label46.BackColor = System.Drawing.Color.Black;
......
2150 2419
            this.label88.Text = "検査予定日";
2151 2420
            this.label88.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2152 2421
            // 
2422
            // textBoxEX3
2423
            // 
2424
            this.textBoxEX3.Enabled = false;
2425
            this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2426
            this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable;
2427
            this.textBoxEX3.Location = new System.Drawing.Point(129, 273);
2428
            this.textBoxEX3.MaxLength = 10;
2429
            this.textBoxEX3.Name = "textBoxEX3";
2430
            this.textBoxEX3.Size = new System.Drawing.Size(120, 26);
2431
            this.textBoxEX3.TabIndex = 50;
2432
            this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2433
            this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange);
2434
            this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2435
            // 
2436
            // textBoxEX7
2437
            // 
2438
            this.textBoxEX7.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2439
            this.textBoxEX7.ImeMode = System.Windows.Forms.ImeMode.Disable;
2440
            this.textBoxEX7.Location = new System.Drawing.Point(129, 363);
2441
            this.textBoxEX7.MaxLength = 10;
2442
            this.textBoxEX7.Name = "textBoxEX7";
2443
            this.textBoxEX7.Size = new System.Drawing.Size(120, 26);
2444
            this.textBoxEX7.TabIndex = 53;
2445
            this.textBoxEX7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2446
            this.textBoxEX7.TextChanged += new System.EventHandler(this.valueChange);
2447
            this.textBoxEX7.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2448
            // 
2449
            // txtInput35
2450
            // 
2451
            this.txtInput35.Enabled = false;
2452
            this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2453
            this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable;
2454
            this.txtInput35.Location = new System.Drawing.Point(129, 303);
2455
            this.txtInput35.MaxLength = 10;
2456
            this.txtInput35.Name = "txtInput35";
2457
            this.txtInput35.Size = new System.Drawing.Size(120, 26);
2458
            this.txtInput35.TabIndex = 51;
2459
            this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2460
            this.txtInput35.TextChanged += new System.EventHandler(this.valueChange);
2461
            this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2462
            // 
2153 2463
            // label25
2154 2464
            // 
2155 2465
            this.label25.BackColor = System.Drawing.Color.LightGreen;
......
2163 2473
            this.label25.Text = "施工完了日";
2164 2474
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2165 2475
            // 
2476
            // txtInput04
2477
            // 
2478
            this.txtInput04.Enabled = false;
2479
            this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2480
            this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable;
2481
            this.txtInput04.Location = new System.Drawing.Point(129, 333);
2482
            this.txtInput04.MaxLength = 10;
2483
            this.txtInput04.Name = "txtInput04";
2484
            this.txtInput04.Size = new System.Drawing.Size(120, 26);
2485
            this.txtInput04.TabIndex = 52;
2486
            this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2487
            this.txtInput04.TextChanged += new System.EventHandler(this.valueChange);
2488
            this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2489
            // 
2166 2490
            // label42
2167 2491
            // 
2168 2492
            this.label42.BackColor = System.Drawing.Color.Black;
......
2175 2499
            this.label42.Text = "※「着工」・「完成」は契約書に基づき記入して下さい\r\n(当社、発給の契約書・施工計画書に記載されます)";
2176 2500
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2177 2501
            // 
2502
            // textBoxEX5
2503
            // 
2504
            this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2505
            this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable;
2506
            this.textBoxEX5.Location = new System.Drawing.Point(393, 183);
2507
            this.textBoxEX5.MaxLength = 10;
2508
            this.textBoxEX5.Name = "textBoxEX5";
2509
            this.textBoxEX5.Size = new System.Drawing.Size(120, 26);
2510
            this.textBoxEX5.TabIndex = 49;
2511
            this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2512
            this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange);
2513
            this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2514
            // 
2515
            // textBoxEX4
2516
            // 
2517
            this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2518
            this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable;
2519
            this.textBoxEX4.Location = new System.Drawing.Point(393, 153);
2520
            this.textBoxEX4.MaxLength = 10;
2521
            this.textBoxEX4.Name = "textBoxEX4";
2522
            this.textBoxEX4.Size = new System.Drawing.Size(120, 26);
2523
            this.textBoxEX4.TabIndex = 47;
2524
            this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2525
            this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange);
2526
            this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2527
            // 
2528
            // txtInput29
2529
            // 
2530
            this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2531
            this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable;
2532
            this.txtInput29.Location = new System.Drawing.Point(189, 153);
2533
            this.txtInput29.MaxLength = 10;
2534
            this.txtInput29.Name = "txtInput29";
2535
            this.txtInput29.Size = new System.Drawing.Size(120, 26);
2536
            this.txtInput29.TabIndex = 46;
2537
            this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2538
            this.txtInput29.TextChanged += new System.EventHandler(this.valueChange);
2539
            this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2540
            // 
2541
            // txtInput30
2542
            // 
2543
            this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2544
            this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable;
2545
            this.txtInput30.Location = new System.Drawing.Point(189, 183);
2546
            this.txtInput30.MaxLength = 10;
2547
            this.txtInput30.Name = "txtInput30";
2548
            this.txtInput30.Size = new System.Drawing.Size(120, 26);
2549
            this.txtInput30.TabIndex = 48;
2550
            this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2551
            this.txtInput30.TextChanged += new System.EventHandler(this.valueChange);
2552
            this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2553
            // 
2178 2554
            // label81
2179 2555
            // 
2180 2556
            this.label81.BackColor = System.Drawing.Color.LightGreen;
......
2272 2648
            this.label31.Text = "工事指導";
2273 2649
            this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2274 2650
            // 
2651
            // cmbConstructionInstructor
2652
            // 
2653
            this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2654
            this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2655
            this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2656
            this.cmbConstructionInstructor.FormattingEnabled = true;
2657
            this.cmbConstructionInstructor.Location = new System.Drawing.Point(384, 93);
2658
            this.cmbConstructionInstructor.Name = "cmbConstructionInstructor";
2659
            this.cmbConstructionInstructor.Size = new System.Drawing.Size(255, 27);
2660
            this.cmbConstructionInstructor.TabIndex = 45;
2661
            this.cmbConstructionInstructor.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
2662
            this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange);
2663
            // 
2664
            // comboBoxEX2
2665
            // 
2666
            this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2667
            this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2668
            this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2669
            this.comboBoxEX2.FormattingEnabled = true;
2670
            this.comboBoxEX2.Location = new System.Drawing.Point(129, 33);
2671
            this.comboBoxEX2.Name = "comboBoxEX2";
2672
            this.comboBoxEX2.Size = new System.Drawing.Size(255, 27);
2673
            this.comboBoxEX2.TabIndex = 40;
2674
            this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2675
            this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
2676
            // 
2677
            // cmbDisplayConstructionPerson
2678
            // 
2679
            this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2680
            this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2681
            this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2682
            this.cmbDisplayConstructionPerson.FormattingEnabled = true;
2683
            this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(384, 33);
2684
            this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson";
2685
            this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(255, 27);
2686
            this.cmbDisplayConstructionPerson.TabIndex = 41;
2687
            this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.CmbConstructionPerson_SelectedIndexChanged);
2688
            this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange);
2689
            // 
2275 2690
            // label113
2276 2691
            // 
2277 2692
            this.label113.BackColor = System.Drawing.Color.LightGreen;
......
3039 3454
            this.label125.Text = "請求書郵送日";
3040 3455
            this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3041 3456
            // 
3457
            // textBoxEX9
3458
            // 
3459
            this.textBoxEX9.ImeMode = System.Windows.Forms.ImeMode.Disable;
3460
            this.textBoxEX9.Location = new System.Drawing.Point(129, 317);
3461
            this.textBoxEX9.MaxLength = 10;
3462
            this.textBoxEX9.Name = "textBoxEX9";
3463
            this.textBoxEX9.Size = new System.Drawing.Size(120, 26);
3464
            this.textBoxEX9.TabIndex = 63;
3465
            this.textBoxEX9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3466
            this.textBoxEX9.TextChanged += new System.EventHandler(this.valueChange);
3467
            this.textBoxEX9.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3468
            // 
3469
            // textBoxEX8
3470
            // 
3471
            this.textBoxEX8.ImeMode = System.Windows.Forms.ImeMode.Disable;
3472
            this.textBoxEX8.Location = new System.Drawing.Point(129, 287);
3473
            this.textBoxEX8.MaxLength = 10;
3474
            this.textBoxEX8.Name = "textBoxEX8";
3475
            this.textBoxEX8.Size = new System.Drawing.Size(120, 26);
3476
            this.textBoxEX8.TabIndex = 62;
3477
            this.textBoxEX8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3478
            this.textBoxEX8.TextChanged += new System.EventHandler(this.valueChange);
3479
            this.textBoxEX8.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3480
            // 
3481
            // textBoxEX6
3482
            // 
3483
            this.textBoxEX6.ImeMode = System.Windows.Forms.ImeMode.Disable;
3484
            this.textBoxEX6.Location = new System.Drawing.Point(129, 257);
3485
            this.textBoxEX6.MaxLength = 10;
3486
            this.textBoxEX6.Name = "textBoxEX6";
3487
            this.textBoxEX6.Size = new System.Drawing.Size(120, 26);
3488
            this.textBoxEX6.TabIndex = 61;
3489
            this.textBoxEX6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3490
            this.textBoxEX6.TextChanged += new System.EventHandler(this.valueChange);
3491
            this.textBoxEX6.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3492
            // 
3042 3493
            // label126
3043 3494
            // 
3044 3495
            this.label126.BackColor = System.Drawing.Color.Moccasin;
......
3086 3537
            this.label60.Text = "請求準備開始日";
3087 3538
            this.label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3088 3539
            // 
3540
            // txtInput36
3541
            // 
3542
            this.txtInput36.ImeMode = System.Windows.Forms.ImeMode.Disable;
3543
            this.txtInput36.Location = new System.Drawing.Point(129, 49);
3544
            this.txtInput36.MaxLength = 10;
3545
            this.txtInput36.Name = "txtInput36";
3546
            this.txtInput36.Size = new System.Drawing.Size(120, 26);
3547
            this.txtInput36.TabIndex = 60;
3548
            this.txtInput36.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3549
            this.txtInput36.TextChanged += new System.EventHandler(this.valueChange);
3550
            this.txtInput36.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3551
            // 
3089 3552
            // label127
3090 3553
            // 
3091 3554
            this.label127.BackColor = System.Drawing.Color.Moccasin;
......
3178 3641
            this.lblLastUpdate.Text = "2015年12月31日";
3179 3642
            this.lblLastUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3180 3643
            // 
3644
            // cmbConstructionYear
3645
            // 
3646
            this.cmbConstructionYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3647
            this.cmbConstructionYear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3648
            this.cmbConstructionYear.FormattingEnabled = true;
3649
            this.cmbConstructionYear.Location = new System.Drawing.Point(639, 4);
3650
            this.cmbConstructionYear.Name = "cmbConstructionYear";
3651
            this.cmbConstructionYear.Size = new System.Drawing.Size(134, 24);
3652
            this.cmbConstructionYear.TabIndex = 0;
3653
            this.toolTip1.SetToolTip(this.cmbConstructionYear, "工事の着工開始年度を入力してください");
3654
            this.cmbConstructionYear.Visible = false;
3655
            this.cmbConstructionYear.SelectedIndexChanged += new System.EventHandler(this.cmbYear_SelectedIndexChanged);
3656
            // 
3657
            // cmbConstructionPeriod
3658
            // 
3659
            this.cmbConstructionPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3660
            this.cmbConstructionPeriod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3661
            this.cmbConstructionPeriod.FormattingEnabled = true;
3662
            this.cmbConstructionPeriod.Location = new System.Drawing.Point(385, 4);
3663
            this.cmbConstructionPeriod.Name = "cmbConstructionPeriod";
3664
            this.cmbConstructionPeriod.Size = new System.Drawing.Size(115, 24);
3665
            this.cmbConstructionPeriod.TabIndex = 1;
3666
            this.toolTip1.SetToolTip(this.cmbConstructionPeriod, "売り上げ計上を行う営業期を入力してください");
3667
            this.cmbConstructionPeriod.SelectedIndexChanged += new System.EventHandler(this.cmbYear_SelectedIndexChanged);
3668
            // 
3181 3669
            // btnOtherProc
3182 3670
            // 
3183 3671
            this.btnOtherProc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
......
3285 3773
            this.lblConstructionCodelabel.Text = "工事コード";
3286 3774
            this.lblConstructionCodelabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3287 3775
            // 
3288
            // cmbConstructionYear
3289
            // 
3290
            this.cmbConstructionYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3291
            this.cmbConstructionYear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3292
            this.cmbConstructionYear.FormattingEnabled = true;
3293
            this.cmbConstructionYear.Location = new System.Drawing.Point(639, 4);
3294
            this.cmbConstructionYear.Name = "cmbConstructionYear";
3295
            this.cmbConstructionYear.Size = new System.Drawing.Size(134, 24);
3296
            this.cmbConstructionYear.TabIndex = 0;
3297
            this.toolTip1.SetToolTip(this.cmbConstructionYear, "工事の着工開始年度を入力してください");
3298
            this.cmbConstructionYear.Visible = false;
3299
            // 
3300 3776
            // label2
3301 3777
            // 
3302 3778
            this.label2.BackColor = System.Drawing.Color.RoyalBlue;
......
3335 3811
            this.label48.Text = "工事名称";
3336 3812
            this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3337 3813
            // 
3338
            // cmbConstructionPeriod
3339
            // 
3340
            this.cmbConstructionPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3341
            this.cmbConstructionPeriod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3342
            this.cmbConstructionPeriod.FormattingEnabled = true;
3343
            this.cmbConstructionPeriod.Location = new System.Drawing.Point(385, 4);
3344
            this.cmbConstructionPeriod.Name = "cmbConstructionPeriod";
3345
            this.cmbConstructionPeriod.Size = new System.Drawing.Size(115, 24);
3346
            this.cmbConstructionPeriod.TabIndex = 1;
3347
            this.toolTip1.SetToolTip(this.cmbConstructionPeriod, "売り上げ計上を行う営業期を入力してください");
3348
            // 
3349 3814
            // label28
3350 3815
            // 
3351 3816
            this.label28.BackColor = System.Drawing.Color.RoyalBlue;
......
3715 4180
            this.label49.Text = "※工事名称は下記の工事名称の項目と連動して記入されます";
3716 4181
            this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
3717 4182
            // 
3718
            // comboBoxEX1
3719
            // 
3720
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3721
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3722
            this.comboBoxEX1.FormattingEnabled = true;
3723
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
3724
            this.comboBoxEX1.Name = "comboBoxEX1";
3725
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
3726
            this.comboBoxEX1.TabIndex = 22;
3727
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
3728
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
3729
            // 
3730
            // cmbDisplayPerson
3731
            // 
3732
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3733
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3734
            this.cmbDisplayPerson.FormattingEnabled = true;
3735
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
3736
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
3737
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
3738
            this.cmbDisplayPerson.TabIndex = 23;
3739
            this.cmbDisplayPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
3740
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
3741
            // 
3742
            // cmbConstructionType
3743
            // 
3744
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3745
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3746
            this.cmbConstructionType.FormattingEnabled = true;
3747
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
3748
            this.cmbConstructionType.Name = "cmbConstructionType";
3749
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
3750
            this.cmbConstructionType.TabIndex = 21;
3751
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
3752
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
3753
            // 
3754
            // cmbOrdersDivision
3755
            // 
3756
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
3757
            | System.Windows.Forms.AnchorStyles.Right)));
3758
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
3759
            "株式会社",
3760
            "有限会社",
3761
            "合名会社",
3762
            "合資会社",
3763
            "合同会社"});
3764
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3765
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3766
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3767
            this.cmbOrdersDivision.FormattingEnabled = true;
3768
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
3769
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
3770
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
3771
            this.cmbOrdersDivision.TabIndex = 7;
3772
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
3773
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
3774
            // 
3775
            // cmbDisplayOrderers
3776
            // 
3777
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
3778
            | System.Windows.Forms.AnchorStyles.Right)));
3779
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3780
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3781
            this.cmbDisplayOrderers.FormattingEnabled = true;
3782
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 184);
3783
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
3784
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(376, 27);
3785
            this.cmbDisplayOrderers.TabIndex = 8;
3786
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
3787
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
3788
            // 
3789
            // txtInput28
3790
            // 
3791
            this.txtInput28.BackColor = System.Drawing.Color.White;
3792
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3793
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
3794
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
3795
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
3796
            this.txtInput28.MaxLength = 10;
3797
            this.txtInput28.Name = "txtInput28";
3798
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
3799
            this.txtInput28.TabIndex = 28;
3800
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3801
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
3802
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
3803
            // 
3804
            // txtInput25
3805
            // 
3806
            this.txtInput25.BackColor = System.Drawing.Color.White;
3807
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3808
            this.txtInput25.ForeColor = System.Drawing.Color.Black;
3809
            this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable;
3810
            this.txtInput25.Location = new System.Drawing.Point(128, 64);
3811
            this.txtInput25.MaxLength = 10;
3812
            this.txtInput25.Name = "txtInput25";
3813
            this.txtInput25.Size = new System.Drawing.Size(274, 34);
3814
            this.txtInput25.TabIndex = 27;
3815
            this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3816
            this.txtInput25.TextChanged += new System.EventHandler(this.valueChange);
3817
            this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated);
3818
            // 
3819
            // cmbTransferConstruction
3820
            // 
3821
            this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3822
            this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3823
            this.cmbTransferConstruction.FormattingEnabled = true;
3824
            this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843);
3825
            this.cmbTransferConstruction.Name = "cmbTransferConstruction";
3826
            this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27);
3827
            this.cmbTransferConstruction.TabIndex = 39;
3828
            this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged);
3829
            this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange);
3830
            // 
3831
            // txtInput27
3832
            // 
3833
            this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable;
3834
            this.txtInput27.Location = new System.Drawing.Point(128, 33);
3835
            this.txtInput27.MaxLength = 10;
3836
            this.txtInput27.Name = "txtInput27";
3837
            this.txtInput27.Size = new System.Drawing.Size(120, 26);
3838
            this.txtInput27.TabIndex = 26;
3839
            this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3840
            this.txtInput27.TextChanged += new System.EventHandler(this.valueChange);
3841
            this.txtInput27.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3842
            // 
3843
            // txtInput02
3844
            // 
3845
            this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable;
3846
            this.txtInput02.Location = new System.Drawing.Point(128, 182);
3847
            this.txtInput02.MaxLength = 10;
3848
            this.txtInput02.Name = "txtInput02";
3849
            this.txtInput02.Size = new System.Drawing.Size(120, 26);
3850
            this.txtInput02.TabIndex = 29;
3851
            this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3852
            this.txtInput02.TextChanged += new System.EventHandler(this.valueChange);
3853
            this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged);
3854
            // 
3855
            // txtInput06
3856
            // 
3857
            this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable;
3858
            this.txtInput06.Location = new System.Drawing.Point(128, 212);
3859
            this.txtInput06.MaxLength = 10;
3860
            this.txtInput06.Name = "txtInput06";
3861
            this.txtInput06.Size = new System.Drawing.Size(120, 26);
3862
            this.txtInput06.TabIndex = 30;
3863
            this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3864
            this.txtInput06.TextChanged += new System.EventHandler(this.valueChange);
3865
            this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3866
            // 
3867
            // txtInput12
3868
            // 
3869
            this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable;
3870
            this.txtInput12.Location = new System.Drawing.Point(128, 302);
3871
            this.txtInput12.MaxLength = 10;
3872
            this.txtInput12.Name = "txtInput12";
3873
            this.txtInput12.Size = new System.Drawing.Size(120, 26);
3874
            this.txtInput12.TabIndex = 31;
3875
            this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3876
            this.txtInput12.TextChanged += new System.EventHandler(this.valueChange);
3877
            this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3878
            // 
3879
            // txtInput13
3880
            // 
3881
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
3882
            this.txtInput13.Location = new System.Drawing.Point(128, 332);
3883
            this.txtInput13.MaxLength = 10;
3884
            this.txtInput13.Name = "txtInput13";
3885
            this.txtInput13.Size = new System.Drawing.Size(120, 26);
3886
            this.txtInput13.TabIndex = 32;
3887
            this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3888
            this.txtInput13.TextChanged += new System.EventHandler(this.valueChange);
3889
            this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3890
            // 
3891
            // textBoxEX2
3892
            // 
3893
            this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable;
3894
            this.textBoxEX2.Location = new System.Drawing.Point(128, 562);
3895
            this.textBoxEX2.MaxLength = 10;
3896
            this.textBoxEX2.Name = "textBoxEX2";
3897
            this.textBoxEX2.Size = new System.Drawing.Size(120, 26);
3898
            this.textBoxEX2.TabIndex = 35;
3899
            this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3900
            this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
3901
            this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3902
            // 
3903
            // textBoxEX1
3904
            // 
3905
            this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable;
3906
            this.textBoxEX1.Location = new System.Drawing.Point(128, 502);
3907
            this.textBoxEX1.MaxLength = 10;
3908
            this.textBoxEX1.Name = "textBoxEX1";
3909
            this.textBoxEX1.Size = new System.Drawing.Size(120, 26);
3910
            this.textBoxEX1.TabIndex = 33;
3911
            this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3912
            this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
3913
            this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3914
            // 
3915
            // txtInput03
3916
            // 
3917
            this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable;
3918
            this.txtInput03.Location = new System.Drawing.Point(128, 532);
3919
            this.txtInput03.MaxLength = 10;
3920
            this.txtInput03.Name = "txtInput03";
3921
            this.txtInput03.Size = new System.Drawing.Size(120, 26);
3922
            this.txtInput03.TabIndex = 34;
3923
            this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3924
            this.txtInput03.TextChanged += new System.EventHandler(this.valueChange);
3925
            this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3926
            // 
3927
            // txtInput38
3928
            // 
3929
            this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable;
3930
            this.txtInput38.Location = new System.Drawing.Point(128, 632);
3931
            this.txtInput38.MaxLength = 10;
3932
            this.txtInput38.Name = "txtInput38";
3933
            this.txtInput38.Size = new System.Drawing.Size(120, 26);
3934
            this.txtInput38.TabIndex = 36;
3935
            this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3936
            this.txtInput38.TextChanged += new System.EventHandler(this.valueChange);
3937
            this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3938
            // 
3939
            // txtInput34
3940
            // 
3941
            this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable;
3942
            this.txtInput34.Location = new System.Drawing.Point(128, 662);
3943
            this.txtInput34.MaxLength = 10;
3944
            this.txtInput34.Name = "txtInput34";
3945
            this.txtInput34.Size = new System.Drawing.Size(120, 26);
3946
            this.txtInput34.TabIndex = 37;
3947
            this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3948
            this.txtInput34.TextChanged += new System.EventHandler(this.valueChange);
3949
            this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3950
            // 
3951
            // comboBoxEX4
3952
            // 
3953
            this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3954
            this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3955
            this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3956
            this.comboBoxEX4.FormattingEnabled = true;
3957
            this.comboBoxEX4.Location = new System.Drawing.Point(129, 93);
3958
            this.comboBoxEX4.Name = "comboBoxEX4";
3959
            this.comboBoxEX4.Size = new System.Drawing.Size(255, 27);
3960
            this.comboBoxEX4.TabIndex = 44;
3961
            this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
3962
            // 
3963
            // comboBoxEX3
3964
            // 
3965
            this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3966
            this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3967
            this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3968
            this.comboBoxEX3.FormattingEnabled = true;
3969
            this.comboBoxEX3.Location = new System.Drawing.Point(129, 63);
3970
            this.comboBoxEX3.Name = "comboBoxEX3";
3971
            this.comboBoxEX3.Size = new System.Drawing.Size(255, 27);
3972
            this.comboBoxEX3.TabIndex = 42;
3973
            this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
3974
            // 
3975
            // cmbDisplayConstrSubPerson
3976
            // 
3977
            this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3978
            this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3979
            this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3980
            this.cmbDisplayConstrSubPerson.FormattingEnabled = true;
3981
            this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(384, 63);
3982
            this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson";
3983
            this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(255, 27);
3984
            this.cmbDisplayConstrSubPerson.TabIndex = 43;
3985
            this.cmbDisplayConstrSubPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
3986
            // 
3987
            // textBoxEX3
3988
            // 
3989
            this.textBoxEX3.Enabled = false;
3990
            this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3991
            this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable;
3992
            this.textBoxEX3.Location = new System.Drawing.Point(129, 273);
3993
            this.textBoxEX3.MaxLength = 10;
3994
            this.textBoxEX3.Name = "textBoxEX3";
3995
            this.textBoxEX3.Size = new System.Drawing.Size(120, 26);
3996
            this.textBoxEX3.TabIndex = 50;
3997
            this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3998
            this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange);
3999
            this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4000
            // 
4001
            // textBoxEX7
4002
            // 
4003
            this.textBoxEX7.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4004
            this.textBoxEX7.ImeMode = System.Windows.Forms.ImeMode.Disable;
4005
            this.textBoxEX7.Location = new System.Drawing.Point(129, 363);
4006
            this.textBoxEX7.MaxLength = 10;
4007
            this.textBoxEX7.Name = "textBoxEX7";
4008
            this.textBoxEX7.Size = new System.Drawing.Size(120, 26);
4009
            this.textBoxEX7.TabIndex = 53;
4010
            this.textBoxEX7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4011
            this.textBoxEX7.TextChanged += new System.EventHandler(this.valueChange);
4012
            this.textBoxEX7.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4013
            // 
4014
            // txtInput35
4015
            // 
4016
            this.txtInput35.Enabled = false;
4017
            this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4018
            this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable;
4019
            this.txtInput35.Location = new System.Drawing.Point(129, 303);
4020
            this.txtInput35.MaxLength = 10;
4021
            this.txtInput35.Name = "txtInput35";
4022
            this.txtInput35.Size = new System.Drawing.Size(120, 26);
4023
            this.txtInput35.TabIndex = 51;
4024
            this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4025
            this.txtInput35.TextChanged += new System.EventHandler(this.valueChange);
4026
            this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4027
            // 
4028
            // txtInput04
4029
            // 
4030
            this.txtInput04.Enabled = false;
4031
            this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4032
            this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable;
4033
            this.txtInput04.Location = new System.Drawing.Point(129, 333);
4034
            this.txtInput04.MaxLength = 10;
4035
            this.txtInput04.Name = "txtInput04";
4036
            this.txtInput04.Size = new System.Drawing.Size(120, 26);
4037
            this.txtInput04.TabIndex = 52;
4038
            this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4039
            this.txtInput04.TextChanged += new System.EventHandler(this.valueChange);
4040
            this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4041
            // 
4042
            // textBoxEX5
4043
            // 
4044
            this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
4045
            this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable;
4046
            this.textBoxEX5.Location = new System.Drawing.Point(393, 183);
4047
            this.textBoxEX5.MaxLength = 10;
4048
            this.textBoxEX5.Name = "textBoxEX5";
4049
            this.textBoxEX5.Size = new System.Drawing.Size(120, 26);
4050
            this.textBoxEX5.TabIndex = 49;
4051
            this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4052
            this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange);
4053
            this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4054
            // 
4055
            // textBoxEX4
4056
            // 
4057
            this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
4058
            this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable;
4059
            this.textBoxEX4.Location = new System.Drawing.Point(393, 153);
4060
            this.textBoxEX4.MaxLength = 10;
4061
            this.textBoxEX4.Name = "textBoxEX4";
4062
            this.textBoxEX4.Size = new System.Drawing.Size(120, 26);
4063
            this.textBoxEX4.TabIndex = 47;
4064
            this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4065
            this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange);
4066
            this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4067
            // 
4068
            // txtInput29
4069
            // 
4070
            this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
4071
            this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable;
4072
            this.txtInput29.Location = new System.Drawing.Point(189, 153);
4073
            this.txtInput29.MaxLength = 10;
4074
            this.txtInput29.Name = "txtInput29";
4075
            this.txtInput29.Size = new System.Drawing.Size(120, 26);
4076
            this.txtInput29.TabIndex = 46;
4077
            this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4078
            this.txtInput29.TextChanged += new System.EventHandler(this.valueChange);
4079
            this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4080
            // 
4081
            // txtInput30
4082
            // 
4083
            this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
4084
            this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable;
4085
            this.txtInput30.Location = new System.Drawing.Point(189, 183);
4086
            this.txtInput30.MaxLength = 10;
4087
            this.txtInput30.Name = "txtInput30";
4088
            this.txtInput30.Size = new System.Drawing.Size(120, 26);
4089
            this.txtInput30.TabIndex = 48;
4090
            this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4091
            this.txtInput30.TextChanged += new System.EventHandler(this.valueChange);
4092
            this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4093
            // 
4094
            // cmbConstructionInstructor
4095
            // 
4096
            this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
4097
            this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
4098
            this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4099
            this.cmbConstructionInstructor.FormattingEnabled = true;
4100
            this.cmbConstructionInstructor.Location = new System.Drawing.Point(384, 93);
4101
            this.cmbConstructionInstructor.Name = "cmbConstructionInstructor";
4102
            this.cmbConstructionInstructor.Size = new System.Drawing.Size(255, 27);
4103
            this.cmbConstructionInstructor.TabIndex = 45;
4104
            this.cmbConstructionInstructor.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
4105
            this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange);
4106
            // 
4107
            // comboBoxEX2
4108
            // 
4109
            this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
4110
            this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
4111
            this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4112
            this.comboBoxEX2.FormattingEnabled = true;
4113
            this.comboBoxEX2.Location = new System.Drawing.Point(129, 33);
4114
            this.comboBoxEX2.Name = "comboBoxEX2";
4115
            this.comboBoxEX2.Size = new System.Drawing.Size(255, 27);
4116
            this.comboBoxEX2.TabIndex = 40;
4117
            this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
4118
            this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
4119
            // 
4120
            // cmbDisplayConstructionPerson
4121
            // 
4122
            this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
4123
            this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
4124
            this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4125
            this.cmbDisplayConstructionPerson.FormattingEnabled = true;
4126
            this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(384, 33);
4127
            this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson";
4128
            this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(255, 27);
4129
            this.cmbDisplayConstructionPerson.TabIndex = 41;
4130
            this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.CmbConstructionPerson_SelectedIndexChanged);
4131
            this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange);
4132
            // 
4133
            // textBoxEX9
4134
            // 
4135
            this.textBoxEX9.ImeMode = System.Windows.Forms.ImeMode.Disable;
4136
            this.textBoxEX9.Location = new System.Drawing.Point(129, 317);
4137
            this.textBoxEX9.MaxLength = 10;
4138
            this.textBoxEX9.Name = "textBoxEX9";
4139
            this.textBoxEX9.Size = new System.Drawing.Size(120, 26);
4140
            this.textBoxEX9.TabIndex = 63;
4141
            this.textBoxEX9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4142
            this.textBoxEX9.TextChanged += new System.EventHandler(this.valueChange);
4143
            this.textBoxEX9.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4144
            // 
4145
            // textBoxEX8
4146
            // 
4147
            this.textBoxEX8.ImeMode = System.Windows.Forms.ImeMode.Disable;
4148
            this.textBoxEX8.Location = new System.Drawing.Point(129, 287);
4149
            this.textBoxEX8.MaxLength = 10;
4150
            this.textBoxEX8.Name = "textBoxEX8";
4151
            this.textBoxEX8.Size = new System.Drawing.Size(120, 26);
4152
            this.textBoxEX8.TabIndex = 62;
4153
            this.textBoxEX8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4154
            this.textBoxEX8.TextChanged += new System.EventHandler(this.valueChange);
4155
            this.textBoxEX8.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4156
            // 
4157
            // textBoxEX6
4158
            // 
4159
            this.textBoxEX6.ImeMode = System.Windows.Forms.ImeMode.Disable;
4160
            this.textBoxEX6.Location = new System.Drawing.Point(129, 257);
4161
            this.textBoxEX6.MaxLength = 10;
4162
            this.textBoxEX6.Name = "textBoxEX6";
4163
            this.textBoxEX6.Size = new System.Drawing.Size(120, 26);
4164
            this.textBoxEX6.TabIndex = 61;
4165
            this.textBoxEX6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4166
            this.textBoxEX6.TextChanged += new System.EventHandler(this.valueChange);
4167
            this.textBoxEX6.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4168
            // 
4169
            // txtInput36
4170
            // 
4171
            this.txtInput36.ImeMode = System.Windows.Forms.ImeMode.Disable;
4172
            this.txtInput36.Location = new System.Drawing.Point(129, 49);
4173
            this.txtInput36.MaxLength = 10;
4174
            this.txtInput36.Name = "txtInput36";
4175
            this.txtInput36.Size = new System.Drawing.Size(120, 26);
4176
            this.txtInput36.TabIndex = 60;
4177
            this.txtInput36.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
4178
            this.txtInput36.TextChanged += new System.EventHandler(this.valueChange);
4179
            this.txtInput36.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
4180
            // 
4181 4183
            // FrmConstructionBaseInfo
4182 4184
            // 
4183 4185
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfoAuxiliary.cs
2158 2158
        }
2159 2159
        #endregion
2160 2160

  
2161
        #region ??????N??????????
2162
        /// <summary>
2163
        /// ??????N??????????
2164
        /// </summary>
2165
        /// <returns></returns>
2166
        private int GetTargetYear()
2167
        {
2168
            try
2169
            {
2170
                int nTarget = 0;
2171

  
2172
                if (m_DspCtrl[(int)DspCnt.ConstructionPeriod].Visible)
2173
                {
2174
                    // ?H????
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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