リビジョン 181
売上確認改造
工事情報コントロール表示位置修正
見積入力修正
| branches/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs | ||
|---|---|---|
| 1806 | 1806 |
{
|
| 1807 | 1807 |
try |
| 1808 | 1808 |
{
|
| 1809 |
int iYears = 0; |
|
| 1810 |
// 今期との差分を計算する |
|
| 1811 |
int diff = CommonMotions.SystemMasterData.BusinessPeriod - Period; |
|
| 1812 |
// 差分を使用して日付を作成する |
|
| 1813 |
DateTime wrkDate = DateTime.Now.AddYears(diff); |
|
| 1814 |
// 年を取得する |
|
| 1815 |
int iwrk = CommonMotions.cnvInt(CommonMotions.SystemMasterData.ConstructionBeginningDate.Substring(0, 2).ToString()); |
|
| 1816 |
iYears = wrkDate.FiscalYear(iwrk); |
|
| 1809 |
int Beginning = 0; |
|
| 1810 |
int diffwork = 0; |
|
| 1811 |
int RetYears = 0; |
|
| 1812 |
string strwork = string.Empty; |
|
| 1817 | 1813 |
|
| 1818 |
return iYears; |
|
| 1814 |
// 現在期との差分を求める |
|
| 1815 |
diffwork = Period - CommonMotions.SystemMasterData.BusinessPeriod; |
|
| 1816 |
|
|
| 1817 |
// 期首月を取得する |
|
| 1818 |
strwork = CommonMotions.SystemMasterData.BusinessBeginningDate; |
|
| 1819 |
strwork = strwork.Substring(0, strwork.IndexOf("/"));
|
|
| 1820 |
|
|
| 1821 |
// 期首月を数値変換 |
|
| 1822 |
Beginning = CommonMotions.cnvInt(strwork); |
|
| 1823 |
|
|
| 1824 |
// 年数を求める |
|
| 1825 |
DateTime dateWork = DateTime.Now; |
|
| 1826 |
int nowMounth = DateTime.Now.Month; |
|
| 1827 |
// 期首月を境に年度を計算する |
|
| 1828 |
int iYear = 0; |
|
| 1829 |
if (nowMounth < Beginning) |
|
| 1830 |
iYear = dateWork.AddYears(-1).Year; |
|
| 1831 |
else |
|
| 1832 |
iYear = dateWork.Year; |
|
| 1833 |
|
|
| 1834 |
// ベース年を求める |
|
| 1835 |
RetYears = iYear + diffwork; |
|
| 1836 |
|
|
| 1837 |
return RetYears; |
|
| 1819 | 1838 |
} |
| 1820 | 1839 |
catch (Exception ex) |
| 1821 | 1840 |
{
|
| branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPurchaseOrder.cs | ||
|---|---|---|
| 88 | 88 |
string strcmd = "SELECT"; |
| 89 | 89 |
|
| 90 | 90 |
strcmd += " ConstructionCode"; // 工事番号 |
| 91 |
strcmd += ",SeqNo"; // 注文書枝番 |
|
| 92 |
strcmd += ",CompanyCode"; // 協力会社コード |
|
| 93 |
strcmd += ",DATE_FORMAT(CreateDate, '%Y/%m/%d')"; // 作成日付 |
|
| 94 |
strcmd += ",OrderPrice"; // 発注金額 |
|
| 95 |
strcmd += ",DATE_FORMAT(LastRowStringDate, '%Y/%m/%d')"; // 最終行表示文字 |
|
| 91 |
strcmd += ", SeqNo"; // 注文書枝番
|
|
| 92 |
strcmd += ", CompanyCode"; // 協力会社コード
|
|
| 93 |
strcmd += ", DATE_FORMAT(CreateDate, '%Y/%m/%d')"; // 作成日付
|
|
| 94 |
strcmd += ", OrderPrice"; // 発注金額
|
|
| 95 |
strcmd += ", DATE_FORMAT(LastRowStringDate, '%Y/%m/%d')"; // 最終行表示文字
|
|
| 96 | 96 |
|
| 97 |
strcmd += ",OrderSheetType"; // 簡易・本式フラグ |
|
| 98 |
strcmd += ",PaymentTerms"; // 支払い条件 |
|
| 99 |
strcmd += ",CashRatio"; // 現金割合(%) |
|
| 100 |
strcmd += ",BillPeriod"; // 手形期間 |
|
| 97 |
strcmd += ", OrderSheetType"; // 簡易・本式フラグ
|
|
| 98 |
strcmd += ", PaymentTerms"; // 支払い条件
|
|
| 99 |
strcmd += ", CashRatio"; // 現金割合(%)
|
|
| 100 |
strcmd += ", BillPeriod"; // 手形期間
|
|
| 101 | 101 |
|
| 102 |
strcmd += ",PrePayments"; // 前金払 |
|
| 103 |
strcmd += ",PrePaymentsDays"; // 前金払日数 |
|
| 104 |
strcmd += ",PrePaymentsPrice"; // 前金払金額 |
|
| 105 |
strcmd += ",PartialPayment"; // 部分払 |
|
| 106 |
strcmd += ",PartialPaymentMounth"; // 部分払締切月 |
|
| 107 |
strcmd += ",PartialPaymentDay1"; // 部分払締切日 |
|
| 108 |
strcmd += ",PartialPaymentDay2"; // 部分払支払日 |
|
| 109 |
strcmd += ",PartialPaymentPrice"; // 部分払金額 |
|
| 110 |
strcmd += ",CompletionPayment"; // 引渡し時の支払 |
|
| 111 |
strcmd += ",CompletionPaymentDays"; // 引渡し時の支払日数 |
|
| 112 |
strcmd += ",CompletionPaymentPrice"; // 引渡し時の支払金額 |
|
| 113 |
strcmd += ",LeadEngineerCode"; // 主任技術者コード |
|
| 114 |
strcmd += ",LeadEngineerName"; // 主任技術者名 |
|
| 115 |
strcmd += ",SafetyOfficerCode"; // 安全管理者コード |
|
| 116 |
strcmd += ",SafetyOfficerName"; // 安全管理者名 |
|
| 117 |
strcmd += ",WorkersCount"; // 作業員数 |
|
| 118 |
strcmd += ",DATE_FORMAT(PrintoutDate, '%Y/%m/%d')"; // 印刷年月日 |
|
| 102 |
strcmd += ", PrePayments"; // 前金払
|
|
| 103 |
strcmd += ", PrePaymentsDays"; // 前金払日数
|
|
| 104 |
strcmd += ", PrePaymentsPrice"; // 前金払金額
|
|
| 105 |
strcmd += ", PartialPayment"; // 部分払
|
|
| 106 |
strcmd += ", PartialPaymentMounth"; // 部分払締切月
|
|
| 107 |
strcmd += ", PartialPaymentDay1"; // 部分払締切日
|
|
| 108 |
strcmd += ", PartialPaymentDay2"; // 部分払支払日
|
|
| 109 |
strcmd += ", PartialPaymentPrice"; // 部分払金額
|
|
| 110 |
strcmd += ", CompletionPayment"; // 引渡し時の支払
|
|
| 111 |
strcmd += ", CompletionPaymentDays"; // 引渡し時の支払日数
|
|
| 112 |
strcmd += ", CompletionPaymentPrice"; // 引渡し時の支払金額
|
|
| 113 |
strcmd += ", LeadEngineerCode"; // 主任技術者コード
|
|
| 114 |
strcmd += ", LeadEngineerName"; // 主任技術者名
|
|
| 115 |
strcmd += ", SafetyOfficerCode"; // 安全管理者コード
|
|
| 116 |
strcmd += ", SafetyOfficerName"; // 安全管理者名
|
|
| 117 |
strcmd += ", WorkersCount"; // 作業員数
|
|
| 118 |
strcmd += ", DATE_FORMAT(PrintoutDate, '%Y/%m/%d')"; // 印刷年月日
|
|
| 119 | 119 |
|
| 120 | 120 |
strcmd += ", DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s')"; |
| 121 | 121 |
strcmd += ", DATE_FORMAT(UpdateDate, '%Y/%m/%d %H:%i:%s')"; |
| ... | ... | |
| 209 | 209 |
/// <summary> |
| 210 | 210 |
/// 注文書データ追加(1件) |
| 211 | 211 |
/// </summary> |
| 212 |
/// <param name="data">注文書データデータ</param>
|
|
| 212 |
/// <param name="data">注文書データ</param> |
|
| 213 | 213 |
/// <returns>true:成功 false:失敗</returns> |
| 214 | 214 |
public bool InsertAction(PurchaseOrder work, bool bConnect = true) |
| 215 | 215 |
{
|
| ... | ... | |
| 283 | 283 |
/// <summary> |
| 284 | 284 |
/// 注文書データ追加(複数) |
| 285 | 285 |
/// </summary> |
| 286 |
/// <param name="data">注文書データデータ</param>
|
|
| 286 |
/// <param name="data">注文書データ</param> |
|
| 287 | 287 |
/// <returns>true:成功 false:失敗</returns> |
| 288 | 288 |
public bool InsertAction(List<PurchaseOrder> data, bool bConnect = true) |
| 289 | 289 |
{
|
| ... | ... | |
| 365 | 365 |
/// 注文書データ更新 |
| 366 | 366 |
/// </summary> |
| 367 | 367 |
/// <param name="AddSQLString">更新条件SQL文字列</param> |
| 368 |
/// <param name="data">注文書データデータ</param>
|
|
| 368 |
/// <param name="data">注文書データ</param> |
|
| 369 | 369 |
/// <returns>true:成功 false:失敗</returns> |
| 370 | 370 |
public bool UpdateAction(string AddSQLString, PurchaseOrder data, bool bConnect = true) |
| 371 | 371 |
{
|
| ... | ... | |
| 434 | 434 |
/// 注文書データ削除 |
| 435 | 435 |
/// </summary> |
| 436 | 436 |
/// <param name="AddSQLString">削除条件SQL文字列</param> |
| 437 |
/// <param name="data">注文書データデータ</param>
|
|
| 437 |
/// <param name="data">注文書データ</param> |
|
| 438 | 438 |
/// <returns>true:成功 false:失敗</returns> |
| 439 | 439 |
public bool DeleteAction(string AddSQLString, bool bConnect = true) |
| 440 | 440 |
{
|
| branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs | ||
|---|---|---|
| 52 | 52 |
this.txtInput07 = new System.Windows.Forms.TextBox(); |
| 53 | 53 |
this.label6 = new System.Windows.Forms.Label(); |
| 54 | 54 |
this.label8 = new System.Windows.Forms.Label(); |
| 55 |
this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 56 |
this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 57 | 55 |
this.label4 = new System.Windows.Forms.Label(); |
| 58 | 56 |
this.panel2 = new System.Windows.Forms.Panel(); |
| 59 | 57 |
this.rdbEstimateType2 = new System.Windows.Forms.RadioButton(); |
| 60 | 58 |
this.rdbEstimateType3 = new System.Windows.Forms.RadioButton(); |
| 61 | 59 |
this.rdbEstimateType1 = new System.Windows.Forms.RadioButton(); |
| 62 |
this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 63 | 60 |
this.txtInput08 = new System.Windows.Forms.TextBox(); |
| 64 | 61 |
this.btnSerchZip = new System.Windows.Forms.Button(); |
| 65 | 62 |
this.label20 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 92 | 89 |
this.label44 = new System.Windows.Forms.Label(); |
| 93 | 90 |
this.label14 = new System.Windows.Forms.Label(); |
| 94 | 91 |
this.label5 = new System.Windows.Forms.Label(); |
| 95 |
this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 96 | 92 |
this.btnOrderer = new System.Windows.Forms.Button(); |
| 97 |
this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 98 | 93 |
this.txtInput05 = new System.Windows.Forms.TextBox(); |
| 99 | 94 |
this.panel4 = new System.Windows.Forms.Panel(); |
| 100 | 95 |
this.btnChangePrice = new System.Windows.Forms.Button(); |
| ... | ... | |
| 104 | 99 |
this.label97 = new System.Windows.Forms.Label(); |
| 105 | 100 |
this.label39 = new System.Windows.Forms.Label(); |
| 106 | 101 |
this.label30 = new System.Windows.Forms.Label(); |
| 107 |
this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 108 | 102 |
this.label27 = new System.Windows.Forms.Label(); |
| 109 |
this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 110 | 103 |
this.lblTransferDate = new System.Windows.Forms.Label(); |
| 111 | 104 |
this.label36 = new System.Windows.Forms.Label(); |
| 112 |
this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 113 | 105 |
this.txtInput26 = new System.Windows.Forms.TextBox(); |
| 114 | 106 |
this.label10 = new System.Windows.Forms.Label(); |
| 115 | 107 |
this.txtInput01 = new System.Windows.Forms.TextBox(); |
| 116 | 108 |
this.label33 = new System.Windows.Forms.Label(); |
| 117 |
this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 118 |
this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 119 | 109 |
this.label24 = new System.Windows.Forms.Label(); |
| 120 |
this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 121 | 110 |
this.label22 = new System.Windows.Forms.Label(); |
| 122 |
this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 123 | 111 |
this.label12 = new System.Windows.Forms.Label(); |
| 124 |
this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 125 | 112 |
this.label15 = new System.Windows.Forms.Label(); |
| 126 | 113 |
this.label38 = new System.Windows.Forms.Label(); |
| 127 | 114 |
this.label68 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 132 | 119 |
this.label23 = new System.Windows.Forms.Label(); |
| 133 | 120 |
this.label70 = new System.Windows.Forms.Label(); |
| 134 | 121 |
this.label71 = new System.Windows.Forms.Label(); |
| 135 |
this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 136 |
this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 137 |
this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 138 | 122 |
this.label62 = new System.Windows.Forms.Label(); |
| 139 | 123 |
this.label72 = new System.Windows.Forms.Label(); |
| 140 | 124 |
this.label73 = new System.Windows.Forms.Label(); |
| 141 | 125 |
this.label61 = new System.Windows.Forms.Label(); |
| 142 | 126 |
this.label55 = new System.Windows.Forms.Label(); |
| 143 |
this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 144 | 127 |
this.label54 = new System.Windows.Forms.Label(); |
| 145 |
this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 146 | 128 |
this.label66 = new System.Windows.Forms.Label(); |
| 147 | 129 |
this.label56 = new System.Windows.Forms.Label(); |
| 148 | 130 |
this.label75 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 161 | 143 |
this.btnFluctuation = new System.Windows.Forms.Button(); |
| 162 | 144 |
this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton(); |
| 163 | 145 |
this.rdbNotFluctuation = new System.Windows.Forms.RadioButton(); |
| 164 |
this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 165 |
this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 166 |
this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 167 | 146 |
this.label46 = new System.Windows.Forms.Label(); |
| 168 | 147 |
this.txtInput32 = new System.Windows.Forms.TextBox(); |
| 169 | 148 |
this.label47 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 171 | 150 |
this.txtInput31 = new System.Windows.Forms.TextBox(); |
| 172 | 151 |
this.label41 = new System.Windows.Forms.Label(); |
| 173 | 152 |
this.label50 = new System.Windows.Forms.Label(); |
| 174 |
this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 175 |
this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 176 | 153 |
this.label25 = new System.Windows.Forms.Label(); |
| 177 |
this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 178 | 154 |
this.label42 = new System.Windows.Forms.Label(); |
| 179 |
this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 180 |
this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 181 |
this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 182 |
this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 183 | 155 |
this.label81 = new System.Windows.Forms.Label(); |
| 184 | 156 |
this.label82 = new System.Windows.Forms.Label(); |
| 185 | 157 |
this.label77 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 188 | 160 |
this.label67 = new System.Windows.Forms.Label(); |
| 189 | 161 |
this.label79 = new System.Windows.Forms.Label(); |
| 190 | 162 |
this.label31 = new System.Windows.Forms.Label(); |
| 191 |
this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 192 |
this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 193 |
this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 194 | 163 |
this.label113 = new System.Windows.Forms.Label(); |
| 195 | 164 |
this.label76 = new System.Windows.Forms.Label(); |
| 196 | 165 |
this.label112 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 227 | 196 |
this.label109 = new System.Windows.Forms.Label(); |
| 228 | 197 |
this.label43 = new System.Windows.Forms.Label(); |
| 229 | 198 |
this.label45 = new System.Windows.Forms.Label(); |
| 230 |
this.textBoxEX10 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 231 |
this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 232 |
this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 233 | 199 |
this.label59 = new System.Windows.Forms.Label(); |
| 234 | 200 |
this.panel9 = new System.Windows.Forms.Panel(); |
| 235 | 201 |
this.label98 = new System.Windows.Forms.Label(); |
| ... | ... | |
| 249 | 215 |
this.label87 = new System.Windows.Forms.Label(); |
| 250 | 216 |
this.label60 = new System.Windows.Forms.Label(); |
| 251 | 217 |
this.label86 = new System.Windows.Forms.Label(); |
| 252 |
this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 253 |
this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 254 |
this.txtInput37 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 255 | 218 |
this.label2 = new System.Windows.Forms.Label(); |
| 256 | 219 |
this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton(); |
| 257 | 220 |
this.lblConstructionCodelabel = new System.Windows.Forms.Label(); |
| ... | ... | |
| 282 | 245 |
this.label29 = new System.Windows.Forms.Label(); |
| 283 | 246 |
this.lblLastUpdate = new System.Windows.Forms.Label(); |
| 284 | 247 |
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); |
| 285 |
this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 286 |
this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 287 | 248 |
this.btnApprovalList = new System.Windows.Forms.Button(); |
| 288 | 249 |
this.btnOtherProc = new System.Windows.Forms.Button(); |
| 289 | 250 |
this.lblJointLabel = new System.Windows.Forms.Label(); |
| 251 |
this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 252 |
this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 253 |
this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 254 |
this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 255 |
this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 256 |
this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 257 |
this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 258 |
this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 259 |
this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 260 |
this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 261 |
this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 262 |
this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 263 |
this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 264 |
this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 265 |
this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 266 |
this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 267 |
this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 268 |
this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 269 |
this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 270 |
this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 271 |
this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 272 |
this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 273 |
this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 274 |
this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 275 |
this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 276 |
this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 277 |
this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 278 |
this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 279 |
this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 280 |
this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 281 |
this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 282 |
this.textBoxEX10 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 283 |
this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 284 |
this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 285 |
this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 286 |
this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 287 |
this.txtInput37 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
|
| 288 |
this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 289 |
this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 290 | 290 |
this.BasePanel.SuspendLayout(); |
| 291 | 291 |
this.tableLayoutPanel2.SuspendLayout(); |
| 292 | 292 |
this.panel1.SuspendLayout(); |
| ... | ... | |
| 367 | 367 |
| System.Windows.Forms.AnchorStyles.Left) |
| 368 | 368 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 369 | 369 |
this.BasePanel.AutoScroll = true; |
| 370 |
this.BasePanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
|
| 370 | 371 |
this.BasePanel.Controls.Add(this.tableLayoutPanel2); |
| 371 | 372 |
this.BasePanel.Location = new System.Drawing.Point(2, 168); |
| 372 | 373 |
this.BasePanel.Name = "BasePanel"; |
| ... | ... | |
| 378 | 379 |
this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
| 379 | 380 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 380 | 381 |
this.tableLayoutPanel2.ColumnCount = 3; |
| 381 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.6F));
|
|
| 382 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8F));
|
|
| 383 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.6F));
|
|
| 382 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.7F));
|
|
| 383 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.6F));
|
|
| 384 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.7F));
|
|
| 384 | 385 |
this.tableLayoutPanel2.Controls.Add(this.panel10, 2, 7); |
| 385 | 386 |
this.tableLayoutPanel2.Controls.Add(this.label35, 0, 6); |
| 386 | 387 |
this.tableLayoutPanel2.Controls.Add(this.label53, 0, 3); |
| ... | ... | |
| 404 | 405 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F)); |
| 405 | 406 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); |
| 406 | 407 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1000F)); |
| 407 |
this.tableLayoutPanel2.Size = new System.Drawing.Size(1340, 3090);
|
|
| 408 |
this.tableLayoutPanel2.Size = new System.Drawing.Size(1320, 3090);
|
|
| 408 | 409 |
this.tableLayoutPanel2.TabIndex = 1; |
| 409 | 410 |
// |
| 410 | 411 |
// panel10 |
| ... | ... | |
| 413 | 414 |
| System.Windows.Forms.AnchorStyles.Left) |
| 414 | 415 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 415 | 416 |
this.panel10.BackColor = System.Drawing.Color.Moccasin; |
| 417 |
this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 416 | 418 |
this.panel10.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 417 |
this.panel10.Location = new System.Drawing.Point(677, 2113);
|
|
| 419 |
this.panel10.Location = new System.Drawing.Point(666, 2113);
|
|
| 418 | 420 |
this.panel10.Name = "panel10"; |
| 419 |
this.panel10.Size = new System.Drawing.Size(660, 994);
|
|
| 421 |
this.panel10.Size = new System.Drawing.Size(651, 994);
|
|
| 420 | 422 |
this.panel10.TabIndex = 185; |
| 421 | 423 |
// |
| 422 | 424 |
// label35 |
| ... | ... | |
| 427 | 429 |
this.label35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 428 | 430 |
this.label35.Location = new System.Drawing.Point(3, 2080); |
| 429 | 431 |
this.label35.Name = "label35"; |
| 430 |
this.label35.Size = new System.Drawing.Size(658, 30);
|
|
| 432 |
this.label35.Size = new System.Drawing.Size(650, 30);
|
|
| 431 | 433 |
this.label35.TabIndex = 183; |
| 432 | 434 |
this.label35.Text = "請求/入金管理(完了時一括請求)"; |
| 433 | 435 |
this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 440 | 442 |
this.label53.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 441 | 443 |
this.label53.Location = new System.Drawing.Point(3, 1040); |
| 442 | 444 |
this.label53.Name = "label53"; |
| 443 |
this.label53.Size = new System.Drawing.Size(658, 30);
|
|
| 445 |
this.label53.Size = new System.Drawing.Size(650, 30);
|
|
| 444 | 446 |
this.label53.TabIndex = 178; |
| 445 | 447 |
this.label53.Text = "施 工 管 理"; |
| 446 | 448 |
this.label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 451 | 453 |
this.label63.BackColor = System.Drawing.Color.SkyBlue; |
| 452 | 454 |
this.label63.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 453 | 455 |
this.label63.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 454 |
this.label63.Location = new System.Drawing.Point(677, 0);
|
|
| 456 |
this.label63.Location = new System.Drawing.Point(666, 0);
|
|
| 455 | 457 |
this.label63.Name = "label63"; |
| 456 |
this.label63.Size = new System.Drawing.Size(660, 30);
|
|
| 458 |
this.label63.Size = new System.Drawing.Size(651, 30);
|
|
| 457 | 459 |
this.label63.TabIndex = 0; |
| 458 | 460 |
this.label63.Text = "受注(積算・見積もり)管理"; |
| 459 | 461 |
this.label63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 466 | 468 |
this.label3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 467 | 469 |
this.label3.Location = new System.Drawing.Point(3, 0); |
| 468 | 470 |
this.label3.Name = "label3"; |
| 469 |
this.label3.Size = new System.Drawing.Size(658, 30);
|
|
| 471 |
this.label3.Size = new System.Drawing.Size(650, 30);
|
|
| 470 | 472 |
this.label3.TabIndex = 0; |
| 471 | 473 |
this.label3.Text = "工 事 情 報"; |
| 472 | 474 |
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 477 | 479 |
| System.Windows.Forms.AnchorStyles.Left) |
| 478 | 480 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 479 | 481 |
this.panel1.BackColor = System.Drawing.Color.RoyalBlue; |
| 482 |
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 480 | 483 |
this.panel1.Controls.Add(this.label114); |
| 481 | 484 |
this.panel1.Controls.Add(this.label115); |
| 482 | 485 |
this.panel1.Controls.Add(this.txtInput07); |
| ... | ... | |
| 524 | 527 |
this.panel1.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 525 | 528 |
this.panel1.Location = new System.Drawing.Point(3, 33); |
| 526 | 529 |
this.panel1.Name = "panel1"; |
| 527 |
this.panel1.Size = new System.Drawing.Size(658, 994);
|
|
| 530 |
this.panel1.Size = new System.Drawing.Size(650, 994);
|
|
| 528 | 531 |
this.panel1.TabIndex = 1; |
| 529 | 532 |
// |
| 530 | 533 |
// label114 |
| 531 | 534 |
// |
| 532 | 535 |
this.label114.BackColor = System.Drawing.Color.CornflowerBlue; |
| 533 | 536 |
this.label114.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 534 |
this.label114.Location = new System.Drawing.Point(379, 692);
|
|
| 537 |
this.label114.Location = new System.Drawing.Point(384, 692);
|
|
| 535 | 538 |
this.label114.Name = "label114"; |
| 536 |
this.label114.Size = new System.Drawing.Size(250, 30);
|
|
| 539 |
this.label114.Size = new System.Drawing.Size(255, 30);
|
|
| 537 | 540 |
this.label114.TabIndex = 175; |
| 538 | 541 |
this.label114.Text = "担 当 者"; |
| 539 | 542 |
this.label114.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 544 | 547 |
this.label115.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 545 | 548 |
this.label115.Location = new System.Drawing.Point(129, 692); |
| 546 | 549 |
this.label115.Name = "label115"; |
| 547 |
this.label115.Size = new System.Drawing.Size(250, 30);
|
|
| 550 |
this.label115.Size = new System.Drawing.Size(255, 30);
|
|
| 548 | 551 |
this.label115.TabIndex = 176; |
| 549 | 552 |
this.label115.Text = "部 署"; |
| 550 | 553 |
this.label115.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 558 | 561 |
this.txtInput07.Location = new System.Drawing.Point(129, 3); |
| 559 | 562 |
this.txtInput07.MaxLength = 120; |
| 560 | 563 |
this.txtInput07.Name = "txtInput07"; |
| 561 |
this.txtInput07.Size = new System.Drawing.Size(528, 26);
|
|
| 564 |
this.txtInput07.Size = new System.Drawing.Size(507, 26);
|
|
| 562 | 565 |
this.txtInput07.TabIndex = 2; |
| 563 | 566 |
this.txtInput07.TextChanged += new System.EventHandler(this.valueChange); |
| 564 | 567 |
this.txtInput07.Validated += new System.EventHandler(this.txtInput07_Validated); |
| ... | ... | |
| 588 | 591 |
this.label8.Text = "工事場所"; |
| 589 | 592 |
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 590 | 593 |
// |
| 591 |
// comboBoxEX1 |
|
| 592 |
// |
|
| 593 |
this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 594 |
this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 595 |
this.comboBoxEX1.FormattingEnabled = true; |
|
| 596 |
this.comboBoxEX1.Location = new System.Drawing.Point(129, 724); |
|
| 597 |
this.comboBoxEX1.Name = "comboBoxEX1"; |
|
| 598 |
this.comboBoxEX1.Size = new System.Drawing.Size(250, 27); |
|
| 599 |
this.comboBoxEX1.TabIndex = 22; |
|
| 600 |
this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged); |
|
| 601 |
this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange); |
|
| 602 |
// |
|
| 603 |
// cmbDisplayPerson |
|
| 604 |
// |
|
| 605 |
this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 606 |
this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 607 |
this.cmbDisplayPerson.FormattingEnabled = true; |
|
| 608 |
this.cmbDisplayPerson.Location = new System.Drawing.Point(379, 724); |
|
| 609 |
this.cmbDisplayPerson.Name = "cmbDisplayPerson"; |
|
| 610 |
this.cmbDisplayPerson.Size = new System.Drawing.Size(250, 27); |
|
| 611 |
this.cmbDisplayPerson.TabIndex = 23; |
|
| 612 |
this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange); |
|
| 613 |
// |
|
| 614 | 594 |
// label4 |
| 615 | 595 |
// |
| 616 | 596 |
this.label4.BackColor = System.Drawing.Color.CornflowerBlue; |
| ... | ... | |
| 676 | 656 |
this.rdbEstimateType1.UseVisualStyleBackColor = false; |
| 677 | 657 |
this.rdbEstimateType1.CheckedChanged += new System.EventHandler(this.valueChange); |
| 678 | 658 |
// |
| 679 |
// cmbConstructionType |
|
| 680 |
// |
|
| 681 |
this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 682 |
this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 683 |
this.cmbConstructionType.FormattingEnabled = true; |
|
| 684 |
this.cmbConstructionType.Location = new System.Drawing.Point(129, 602); |
|
| 685 |
this.cmbConstructionType.Name = "cmbConstructionType"; |
|
| 686 |
this.cmbConstructionType.Size = new System.Drawing.Size(300, 27); |
|
| 687 |
this.cmbConstructionType.TabIndex = 21; |
|
| 688 |
this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged); |
|
| 689 |
this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange); |
|
| 690 |
// |
|
| 691 | 659 |
// txtInput08 |
| 692 | 660 |
// |
| 693 | 661 |
this.txtInput08.ImeMode = System.Windows.Forms.ImeMode.Disable; |
| ... | ... | |
| 743 | 711 |
this.txtInput11.Location = new System.Drawing.Point(255, 123); |
| 744 | 712 |
this.txtInput11.MaxLength = 90; |
| 745 | 713 |
this.txtInput11.Name = "txtInput11"; |
| 746 |
this.txtInput11.Size = new System.Drawing.Size(402, 26);
|
|
| 714 |
this.txtInput11.Size = new System.Drawing.Size(381, 26);
|
|
| 747 | 715 |
this.txtInput11.TabIndex = 6; |
| 748 | 716 |
this.txtInput11.TextChanged += new System.EventHandler(this.valueChange); |
| 749 | 717 |
// |
| ... | ... | |
| 757 | 725 |
this.textBox1.MaxLength = 120; |
| 758 | 726 |
this.textBox1.Multiline = true; |
| 759 | 727 |
this.textBox1.Name = "textBox1"; |
| 760 |
this.textBox1.Size = new System.Drawing.Size(524, 54);
|
|
| 728 |
this.textBox1.Size = new System.Drawing.Size(507, 54);
|
|
| 761 | 729 |
this.textBox1.TabIndex = 24; |
| 762 | 730 |
this.textBox1.TextChanged += new System.EventHandler(this.valueChange); |
| 763 | 731 |
// |
| ... | ... | |
| 782 | 750 |
this.txtInput10.Location = new System.Drawing.Point(255, 93); |
| 783 | 751 |
this.txtInput10.MaxLength = 90; |
| 784 | 752 |
this.txtInput10.Name = "txtInput10"; |
| 785 |
this.txtInput10.Size = new System.Drawing.Size(402, 26);
|
|
| 753 |
this.txtInput10.Size = new System.Drawing.Size(381, 26);
|
|
| 786 | 754 |
this.txtInput10.TabIndex = 5; |
| 787 | 755 |
this.txtInput10.TextChanged += new System.EventHandler(this.valueChange); |
| 788 | 756 |
// |
| ... | ... | |
| 828 | 796 |
this.txtInput14.Location = new System.Drawing.Point(129, 245); |
| 829 | 797 |
this.txtInput14.MaxLength = 120; |
| 830 | 798 |
this.txtInput14.Name = "txtInput14"; |
| 831 |
this.txtInput14.Size = new System.Drawing.Size(528, 26);
|
|
| 799 |
this.txtInput14.Size = new System.Drawing.Size(507, 26);
|
|
| 832 | 800 |
this.txtInput14.TabIndex = 10; |
| 833 | 801 |
this.txtInput14.TextChanged += new System.EventHandler(this.valueChange); |
| 834 | 802 |
// |
| ... | ... | |
| 840 | 808 |
this.txtInput15.Location = new System.Drawing.Point(129, 275); |
| 841 | 809 |
this.txtInput15.MaxLength = 120; |
| 842 | 810 |
this.txtInput15.Name = "txtInput15"; |
| 843 |
this.txtInput15.Size = new System.Drawing.Size(528, 26);
|
|
| 811 |
this.txtInput15.Size = new System.Drawing.Size(507, 26);
|
|
| 844 | 812 |
this.txtInput15.TabIndex = 11; |
| 845 | 813 |
this.txtInput15.TextChanged += new System.EventHandler(this.valueChange); |
| 846 | 814 |
// |
| ... | ... | |
| 852 | 820 |
this.txtInput16.Location = new System.Drawing.Point(129, 305); |
| 853 | 821 |
this.txtInput16.MaxLength = 120; |
| 854 | 822 |
this.txtInput16.Name = "txtInput16"; |
| 855 |
this.txtInput16.Size = new System.Drawing.Size(528, 26);
|
|
| 823 |
this.txtInput16.Size = new System.Drawing.Size(507, 26);
|
|
| 856 | 824 |
this.txtInput16.TabIndex = 12; |
| 857 | 825 |
this.txtInput16.TextChanged += new System.EventHandler(this.valueChange); |
| 858 | 826 |
// |
| ... | ... | |
| 864 | 832 |
this.txtInput17.Location = new System.Drawing.Point(129, 335); |
| 865 | 833 |
this.txtInput17.MaxLength = 120; |
| 866 | 834 |
this.txtInput17.Name = "txtInput17"; |
| 867 |
this.txtInput17.Size = new System.Drawing.Size(528, 26);
|
|
| 835 |
this.txtInput17.Size = new System.Drawing.Size(507, 26);
|
|
| 868 | 836 |
this.txtInput17.TabIndex = 13; |
| 869 | 837 |
this.txtInput17.TextChanged += new System.EventHandler(this.valueChange); |
| 870 | 838 |
// |
| ... | ... | |
| 876 | 844 |
this.txtInput18.Location = new System.Drawing.Point(129, 365); |
| 877 | 845 |
this.txtInput18.MaxLength = 120; |
| 878 | 846 |
this.txtInput18.Name = "txtInput18"; |
| 879 |
this.txtInput18.Size = new System.Drawing.Size(528, 26);
|
|
| 847 |
this.txtInput18.Size = new System.Drawing.Size(507, 26);
|
|
| 880 | 848 |
this.txtInput18.TabIndex = 14; |
| 881 | 849 |
this.txtInput18.TextChanged += new System.EventHandler(this.valueChange); |
| 882 | 850 |
// |
| ... | ... | |
| 900 | 868 |
this.txtInput19.Location = new System.Drawing.Point(129, 395); |
| 901 | 869 |
this.txtInput19.MaxLength = 120; |
| 902 | 870 |
this.txtInput19.Name = "txtInput19"; |
| 903 |
this.txtInput19.Size = new System.Drawing.Size(528, 26);
|
|
| 871 |
this.txtInput19.Size = new System.Drawing.Size(507, 26);
|
|
| 904 | 872 |
this.txtInput19.TabIndex = 15; |
| 905 | 873 |
this.txtInput19.TextChanged += new System.EventHandler(this.valueChange); |
| 906 | 874 |
// |
| ... | ... | |
| 912 | 880 |
this.txtInput20.Location = new System.Drawing.Point(129, 425); |
| 913 | 881 |
this.txtInput20.MaxLength = 120; |
| 914 | 882 |
this.txtInput20.Name = "txtInput20"; |
| 915 |
this.txtInput20.Size = new System.Drawing.Size(528, 26);
|
|
| 883 |
this.txtInput20.Size = new System.Drawing.Size(507, 26);
|
|
| 916 | 884 |
this.txtInput20.TabIndex = 16; |
| 917 | 885 |
this.txtInput20.TextChanged += new System.EventHandler(this.valueChange); |
| 918 | 886 |
// |
| ... | ... | |
| 936 | 904 |
this.txtInput21.Location = new System.Drawing.Point(129, 455); |
| 937 | 905 |
this.txtInput21.MaxLength = 120; |
| 938 | 906 |
this.txtInput21.Name = "txtInput21"; |
| 939 |
this.txtInput21.Size = new System.Drawing.Size(528, 26);
|
|
| 907 |
this.txtInput21.Size = new System.Drawing.Size(507, 26);
|
|
| 940 | 908 |
this.txtInput21.TabIndex = 17; |
| 941 | 909 |
this.txtInput21.TextChanged += new System.EventHandler(this.valueChange); |
| 942 | 910 |
// |
| ... | ... | |
| 948 | 916 |
this.txtInput22.Location = new System.Drawing.Point(129, 485); |
| 949 | 917 |
this.txtInput22.MaxLength = 120; |
| 950 | 918 |
this.txtInput22.Name = "txtInput22"; |
| 951 |
this.txtInput22.Size = new System.Drawing.Size(528, 26);
|
|
| 919 |
this.txtInput22.Size = new System.Drawing.Size(507, 26);
|
|
| 952 | 920 |
this.txtInput22.TabIndex = 18; |
| 953 | 921 |
this.txtInput22.TextChanged += new System.EventHandler(this.valueChange); |
| 954 | 922 |
// |
| ... | ... | |
| 972 | 940 |
this.txtInput23.Location = new System.Drawing.Point(129, 515); |
| 973 | 941 |
this.txtInput23.MaxLength = 120; |
| 974 | 942 |
this.txtInput23.Name = "txtInput23"; |
| 975 |
this.txtInput23.Size = new System.Drawing.Size(528, 26);
|
|
| 943 |
this.txtInput23.Size = new System.Drawing.Size(507, 26);
|
|
| 976 | 944 |
this.txtInput23.TabIndex = 19; |
| 977 | 945 |
this.txtInput23.TextChanged += new System.EventHandler(this.valueChange); |
| 978 | 946 |
// |
| ... | ... | |
| 984 | 952 |
this.txtInput24.Location = new System.Drawing.Point(129, 544); |
| 985 | 953 |
this.txtInput24.MaxLength = 120; |
| 986 | 954 |
this.txtInput24.Name = "txtInput24"; |
| 987 |
this.txtInput24.Size = new System.Drawing.Size(528, 26);
|
|
| 955 |
this.txtInput24.Size = new System.Drawing.Size(507, 26);
|
|
| 988 | 956 |
this.txtInput24.TabIndex = 20; |
| 989 | 957 |
this.txtInput24.TextChanged += new System.EventHandler(this.valueChange); |
| 990 | 958 |
// |
| ... | ... | |
| 1075 | 1043 |
this.label5.Text = "発 注 者"; |
| 1076 | 1044 |
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1077 | 1045 |
// |
| 1078 |
// cmbOrdersDivision |
|
| 1079 |
// |
|
| 1080 |
this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
|
| 1081 |
| System.Windows.Forms.AnchorStyles.Right))); |
|
| 1082 |
this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
|
|
| 1083 |
"株式会社", |
|
| 1084 |
"有限会社", |
|
| 1085 |
"合名会社", |
|
| 1086 |
"合資会社", |
|
| 1087 |
"合同会社"}); |
|
| 1088 |
this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 1089 |
this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 1090 |
this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1091 |
this.cmbOrdersDivision.FormattingEnabled = true; |
|
| 1092 |
this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 152); |
|
| 1093 |
this.cmbOrdersDivision.Name = "cmbOrdersDivision"; |
|
| 1094 |
this.cmbOrdersDivision.Size = new System.Drawing.Size(528, 27); |
|
| 1095 |
this.cmbOrdersDivision.TabIndex = 7; |
|
| 1096 |
this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged); |
|
| 1097 |
this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1098 |
// |
|
| 1099 | 1046 |
// btnOrderer |
| 1100 | 1047 |
// |
| 1048 |
this.btnOrderer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
| 1101 | 1049 |
this.btnOrderer.BackColor = System.Drawing.Color.Gray; |
| 1102 | 1050 |
this.btnOrderer.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 1103 |
this.btnOrderer.Location = new System.Drawing.Point(507, 182);
|
|
| 1051 |
this.btnOrderer.Location = new System.Drawing.Point(516, 182);
|
|
| 1104 | 1052 |
this.btnOrderer.Name = "btnOrderer"; |
| 1105 | 1053 |
this.btnOrderer.Size = new System.Drawing.Size(120, 30); |
| 1106 | 1054 |
this.btnOrderer.TabIndex = 143; |
| ... | ... | |
| 1110 | 1058 |
this.btnOrderer.Visible = false; |
| 1111 | 1059 |
this.btnOrderer.Click += new System.EventHandler(this.btnOrderer_Click); |
| 1112 | 1060 |
// |
| 1113 |
// cmbDisplayOrderers |
|
| 1114 |
// |
|
| 1115 |
this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 1116 |
this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 1117 |
this.cmbDisplayOrderers.FormattingEnabled = true; |
|
| 1118 |
this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 183); |
|
| 1119 |
this.cmbDisplayOrderers.Name = "cmbDisplayOrderers"; |
|
| 1120 |
this.cmbDisplayOrderers.Size = new System.Drawing.Size(372, 27); |
|
| 1121 |
this.cmbDisplayOrderers.TabIndex = 8; |
|
| 1122 |
this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged); |
|
| 1123 |
this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1124 |
// |
|
| 1125 | 1061 |
// txtInput05 |
| 1126 | 1062 |
// |
| 1127 | 1063 |
this.txtInput05.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
| ... | ... | |
| 1132 | 1068 |
this.txtInput05.MaxLength = 120; |
| 1133 | 1069 |
this.txtInput05.Name = "txtInput05"; |
| 1134 | 1070 |
this.txtInput05.ReadOnly = true; |
| 1135 |
this.txtInput05.Size = new System.Drawing.Size(528, 26);
|
|
| 1071 |
this.txtInput05.Size = new System.Drawing.Size(507, 26);
|
|
| 1136 | 1072 |
this.txtInput05.TabIndex = 9; |
| 1137 | 1073 |
this.txtInput05.TextChanged += new System.EventHandler(this.valueChange); |
| 1138 | 1074 |
// |
| ... | ... | |
| 1142 | 1078 |
| System.Windows.Forms.AnchorStyles.Left) |
| 1143 | 1079 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 1144 | 1080 |
this.panel4.BackColor = System.Drawing.Color.SkyBlue; |
| 1081 |
this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1145 | 1082 |
this.panel4.Controls.Add(this.btnChangePrice); |
| 1146 | 1083 |
this.panel4.Controls.Add(this.label101); |
| 1147 | 1084 |
this.panel4.Controls.Add(this.label100); |
| ... | ... | |
| 1199 | 1136 |
this.panel4.Controls.Add(this.label32); |
| 1200 | 1137 |
this.panel4.Controls.Add(this.panel6); |
| 1201 | 1138 |
this.panel4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 1202 |
this.panel4.Location = new System.Drawing.Point(677, 33);
|
|
| 1139 |
this.panel4.Location = new System.Drawing.Point(666, 33);
|
|
| 1203 | 1140 |
this.panel4.Name = "panel4"; |
| 1204 |
this.panel4.Size = new System.Drawing.Size(660, 994);
|
|
| 1141 |
this.panel4.Size = new System.Drawing.Size(651, 994);
|
|
| 1205 | 1142 |
this.panel4.TabIndex = 2; |
| 1206 | 1143 |
// |
| 1207 | 1144 |
// btnChangePrice |
| ... | ... | |
| 1209 | 1146 |
this.btnChangePrice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
| 1210 | 1147 |
this.btnChangePrice.BackColor = System.Drawing.Color.Gold; |
| 1211 | 1148 |
this.btnChangePrice.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 1212 |
this.btnChangePrice.Location = new System.Drawing.Point(408, 138);
|
|
| 1149 |
this.btnChangePrice.Location = new System.Drawing.Point(395, 138);
|
|
| 1213 | 1150 |
this.btnChangePrice.Name = "btnChangePrice"; |
| 1214 | 1151 |
this.btnChangePrice.Size = new System.Drawing.Size(120, 30); |
| 1215 | 1152 |
this.btnChangePrice.TabIndex = 192; |
| ... | ... | |
| 1287 | 1224 |
this.label30.Text = "税込\r\n受注決定金額"; |
| 1288 | 1225 |
this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1289 | 1226 |
// |
| 1290 |
// txtInput28 |
|
| 1291 |
// |
|
| 1292 |
this.txtInput28.BackColor = System.Drawing.Color.White; |
|
| 1293 |
this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1294 |
this.txtInput28.ForeColor = System.Drawing.Color.Black; |
|
| 1295 |
this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1296 |
this.txtInput28.Location = new System.Drawing.Point(128, 104); |
|
| 1297 |
this.txtInput28.MaxLength = 10; |
|
| 1298 |
this.txtInput28.Name = "txtInput28"; |
|
| 1299 |
this.txtInput28.Size = new System.Drawing.Size(274, 34); |
|
| 1300 |
this.txtInput28.TabIndex = 28; |
|
| 1301 |
this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1302 |
this.txtInput28.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1303 |
this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated); |
|
| 1304 |
// |
|
| 1305 | 1227 |
// label27 |
| 1306 | 1228 |
// |
| 1307 | 1229 |
this.label27.BackColor = System.Drawing.Color.MidnightBlue; |
| ... | ... | |
| 1315 | 1237 |
this.label27.Text = "税別\r\n受注決定金額"; |
| 1316 | 1238 |
this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1317 | 1239 |
// |
| 1318 |
// txtInput25 |
|
| 1319 |
// |
|
| 1320 |
this.txtInput25.BackColor = System.Drawing.Color.White; |
|
| 1321 |
this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1322 |
this.txtInput25.ForeColor = System.Drawing.Color.Black; |
|
| 1323 |
this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1324 |
this.txtInput25.Location = new System.Drawing.Point(128, 64); |
|
| 1325 |
this.txtInput25.MaxLength = 10; |
|
| 1326 |
this.txtInput25.Name = "txtInput25"; |
|
| 1327 |
this.txtInput25.Size = new System.Drawing.Size(274, 34); |
|
| 1328 |
this.txtInput25.TabIndex = 27; |
|
| 1329 |
this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1330 |
this.txtInput25.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1331 |
this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated); |
|
| 1332 |
// |
|
| 1333 | 1240 |
// lblTransferDate |
| 1334 | 1241 |
// |
| 1335 | 1242 |
this.lblTransferDate.BackColor = System.Drawing.SystemColors.Window; |
| ... | ... | |
| 1352 | 1259 |
this.label36.Text = "部署引継日"; |
| 1353 | 1260 |
this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1354 | 1261 |
// |
| 1355 |
// cmbTransferConstruction |
|
| 1356 |
// |
|
| 1357 |
this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 1358 |
this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 1359 |
this.cmbTransferConstruction.FormattingEnabled = true; |
|
| 1360 |
this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843); |
|
| 1361 |
this.cmbTransferConstruction.Name = "cmbTransferConstruction"; |
|
| 1362 |
this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27); |
|
| 1363 |
this.cmbTransferConstruction.TabIndex = 39; |
|
| 1364 |
this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged); |
|
| 1365 |
this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1366 |
// |
|
| 1367 | 1262 |
// txtInput26 |
| 1368 | 1263 |
// |
| 1369 | 1264 |
this.txtInput26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
| ... | ... | |
| 1374 | 1269 |
this.txtInput26.MaxLength = 120; |
| 1375 | 1270 |
this.txtInput26.Multiline = true; |
| 1376 | 1271 |
this.txtInput26.Name = "txtInput26"; |
| 1377 |
this.txtInput26.Size = new System.Drawing.Size(524, 54);
|
|
| 1272 |
this.txtInput26.Size = new System.Drawing.Size(508, 54);
|
|
| 1378 | 1273 |
this.txtInput26.TabIndex = 38; |
| 1379 | 1274 |
this.txtInput26.TextChanged += new System.EventHandler(this.valueChange); |
| 1380 | 1275 |
// |
| ... | ... | |
| 1414 | 1309 |
this.label33.Text = "見積提出期限"; |
| 1415 | 1310 |
this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1416 | 1311 |
// |
| 1417 |
// txtInput27 |
|
| 1418 |
// |
|
| 1419 |
this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1420 |
this.txtInput27.Location = new System.Drawing.Point(128, 33); |
|
| 1421 |
this.txtInput27.MaxLength = 10; |
|
| 1422 |
this.txtInput27.Name = "txtInput27"; |
|
| 1423 |
this.txtInput27.Size = new System.Drawing.Size(120, 26); |
|
| 1424 |
this.txtInput27.TabIndex = 26; |
|
| 1425 |
this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1426 |
this.txtInput27.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1427 |
// |
|
| 1428 |
// txtInput02 |
|
| 1429 |
// |
|
| 1430 |
this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1431 |
this.txtInput02.Location = new System.Drawing.Point(128, 182); |
|
| 1432 |
this.txtInput02.MaxLength = 10; |
|
| 1433 |
this.txtInput02.Name = "txtInput02"; |
|
| 1434 |
this.txtInput02.Size = new System.Drawing.Size(120, 26); |
|
| 1435 |
this.txtInput02.TabIndex = 29; |
|
| 1436 |
this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1437 |
this.txtInput02.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1438 |
this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged); |
|
| 1439 |
// |
|
| 1440 | 1312 |
// label24 |
| 1441 | 1313 |
// |
| 1442 | 1314 |
this.label24.BackColor = System.Drawing.Color.LightBlue; |
| ... | ... | |
| 1449 | 1321 |
this.label24.Text = "見積提出日"; |
| 1450 | 1322 |
this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1451 | 1323 |
// |
| 1452 |
// txtInput06 |
|
| 1453 |
// |
|
| 1454 |
this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1455 |
this.txtInput06.Location = new System.Drawing.Point(128, 212); |
|
| 1456 |
this.txtInput06.MaxLength = 10; |
|
| 1457 |
this.txtInput06.Name = "txtInput06"; |
|
| 1458 |
this.txtInput06.Size = new System.Drawing.Size(120, 26); |
|
| 1459 |
this.txtInput06.TabIndex = 30; |
|
| 1460 |
this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1461 |
this.txtInput06.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1462 |
this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1463 |
// |
|
| 1464 | 1324 |
// label22 |
| 1465 | 1325 |
// |
| 1466 | 1326 |
this.label22.BackColor = System.Drawing.Color.LightBlue; |
| ... | ... | |
| 1473 | 1333 |
this.label22.Text = "見積有効期限"; |
| 1474 | 1334 |
this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1475 | 1335 |
// |
| 1476 |
// txtInput12 |
|
| 1477 |
// |
|
| 1478 |
this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1479 |
this.txtInput12.Location = new System.Drawing.Point(128, 302); |
|
| 1480 |
this.txtInput12.MaxLength = 10; |
|
| 1481 |
this.txtInput12.Name = "txtInput12"; |
|
| 1482 |
this.txtInput12.Size = new System.Drawing.Size(120, 26); |
|
| 1483 |
this.txtInput12.TabIndex = 31; |
|
| 1484 |
this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1485 |
this.txtInput12.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1486 |
this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1487 |
// |
|
| 1488 | 1336 |
// label12 |
| 1489 | 1337 |
// |
| 1490 | 1338 |
this.label12.BackColor = System.Drawing.Color.LightBlue; |
| ... | ... | |
| 1497 | 1345 |
this.label12.Text = "工事期間 開始"; |
| 1498 | 1346 |
this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1499 | 1347 |
// |
| 1500 |
// txtInput13 |
|
| 1501 |
// |
|
| 1502 |
this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1503 |
this.txtInput13.Location = new System.Drawing.Point(128, 332); |
|
| 1504 |
this.txtInput13.MaxLength = 10; |
|
| 1505 |
this.txtInput13.Name = "txtInput13"; |
|
| 1506 |
this.txtInput13.Size = new System.Drawing.Size(120, 26); |
|
| 1507 |
this.txtInput13.TabIndex = 32; |
|
| 1508 |
this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1509 |
this.txtInput13.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1510 |
this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1511 |
// |
|
| 1512 | 1348 |
// label15 |
| 1513 | 1349 |
// |
| 1514 | 1350 |
this.label15.BackColor = System.Drawing.Color.LightBlue; |
| ... | ... | |
| 1631 | 1467 |
this.label71.Text = "非受注日"; |
| 1632 | 1468 |
this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1633 | 1469 |
// |
| 1634 |
// textBoxEX2 |
|
| 1635 |
// |
|
| 1636 |
this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1637 |
this.textBoxEX2.Location = new System.Drawing.Point(128, 562); |
|
| 1638 |
this.textBoxEX2.MaxLength = 10; |
|
| 1639 |
this.textBoxEX2.Name = "textBoxEX2"; |
|
| 1640 |
this.textBoxEX2.Size = new System.Drawing.Size(120, 26); |
|
| 1641 |
this.textBoxEX2.TabIndex = 35; |
|
| 1642 |
this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1643 |
this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1644 |
this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1645 |
// |
|
| 1646 |
// textBoxEX1 |
|
| 1647 |
// |
|
| 1648 |
this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1649 |
this.textBoxEX1.Location = new System.Drawing.Point(128, 502); |
|
| 1650 |
this.textBoxEX1.MaxLength = 10; |
|
| 1651 |
this.textBoxEX1.Name = "textBoxEX1"; |
|
| 1652 |
this.textBoxEX1.Size = new System.Drawing.Size(120, 26); |
|
| 1653 |
this.textBoxEX1.TabIndex = 33; |
|
| 1654 |
this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1655 |
this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1656 |
this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1657 |
// |
|
| 1658 |
// txtInput03 |
|
| 1659 |
// |
|
| 1660 |
this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1661 |
this.txtInput03.Location = new System.Drawing.Point(128, 532); |
|
| 1662 |
this.txtInput03.MaxLength = 10; |
|
| 1663 |
this.txtInput03.Name = "txtInput03"; |
|
| 1664 |
this.txtInput03.Size = new System.Drawing.Size(120, 26); |
|
| 1665 |
this.txtInput03.TabIndex = 34; |
|
| 1666 |
this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1667 |
this.txtInput03.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1668 |
this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1669 |
// |
|
| 1670 | 1470 |
// label62 |
| 1671 | 1471 |
// |
| 1672 | 1472 |
this.label62.BackColor = System.Drawing.Color.Black; |
| ... | ... | |
| 1675 | 1475 |
this.label62.ForeColor = System.Drawing.Color.Red; |
| 1676 | 1476 |
this.label62.Location = new System.Drawing.Point(254, 533); |
| 1677 | 1477 |
this.label62.Name = "label62"; |
| 1678 |
this.label62.Size = new System.Drawing.Size(386, 25);
|
|
| 1478 |
this.label62.Size = new System.Drawing.Size(387, 25);
|
|
| 1679 | 1479 |
this.label62.TabIndex = 170; |
| 1680 | 1480 |
this.label62.Text = "※「受 注 日」は受注が確定した日を入力して下さい"; |
| 1681 | 1481 |
this.label62.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 1688 | 1488 |
this.label72.ForeColor = System.Drawing.Color.Red; |
| 1689 | 1489 |
this.label72.Location = new System.Drawing.Point(254, 503); |
| 1690 | 1490 |
this.label72.Name = "label72"; |
| 1691 |
this.label72.Size = new System.Drawing.Size(386, 25);
|
|
| 1491 |
this.label72.Size = new System.Drawing.Size(387, 25);
|
|
| 1692 | 1492 |
this.label72.TabIndex = 171; |
| 1693 | 1493 |
this.label72.Text = "※「仮受注日」は仮受注が確定した日を入力して下さい"; |
| 1694 | 1494 |
this.label72.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 1701 | 1501 |
this.label73.ForeColor = System.Drawing.Color.Red; |
| 1702 | 1502 |
this.label73.Location = new System.Drawing.Point(254, 563); |
| 1703 | 1503 |
this.label73.Name = "label73"; |
| 1704 |
this.label73.Size = new System.Drawing.Size(386, 25);
|
|
| 1504 |
this.label73.Size = new System.Drawing.Size(387, 25);
|
|
| 1705 | 1505 |
this.label73.TabIndex = 169; |
| 1706 | 1506 |
this.label73.Text = "※「非受注日」は非受注が確定した日を入力して下さい"; |
| 1707 | 1507 |
this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 1727 | 1527 |
this.label55.ForeColor = System.Drawing.Color.Red; |
| 1728 | 1528 |
this.label55.Location = new System.Drawing.Point(254, 630); |
| 1729 | 1529 |
this.label55.Name = "label55"; |
| 1730 |
this.label55.Size = new System.Drawing.Size(386, 30);
|
|
| 1530 |
this.label55.Size = new System.Drawing.Size(387, 30);
|
|
| 1731 | 1531 |
this.label55.TabIndex = 173; |
| 1732 | 1532 |
this.label55.Text = "※「施工開始予定日」はおおよその工事開始日(現場着手時期)を\r\n「受注日」入力時に入力して下さい"; |
| 1733 | 1533 |
this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| 1734 | 1534 |
// |
| 1735 |
// txtInput38 |
|
| 1736 |
// |
|
| 1737 |
this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1738 |
this.txtInput38.Location = new System.Drawing.Point(128, 632); |
|
| 1739 |
this.txtInput38.MaxLength = 10; |
|
| 1740 |
this.txtInput38.Name = "txtInput38"; |
|
| 1741 |
this.txtInput38.Size = new System.Drawing.Size(120, 26); |
|
| 1742 |
this.txtInput38.TabIndex = 36; |
|
| 1743 |
this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1744 |
this.txtInput38.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1745 |
this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1746 |
// |
|
| 1747 | 1535 |
// label54 |
| 1748 | 1536 |
// |
| 1749 | 1537 |
this.label54.BackColor = System.Drawing.Color.LightBlue; |
| ... | ... | |
| 1757 | 1545 |
this.label54.Text = "受注時施工完了予定日"; |
| 1758 | 1546 |
this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 1759 | 1547 |
// |
| 1760 |
// txtInput34 |
|
| 1761 |
// |
|
| 1762 |
this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 1763 |
this.txtInput34.Location = new System.Drawing.Point(128, 662); |
|
| 1764 |
this.txtInput34.MaxLength = 10; |
|
| 1765 |
this.txtInput34.Name = "txtInput34"; |
|
| 1766 |
this.txtInput34.Size = new System.Drawing.Size(120, 26); |
|
| 1767 |
this.txtInput34.TabIndex = 37; |
|
| 1768 |
this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 1769 |
this.txtInput34.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1770 |
this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 1771 |
// |
|
| 1772 | 1548 |
// label66 |
| 1773 | 1549 |
// |
| 1774 | 1550 |
this.label66.BackColor = System.Drawing.Color.Black; |
| ... | ... | |
| 1777 | 1553 |
this.label66.ForeColor = System.Drawing.Color.Red; |
| 1778 | 1554 |
this.label66.Location = new System.Drawing.Point(254, 660); |
| 1779 | 1555 |
this.label66.Name = "label66"; |
| 1780 |
this.label66.Size = new System.Drawing.Size(386, 30);
|
|
| 1556 |
this.label66.Size = new System.Drawing.Size(387, 30);
|
|
| 1781 | 1557 |
this.label66.TabIndex = 177; |
| 1782 | 1558 |
this.label66.Text = "※「施工完了予定日」はおおよその工事完了日(現場完了時期)を\r\n「受注日」入力時に入力して下さい"; |
| 1783 | 1559 |
this.label66.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 1790 | 1566 |
this.label56.ForeColor = System.Drawing.Color.Red; |
| 1791 | 1567 |
this.label56.Location = new System.Drawing.Point(1, 690); |
| 1792 | 1568 |
this.label56.Name = "label56"; |
| 1793 |
this.label56.Size = new System.Drawing.Size(641, 30);
|
|
| 1569 |
this.label56.Size = new System.Drawing.Size(640, 30);
|
|
| 1794 | 1570 |
this.label56.TabIndex = 178; |
| 1795 | 1571 |
this.label56.Text = "※「受注日」・「開始予定日」・「完了予定日」は人員配置状況に転記されますので必ず記入して下さい"; |
| 1796 | 1572 |
this.label56.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 1924 | 1700 |
| System.Windows.Forms.AnchorStyles.Left) |
| 1925 | 1701 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 1926 | 1702 |
this.panel7.BackColor = System.Drawing.Color.YellowGreen; |
| 1703 |
this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1927 | 1704 |
this.panel7.Controls.Add(this.lblFluctuationText); |
| 1928 | 1705 |
this.panel7.Controls.Add(this.pnlFluctuation); |
| 1929 | 1706 |
this.panel7.Controls.Add(this.comboBoxEX4); |
| ... | ... | |
| 1962 | 1739 |
this.panel7.Controls.Add(this.label21); |
| 1963 | 1740 |
this.panel7.Location = new System.Drawing.Point(3, 1073); |
| 1964 | 1741 |
this.panel7.Name = "panel7"; |
| 1965 |
this.panel7.Size = new System.Drawing.Size(658, 994);
|
|
| 1742 |
this.panel7.Size = new System.Drawing.Size(650, 994);
|
|
| 1966 | 1743 |
this.panel7.TabIndex = 179; |
| 1967 | 1744 |
// |
| 1968 | 1745 |
// lblFluctuationText |
| ... | ... | |
| 1973 | 1750 |
this.lblFluctuationText.ForeColor = System.Drawing.Color.Red; |
| 1974 | 1751 |
this.lblFluctuationText.Location = new System.Drawing.Point(0, 417); |
| 1975 | 1752 |
this.lblFluctuationText.Name = "lblFluctuationText"; |
| 1976 |
this.lblFluctuationText.Size = new System.Drawing.Size(636, 30);
|
|
| 1753 |
this.lblFluctuationText.Size = new System.Drawing.Size(640, 30);
|
|
| 1977 | 1754 |
this.lblFluctuationText.TabIndex = 185; |
| 1978 | 1755 |
this.lblFluctuationText.Text = "※増減工事が発生した時点で増減工事有をチェックして下さい"; |
| 1979 | 1756 |
this.lblFluctuationText.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 1986 | 1763 |
this.pnlFluctuation.Controls.Add(this.rdbNotFluctuation); |
| 1987 | 1764 |
this.pnlFluctuation.Location = new System.Drawing.Point(0, 372); |
| 1988 | 1765 |
this.pnlFluctuation.Name = "pnlFluctuation"; |
| 1989 |
this.pnlFluctuation.Size = new System.Drawing.Size(636, 44);
|
|
| 1766 |
this.pnlFluctuation.Size = new System.Drawing.Size(639, 44);
|
|
| 1990 | 1767 |
this.pnlFluctuation.TabIndex = 184; |
| 1991 | 1768 |
// |
| 1992 | 1769 |
// btnFluctuation |
| ... | ... | |
| 2026 | 1803 |
this.rdbNotFluctuation.UseVisualStyleBackColor = true; |
| 2027 | 1804 |
this.rdbNotFluctuation.CheckedChanged += new System.EventHandler(this.rdbFluctuation_CheckedChanged); |
| 2028 | 1805 |
// |
| 2029 |
// comboBoxEX4 |
|
| 2030 |
// |
|
| 2031 |
this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 2032 |
this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 2033 |
this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2034 |
this.comboBoxEX4.FormattingEnabled = true; |
|
| 2035 |
this.comboBoxEX4.Location = new System.Drawing.Point(129, 93); |
|
| 2036 |
this.comboBoxEX4.Name = "comboBoxEX4"; |
|
| 2037 |
this.comboBoxEX4.Size = new System.Drawing.Size(250, 27); |
|
| 2038 |
this.comboBoxEX4.TabIndex = 44; |
|
| 2039 |
this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged); |
|
| 2040 |
// |
|
| 2041 |
// comboBoxEX3 |
|
| 2042 |
// |
|
| 2043 |
this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 2044 |
this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 2045 |
this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2046 |
this.comboBoxEX3.FormattingEnabled = true; |
|
| 2047 |
this.comboBoxEX3.Location = new System.Drawing.Point(129, 63); |
|
| 2048 |
this.comboBoxEX3.Name = "comboBoxEX3"; |
|
| 2049 |
this.comboBoxEX3.Size = new System.Drawing.Size(250, 27); |
|
| 2050 |
this.comboBoxEX3.TabIndex = 42; |
|
| 2051 |
this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged); |
|
| 2052 |
// |
|
| 2053 |
// cmbDisplayConstrSubPerson |
|
| 2054 |
// |
|
| 2055 |
this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 2056 |
this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 2057 |
this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2058 |
this.cmbDisplayConstrSubPerson.FormattingEnabled = true; |
|
| 2059 |
this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(379, 63); |
|
| 2060 |
this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson"; |
|
| 2061 |
this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(250, 27); |
|
| 2062 |
this.cmbDisplayConstrSubPerson.TabIndex = 43; |
|
| 2063 |
// |
|
| 2064 | 1806 |
// label46 |
| 2065 | 1807 |
// |
| 2066 | 1808 |
this.label46.BackColor = System.Drawing.Color.Black; |
| ... | ... | |
| 2069 | 1811 |
this.label46.ForeColor = System.Drawing.Color.Red; |
| 2070 | 1812 |
this.label46.Location = new System.Drawing.Point(257, 331); |
| 2071 | 1813 |
this.label46.Name = "label46"; |
| 2072 |
this.label46.Size = new System.Drawing.Size(379, 30);
|
|
| 1814 |
this.label46.Size = new System.Drawing.Size(382, 30);
|
|
| 2073 | 1815 |
this.label46.TabIndex = 182; |
| 2074 | 1816 |
this.label46.Text = "※現場施工完了した日に施工完了をチェックすると\r\n自動で入力されます(直接入力も可能です)"; |
| 2075 | 1817 |
this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 2084 | 1826 |
this.txtInput32.MaxLength = 120; |
| 2085 | 1827 |
this.txtInput32.Multiline = true; |
| 2086 | 1828 |
this.txtInput32.Name = "txtInput32"; |
| 2087 |
this.txtInput32.Size = new System.Drawing.Size(528, 54);
|
|
| 1829 |
this.txtInput32.Size = new System.Drawing.Size(507, 54);
|
|
| 2088 | 1830 |
this.txtInput32.TabIndex = 54; |
| 2089 | 1831 |
this.txtInput32.TextChanged += new System.EventHandler(this.valueChange); |
| 2090 | 1832 |
// |
| ... | ... | |
| 2108 | 1850 |
this.label51.ForeColor = System.Drawing.Color.Red; |
| 2109 | 1851 |
this.label51.Location = new System.Drawing.Point(257, 301); |
| 2110 | 1852 |
this.label51.Name = "label51"; |
| 2111 |
this.label51.Size = new System.Drawing.Size(379, 30);
|
|
| 1853 |
this.label51.Size = new System.Drawing.Size(382, 30);
|
|
| 2112 | 1854 |
this.label51.TabIndex = 181; |
| 2113 | 1855 |
this.label51.Text = "※現場着手した日に施工開始をチェックすると\r\n自動で入力されます(直接入力も可能です)"; |
| 2114 | 1856 |
this.label51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
| ... | ... | |
| 2123 | 1865 |
this.txtInput31.MaxLength = 120; |
| 2124 | 1866 |
this.txtInput31.Multiline = true; |
| 2125 | 1867 |
this.txtInput31.Name = "txtInput31"; |
| 2126 |
this.txtInput31.Size = new System.Drawing.Size(528, 54);
|
|
| 1868 |
this.txtInput31.Size = new System.Drawing.Size(507, 54);
|
|
| 2127 | 1869 |
this.txtInput31.TabIndex = 53; |
| 2128 | 1870 |
this.txtInput31.TextChanged += new System.EventHandler(this.valueChange); |
| 2129 | 1871 |
// |
| ... | ... | |
| 2152 | 1894 |
this.label50.Text = "施工開始日"; |
| 2153 | 1895 |
this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 2154 | 1896 |
// |
| 2155 |
// textBoxEX3 |
|
| 2156 |
// |
|
| 2157 |
this.textBoxEX3.Enabled = false; |
|
| 2158 |
this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2159 |
this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2160 |
this.textBoxEX3.Location = new System.Drawing.Point(129, 273); |
|
| 2161 |
this.textBoxEX3.MaxLength = 10; |
|
| 2162 |
this.textBoxEX3.Name = "textBoxEX3"; |
|
| 2163 |
this.textBoxEX3.Size = new System.Drawing.Size(120, 26); |
|
| 2164 |
this.textBoxEX3.TabIndex = 50; |
|
| 2165 |
this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2166 |
this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2167 |
this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2168 |
// |
|
| 2169 |
// txtInput35 |
|
| 2170 |
// |
|
| 2171 |
this.txtInput35.Enabled = false; |
|
| 2172 |
this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2173 |
this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2174 |
this.txtInput35.Location = new System.Drawing.Point(129, 303); |
|
| 2175 |
this.txtInput35.MaxLength = 10; |
|
| 2176 |
this.txtInput35.Name = "txtInput35"; |
|
| 2177 |
this.txtInput35.Size = new System.Drawing.Size(120, 26); |
|
| 2178 |
this.txtInput35.TabIndex = 51; |
|
| 2179 |
this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2180 |
this.txtInput35.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2181 |
this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2182 |
// |
|
| 2183 | 1897 |
// label25 |
| 2184 | 1898 |
// |
| 2185 | 1899 |
this.label25.BackColor = System.Drawing.Color.LightGreen; |
| ... | ... | |
| 2192 | 1906 |
this.label25.Text = "施工完了日"; |
| 2193 | 1907 |
this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 2194 | 1908 |
// |
| 2195 |
// txtInput04 |
|
| 2196 |
// |
|
| 2197 |
this.txtInput04.Enabled = false; |
|
| 2198 |
this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2199 |
this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2200 |
this.txtInput04.Location = new System.Drawing.Point(129, 333); |
|
| 2201 |
this.txtInput04.MaxLength = 10; |
|
| 2202 |
this.txtInput04.Name = "txtInput04"; |
|
| 2203 |
this.txtInput04.Size = new System.Drawing.Size(120, 26); |
|
| 2204 |
this.txtInput04.TabIndex = 52; |
|
| 2205 |
this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2206 |
this.txtInput04.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2207 |
this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2208 |
// |
|
| 2209 | 1909 |
// label42 |
| 2210 | 1910 |
// |
| 2211 | 1911 |
this.label42.BackColor = System.Drawing.Color.Black; |
| ... | ... | |
| 2213 | 1913 |
this.label42.ForeColor = System.Drawing.Color.Red; |
| 2214 | 1914 |
this.label42.Location = new System.Drawing.Point(161, 212); |
| 2215 | 1915 |
this.label42.Name = "label42"; |
| 2216 |
this.label42.Size = new System.Drawing.Size(471, 40);
|
|
| 1916 |
this.label42.Size = new System.Drawing.Size(478, 40);
|
|
| 2217 | 1917 |
this.label42.TabIndex = 174; |
| 2218 | 1918 |
this.label42.Text = "※「着工」・「完成」は契約書に基づき記入して下さい\r\n(当社、発給の契約書・施工計画書に記載されます)"; |
| 2219 | 1919 |
this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 2220 | 1920 |
// |
| 2221 |
// textBoxEX5 |
|
| 2222 |
// |
|
| 2223 |
this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2224 |
this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2225 |
this.textBoxEX5.Location = new System.Drawing.Point(362, 183); |
|
| 2226 |
this.textBoxEX5.MaxLength = 10; |
|
| 2227 |
this.textBoxEX5.Name = "textBoxEX5"; |
|
| 2228 |
this.textBoxEX5.Size = new System.Drawing.Size(120, 26); |
|
| 2229 |
this.textBoxEX5.TabIndex = 49; |
|
| 2230 |
this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2231 |
this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2232 |
this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2233 |
// |
|
| 2234 |
// textBoxEX4 |
|
| 2235 |
// |
|
| 2236 |
this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2237 |
this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2238 |
this.textBoxEX4.Location = new System.Drawing.Point(362, 153); |
|
| 2239 |
this.textBoxEX4.MaxLength = 10; |
|
| 2240 |
this.textBoxEX4.Name = "textBoxEX4"; |
|
| 2241 |
this.textBoxEX4.Size = new System.Drawing.Size(120, 26); |
|
| 2242 |
this.textBoxEX4.TabIndex = 47; |
|
| 2243 |
this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2244 |
this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2245 |
this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2246 |
// |
|
| 2247 |
// txtInput29 |
|
| 2248 |
// |
|
| 2249 |
this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2250 |
this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2251 |
this.txtInput29.Location = new System.Drawing.Point(161, 153); |
|
| 2252 |
this.txtInput29.MaxLength = 10; |
|
| 2253 |
this.txtInput29.Name = "txtInput29"; |
|
| 2254 |
this.txtInput29.Size = new System.Drawing.Size(120, 26); |
|
| 2255 |
this.txtInput29.TabIndex = 46; |
|
| 2256 |
this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2257 |
this.txtInput29.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2258 |
this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2259 |
// |
|
| 2260 |
// txtInput30 |
|
| 2261 |
// |
|
| 2262 |
this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2263 |
this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2264 |
this.txtInput30.Location = new System.Drawing.Point(161, 183); |
|
| 2265 |
this.txtInput30.MaxLength = 10; |
|
| 2266 |
this.txtInput30.Name = "txtInput30"; |
|
| 2267 |
this.txtInput30.Size = new System.Drawing.Size(120, 26); |
|
| 2268 |
this.txtInput30.TabIndex = 48; |
|
| 2269 |
this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2270 |
this.txtInput30.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2271 |
this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2272 |
// |
|
| 2273 | 1921 |
// label81 |
| 2274 | 1922 |
// |
| 2275 | 1923 |
this.label81.BackColor = System.Drawing.Color.LightGreen; |
| ... | ... | |
| 2366 | 2014 |
this.label31.Text = "工事指導"; |
| 2367 | 2015 |
this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 2368 | 2016 |
// |
| 2369 |
// cmbConstructionInstructor |
|
| 2370 |
// |
|
| 2371 |
this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 2372 |
this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 2373 |
this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2374 |
this.cmbConstructionInstructor.FormattingEnabled = true; |
|
| 2375 |
this.cmbConstructionInstructor.Location = new System.Drawing.Point(379, 93); |
|
| 2376 |
this.cmbConstructionInstructor.Name = "cmbConstructionInstructor"; |
|
| 2377 |
this.cmbConstructionInstructor.Size = new System.Drawing.Size(250, 27); |
|
| 2378 |
this.cmbConstructionInstructor.TabIndex = 45; |
|
| 2379 |
this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2380 |
// |
|
| 2381 |
// comboBoxEX2 |
|
| 2382 |
// |
|
| 2383 |
this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 2384 |
this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 2385 |
this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2386 |
this.comboBoxEX2.FormattingEnabled = true; |
|
| 2387 |
this.comboBoxEX2.Location = new System.Drawing.Point(129, 33); |
|
| 2388 |
this.comboBoxEX2.Name = "comboBoxEX2"; |
|
| 2389 |
this.comboBoxEX2.Size = new System.Drawing.Size(250, 27); |
|
| 2390 |
this.comboBoxEX2.TabIndex = 40; |
|
| 2391 |
this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged); |
|
| 2392 |
this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2393 |
// |
|
| 2394 |
// cmbDisplayConstructionPerson |
|
| 2395 |
// |
|
| 2396 |
this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
| 2397 |
this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
| 2398 |
this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 2399 |
this.cmbDisplayConstructionPerson.FormattingEnabled = true; |
|
| 2400 |
this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(379, 33); |
|
| 2401 |
this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson"; |
|
| 2402 |
this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(250, 27); |
|
| 2403 |
this.cmbDisplayConstructionPerson.TabIndex = 41; |
|
| 2404 |
this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayConstructionPerson_SelectedIndexChanged); |
|
| 2405 |
this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2406 |
// |
|
| 2407 | 2017 |
// label113 |
| 2408 | 2018 |
// |
| 2409 | 2019 |
this.label113.BackColor = System.Drawing.Color.LightGreen; |
| 2410 | 2020 |
this.label113.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 2411 |
this.label113.Location = new System.Drawing.Point(379, 1);
|
|
| 2021 |
this.label113.Location = new System.Drawing.Point(384, 1);
|
|
| 2412 | 2022 |
this.label113.Name = "label113"; |
| 2413 |
this.label113.Size = new System.Drawing.Size(250, 30);
|
|
| 2023 |
this.label113.Size = new System.Drawing.Size(255, 30);
|
|
| 2414 | 2024 |
this.label113.TabIndex = 16; |
| 2415 | 2025 |
this.label113.Text = "担 当 者"; |
| 2416 | 2026 |
this.label113.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 2421 | 2031 |
this.label76.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 2422 | 2032 |
this.label76.Location = new System.Drawing.Point(129, 1); |
| 2423 | 2033 |
this.label76.Name = "label76"; |
| 2424 |
this.label76.Size = new System.Drawing.Size(250, 30);
|
|
| 2034 |
this.label76.Size = new System.Drawing.Size(255, 30);
|
|
| 2425 | 2035 |
this.label76.TabIndex = 16; |
| 2426 | 2036 |
this.label76.Text = "部 署"; |
| 2427 | 2037 |
this.label76.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 2454 | 2064 |
this.label40.BackColor = System.Drawing.Color.LawnGreen; |
| 2455 | 2065 |
this.label40.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 2456 | 2066 |
this.label40.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 2457 |
this.label40.Location = new System.Drawing.Point(677, 1040);
|
|
| 2067 |
this.label40.Location = new System.Drawing.Point(666, 1040);
|
|
| 2458 | 2068 |
this.label40.Name = "label40"; |
| 2459 |
this.label40.Size = new System.Drawing.Size(660, 30);
|
|
| 2069 |
this.label40.Size = new System.Drawing.Size(651, 30);
|
|
| 2460 | 2070 |
this.label40.TabIndex = 178; |
| 2461 | 2071 |
this.label40.Text = "施 工 管 理"; |
| 2462 | 2072 |
this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 2467 | 2077 |
| System.Windows.Forms.AnchorStyles.Left) |
| 2468 | 2078 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 2469 | 2079 |
this.panel8.BackColor = System.Drawing.Color.LawnGreen; |
| 2080 |
this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 2470 | 2081 |
this.panel8.Controls.Add(this.label118); |
| 2471 | 2082 |
this.panel8.Controls.Add(this.label117); |
| 2472 | 2083 |
this.panel8.Controls.Add(this.lblLinkTotal4); |
| ... | ... | |
| 2493 | 2104 |
this.panel8.Controls.Add(this.textBoxEX10); |
| 2494 | 2105 |
this.panel8.Controls.Add(this.textBoxEX9); |
| 2495 | 2106 |
this.panel8.Controls.Add(this.textBoxEX8); |
| 2496 |
this.panel8.Location = new System.Drawing.Point(677, 1073);
|
|
| 2107 |
this.panel8.Location = new System.Drawing.Point(666, 1073);
|
|
| 2497 | 2108 |
this.panel8.Name = "panel8"; |
| 2498 |
this.panel8.Size = new System.Drawing.Size(660, 994);
|
|
| 2109 |
this.panel8.Size = new System.Drawing.Size(651, 994);
|
|
| 2499 | 2110 |
this.panel8.TabIndex = 180; |
| 2500 | 2111 |
// |
| 2501 | 2112 |
// label118 |
| ... | ... | |
| 2526 | 2137 |
this.lblLinkTotal4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
| 2527 | 2138 |
this.lblLinkTotal4.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
| 2528 | 2139 |
this.lblLinkTotal4.ForeColor = System.Drawing.Color.Black; |
| 2529 |
this.lblLinkTotal4.Location = new System.Drawing.Point(503, 421);
|
|
| 2140 |
this.lblLinkTotal4.Location = new System.Drawing.Point(501, 421);
|
|
| 2530 | 2141 |
this.lblLinkTotal4.Name = "lblLinkTotal4"; |
| 2531 | 2142 |
this.lblLinkTotal4.Size = new System.Drawing.Size(120, 22); |
| 2532 | 2143 |
this.lblLinkTotal4.TabIndex = 189; |
| ... | ... | |
| 2538 | 2149 |
this.lblLinkTotal3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
| 2539 | 2150 |
this.lblLinkTotal3.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
| 2540 | 2151 |
this.lblLinkTotal3.ForeColor = System.Drawing.Color.Black; |
| 2541 |
this.lblLinkTotal3.Location = new System.Drawing.Point(383, 421);
|
|
| 2152 |
this.lblLinkTotal3.Location = new System.Drawing.Point(381, 421);
|
|
| 2542 | 2153 |
this.lblLinkTotal3.Name = "lblLinkTotal3"; |
| 2543 | 2154 |
this.lblLinkTotal3.Size = new System.Drawing.Size(120, 22); |
| 2544 | 2155 |
this.lblLinkTotal3.TabIndex = 188; |
| ... | ... | |
| 2550 | 2161 |
this.lblLinkTotal2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
| 2551 | 2162 |
this.lblLinkTotal2.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
| 2552 | 2163 |
this.lblLinkTotal2.ForeColor = System.Drawing.Color.Black; |
| 2553 |
this.lblLinkTotal2.Location = new System.Drawing.Point(263, 421);
|
|
| 2164 |
this.lblLinkTotal2.Location = new System.Drawing.Point(261, 421);
|
|
| 2554 | 2165 |
this.lblLinkTotal2.Name = "lblLinkTotal2"; |
| 2555 | 2166 |
this.lblLinkTotal2.Size = new System.Drawing.Size(120, 22); |
| 2556 | 2167 |
this.lblLinkTotal2.TabIndex = 187; |
| ... | ... | |
| 2562 | 2173 |
this.lblLinkTotal1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
| 2563 | 2174 |
this.lblLinkTotal1.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
| 2564 | 2175 |
this.lblLinkTotal1.ForeColor = System.Drawing.Color.Black; |
| 2565 |
this.lblLinkTotal1.Location = new System.Drawing.Point(143, 421);
|
|
| 2176 |
this.lblLinkTotal1.Location = new System.Drawing.Point(141, 421);
|
|
| 2566 | 2177 |
this.lblLinkTotal1.Name = "lblLinkTotal1"; |
| 2567 | 2178 |
this.lblLinkTotal1.Size = new System.Drawing.Size(120, 22); |
| 2568 | 2179 |
this.lblLinkTotal1.TabIndex = 186; |
| ... | ... | |
| 2574 | 2185 |
this.label116.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
| 2575 | 2186 |
this.label116.Font = new System.Drawing.Font("MS P明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 2576 | 2187 |
this.label116.ForeColor = System.Drawing.Color.Black; |
| 2577 |
this.label116.Location = new System.Drawing.Point(3, 421);
|
|
| 2188 |
this.label116.Location = new System.Drawing.Point(1, 421);
|
|
| 2578 | 2189 |
this.label116.Name = "label116"; |
| 2579 | 2190 |
this.label116.Size = new System.Drawing.Size(140, 22); |
| 2580 | 2191 |
this.label116.TabIndex = 185; |
| ... | ... | |
| 2586 | 2197 |
this.btnLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
| 2587 | 2198 |
this.btnLink.BackColor = System.Drawing.Color.Tan; |
| 2588 | 2199 |
this.btnLink.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 2589 |
this.btnLink.Location = new System.Drawing.Point(521, 443);
|
|
| 2200 |
this.btnLink.Location = new System.Drawing.Point(508, 443);
|
|
| 2590 | 2201 |
this.btnLink.Name = "btnLink"; |
| 2591 | 2202 |
this.btnLink.Size = new System.Drawing.Size(120, 30); |
| 2592 | 2203 |
this.btnLink.TabIndex = 168; |
| ... | ... | |
| 2640 | 2251 |
this.dgvLink.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; |
| 2641 | 2252 |
this.dgvLink.RowTemplate.Height = 24; |
| 2642 | 2253 |
this.dgvLink.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; |
| 2643 |
this.dgvLink.Size = new System.Drawing.Size(660, 164);
|
|
| 2254 |
this.dgvLink.Size = new System.Drawing.Size(638, 164);
|
|
| 2644 | 2255 |
this.dgvLink.TabIndex = 166; |
| 2645 | 2256 |
this.dgvLink.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvLink_CellDoubleClick); |
| 2646 | 2257 |
// |
| ... | ... | |
| 2866 | 2477 |
this.label45.Text = "工事予算承認日"; |
| 2867 | 2478 |
this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 2868 | 2479 |
// |
| 2869 |
// textBoxEX10 |
|
| 2870 |
// |
|
| 2871 |
this.textBoxEX10.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2872 |
this.textBoxEX10.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2873 |
this.textBoxEX10.Location = new System.Drawing.Point(128, 153); |
|
| 2874 |
this.textBoxEX10.MaxLength = 10; |
|
| 2875 |
this.textBoxEX10.Name = "textBoxEX10"; |
|
| 2876 |
this.textBoxEX10.Size = new System.Drawing.Size(120, 26); |
|
| 2877 |
this.textBoxEX10.TabIndex = 60; |
|
| 2878 |
this.textBoxEX10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2879 |
this.textBoxEX10.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2880 |
this.textBoxEX10.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2881 |
// |
|
| 2882 |
// textBoxEX9 |
|
| 2883 |
// |
|
| 2884 |
this.textBoxEX9.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2885 |
this.textBoxEX9.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2886 |
this.textBoxEX9.Location = new System.Drawing.Point(128, 123); |
|
| 2887 |
this.textBoxEX9.MaxLength = 10; |
|
| 2888 |
this.textBoxEX9.Name = "textBoxEX9"; |
|
| 2889 |
this.textBoxEX9.Size = new System.Drawing.Size(120, 26); |
|
| 2890 |
this.textBoxEX9.TabIndex = 59; |
|
| 2891 |
this.textBoxEX9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2892 |
this.textBoxEX9.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2893 |
this.textBoxEX9.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2894 |
// |
|
| 2895 |
// textBoxEX8 |
|
| 2896 |
// |
|
| 2897 |
this.textBoxEX8.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
|
|
| 2898 |
this.textBoxEX8.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 2899 |
this.textBoxEX8.Location = new System.Drawing.Point(128, 93); |
|
| 2900 |
this.textBoxEX8.MaxLength = 10; |
|
| 2901 |
this.textBoxEX8.Name = "textBoxEX8"; |
|
| 2902 |
this.textBoxEX8.Size = new System.Drawing.Size(120, 26); |
|
| 2903 |
this.textBoxEX8.TabIndex = 58; |
|
| 2904 |
this.textBoxEX8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
| 2905 |
this.textBoxEX8.TextChanged += new System.EventHandler(this.valueChange); |
|
| 2906 |
this.textBoxEX8.Validated += new System.EventHandler(this.txtInputDate_TextChanged); |
|
| 2907 |
// |
|
| 2908 | 2480 |
// label59 |
| 2909 | 2481 |
// |
| 2910 | 2482 |
this.label59.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
| 2911 | 2483 |
this.label59.BackColor = System.Drawing.Color.Moccasin; |
| 2912 | 2484 |
this.label59.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
| 2913 | 2485 |
this.label59.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 2914 |
this.label59.Location = new System.Drawing.Point(677, 2080);
|
|
| 2486 |
this.label59.Location = new System.Drawing.Point(666, 2080);
|
|
| 2915 | 2487 |
this.label59.Name = "label59"; |
| 2916 |
this.label59.Size = new System.Drawing.Size(660, 30);
|
|
| 2488 |
this.label59.Size = new System.Drawing.Size(651, 30);
|
|
| 2917 | 2489 |
this.label59.TabIndex = 183; |
| 2918 | 2490 |
this.label59.Text = "請求/入金管理(出来高分割請求)"; |
| 2919 | 2491 |
this.label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| ... | ... | |
| 2924 | 2496 |
| System.Windows.Forms.AnchorStyles.Left) |
| 2925 | 2497 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 2926 | 2498 |
this.panel9.BackColor = System.Drawing.Color.Orange; |
| 2499 |
this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 2927 | 2500 |
this.panel9.Controls.Add(this.label98); |
| 2928 | 2501 |
this.panel9.Controls.Add(this.textBox2); |
| 2929 | 2502 |
this.panel9.Controls.Add(this.label96); |
| ... | ... | |
| 2947 | 2520 |
this.panel9.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
| 2948 | 2521 |
this.panel9.Location = new System.Drawing.Point(3, 2113); |
| 2949 | 2522 |
this.panel9.Name = "panel9"; |
| 2950 |
this.panel9.Size = new System.Drawing.Size(658, 994);
|
|
| 2523 |
this.panel9.Size = new System.Drawing.Size(650, 994);
|
|
| 2951 | 2524 |
this.panel9.TabIndex = 184; |
| 2952 | 2525 |
// |
| 2953 | 2526 |
// label98 |
| ... | ... | |
| 2974 | 2547 |
this.textBox2.MaxLength = 120; |
| 2975 | 2548 |
this.textBox2.Multiline = true; |
| 2976 | 2549 |
this.textBox2.Name = "textBox2"; |
| 2977 |
this.textBox2.Size = new System.Drawing.Size(528, 54);
|
|
| 2550 |
this.textBox2.Size = new System.Drawing.Size(507, 54);
|
|
| 2978 | 2551 |
this.textBox2.TabIndex = 68; |
| 2979 | 2552 |
this.textBox2.TextChanged += new System.EventHandler(this.valueChange); |
| 2980 | 2553 |
// |
| ... | ... | |
| 3166 | 2739 |
this.label86.Text = "請求日"; |
| 3167 | 2740 |
this.label86.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
| 3168 | 2741 |
// |
| 3169 |
// textBoxEX6 |
|
| 3170 |
// |
|
| 3171 |
this.textBoxEX6.ImeMode = System.Windows.Forms.ImeMode.Disable; |
|
| 3172 |
this.textBoxEX6.Location = new System.Drawing.Point(129, 98); |
|
他の形式にエクスポート: Unified diff