リビジョン 392
工事情報入力:最大化時サイズ異常の修正・部署引継時掲示板色変更
見積書印刷:表示グリッドに入力できるバグ修正
請求取消入力:請求金額の税抜分修正
管理マスタ:レイアウト修正
ログイン画面:レイアウト修正
メニュー画面:最大化時のボタンサイズの修正・製品版との差異を少なくするために修正
| trunk/src/ProcessManagement/ProcessManagement/Common/Process/ClsCommonApproval.cs | ||
|---|---|---|
| 1222 | 1222 |
// 対象パネルを全て非表示にする |
| 1223 | 1223 |
foreach (Panel CurPnl in AppPnls) { CurPnl.Visible = false; }
|
| 1224 | 1224 |
|
| 1225 |
switch (ProductDefine.ProductType) |
|
| 1226 |
{
|
|
| 1227 |
case (int)ProductDefine.ProductTypeDef.Originals: |
|
| 1228 |
// ----- オリジナル表示 |
|
| 1229 |
// 工事申請パネル表示タイプ1 |
|
| 1230 |
DispConstrAppPanelType1(ApprovalNo, ConstrCode, OrderNo, AppPnls); |
|
| 1231 |
break; |
|
| 1232 |
case (int)ProductDefine.ProductTypeDef.MassProductionType1: |
|
| 1233 |
// ----- 製品版タイプ1表示 |
|
| 1234 |
break; |
|
| 1235 |
} |
|
| 1236 |
} |
|
| 1237 |
catch (Exception ex) |
|
| 1238 |
{
|
|
| 1239 |
logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
|
|
| 1240 |
} |
|
| 1241 |
} |
|
| 1242 |
#endregion |
|
| 1243 |
|
|
| 1244 |
#region 工事申請パネル表示タイプ1 |
|
| 1245 |
/// <summary> |
|
| 1246 |
/// 工事申請パネル表示タイプ1 |
|
| 1247 |
/// </summary> |
|
| 1248 |
/// <param name="ApprovalNo">承認処理番号</param> |
|
| 1249 |
/// <param name="ConstrCode">工事番号</param> |
|
| 1250 |
/// <param name="OrderNo">受付番号</param> |
|
| 1251 |
/// <param name="AppPnls">パネルリスト</param> |
|
| 1252 |
private static void DispConstrAppPanelType1(int ApprovalNo, int ConstrCode, int OrderNo, List<Panel> AppPnls) |
|
| 1253 |
{
|
|
| 1254 |
try |
|
| 1255 |
{
|
|
| 1225 | 1256 |
// 案件に対して申請がされて無い場合 |
| 1226 | 1257 |
if (!CheckProcessPetition(ConstrCode, ApprovalNo, OrderNo)) |
| 1227 | 1258 |
{
|
| 1228 | 1259 |
// 申請パネルを表示する(未申請) |
| 1229 | 1260 |
PetitionPanelDisplay(AppPnls, true, true); |
| 1261 |
return; |
|
| 1230 | 1262 |
} |
| 1231 |
else |
|
| 1263 |
|
|
| 1264 |
// 最終承認確認(工事承認) |
|
| 1265 |
if (CheckProcessApproval(ConstrCode, ApprovalNo, OrderNo)) |
|
| 1232 | 1266 |
{
|
| 1233 |
// 最終承認確認(工事承認) |
|
| 1234 |
if (CheckProcessApproval(ConstrCode, ApprovalNo, OrderNo)) |
|
| 1235 |
{
|
|
| 1236 |
// 申請パネルを表示する(承認済) |
|
| 1237 |
PetitionPanelDisplay(AppPnls, false, false); |
|
| 1238 |
// 承認件数のセット |
|
| 1239 |
SetApprovalCount(ApprovalNo, ConstrCode, OrderNo, AppPnls); |
|
| 1240 |
} |
|
| 1241 |
else |
|
| 1242 |
{
|
|
| 1243 |
// 申請中でログイン者が承認者の場合は承認ボタンを表示する |
|
| 1244 |
if(CheckUserForApprover(ApprovalNo, CommonMotions.LoginUserData.DepartmentCode)) |
|
| 1245 |
{
|
|
| 1246 |
// 承認パネル表示 |
|
| 1247 |
AppPnls[(int)AppPnlDef.Approval].Visible = true; |
|
| 1248 |
} |
|
| 1249 |
// ログインユーザーは申請者かどうかを確認する |
|
| 1250 |
else if(CheckUserForApplicant(ConstrCode, ApprovalNo, OrderNo)) |
|
| 1251 |
{
|
|
| 1252 |
// 申請パネルを表示する(承認中) |
|
| 1253 |
PetitionPanelDisplay(AppPnls, false, true); |
|
| 1254 |
// 承認件数のセット |
|
| 1255 |
SetApprovalCount(ApprovalNo, ConstrCode, OrderNo, AppPnls); |
|
| 1256 |
} |
|
| 1257 |
} |
|
| 1267 |
// 申請パネルを表示する(承認済) |
|
| 1268 |
PetitionPanelDisplay(AppPnls, false, false); |
|
| 1269 |
// 承認件数のセット |
|
| 1270 |
SetApprovalCount(ApprovalNo, ConstrCode, OrderNo, AppPnls); |
|
| 1271 |
return; |
|
| 1258 | 1272 |
} |
| 1273 |
|
|
| 1274 |
// 申請中でログイン者が承認者の場合は承認ボタンを表示する |
|
| 1275 |
if (CheckUserForApprover(ApprovalNo, CommonMotions.LoginUserData.DepartmentCode)) |
|
| 1276 |
{
|
|
| 1277 |
// 承認パネル表示 |
|
| 1278 |
AppPnls[(int)AppPnlDef.Approval].Visible = true; |
|
| 1279 |
} |
|
| 1280 |
// ログインユーザーは申請者かどうかを確認する |
|
| 1281 |
else if (CheckUserForApplicant(ConstrCode, ApprovalNo, OrderNo)) |
|
| 1282 |
{
|
|
| 1283 |
// 申請パネルを表示する(承認中) |
|
| 1284 |
PetitionPanelDisplay(AppPnls, false, true); |
|
| 1285 |
// 承認件数のセット |
|
| 1286 |
SetApprovalCount(ApprovalNo, ConstrCode, OrderNo, AppPnls); |
|
| 1287 |
} |
|
| 1259 | 1288 |
} |
| 1260 | 1289 |
catch (Exception ex) |
| 1261 | 1290 |
{
|
| trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs | ||
|---|---|---|
| 55 | 55 |
this.btnDataEntry = new System.Windows.Forms.Button(); |
| 56 | 56 |
this.btnEnd = new System.Windows.Forms.Button(); |
| 57 | 57 |
this.BasePanel = new System.Windows.Forms.Panel(); |
| 58 |
this.label29 = new System.Windows.Forms.Label(); |
|
| 59 |
this.lblLastUpdate = new System.Windows.Forms.Label(); |
|
| 60 |
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); |
|
| 61 |
this.btnOtherProc = new System.Windows.Forms.Button(); |
|
| 62 |
this.lblJointLabel = new System.Windows.Forms.Label(); |
|
| 63 |
this.btnPA = new System.Windows.Forms.Button(); |
|
| 64 |
this.panel9 = new System.Windows.Forms.Panel(); |
|
| 65 |
this.label91 = new System.Windows.Forms.Label(); |
|
| 66 |
this.label128 = new System.Windows.Forms.Label(); |
|
| 67 |
this.textBox2 = new System.Windows.Forms.TextBox(); |
|
| 68 |
this.textBox4 = new System.Windows.Forms.TextBox(); |
|
| 69 |
this.label127 = new System.Windows.Forms.Label(); |
|
| 70 |
this.label60 = new System.Windows.Forms.Label(); |
|
| 71 |
this.label86 = new System.Windows.Forms.Label(); |
|
| 72 |
this.label87 = new System.Windows.Forms.Label(); |
|
| 73 |
this.label126 = new System.Windows.Forms.Label(); |
|
| 74 |
this.label125 = new System.Windows.Forms.Label(); |
|
| 75 |
this.label129 = new System.Windows.Forms.Label(); |
|
| 76 |
this.label89 = new System.Windows.Forms.Label(); |
|
| 77 |
this.label90 = new System.Windows.Forms.Label(); |
|
| 78 |
this.label124 = new System.Windows.Forms.Label(); |
|
| 79 |
this.label94 = new System.Windows.Forms.Label(); |
|
| 80 |
this.label104 = new System.Windows.Forms.Label(); |
|
| 81 |
this.label59 = new System.Windows.Forms.Label(); |
|
| 82 |
this.panel8 = new System.Windows.Forms.Panel(); |
|
| 83 |
this.label45 = new System.Windows.Forms.Label(); |
|
| 84 |
this.label43 = new System.Windows.Forms.Label(); |
|
| 85 |
this.label121 = new System.Windows.Forms.Label(); |
|
| 86 |
this.label109 = new System.Windows.Forms.Label(); |
|
| 87 |
this.label52 = new System.Windows.Forms.Label(); |
|
| 88 |
this.label108 = new System.Windows.Forms.Label(); |
|
| 89 |
this.label119 = new System.Windows.Forms.Label(); |
|
| 90 |
this.label102 = new System.Windows.Forms.Label(); |
|
| 91 |
this.label103 = new System.Windows.Forms.Label(); |
|
| 92 |
this.label83 = new System.Windows.Forms.Label(); |
|
| 93 |
this.label84 = new System.Windows.Forms.Label(); |
|
| 94 |
this.label85 = new System.Windows.Forms.Label(); |
|
| 95 |
this.label74 = new System.Windows.Forms.Label(); |
|
| 96 |
this.btnLink = new System.Windows.Forms.Button(); |
|
| 97 |
this.label116 = new System.Windows.Forms.Label(); |
|
| 98 |
this.lblLinkTotal1 = new System.Windows.Forms.Label(); |
|
| 99 |
this.lblLinkTotal2 = new System.Windows.Forms.Label(); |
|
| 100 |
this.lblLinkTotal3 = new System.Windows.Forms.Label(); |
|
| 101 |
this.lblLinkTotal4 = new System.Windows.Forms.Label(); |
|
| 102 |
this.label117 = new System.Windows.Forms.Label(); |
|
| 103 |
this.label120 = new System.Windows.Forms.Label(); |
|
| 104 |
this.label118 = new System.Windows.Forms.Label(); |
|
| 105 |
this.label40 = new System.Windows.Forms.Label(); |
|
| 106 |
this.panel7 = new System.Windows.Forms.Panel(); |
|
| 107 |
this.label21 = new System.Windows.Forms.Label(); |
|
| 108 |
this.label112 = new System.Windows.Forms.Label(); |
|
| 109 |
this.label76 = new System.Windows.Forms.Label(); |
|
| 110 |
this.label113 = new System.Windows.Forms.Label(); |
|
| 111 |
this.label31 = new System.Windows.Forms.Label(); |
|
| 112 |
this.label79 = new System.Windows.Forms.Label(); |
|
| 113 |
this.label67 = new System.Windows.Forms.Label(); |
|
| 114 |
this.label78 = new System.Windows.Forms.Label(); |
|
| 115 |
this.label80 = new System.Windows.Forms.Label(); |
|
| 116 |
this.label77 = new System.Windows.Forms.Label(); |
|
| 117 |
this.label82 = new System.Windows.Forms.Label(); |
|
| 118 |
this.label81 = new System.Windows.Forms.Label(); |
|
| 119 |
this.label42 = new System.Windows.Forms.Label(); |
|
| 120 |
this.label25 = new System.Windows.Forms.Label(); |
|
| 121 |
this.label88 = new System.Windows.Forms.Label(); |
|
| 122 |
this.label50 = new System.Windows.Forms.Label(); |
|
| 123 |
this.label41 = new System.Windows.Forms.Label(); |
|
| 124 |
this.txtInput31 = new System.Windows.Forms.TextBox(); |
|
| 125 |
this.label51 = new System.Windows.Forms.Label(); |
|
| 126 |
this.label47 = new System.Windows.Forms.Label(); |
|
| 127 |
this.txtInput32 = new System.Windows.Forms.TextBox(); |
|
| 128 |
this.label46 = new System.Windows.Forms.Label(); |
|
| 129 |
this.pnlFluctuation = new System.Windows.Forms.Panel(); |
|
| 130 |
this.rdbNotFluctuation = new System.Windows.Forms.RadioButton(); |
|
| 131 |
this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton(); |
|
| 132 |
this.btnFluctuation = new System.Windows.Forms.Button(); |
|
| 133 |
this.lblFluctuationText = new System.Windows.Forms.Label(); |
|
| 134 |
this.label105 = new System.Windows.Forms.Label(); |
|
| 135 |
this.panel4 = new System.Windows.Forms.Panel(); |
|
| 136 |
this.panel6 = new System.Windows.Forms.Panel(); |
|
| 137 |
this.rdBConsumptionTaxOn = new System.Windows.Forms.RadioButton(); |
|
| 138 |
this.rdBConsumptionTaxOff = new System.Windows.Forms.RadioButton(); |
|
| 139 |
this.label32 = new System.Windows.Forms.Label(); |
|
| 140 |
this.lblEstimatePrice1 = new System.Windows.Forms.Label(); |
|
| 141 |
this.label58 = new System.Windows.Forms.Label(); |
|
| 142 |
this.lblEstimatePrice0 = new System.Windows.Forms.Label(); |
|
| 143 |
this.label26 = new System.Windows.Forms.Label(); |
|
| 144 |
this.label34 = new System.Windows.Forms.Label(); |
|
| 145 |
this.label75 = new System.Windows.Forms.Label(); |
|
| 146 |
this.label56 = new System.Windows.Forms.Label(); |
|
| 147 |
this.label66 = new System.Windows.Forms.Label(); |
|
| 148 |
this.label54 = new System.Windows.Forms.Label(); |
|
| 149 |
this.label55 = new System.Windows.Forms.Label(); |
|
| 150 |
this.label61 = new System.Windows.Forms.Label(); |
|
| 151 |
this.label73 = new System.Windows.Forms.Label(); |
|
| 152 |
this.label72 = new System.Windows.Forms.Label(); |
|
| 153 |
this.label62 = new System.Windows.Forms.Label(); |
|
| 154 |
this.label71 = new System.Windows.Forms.Label(); |
|
| 155 |
this.label70 = new System.Windows.Forms.Label(); |
|
| 156 |
this.label23 = new System.Windows.Forms.Label(); |
|
| 157 |
this.label69 = new System.Windows.Forms.Label(); |
|
| 158 |
this.label65 = new System.Windows.Forms.Label(); |
|
| 159 |
this.label57 = new System.Windows.Forms.Label(); |
|
| 160 |
this.label37 = new System.Windows.Forms.Label(); |
|
| 161 |
this.label68 = new System.Windows.Forms.Label(); |
|
| 162 |
this.label38 = new System.Windows.Forms.Label(); |
|
| 163 |
this.label15 = new System.Windows.Forms.Label(); |
|
| 164 |
this.label12 = new System.Windows.Forms.Label(); |
|
| 165 |
this.label22 = new System.Windows.Forms.Label(); |
|
| 166 |
this.label24 = new System.Windows.Forms.Label(); |
|
| 167 |
this.label33 = new System.Windows.Forms.Label(); |
|
| 168 |
this.txtInput01 = new System.Windows.Forms.TextBox(); |
|
| 169 |
this.label10 = new System.Windows.Forms.Label(); |
|
| 170 |
this.txtInput26 = new System.Windows.Forms.TextBox(); |
|
| 171 |
this.label36 = new System.Windows.Forms.Label(); |
|
| 172 |
this.lblTransferDate = new System.Windows.Forms.Label(); |
|
| 173 |
this.label27 = new System.Windows.Forms.Label(); |
|
| 174 |
this.label30 = new System.Windows.Forms.Label(); |
|
| 175 |
this.label39 = new System.Windows.Forms.Label(); |
|
| 176 |
this.label97 = new System.Windows.Forms.Label(); |
|
| 177 |
this.label99 = new System.Windows.Forms.Label(); |
|
| 178 |
this.label100 = new System.Windows.Forms.Label(); |
|
| 179 |
this.label101 = new System.Windows.Forms.Label(); |
|
| 180 |
this.label106 = new System.Windows.Forms.Label(); |
|
| 181 |
this.panel1 = new System.Windows.Forms.Panel(); |
|
| 182 |
this.txtInput05 = new System.Windows.Forms.TextBox(); |
|
| 183 |
this.btnOrderer = new System.Windows.Forms.Button(); |
|
| 184 |
this.label5 = new System.Windows.Forms.Label(); |
|
| 185 |
this.label14 = new System.Windows.Forms.Label(); |
|
| 186 |
this.label44 = new System.Windows.Forms.Label(); |
|
| 187 |
this.label64 = new System.Windows.Forms.Label(); |
|
| 188 |
this.panel3 = new System.Windows.Forms.Panel(); |
|
| 189 |
this.rdbBillingAll = new System.Windows.Forms.RadioButton(); |
|
| 190 |
this.rdbBillingSplit = new System.Windows.Forms.RadioButton(); |
|
| 191 |
this.txtInput24 = new System.Windows.Forms.TextBox(); |
|
| 192 |
this.txtInput23 = new System.Windows.Forms.TextBox(); |
|
| 193 |
this.label7 = new System.Windows.Forms.Label(); |
|
| 194 |
this.txtInput22 = new System.Windows.Forms.TextBox(); |
|
| 195 |
this.txtInput21 = new System.Windows.Forms.TextBox(); |
|
| 196 |
this.label13 = new System.Windows.Forms.Label(); |
|
| 197 |
this.txtInput20 = new System.Windows.Forms.TextBox(); |
|
| 198 |
this.txtInput19 = new System.Windows.Forms.TextBox(); |
|
| 199 |
this.label19 = new System.Windows.Forms.Label(); |
|
| 200 |
this.txtInput18 = new System.Windows.Forms.TextBox(); |
|
| 201 |
this.txtInput17 = new System.Windows.Forms.TextBox(); |
|
| 202 |
this.txtInput16 = new System.Windows.Forms.TextBox(); |
|
| 203 |
this.txtInput15 = new System.Windows.Forms.TextBox(); |
|
| 204 |
this.txtInput14 = new System.Windows.Forms.TextBox(); |
|
| 205 |
this.label11 = new System.Windows.Forms.Label(); |
|
| 206 |
this.txtInput09 = new System.Windows.Forms.TextBox(); |
|
| 207 |
this.label17 = new System.Windows.Forms.Label(); |
|
| 208 |
this.txtInput10 = new System.Windows.Forms.TextBox(); |
|
| 209 |
this.label9 = new System.Windows.Forms.Label(); |
|
| 210 |
this.textBox1 = new System.Windows.Forms.TextBox(); |
|
| 211 |
this.txtInput11 = new System.Windows.Forms.TextBox(); |
|
| 212 |
this.label18 = new System.Windows.Forms.Label(); |
|
| 213 |
this.label20 = new System.Windows.Forms.Label(); |
|
| 214 |
this.btnSerchZip = new System.Windows.Forms.Button(); |
|
| 215 |
this.txtInput08 = new System.Windows.Forms.TextBox(); |
|
| 216 |
this.panel2 = new System.Windows.Forms.Panel(); |
|
| 217 |
this.rdbEstimateType1 = new System.Windows.Forms.RadioButton(); |
|
| 218 |
this.rdbEstimateType3 = new System.Windows.Forms.RadioButton(); |
|
| 219 |
this.rdbEstimateType2 = new System.Windows.Forms.RadioButton(); |
|
| 220 |
this.label4 = new System.Windows.Forms.Label(); |
|
| 221 |
this.label110 = new System.Windows.Forms.Label(); |
|
| 222 |
this.label8 = new System.Windows.Forms.Label(); |
|
| 223 |
this.label6 = new System.Windows.Forms.Label(); |
|
| 224 |
this.txtInput07 = new System.Windows.Forms.TextBox(); |
|
| 225 |
this.label115 = new System.Windows.Forms.Label(); |
|
| 226 |
this.label114 = new System.Windows.Forms.Label(); |
|
| 227 |
this.label107 = new System.Windows.Forms.Label(); |
|
| 228 |
this.label3 = new System.Windows.Forms.Label(); |
|
| 229 |
this.label63 = new System.Windows.Forms.Label(); |
|
| 230 |
this.label53 = new System.Windows.Forms.Label(); |
|
| 231 |
this.label35 = new System.Windows.Forms.Label(); |
|
| 58 |
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); |
|
| 232 | 59 |
this.panel10 = new System.Windows.Forms.Panel(); |
| 233 |
this.label96 = new System.Windows.Forms.Label(); |
|
| 234 |
this.textBox3 = new System.Windows.Forms.TextBox(); |
|
| 235 |
this.label95 = new System.Windows.Forms.Label(); |
|
| 236 |
this.label98 = new System.Windows.Forms.Label(); |
|
| 237 |
this.label93 = new System.Windows.Forms.Label(); |
|
| 238 |
this.label92 = new System.Windows.Forms.Label(); |
|
| 239 |
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); |
|
| 240 |
this.groupBoxEx1 = new ProcessManagement.Forms.CustomControls.GroupBoxEx(); |
|
| 241 |
this.btnApprovalList = new System.Windows.Forms.Button(); |
|
| 242 |
this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton(); |
|
| 243 |
this.lblConstructionCodelabel = new System.Windows.Forms.Label(); |
|
| 244 |
this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 245 |
this.label2 = new System.Windows.Forms.Label(); |
|
| 246 |
this.txtInput33 = new System.Windows.Forms.TextBox(); |
|
| 247 |
this.label48 = new System.Windows.Forms.Label(); |
|
| 248 |
this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 249 |
this.label28 = new System.Windows.Forms.Label(); |
|
| 250 |
this.lblConstructionCode = new System.Windows.Forms.Label(); |
|
| 251 |
this.label16 = new System.Windows.Forms.Label(); |
|
| 252 |
this.panel5 = new System.Windows.Forms.Panel(); |
|
| 253 |
this.btnRestore = new System.Windows.Forms.Button(); |
|
| 254 |
this.rdbStatus16 = new System.Windows.Forms.RadioButton(); |
|
| 255 |
this.rdbStatus8 = new System.Windows.Forms.RadioButton(); |
|
| 256 |
this.rdbStatus6 = new System.Windows.Forms.RadioButton(); |
|
| 257 |
this.rdbStatus17 = new System.Windows.Forms.RadioButton(); |
|
| 258 |
this.radioButton1 = new System.Windows.Forms.RadioButton(); |
|
| 259 |
this.rdbStatus13 = new System.Windows.Forms.RadioButton(); |
|
| 260 |
this.rdbStatus12 = new System.Windows.Forms.RadioButton(); |
|
| 261 |
this.rdbStatus10 = new System.Windows.Forms.RadioButton(); |
|
| 262 |
this.rdbStatus9 = new System.Windows.Forms.RadioButton(); |
|
| 263 |
this.rdbStatus7 = new System.Windows.Forms.RadioButton(); |
|
| 264 |
this.rdbStatus11 = new System.Windows.Forms.RadioButton(); |
|
| 265 |
this.rdbStatus2 = new System.Windows.Forms.RadioButton(); |
|
| 266 |
this.rdbStatus5 = new System.Windows.Forms.RadioButton(); |
|
| 267 |
this.rdbStatus4 = new System.Windows.Forms.RadioButton(); |
|
| 268 |
this.rdbStatus3 = new System.Windows.Forms.RadioButton(); |
|
| 269 |
this.rdbStatus1 = new System.Windows.Forms.RadioButton(); |
|
| 270 |
this.rdbStatus0 = new System.Windows.Forms.RadioButton(); |
|
| 271 |
this.label49 = new System.Windows.Forms.Label(); |
|
| 272 | 60 |
this.dgvPayment = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
| 273 | 61 |
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 274 | 62 |
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 275 | 63 |
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 276 | 64 |
this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 65 |
this.label92 = new System.Windows.Forms.Label(); |
|
| 66 |
this.label93 = new System.Windows.Forms.Label(); |
|
| 67 |
this.label98 = new System.Windows.Forms.Label(); |
|
| 68 |
this.label95 = new System.Windows.Forms.Label(); |
|
| 69 |
this.textBox3 = new System.Windows.Forms.TextBox(); |
|
| 70 |
this.label96 = new System.Windows.Forms.Label(); |
|
| 71 |
this.label35 = new System.Windows.Forms.Label(); |
|
| 72 |
this.label53 = new System.Windows.Forms.Label(); |
|
| 73 |
this.label63 = new System.Windows.Forms.Label(); |
|
| 74 |
this.label3 = new System.Windows.Forms.Label(); |
|
| 75 |
this.panel1 = new System.Windows.Forms.Panel(); |
|
| 76 |
this.label107 = new System.Windows.Forms.Label(); |
|
| 77 |
this.label114 = new System.Windows.Forms.Label(); |
|
| 78 |
this.label115 = new System.Windows.Forms.Label(); |
|
| 79 |
this.txtInput07 = new System.Windows.Forms.TextBox(); |
|
| 80 |
this.label6 = new System.Windows.Forms.Label(); |
|
| 81 |
this.label8 = new System.Windows.Forms.Label(); |
|
| 277 | 82 |
this.comboBoxEX5 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 278 | 83 |
this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 279 | 84 |
this.cmbSalesSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 280 | 85 |
this.cmbSalesPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 86 |
this.label110 = new System.Windows.Forms.Label(); |
|
| 87 |
this.label4 = new System.Windows.Forms.Label(); |
|
| 88 |
this.panel2 = new System.Windows.Forms.Panel(); |
|
| 89 |
this.rdbEstimateType2 = new System.Windows.Forms.RadioButton(); |
|
| 90 |
this.rdbEstimateType3 = new System.Windows.Forms.RadioButton(); |
|
| 91 |
this.rdbEstimateType1 = new System.Windows.Forms.RadioButton(); |
|
| 281 | 92 |
this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 93 |
this.txtInput08 = new System.Windows.Forms.TextBox(); |
|
| 94 |
this.btnSerchZip = new System.Windows.Forms.Button(); |
|
| 95 |
this.label20 = new System.Windows.Forms.Label(); |
|
| 96 |
this.label18 = new System.Windows.Forms.Label(); |
|
| 97 |
this.txtInput11 = new System.Windows.Forms.TextBox(); |
|
| 98 |
this.textBox1 = new System.Windows.Forms.TextBox(); |
|
| 99 |
this.label9 = new System.Windows.Forms.Label(); |
|
| 100 |
this.txtInput10 = new System.Windows.Forms.TextBox(); |
|
| 101 |
this.label17 = new System.Windows.Forms.Label(); |
|
| 102 |
this.txtInput09 = new System.Windows.Forms.TextBox(); |
|
| 103 |
this.label11 = new System.Windows.Forms.Label(); |
|
| 104 |
this.txtInput14 = new System.Windows.Forms.TextBox(); |
|
| 105 |
this.txtInput15 = new System.Windows.Forms.TextBox(); |
|
| 106 |
this.txtInput16 = new System.Windows.Forms.TextBox(); |
|
| 107 |
this.txtInput17 = new System.Windows.Forms.TextBox(); |
|
| 108 |
this.txtInput18 = new System.Windows.Forms.TextBox(); |
|
| 109 |
this.label19 = new System.Windows.Forms.Label(); |
|
| 110 |
this.txtInput19 = new System.Windows.Forms.TextBox(); |
|
| 111 |
this.txtInput20 = new System.Windows.Forms.TextBox(); |
|
| 112 |
this.label13 = new System.Windows.Forms.Label(); |
|
| 113 |
this.txtInput21 = new System.Windows.Forms.TextBox(); |
|
| 114 |
this.txtInput22 = new System.Windows.Forms.TextBox(); |
|
| 115 |
this.label7 = new System.Windows.Forms.Label(); |
|
| 116 |
this.txtInput23 = new System.Windows.Forms.TextBox(); |
|
| 117 |
this.txtInput24 = new System.Windows.Forms.TextBox(); |
|
| 118 |
this.panel3 = new System.Windows.Forms.Panel(); |
|
| 119 |
this.rdbBillingSplit = new System.Windows.Forms.RadioButton(); |
|
| 120 |
this.rdbBillingAll = new System.Windows.Forms.RadioButton(); |
|
| 121 |
this.label64 = new System.Windows.Forms.Label(); |
|
| 122 |
this.label44 = new System.Windows.Forms.Label(); |
|
| 123 |
this.label14 = new System.Windows.Forms.Label(); |
|
| 124 |
this.label5 = new System.Windows.Forms.Label(); |
|
| 282 | 125 |
this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 126 |
this.btnOrderer = new System.Windows.Forms.Button(); |
|
| 283 | 127 |
this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 128 |
this.txtInput05 = new System.Windows.Forms.TextBox(); |
|
| 129 |
this.panel4 = new System.Windows.Forms.Panel(); |
|
| 130 |
this.label106 = new System.Windows.Forms.Label(); |
|
| 131 |
this.label101 = new System.Windows.Forms.Label(); |
|
| 132 |
this.label100 = new System.Windows.Forms.Label(); |
|
| 133 |
this.label99 = new System.Windows.Forms.Label(); |
|
| 134 |
this.label97 = new System.Windows.Forms.Label(); |
|
| 135 |
this.label39 = new System.Windows.Forms.Label(); |
|
| 136 |
this.label30 = new System.Windows.Forms.Label(); |
|
| 284 | 137 |
this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 138 |
this.label27 = new System.Windows.Forms.Label(); |
|
| 285 | 139 |
this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 140 |
this.lblTransferDate = new System.Windows.Forms.Label(); |
|
| 141 |
this.label36 = new System.Windows.Forms.Label(); |
|
| 286 | 142 |
this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 143 |
this.txtInput26 = new System.Windows.Forms.TextBox(); |
|
| 144 |
this.label10 = new System.Windows.Forms.Label(); |
|
| 145 |
this.txtInput01 = new System.Windows.Forms.TextBox(); |
|
| 146 |
this.label33 = new System.Windows.Forms.Label(); |
|
| 287 | 147 |
this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 288 | 148 |
this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 149 |
this.label24 = new System.Windows.Forms.Label(); |
|
| 289 | 150 |
this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 151 |
this.label22 = new System.Windows.Forms.Label(); |
|
| 290 | 152 |
this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 153 |
this.label12 = new System.Windows.Forms.Label(); |
|
| 291 | 154 |
this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 155 |
this.label15 = new System.Windows.Forms.Label(); |
|
| 156 |
this.label38 = new System.Windows.Forms.Label(); |
|
| 157 |
this.label68 = new System.Windows.Forms.Label(); |
|
| 158 |
this.label37 = new System.Windows.Forms.Label(); |
|
| 159 |
this.label57 = new System.Windows.Forms.Label(); |
|
| 160 |
this.label65 = new System.Windows.Forms.Label(); |
|
| 161 |
this.label69 = new System.Windows.Forms.Label(); |
|
| 162 |
this.label23 = new System.Windows.Forms.Label(); |
|
| 163 |
this.label70 = new System.Windows.Forms.Label(); |
|
| 164 |
this.label71 = new System.Windows.Forms.Label(); |
|
| 292 | 165 |
this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 293 | 166 |
this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 294 | 167 |
this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 168 |
this.label62 = new System.Windows.Forms.Label(); |
|
| 169 |
this.label72 = new System.Windows.Forms.Label(); |
|
| 170 |
this.label73 = new System.Windows.Forms.Label(); |
|
| 171 |
this.label61 = new System.Windows.Forms.Label(); |
|
| 172 |
this.label55 = new System.Windows.Forms.Label(); |
|
| 295 | 173 |
this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 174 |
this.label54 = new System.Windows.Forms.Label(); |
|
| 296 | 175 |
this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 176 |
this.label66 = new System.Windows.Forms.Label(); |
|
| 177 |
this.label56 = new System.Windows.Forms.Label(); |
|
| 178 |
this.label75 = new System.Windows.Forms.Label(); |
|
| 179 |
this.label34 = new System.Windows.Forms.Label(); |
|
| 180 |
this.label26 = new System.Windows.Forms.Label(); |
|
| 181 |
this.lblEstimatePrice0 = new System.Windows.Forms.Label(); |
|
| 182 |
this.label58 = new System.Windows.Forms.Label(); |
|
| 183 |
this.lblEstimatePrice1 = new System.Windows.Forms.Label(); |
|
| 184 |
this.label32 = new System.Windows.Forms.Label(); |
|
| 185 |
this.panel6 = new System.Windows.Forms.Panel(); |
|
| 186 |
this.rdBConsumptionTaxOff = new System.Windows.Forms.RadioButton(); |
|
| 187 |
this.rdBConsumptionTaxOn = new System.Windows.Forms.RadioButton(); |
|
| 188 |
this.panel7 = new System.Windows.Forms.Panel(); |
|
| 189 |
this.label105 = new System.Windows.Forms.Label(); |
|
| 190 |
this.lblFluctuationText = new System.Windows.Forms.Label(); |
|
| 191 |
this.pnlFluctuation = new System.Windows.Forms.Panel(); |
|
| 192 |
this.btnFluctuation = new System.Windows.Forms.Button(); |
|
| 193 |
this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton(); |
|
| 194 |
this.rdbNotFluctuation = new System.Windows.Forms.RadioButton(); |
|
| 297 | 195 |
this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 298 | 196 |
this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 299 | 197 |
this.cmbConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 198 |
this.label46 = new System.Windows.Forms.Label(); |
|
| 199 |
this.txtInput32 = new System.Windows.Forms.TextBox(); |
|
| 200 |
this.label47 = new System.Windows.Forms.Label(); |
|
| 201 |
this.label51 = new System.Windows.Forms.Label(); |
|
| 202 |
this.txtInput31 = new System.Windows.Forms.TextBox(); |
|
| 203 |
this.label41 = new System.Windows.Forms.Label(); |
|
| 204 |
this.label50 = new System.Windows.Forms.Label(); |
|
| 205 |
this.label88 = new System.Windows.Forms.Label(); |
|
| 300 | 206 |
this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 301 | 207 |
this.textBoxEX7 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 302 | 208 |
this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 209 |
this.label25 = new System.Windows.Forms.Label(); |
|
| 303 | 210 |
this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 211 |
this.label42 = new System.Windows.Forms.Label(); |
|
| 304 | 212 |
this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 305 | 213 |
this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 306 | 214 |
this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 307 | 215 |
this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 216 |
this.label81 = new System.Windows.Forms.Label(); |
|
| 217 |
this.label82 = new System.Windows.Forms.Label(); |
|
| 218 |
this.label77 = new System.Windows.Forms.Label(); |
|
| 219 |
this.label80 = new System.Windows.Forms.Label(); |
|
| 220 |
this.label78 = new System.Windows.Forms.Label(); |
|
| 221 |
this.label67 = new System.Windows.Forms.Label(); |
|
| 222 |
this.label79 = new System.Windows.Forms.Label(); |
|
| 223 |
this.label31 = new System.Windows.Forms.Label(); |
|
| 308 | 224 |
this.cmbConstrInst = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 309 | 225 |
this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 310 | 226 |
this.cmbConstrPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
| 227 |
this.label113 = new System.Windows.Forms.Label(); |
|
| 228 |
this.label76 = new System.Windows.Forms.Label(); |
|
| 229 |
this.label112 = new System.Windows.Forms.Label(); |
|
| 230 |
this.label21 = new System.Windows.Forms.Label(); |
|
| 231 |
this.label40 = new System.Windows.Forms.Label(); |
|
| 232 |
this.panel8 = new System.Windows.Forms.Panel(); |
|
| 233 |
this.label118 = new System.Windows.Forms.Label(); |
|
| 234 |
this.label120 = new System.Windows.Forms.Label(); |
|
| 235 |
this.label117 = new System.Windows.Forms.Label(); |
|
| 236 |
this.lblLinkTotal4 = new System.Windows.Forms.Label(); |
|
| 237 |
this.lblLinkTotal3 = new System.Windows.Forms.Label(); |
|
| 238 |
this.lblLinkTotal2 = new System.Windows.Forms.Label(); |
|
| 239 |
this.lblLinkTotal1 = new System.Windows.Forms.Label(); |
|
| 240 |
this.label116 = new System.Windows.Forms.Label(); |
|
| 241 |
this.btnLink = new System.Windows.Forms.Button(); |
|
| 242 |
this.label74 = new System.Windows.Forms.Label(); |
|
| 311 | 243 |
this.dgvPurchaseOrder = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
| 312 | 244 |
this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 313 | 245 |
this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| ... | ... | |
| 321 | 253 |
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 322 | 254 |
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 323 | 255 |
this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 256 |
this.label85 = new System.Windows.Forms.Label(); |
|
| 257 |
this.label84 = new System.Windows.Forms.Label(); |
|
| 258 |
this.label83 = new System.Windows.Forms.Label(); |
|
| 259 |
this.label103 = new System.Windows.Forms.Label(); |
|
| 260 |
this.label102 = new System.Windows.Forms.Label(); |
|
| 261 |
this.label119 = new System.Windows.Forms.Label(); |
|
| 262 |
this.label108 = new System.Windows.Forms.Label(); |
|
| 263 |
this.label52 = new System.Windows.Forms.Label(); |
|
| 264 |
this.label109 = new System.Windows.Forms.Label(); |
|
| 265 |
this.label121 = new System.Windows.Forms.Label(); |
|
| 266 |
this.label43 = new System.Windows.Forms.Label(); |
|
| 267 |
this.label45 = new System.Windows.Forms.Label(); |
|
| 268 |
this.label59 = new System.Windows.Forms.Label(); |
|
| 269 |
this.panel9 = new System.Windows.Forms.Panel(); |
|
| 270 |
this.label104 = new System.Windows.Forms.Label(); |
|
| 271 |
this.label94 = new System.Windows.Forms.Label(); |
|
| 324 | 272 |
this.dgvBillingDate = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
| 325 | 273 |
this.BillingGridColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 326 | 274 |
this.BillingGridColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 327 | 275 |
this.BillingGridColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 328 | 276 |
this.BillingGridColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
| 277 |
this.label124 = new System.Windows.Forms.Label(); |
|
| 278 |
this.label90 = new System.Windows.Forms.Label(); |
|
| 279 |
this.label89 = new System.Windows.Forms.Label(); |
|
| 280 |
this.label129 = new System.Windows.Forms.Label(); |
|
| 281 |
this.label125 = new System.Windows.Forms.Label(); |
|
| 329 | 282 |
this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 330 | 283 |
this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 331 | 284 |
this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 285 |
this.label126 = new System.Windows.Forms.Label(); |
|
| 286 |
this.label87 = new System.Windows.Forms.Label(); |
|
| 287 |
this.label86 = new System.Windows.Forms.Label(); |
|
| 288 |
this.label60 = new System.Windows.Forms.Label(); |
|
| 332 | 289 |
this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX(); |
| 290 |
this.label127 = new System.Windows.Forms.Label(); |
|
| 291 |
this.textBox4 = new System.Windows.Forms.TextBox(); |
|
| 292 |
this.textBox2 = new System.Windows.Forms.TextBox(); |
|
| 293 |
this.label128 = new System.Windows.Forms.Label(); |
|
| 294 |
this.label91 = new System.Windows.Forms.Label(); |
|
| 295 |
this.label29 = new System.Windows.Forms.Label(); |
|
| 296 |
this.lblLastUpdate = new System.Windows.Forms.Label(); |
|
| 297 |
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); |
|
| 298 |
this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 299 |
this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX(); |
|
| 300 |
this.btnOtherProc = new System.Windows.Forms.Button(); |
|
| 301 |
this.lblJointLabel = new System.Windows.Forms.Label(); |
|
| 302 |
this.btnPA = new System.Windows.Forms.Button(); |
|
| 303 |
this.groupBoxEx1 = new ProcessManagement.Forms.CustomControls.GroupBoxEx(); |
|
| 304 |
this.btnApprovalList = new System.Windows.Forms.Button(); |
|
| 305 |
this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton(); |
|
| 306 |
this.lblConstructionCodelabel = new System.Windows.Forms.Label(); |
|
| 307 |
this.label2 = new System.Windows.Forms.Label(); |
|
| 308 |
this.txtInput33 = new System.Windows.Forms.TextBox(); |
|
| 309 |
this.label48 = new System.Windows.Forms.Label(); |
|
| 310 |
this.label28 = new System.Windows.Forms.Label(); |
|
| 311 |
this.lblConstructionCode = new System.Windows.Forms.Label(); |
|
| 312 |
this.label16 = new System.Windows.Forms.Label(); |
|
| 313 |
this.panel5 = new System.Windows.Forms.Panel(); |
|
| 314 |
this.btnRestore = new System.Windows.Forms.Button(); |
|
| 315 |
this.rdbStatus16 = new System.Windows.Forms.RadioButton(); |
|
| 316 |
this.rdbStatus8 = new System.Windows.Forms.RadioButton(); |
|
| 317 |
this.rdbStatus6 = new System.Windows.Forms.RadioButton(); |
|
| 318 |
this.rdbStatus17 = new System.Windows.Forms.RadioButton(); |
|
| 319 |
this.radioButton1 = new System.Windows.Forms.RadioButton(); |
|
| 320 |
this.rdbStatus13 = new System.Windows.Forms.RadioButton(); |
|
| 321 |
this.rdbStatus12 = new System.Windows.Forms.RadioButton(); |
|
| 322 |
this.rdbStatus10 = new System.Windows.Forms.RadioButton(); |
|
| 323 |
this.rdbStatus9 = new System.Windows.Forms.RadioButton(); |
|
| 324 |
this.rdbStatus7 = new System.Windows.Forms.RadioButton(); |
|
| 325 |
this.rdbStatus11 = new System.Windows.Forms.RadioButton(); |
|
| 326 |
this.rdbStatus2 = new System.Windows.Forms.RadioButton(); |
|
| 327 |
this.rdbStatus5 = new System.Windows.Forms.RadioButton(); |
|
| 328 |
this.rdbStatus4 = new System.Windows.Forms.RadioButton(); |
|
| 329 |
this.rdbStatus3 = new System.Windows.Forms.RadioButton(); |
|
| 330 |
this.rdbStatus1 = new System.Windows.Forms.RadioButton(); |
|
| 331 |
this.rdbStatus0 = new System.Windows.Forms.RadioButton(); |
|
| 332 |
this.label49 = new System.Windows.Forms.Label(); |
|
| 333 | 333 |
this.BasePanel.SuspendLayout(); |
| 334 |
this.panel9.SuspendLayout(); |
|
| 335 |
this.panel8.SuspendLayout(); |
|
| 334 |
this.tableLayoutPanel2.SuspendLayout(); |
|
| 335 |
this.panel10.SuspendLayout(); |
|
| 336 |
((System.ComponentModel.ISupportInitialize)(this.dgvPayment)).BeginInit(); |
|
| 337 |
this.panel1.SuspendLayout(); |
|
| 338 |
this.panel2.SuspendLayout(); |
|
| 339 |
this.panel3.SuspendLayout(); |
|
| 340 |
this.panel4.SuspendLayout(); |
|
| 341 |
this.panel6.SuspendLayout(); |
|
| 336 | 342 |
this.panel7.SuspendLayout(); |
| 337 | 343 |
this.pnlFluctuation.SuspendLayout(); |
| 338 |
this.panel4.SuspendLayout(); |
|
| 339 |
this.panel6.SuspendLayout(); |
|
| 340 |
this.panel1.SuspendLayout(); |
|
| 341 |
this.panel3.SuspendLayout(); |
|
| 342 |
this.panel2.SuspendLayout(); |
|
| 343 |
this.panel10.SuspendLayout(); |
|
| 344 |
this.tableLayoutPanel2.SuspendLayout(); |
|
| 345 |
this.groupBoxEx1.SuspendLayout(); |
|
| 346 |
this.panel5.SuspendLayout(); |
|
| 347 |
((System.ComponentModel.ISupportInitialize)(this.dgvPayment)).BeginInit(); |
|
| 344 |
this.panel8.SuspendLayout(); |
|
| 348 | 345 |
((System.ComponentModel.ISupportInitialize)(this.dgvPurchaseOrder)).BeginInit(); |
| 349 | 346 |
((System.ComponentModel.ISupportInitialize)(this.dgvLink)).BeginInit(); |
| 347 |
this.panel9.SuspendLayout(); |
|
| 350 | 348 |
((System.ComponentModel.ISupportInitialize)(this.dgvBillingDate)).BeginInit(); |
| 349 |
this.groupBoxEx1.SuspendLayout(); |
|
| 350 |
this.panel5.SuspendLayout(); |
|
| 351 | 351 |
this.SuspendLayout(); |
| 352 | 352 |
// |
| 353 | 353 |
// label1 |
| ... | ... | |
| 422 | 422 |
this.BasePanel.Size = new System.Drawing.Size(1340, 480); |
| 423 | 423 |
this.BasePanel.TabIndex = 0; |
| 424 | 424 |
// |
| 425 |
// label29
|
|
| 425 |
// tableLayoutPanel2
|
|
| 426 | 426 |
// |
| 427 |
this.label29.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
| 428 |
this.label29.AutoSize = true; |
|
| 429 |
this.label29.BackColor = System.Drawing.Color.Transparent; |
|
| 430 |
this.label29.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 431 |
this.label29.ForeColor = System.Drawing.Color.White; |
|
| 432 |
this.label29.Location = new System.Drawing.Point(1033, 12); |
|
| 433 |
this.label29.Name = "label29"; |
|
| 434 |
this.label29.Size = new System.Drawing.Size(161, 16); |
|
| 435 |
this.label29.TabIndex = 32; |
|
| 436 |
this.label29.Text = "最終データ更新日:"; |
|
| 437 |
this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 438 |
// |
|
| 439 |
// lblLastUpdate |
|
| 440 |
// |
|
| 441 |
this.lblLastUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
| 442 |
this.lblLastUpdate.AutoSize = true; |
|
| 443 |
this.lblLastUpdate.BackColor = System.Drawing.Color.Transparent; |
|
| 444 |
this.lblLastUpdate.ForeColor = System.Drawing.Color.White; |
|
| 445 |
this.lblLastUpdate.Location = new System.Drawing.Point(1194, 12); |
|
| 446 |
this.lblLastUpdate.Name = "lblLastUpdate"; |
|
| 447 |
this.lblLastUpdate.Size = new System.Drawing.Size(131, 16); |
|
| 448 |
this.lblLastUpdate.TabIndex = 32; |
|
| 449 |
this.lblLastUpdate.Text = "2015年12月31日"; |
|
| 450 |
this.lblLastUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 451 |
// |
|
| 452 |
// btnOtherProc |
|
| 453 |
// |
|
| 454 |
this.btnOtherProc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); |
|
| 455 |
this.btnOtherProc.BackColor = System.Drawing.Color.SpringGreen; |
|
| 456 |
this.btnOtherProc.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 457 |
this.btnOtherProc.Location = new System.Drawing.Point(1, 657); |
|
| 458 |
this.btnOtherProc.Name = "btnOtherProc"; |
|
| 459 |
this.btnOtherProc.Size = new System.Drawing.Size(160, 30); |
|
| 460 |
this.btnOtherProc.TabIndex = 94; |
|
| 461 |
this.btnOtherProc.TabStop = false; |
|
| 462 |
this.btnOtherProc.Text = "他の画面へ"; |
|
| 463 |
this.btnOtherProc.UseVisualStyleBackColor = false; |
|
| 464 |
this.btnOtherProc.Click += new System.EventHandler(this.btnOtherProc_Click); |
|
| 465 |
// |
|
| 466 |
// lblJointLabel |
|
| 467 |
// |
|
| 468 |
this.lblJointLabel.BackColor = System.Drawing.Color.Yellow; |
|
| 469 |
this.lblJointLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 470 |
this.lblJointLabel.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 471 |
this.lblJointLabel.ForeColor = System.Drawing.Color.Black; |
|
| 472 |
this.lblJointLabel.Location = new System.Drawing.Point(20, 8); |
|
| 473 |
this.lblJointLabel.Name = "lblJointLabel"; |
|
| 474 |
this.lblJointLabel.Size = new System.Drawing.Size(238, 25); |
|
| 475 |
this.lblJointLabel.TabIndex = 97; |
|
| 476 |
this.lblJointLabel.Text = "結合契約工事"; |
|
| 477 |
this.lblJointLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 478 |
this.lblJointLabel.Visible = false; |
|
| 479 |
// |
|
| 480 |
// btnPA |
|
| 481 |
// |
|
| 482 |
this.btnPA.BackColor = System.Drawing.Color.DimGray; |
|
| 483 |
this.btnPA.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 484 |
this.btnPA.ForeColor = System.Drawing.Color.White; |
|
| 485 |
this.btnPA.Location = new System.Drawing.Point(169, 657); |
|
| 486 |
this.btnPA.Name = "btnPA"; |
|
| 487 |
this.btnPA.Size = new System.Drawing.Size(150, 30); |
|
| 488 |
this.btnPA.TabIndex = 100; |
|
| 489 |
this.btnPA.TabStop = false; |
|
| 490 |
this.btnPA.Text = "期限チェック解除"; |
|
| 491 |
this.btnPA.UseVisualStyleBackColor = false; |
|
| 492 |
this.btnPA.Visible = false; |
|
| 493 |
this.btnPA.Click += new System.EventHandler(this.btnPA_Click); |
|
| 494 |
// |
|
| 495 |
// panel9 |
|
| 496 |
// |
|
| 497 |
this.panel9.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
| 498 |
| System.Windows.Forms.AnchorStyles.Left) |
|
| 427 |
this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
|
| 499 | 428 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 500 |
this.panel9.BackColor = System.Drawing.Color.Orange; |
|
| 501 |
this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 502 |
this.panel9.Controls.Add(this.label104); |
|
| 503 |
this.panel9.Controls.Add(this.label94); |
|
| 504 |
this.panel9.Controls.Add(this.dgvBillingDate); |
|
| 505 |
this.panel9.Controls.Add(this.label124); |
|
| 506 |
this.panel9.Controls.Add(this.label90); |
|
| 507 |
this.panel9.Controls.Add(this.label89); |
|
| 508 |
this.panel9.Controls.Add(this.label129); |
|
| 509 |
this.panel9.Controls.Add(this.label125); |
|
| 510 |
this.panel9.Controls.Add(this.textBoxEX9); |
|
| 511 |
this.panel9.Controls.Add(this.textBoxEX8); |
|
| 512 |
this.panel9.Controls.Add(this.textBoxEX6); |
|
| 513 |
this.panel9.Controls.Add(this.label126); |
|
| 514 |
this.panel9.Controls.Add(this.label87); |
|
| 515 |
this.panel9.Controls.Add(this.label86); |
|
| 516 |
this.panel9.Controls.Add(this.label60); |
|
| 517 |
this.panel9.Controls.Add(this.txtInput36); |
|
| 518 |
this.panel9.Controls.Add(this.label127); |
|
| 519 |
this.panel9.Controls.Add(this.textBox4); |
|
| 520 |
this.panel9.Controls.Add(this.textBox2); |
|
| 521 |
this.panel9.Controls.Add(this.label128); |
|
| 522 |
this.panel9.Controls.Add(this.label91); |
|
| 523 |
this.panel9.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 524 |
this.panel9.Location = new System.Drawing.Point(3, 2113); |
|
| 525 |
this.panel9.Name = "panel9"; |
|
| 526 |
this.panel9.Size = new System.Drawing.Size(649, 994); |
|
| 527 |
this.panel9.TabIndex = 184; |
|
| 429 |
this.tableLayoutPanel2.ColumnCount = 3; |
|
| 430 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.62F)); |
|
| 431 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.76F)); |
|
| 432 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.62F)); |
|
| 433 |
this.tableLayoutPanel2.Controls.Add(this.panel10, 2, 7); |
|
| 434 |
this.tableLayoutPanel2.Controls.Add(this.label35, 0, 6); |
|
| 435 |
this.tableLayoutPanel2.Controls.Add(this.label53, 0, 3); |
|
| 436 |
this.tableLayoutPanel2.Controls.Add(this.label63, 2, 0); |
|
| 437 |
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 0); |
|
| 438 |
this.tableLayoutPanel2.Controls.Add(this.panel1, 0, 1); |
|
| 439 |
this.tableLayoutPanel2.Controls.Add(this.panel4, 2, 1); |
|
| 440 |
this.tableLayoutPanel2.Controls.Add(this.panel7, 0, 4); |
|
| 441 |
this.tableLayoutPanel2.Controls.Add(this.label40, 2, 3); |
|
| 442 |
this.tableLayoutPanel2.Controls.Add(this.panel8, 2, 4); |
|
| 443 |
this.tableLayoutPanel2.Controls.Add(this.label59, 2, 6); |
|
| 444 |
this.tableLayoutPanel2.Controls.Add(this.panel9, 0, 7); |
|
| 445 |
this.tableLayoutPanel2.Location = new System.Drawing.Point(1, 1); |
|
| 446 |
this.tableLayoutPanel2.Name = "tableLayoutPanel2"; |
|
| 447 |
this.tableLayoutPanel2.RowCount = 8; |
|
| 448 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); |
|
| 449 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1000F)); |
|
| 450 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F)); |
|
| 451 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); |
|
| 452 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1000F)); |
|
| 453 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F)); |
|
| 454 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); |
|
| 455 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1000F)); |
|
| 456 |
this.tableLayoutPanel2.Size = new System.Drawing.Size(1320, 3090); |
|
| 457 |
this.tableLayoutPanel2.TabIndex = 1; |
|
| 528 | 458 |
// |
| 529 |
// label91
|
|
| 459 |
// panel10
|
|
| 530 | 460 |
// |
| 531 |
this.label91.BackColor = System.Drawing.Color.Moccasin; |
|
| 532 |
this.label91.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 533 |
this.label91.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 534 |
this.label91.ForeColor = System.Drawing.Color.Black; |
|
| 535 |
this.label91.Location = new System.Drawing.Point(1, 360); |
|
| 536 |
this.label91.Name = "label91"; |
|
| 537 |
this.label91.Size = new System.Drawing.Size(120, 40); |
|
| 538 |
this.label91.TabIndex = 145; |
|
| 539 |
this.label91.Text = "請求\r\n申送りコメント"; |
|
| 540 |
this.label91.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 541 |
// |
|
| 542 |
// label128 |
|
| 543 |
// |
|
| 544 |
this.label128.BackColor = System.Drawing.Color.Moccasin; |
|
| 545 |
this.label128.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 546 |
this.label128.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 547 |
this.label128.Location = new System.Drawing.Point(1, 213); |
|
| 548 |
this.label128.Name = "label128"; |
|
| 549 |
this.label128.Size = new System.Drawing.Size(120, 24); |
|
| 550 |
this.label128.TabIndex = 29; |
|
| 551 |
this.label128.Text = "請 求 日"; |
|
| 552 |
this.label128.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 553 |
// |
|
| 554 |
// textBox2 |
|
| 555 |
// |
|
| 556 |
this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
|
| 557 |
| System.Windows.Forms.AnchorStyles.Right))); |
|
| 558 |
this.textBox2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 559 |
this.textBox2.ImeMode = System.Windows.Forms.ImeMode.On; |
|
| 560 |
this.textBox2.Location = new System.Drawing.Point(129, 360); |
|
| 561 |
this.textBox2.MaxLength = 120; |
|
| 562 |
this.textBox2.Multiline = true; |
|
| 563 |
this.textBox2.Name = "textBox2"; |
|
| 564 |
this.textBox2.Size = new System.Drawing.Size(506, 54); |
|
| 565 |
this.textBox2.TabIndex = 5; |
|
| 566 |
this.textBox2.TextChanged += new System.EventHandler(this.valueChange); |
|
| 567 |
// |
|
| 568 |
// textBox4 |
|
| 569 |
// |
|
| 570 |
this.textBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
|
| 571 |
| System.Windows.Forms.AnchorStyles.Right))); |
|
| 572 |
this.textBox4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 573 |
this.textBox4.ImeMode = System.Windows.Forms.ImeMode.On; |
|
| 574 |
this.textBox4.Location = new System.Drawing.Point(127, 422); |
|
| 575 |
this.textBox4.MaxLength = 120; |
|
| 576 |
this.textBox4.Multiline = true; |
|
| 577 |
this.textBox4.Name = "textBox4"; |
|
| 578 |
this.textBox4.Size = new System.Drawing.Size(506, 54); |
|
| 579 |
this.textBox4.TabIndex = 6; |
|
| 580 |
this.textBox4.TextChanged += new System.EventHandler(this.valueChange); |
|
| 581 |
// |
|
| 582 |
// label127 |
|
| 583 |
// |
|
| 584 |
this.label127.BackColor = System.Drawing.Color.Moccasin; |
|
| 585 |
this.label127.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 586 |
this.label127.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 587 |
this.label127.Location = new System.Drawing.Point(1, 117); |
|
| 588 |
this.label127.Name = "label127"; |
|
| 589 |
this.label127.Size = new System.Drawing.Size(120, 24); |
|
| 590 |
this.label127.TabIndex = 28; |
|
| 591 |
this.label127.Text = "請求申請日"; |
|
| 592 |
this.label127.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 593 |
// |
|
| 594 |
// label60 |
|
| 595 |
// |
|
| 596 |
this.label60.BackColor = System.Drawing.Color.Moccasin; |
|
| 597 |
this.label60.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 598 |
this.label60.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 599 |
this.label60.Location = new System.Drawing.Point(1, 47); |
|
| 600 |
this.label60.Name = "label60"; |
|
| 601 |
this.label60.Size = new System.Drawing.Size(120, 30); |
|
| 602 |
this.label60.TabIndex = 23; |
|
| 603 |
this.label60.Text = "請求準備開始日"; |
|
| 604 |
this.label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 605 |
// |
|
| 606 |
// label86 |
|
| 607 |
// |
|
| 608 |
this.label86.BackColor = System.Drawing.Color.Moccasin; |
|
| 609 |
this.label86.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 610 |
this.label86.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 611 |
this.label86.Location = new System.Drawing.Point(1, 1); |
|
| 612 |
this.label86.Name = "label86"; |
|
| 613 |
this.label86.Size = new System.Drawing.Size(120, 30); |
|
| 614 |
this.label86.TabIndex = 23; |
|
| 615 |
this.label86.Text = "請求区分"; |
|
| 616 |
this.label86.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 617 |
// |
|
| 618 |
// label87 |
|
| 619 |
// |
|
| 620 |
this.label87.BackColor = System.Drawing.Color.White; |
|
| 621 |
this.label87.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 622 |
this.label87.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 623 |
this.label87.Location = new System.Drawing.Point(129, 1); |
|
| 624 |
this.label87.Name = "label87"; |
|
| 625 |
this.label87.Size = new System.Drawing.Size(240, 30); |
|
| 626 |
this.label87.TabIndex = 0; |
|
| 627 |
this.label87.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 628 |
// |
|
| 629 |
// label126 |
|
| 630 |
// |
|
| 631 |
this.label126.BackColor = System.Drawing.Color.Moccasin; |
|
| 632 |
this.label126.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 633 |
this.label126.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 634 |
this.label126.Location = new System.Drawing.Point(1, 165); |
|
| 635 |
this.label126.Name = "label126"; |
|
| 636 |
this.label126.Size = new System.Drawing.Size(120, 24); |
|
| 637 |
this.label126.TabIndex = 27; |
|
| 638 |
this.label126.Text = "請求書発給日"; |
|
| 639 |
this.label126.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 640 |
// |
|
| 641 |
// label125 |
|
| 642 |
// |
|
| 643 |
this.label125.BackColor = System.Drawing.Color.Moccasin; |
|
| 644 |
this.label125.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 645 |
this.label125.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 646 |
this.label125.Location = new System.Drawing.Point(1, 189); |
|
| 647 |
this.label125.Name = "label125"; |
|
| 648 |
this.label125.Size = new System.Drawing.Size(120, 24); |
|
| 649 |
this.label125.TabIndex = 26; |
|
| 650 |
this.label125.Text = "請求書郵送日"; |
|
| 651 |
this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 652 |
// |
|
| 653 |
// label129 |
|
| 654 |
// |
|
| 655 |
this.label129.BackColor = System.Drawing.Color.Moccasin; |
|
| 656 |
this.label129.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 657 |
this.label129.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 658 |
this.label129.Location = new System.Drawing.Point(1, 255); |
|
| 659 |
this.label129.Name = "label129"; |
|
| 660 |
this.label129.Size = new System.Drawing.Size(120, 30); |
|
| 661 |
this.label129.TabIndex = 24; |
|
| 662 |
this.label129.Text = "請求確認日"; |
|
| 663 |
this.label129.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 664 |
// |
|
| 665 |
// label89 |
|
| 666 |
// |
|
| 667 |
this.label89.BackColor = System.Drawing.Color.Moccasin; |
|
| 668 |
this.label89.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 669 |
this.label89.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 670 |
this.label89.Location = new System.Drawing.Point(1, 285); |
|
| 671 |
this.label89.Name = "label89"; |
|
| 672 |
this.label89.Size = new System.Drawing.Size(120, 30); |
|
| 673 |
this.label89.TabIndex = 24; |
|
| 674 |
this.label89.Text = "検 査 日"; |
|
| 675 |
this.label89.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 676 |
// |
|
| 677 |
// label90 |
|
| 678 |
// |
|
| 679 |
this.label90.BackColor = System.Drawing.Color.Moccasin; |
|
| 680 |
this.label90.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 681 |
this.label90.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 682 |
this.label90.Location = new System.Drawing.Point(1, 315); |
|
| 683 |
this.label90.Name = "label90"; |
|
| 684 |
this.label90.Size = new System.Drawing.Size(120, 30); |
|
| 685 |
this.label90.TabIndex = 24; |
|
| 686 |
this.label90.Text = "検査是正完了日"; |
|
| 687 |
this.label90.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 688 |
// |
|
| 689 |
// label124 |
|
| 690 |
// |
|
| 691 |
this.label124.BackColor = System.Drawing.Color.Moccasin; |
|
| 692 |
this.label124.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 693 |
this.label124.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 694 |
this.label124.Location = new System.Drawing.Point(1, 141); |
|
| 695 |
this.label124.Name = "label124"; |
|
| 696 |
this.label124.Size = new System.Drawing.Size(120, 24); |
|
| 697 |
this.label124.TabIndex = 25; |
|
| 698 |
this.label124.Text = "請求承認日"; |
|
| 699 |
this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 700 |
// |
|
| 701 |
// label94 |
|
| 702 |
// |
|
| 703 |
this.label94.BackColor = System.Drawing.Color.Moccasin; |
|
| 704 |
this.label94.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 705 |
this.label94.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 706 |
this.label94.ForeColor = System.Drawing.Color.Black; |
|
| 707 |
this.label94.Location = new System.Drawing.Point(1, 422); |
|
| 708 |
this.label94.Name = "label94"; |
|
| 709 |
this.label94.Size = new System.Drawing.Size(120, 40); |
|
| 710 |
this.label94.TabIndex = 168; |
|
| 711 |
this.label94.Text = "是正完了\r\nコメント"; |
|
| 712 |
this.label94.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 713 |
// |
|
| 714 |
// label104 |
|
| 715 |
// |
|
| 716 |
this.label104.AutoSize = true; |
|
| 717 |
this.label104.BackColor = System.Drawing.Color.Black; |
|
| 718 |
this.label104.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 719 |
this.label104.ForeColor = System.Drawing.Color.Red; |
|
| 720 |
this.label104.Location = new System.Drawing.Point(288, 337); |
|
| 721 |
this.label104.Name = "label104"; |
|
| 722 |
this.label104.Size = new System.Drawing.Size(347, 21); |
|
| 723 |
this.label104.TabIndex = 169; |
|
| 724 |
this.label104.Text = "※各コメントは必ず記入すること。"; |
|
| 725 |
// |
|
| 726 |
// label59 |
|
| 727 |
// |
|
| 728 |
this.label59.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
|
| 729 |
this.label59.BackColor = System.Drawing.Color.Moccasin; |
|
| 730 |
this.label59.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 731 |
this.label59.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 732 |
this.label59.Location = new System.Drawing.Point(668, 2080); |
|
| 733 |
this.label59.Name = "label59"; |
|
| 734 |
this.label59.Size = new System.Drawing.Size(649, 30); |
|
| 735 |
this.label59.TabIndex = 183; |
|
| 736 |
this.label59.Text = "入 金 管 理"; |
|
| 737 |
this.label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 738 |
// |
|
| 739 |
// panel8 |
|
| 740 |
// |
|
| 741 |
this.panel8.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
| 461 |
this.panel10.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
| 742 | 462 |
| System.Windows.Forms.AnchorStyles.Left) |
| 743 | 463 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 744 |
this.panel8.BackColor = System.Drawing.Color.LawnGreen; |
|
| 745 |
this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 746 |
this.panel8.Controls.Add(this.label118); |
|
| 747 |
this.panel8.Controls.Add(this.label120); |
|
| 748 |
this.panel8.Controls.Add(this.label117); |
|
| 749 |
this.panel8.Controls.Add(this.lblLinkTotal4); |
|
| 750 |
this.panel8.Controls.Add(this.lblLinkTotal3); |
|
| 751 |
this.panel8.Controls.Add(this.lblLinkTotal2); |
|
| 752 |
this.panel8.Controls.Add(this.lblLinkTotal1); |
|
| 753 |
this.panel8.Controls.Add(this.label116); |
|
| 754 |
this.panel8.Controls.Add(this.btnLink); |
|
| 755 |
this.panel8.Controls.Add(this.label74); |
|
| 756 |
this.panel8.Controls.Add(this.dgvPurchaseOrder); |
|
| 757 |
this.panel8.Controls.Add(this.dgvLink); |
|
| 758 |
this.panel8.Controls.Add(this.label85); |
|
| 759 |
this.panel8.Controls.Add(this.label84); |
|
| 760 |
this.panel8.Controls.Add(this.label83); |
|
| 761 |
this.panel8.Controls.Add(this.label103); |
|
| 762 |
this.panel8.Controls.Add(this.label102); |
|
| 763 |
this.panel8.Controls.Add(this.label119); |
|
| 764 |
this.panel8.Controls.Add(this.label108); |
|
| 765 |
this.panel8.Controls.Add(this.label52); |
|
| 766 |
this.panel8.Controls.Add(this.label109); |
|
| 767 |
this.panel8.Controls.Add(this.label121); |
|
| 768 |
this.panel8.Controls.Add(this.label43); |
|
| 769 |
this.panel8.Controls.Add(this.label45); |
|
| 770 |
this.panel8.Location = new System.Drawing.Point(668, 1073); |
|
| 771 |
this.panel8.Name = "panel8"; |
|
| 772 |
this.panel8.Size = new System.Drawing.Size(649, 994); |
|
| 773 |
this.panel8.TabIndex = 180; |
|
| 464 |
this.panel10.BackColor = System.Drawing.Color.Moccasin; |
|
| 465 |
this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 466 |
this.panel10.Controls.Add(this.dgvPayment); |
|
| 467 |
this.panel10.Controls.Add(this.label92); |
|
| 468 |
this.panel10.Controls.Add(this.label93); |
|
| 469 |
this.panel10.Controls.Add(this.label98); |
|
| 470 |
this.panel10.Controls.Add(this.label95); |
|
| 471 |
this.panel10.Controls.Add(this.textBox3); |
|
| 472 |
this.panel10.Controls.Add(this.label96); |
|
| 473 |
this.panel10.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 474 |
this.panel10.Location = new System.Drawing.Point(667, 2113); |
|
| 475 |
this.panel10.Name = "panel10"; |
|
| 476 |
this.panel10.Size = new System.Drawing.Size(650, 994); |
|
| 477 |
this.panel10.TabIndex = 185; |
|
| 774 | 478 |
// |
| 775 |
// label45
|
|
| 479 |
// dgvPayment
|
|
| 776 | 480 |
// |
| 777 |
this.label45.BackColor = System.Drawing.Color.PaleGreen; |
|
| 778 |
this.label45.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 779 |
this.label45.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 780 |
this.label45.Location = new System.Drawing.Point(254, 39); |
|
| 781 |
this.label45.Name = "label45"; |
|
| 782 |
this.label45.Size = new System.Drawing.Size(120, 30); |
|
| 783 |
this.label45.TabIndex = 165; |
|
| 784 |
this.label45.Text = "承 認 日"; |
|
| 785 |
this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 481 |
this.dgvPayment.AllowUserToAddRows = false; |
|
| 482 |
this.dgvPayment.AllowUserToDeleteRows = false; |
|
| 483 |
this.dgvPayment.AllowUserToResizeColumns = false; |
|
| 484 |
this.dgvPayment.AllowUserToResizeRows = false; |
|
| 485 |
this.dgvPayment.BackgroundColor = System.Drawing.Color.White; |
|
| 486 |
this.dgvPayment.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 487 |
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
| 488 |
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control; |
|
| 489 |
dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 490 |
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText; |
|
| 491 |
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; |
|
| 492 |
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; |
|
| 493 |
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; |
|
| 494 |
this.dgvPayment.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; |
|
| 495 |
this.dgvPayment.ColumnHeadersHeight = 24; |
|
| 496 |
this.dgvPayment.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; |
|
| 497 |
this.dgvPayment.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
| 498 |
this.dataGridViewTextBoxColumn1, |
|
| 499 |
this.dataGridViewTextBoxColumn2, |
|
| 500 |
this.dataGridViewTextBoxColumn3, |
|
| 501 |
this.dataGridViewTextBoxColumn4}); |
|
| 502 |
this.dgvPayment.EnableHeadersVisualStyles = false; |
|
| 503 |
this.dgvPayment.Location = new System.Drawing.Point(129, 1); |
|
| 504 |
this.dgvPayment.Name = "dgvPayment"; |
|
| 505 |
this.dgvPayment.RowHeadersVisible = false; |
|
| 506 |
this.dgvPayment.RowHeadersWidth = 20; |
|
| 507 |
this.dgvPayment.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; |
|
| 508 |
this.dgvPayment.RowTemplate.Height = 24; |
|
| 509 |
this.dgvPayment.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect; |
|
| 510 |
this.dgvPayment.Size = new System.Drawing.Size(484, 122); |
|
| 511 |
this.dgvPayment.TabIndex = 168; |
|
| 512 |
this.dgvPayment.TabStop = false; |
|
| 786 | 513 |
// |
| 787 |
// label43
|
|
| 514 |
// dataGridViewTextBoxColumn1
|
|
| 788 | 515 |
// |
| 789 |
this.label43.BackColor = System.Drawing.Color.PaleGreen; |
|
| 790 |
this.label43.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 791 |
this.label43.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 792 |
this.label43.Location = new System.Drawing.Point(1, 39); |
|
| 793 |
this.label43.Name = "label43"; |
|
| 794 |
this.label43.Size = new System.Drawing.Size(120, 30); |
|
| 795 |
this.label43.TabIndex = 164; |
|
| 796 |
this.label43.Text = "申 請 日"; |
|
| 797 |
this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 516 |
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
| 517 |
dataGridViewCellStyle2.Font = new System.Drawing.Font("Century", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 518 |
this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle2; |
|
| 519 |
this.dataGridViewTextBoxColumn1.HeaderText = ""; |
|
| 520 |
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; |
|
| 521 |
this.dataGridViewTextBoxColumn1.ReadOnly = true; |
|
| 522 |
this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
| 523 |
this.dataGridViewTextBoxColumn1.Width = 120; |
|
| 798 | 524 |
// |
| 799 |
// label121
|
|
| 525 |
// dataGridViewTextBoxColumn2
|
|
| 800 | 526 |
// |
| 801 |
this.label121.BackColor = System.Drawing.Color.SpringGreen; |
|
| 802 |
this.label121.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 803 |
this.label121.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 804 |
this.label121.Location = new System.Drawing.Point(1, 1); |
|
| 805 |
this.label121.Name = "label121"; |
|
| 806 |
this.label121.Size = new System.Drawing.Size(120, 30); |
|
| 807 |
this.label121.TabIndex = 164; |
|
| 808 |
this.label121.Text = "工事予算書"; |
|
| 809 |
this.label121.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 527 |
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
| 528 |
dataGridViewCellStyle3.Font = new System.Drawing.Font("Century", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 529 |
this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle3; |
|
| 530 |
this.dataGridViewTextBoxColumn2.HeaderText = ""; |
|
| 531 |
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; |
|
| 532 |
this.dataGridViewTextBoxColumn2.ReadOnly = true; |
|
| 533 |
this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
| 534 |
this.dataGridViewTextBoxColumn2.Width = 121; |
|
| 810 | 535 |
// |
| 811 |
// label109
|
|
| 536 |
// dataGridViewTextBoxColumn3
|
|
| 812 | 537 |
// |
| 813 |
this.label109.BackColor = System.Drawing.Color.PaleGreen; |
|
| 814 |
this.label109.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 815 |
this.label109.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 816 |
this.label109.Location = new System.Drawing.Point(1, 171); |
|
| 817 |
this.label109.Name = "label109"; |
|
| 818 |
this.label109.Size = new System.Drawing.Size(120, 24); |
|
| 819 |
this.label109.TabIndex = 165; |
|
| 820 |
this.label109.Text = "注文書承認日"; |
|
| 821 |
this.label109.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 538 |
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
| 539 |
dataGridViewCellStyle4.Font = new System.Drawing.Font("Century", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 540 |
this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle4; |
|
| 541 |
this.dataGridViewTextBoxColumn3.HeaderText = ""; |
|
| 542 |
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; |
|
| 543 |
this.dataGridViewTextBoxColumn3.ReadOnly = true; |
|
| 544 |
this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
| 545 |
this.dataGridViewTextBoxColumn3.Width = 120; |
|
| 822 | 546 |
// |
| 823 |
// label52
|
|
| 547 |
// dataGridViewTextBoxColumn4
|
|
| 824 | 548 |
// |
| 825 |
this.label52.BackColor = System.Drawing.Color.PaleGreen; |
|
| 826 |
this.label52.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 827 |
this.label52.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 828 |
this.label52.Location = new System.Drawing.Point(1, 195); |
|
| 829 |
this.label52.Name = "label52"; |
|
| 830 |
this.label52.Size = new System.Drawing.Size(120, 24); |
|
| 831 |
this.label52.TabIndex = 164; |
|
| 832 |
this.label52.Text = "注文書発給日"; |
|
| 833 |
this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 549 |
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
| 550 |
dataGridViewCellStyle5.Font = new System.Drawing.Font("Century", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 551 |
this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle5; |
|
| 552 |
this.dataGridViewTextBoxColumn4.HeaderText = ""; |
|
| 553 |
this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; |
|
| 554 |
this.dataGridViewTextBoxColumn4.ReadOnly = true; |
|
| 555 |
this.dataGridViewTextBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
| 556 |
this.dataGridViewTextBoxColumn4.Width = 120; |
|
| 834 | 557 |
// |
| 835 |
// label108
|
|
| 558 |
// label92
|
|
| 836 | 559 |
// |
| 837 |
this.label108.BackColor = System.Drawing.Color.PaleGreen; |
|
| 838 |
this.label108.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 839 |
this.label108.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 840 |
this.label108.Location = new System.Drawing.Point(1, 147); |
|
| 841 |
this.label108.Name = "label108"; |
|
| 842 |
this.label108.Size = new System.Drawing.Size(120, 24); |
|
| 843 |
this.label108.TabIndex = 164; |
|
| 844 |
this.label108.Text = "注文書申請日"; |
|
| 845 |
this.label108.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 560 |
this.label92.BackColor = System.Drawing.Color.Beige; |
|
| 561 |
this.label92.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 562 |
this.label92.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 563 |
this.label92.ForeColor = System.Drawing.Color.Black; |
|
| 564 |
this.label92.Location = new System.Drawing.Point(1, 25); |
|
| 565 |
this.label92.Name = "label92"; |
|
| 566 |
this.label92.Size = new System.Drawing.Size(120, 24); |
|
| 567 |
this.label92.TabIndex = 147; |
|
| 568 |
this.label92.Text = "入金日"; |
|
| 569 |
this.label92.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 846 | 570 |
// |
| 847 |
// label119
|
|
| 571 |
// label93
|
|
| 848 | 572 |
// |
| 849 |
this.label119.BackColor = System.Drawing.Color.SpringGreen; |
|
| 850 |
this.label119.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 851 |
this.label119.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 852 |
this.label119.Location = new System.Drawing.Point(1, 85); |
|
| 853 |
this.label119.Name = "label119"; |
|
| 854 |
this.label119.Size = new System.Drawing.Size(120, 30); |
|
| 855 |
this.label119.TabIndex = 164; |
|
| 856 |
this.label119.Text = "注 文 書"; |
|
| 857 |
this.label119.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 573 |
this.label93.BackColor = System.Drawing.Color.Beige; |
|
| 574 |
this.label93.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 575 |
this.label93.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 576 |
this.label93.ForeColor = System.Drawing.Color.Black; |
|
| 577 |
this.label93.Location = new System.Drawing.Point(1, 73); |
|
| 578 |
this.label93.Name = "label93"; |
|
| 579 |
this.label93.Size = new System.Drawing.Size(120, 24); |
|
| 580 |
this.label93.TabIndex = 147; |
|
| 581 |
this.label93.Text = "入金金額"; |
|
| 582 |
this.label93.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 858 | 583 |
// |
| 859 |
// label102
|
|
| 584 |
// label98
|
|
| 860 | 585 |
// |
| 861 |
this.label102.BackColor = System.Drawing.Color.White; |
|
| 862 |
this.label102.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 863 |
this.label102.Location = new System.Drawing.Point(128, 41); |
|
| 864 |
this.label102.Name = "label102"; |
|
| 865 |
this.label102.Size = new System.Drawing.Size(120, 26); |
|
| 866 |
this.label102.TabIndex = 0; |
|
| 867 |
this.label102.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 586 |
this.label98.BackColor = System.Drawing.Color.Beige; |
|
| 587 |
this.label98.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 588 |
this.label98.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 589 |
this.label98.ForeColor = System.Drawing.Color.Black; |
|
| 590 |
this.label98.Location = new System.Drawing.Point(1, 139); |
|
| 591 |
this.label98.Name = "label98"; |
|
| 592 |
this.label98.Size = new System.Drawing.Size(120, 40); |
|
| 593 |
this.label98.TabIndex = 148; |
|
| 594 |
this.label98.Text = "入金\r\n申送りコメント"; |
|
| 595 |
this.label98.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 868 | 596 |
// |
| 869 |
// label103
|
|
| 597 |
// label95
|
|
| 870 | 598 |
// |
| 871 |
this.label103.BackColor = System.Drawing.Color.White; |
|
| 872 |
this.label103.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 873 |
this.label103.Location = new System.Drawing.Point(382, 41); |
|
| 874 |
this.label103.Name = "label103"; |
|
| 875 |
this.label103.Size = new System.Drawing.Size(120, 26); |
|
| 876 |
this.label103.TabIndex = 1; |
|
| 877 |
this.label103.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 599 |
this.label95.BackColor = System.Drawing.Color.Beige; |
|
| 600 |
this.label95.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 601 |
this.label95.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 602 |
this.label95.ForeColor = System.Drawing.Color.Black; |
|
| 603 |
this.label95.Location = new System.Drawing.Point(1, 97); |
|
| 604 |
this.label95.Name = "label95"; |
|
| 605 |
this.label95.Size = new System.Drawing.Size(120, 24); |
|
| 606 |
this.label95.TabIndex = 147; |
|
| 607 |
this.label95.Text = "請求との差額"; |
|
| 608 |
this.label95.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 878 | 609 |
// |
| 879 |
// label83
|
|
| 610 |
// textBox3
|
|
| 880 | 611 |
// |
| 881 |
this.label83.BackColor = System.Drawing.Color.PaleGreen; |
|
| 882 |
this.label83.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 883 |
this.label83.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 884 |
this.label83.Location = new System.Drawing.Point(1, 219); |
|
| 885 |
this.label83.Name = "label83"; |
|
| 886 |
this.label83.Size = new System.Drawing.Size(120, 24); |
|
| 887 |
this.label83.TabIndex = 164; |
|
| 888 |
this.label83.Text = "注文書郵送日"; |
|
| 889 |
this.label83.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 890 |
// |
|
| 891 |
// label84 |
|
| 892 |
// |
|
| 893 |
this.label84.BackColor = System.Drawing.Color.PaleGreen; |
|
| 894 |
this.label84.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 895 |
this.label84.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 896 |
this.label84.Location = new System.Drawing.Point(1, 243); |
|
| 897 |
this.label84.Name = "label84"; |
|
| 898 |
this.label84.Size = new System.Drawing.Size(120, 24); |
|
| 899 |
this.label84.TabIndex = 164; |
|
| 900 |
this.label84.Text = "注文書返送日"; |
|
| 901 |
this.label84.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 902 |
// |
|
| 903 |
// label85 |
|
| 904 |
// |
|
| 905 |
this.label85.BackColor = System.Drawing.Color.PaleGreen; |
|
| 906 |
this.label85.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 907 |
this.label85.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 908 |
this.label85.Location = new System.Drawing.Point(1, 267); |
|
| 909 |
this.label85.Name = "label85"; |
|
| 910 |
this.label85.Size = new System.Drawing.Size(120, 24); |
|
| 911 |
this.label85.TabIndex = 164; |
|
| 912 |
this.label85.Text = "注文書返送確認日"; |
|
| 913 |
this.label85.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 914 |
// |
|
| 915 |
// label74 |
|
| 916 |
// |
|
| 917 |
this.label74.BackColor = System.Drawing.Color.SpringGreen; |
|
| 918 |
this.label74.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 919 |
this.label74.Location = new System.Drawing.Point(1, 331); |
|
| 920 |
this.label74.Name = "label74"; |
|
| 921 |
this.label74.Size = new System.Drawing.Size(120, 30); |
|
| 922 |
this.label74.TabIndex = 167; |
|
| 923 |
this.label74.Text = "増減工事"; |
|
| 924 |
this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 925 |
// |
|
| 926 |
// btnLink |
|
| 927 |
// |
|
| 928 |
this.btnLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
| 929 |
this.btnLink.BackColor = System.Drawing.Color.Tan; |
|
| 930 |
this.btnLink.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 931 |
this.btnLink.Location = new System.Drawing.Point(506, 555); |
|
| 932 |
this.btnLink.Name = "btnLink"; |
|
| 933 |
this.btnLink.Size = new System.Drawing.Size(120, 30); |
|
| 934 |
this.btnLink.TabIndex = 168; |
|
| 935 |
this.btnLink.TabStop = false; |
|
| 936 |
this.btnLink.Text = "増減選択"; |
|
| 937 |
this.btnLink.UseVisualStyleBackColor = false; |
|
| 938 |
this.btnLink.Click += new System.EventHandler(this.btnLink_Click); |
|
| 939 |
// |
|
| 940 |
// label116 |
|
| 941 |
// |
|
| 942 |
this.label116.BackColor = System.Drawing.Color.White; |
|
| 943 |
this.label116.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
|
| 944 |
this.label116.Font = new System.Drawing.Font("MS P明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 945 |
this.label116.ForeColor = System.Drawing.Color.Black; |
|
| 946 |
this.label116.Location = new System.Drawing.Point(1, 533); |
|
| 947 |
this.label116.Name = "label116"; |
|
| 948 |
this.label116.Size = new System.Drawing.Size(120, 22); |
|
| 949 |
this.label116.TabIndex = 185; |
|
| 950 |
this.label116.Text = "合計金額"; |
|
| 951 |
this.label116.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 952 |
// |
|
| 953 |
// lblLinkTotal1 |
|
| 954 |
// |
|
| 955 |
this.lblLinkTotal1.BackColor = System.Drawing.Color.White; |
|
| 956 |
this.lblLinkTotal1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
|
| 957 |
this.lblLinkTotal1.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 958 |
this.lblLinkTotal1.ForeColor = System.Drawing.Color.Black; |
|
| 959 |
this.lblLinkTotal1.Location = new System.Drawing.Point(121, 533); |
|
| 960 |
this.lblLinkTotal1.Name = "lblLinkTotal1"; |
|
| 961 |
this.lblLinkTotal1.Size = new System.Drawing.Size(120, 22); |
|
| 962 |
this.lblLinkTotal1.TabIndex = 186; |
|
| 963 |
this.lblLinkTotal1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
| 964 |
// |
|
| 965 |
// lblLinkTotal2 |
|
| 966 |
// |
|
| 967 |
this.lblLinkTotal2.BackColor = System.Drawing.Color.White; |
|
| 968 |
this.lblLinkTotal2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
|
| 969 |
this.lblLinkTotal2.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 970 |
this.lblLinkTotal2.ForeColor = System.Drawing.Color.Black; |
|
| 971 |
this.lblLinkTotal2.Location = new System.Drawing.Point(241, 533); |
|
| 972 |
this.lblLinkTotal2.Name = "lblLinkTotal2"; |
|
| 973 |
this.lblLinkTotal2.Size = new System.Drawing.Size(120, 22); |
|
| 974 |
this.lblLinkTotal2.TabIndex = 187; |
|
| 975 |
this.lblLinkTotal2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
| 976 |
// |
|
| 977 |
// lblLinkTotal3 |
|
| 978 |
// |
|
| 979 |
this.lblLinkTotal3.BackColor = System.Drawing.Color.White; |
|
| 980 |
this.lblLinkTotal3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
|
| 981 |
this.lblLinkTotal3.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 982 |
this.lblLinkTotal3.ForeColor = System.Drawing.Color.Black; |
|
| 983 |
this.lblLinkTotal3.Location = new System.Drawing.Point(361, 533); |
|
| 984 |
this.lblLinkTotal3.Name = "lblLinkTotal3"; |
|
| 985 |
this.lblLinkTotal3.Size = new System.Drawing.Size(120, 22); |
|
| 986 |
this.lblLinkTotal3.TabIndex = 188; |
|
| 987 |
this.lblLinkTotal3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
| 988 |
// |
|
| 989 |
// lblLinkTotal4 |
|
| 990 |
// |
|
| 991 |
this.lblLinkTotal4.BackColor = System.Drawing.Color.White; |
|
| 992 |
this.lblLinkTotal4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; |
|
| 993 |
this.lblLinkTotal4.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
| 994 |
this.lblLinkTotal4.ForeColor = System.Drawing.Color.Black; |
|
| 995 |
this.lblLinkTotal4.Location = new System.Drawing.Point(481, 533); |
|
| 996 |
this.lblLinkTotal4.Name = "lblLinkTotal4"; |
|
| 997 |
this.lblLinkTotal4.Size = new System.Drawing.Size(120, 22); |
|
| 998 |
this.lblLinkTotal4.TabIndex = 189; |
|
| 999 |
this.lblLinkTotal4.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
| 1000 |
// |
|
| 1001 |
// label117 |
|
| 1002 |
// |
|
| 1003 |
this.label117.BackColor = System.Drawing.Color.PaleGreen; |
|
| 1004 |
this.label117.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1005 |
this.label117.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1006 |
this.label117.Location = new System.Drawing.Point(1, 639); |
|
| 1007 |
this.label117.Name = "label117"; |
|
| 1008 |
this.label117.Size = new System.Drawing.Size(120, 30); |
|
| 1009 |
this.label117.TabIndex = 191; |
|
| 1010 |
this.label117.Text = "入力完了日"; |
|
| 1011 |
this.label117.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 1012 |
// |
|
| 1013 |
// label120 |
|
| 1014 |
// |
|
| 1015 |
this.label120.BackColor = System.Drawing.Color.SpringGreen; |
|
| 1016 |
this.label120.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1017 |
this.label120.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1018 |
this.label120.Location = new System.Drawing.Point(2, 601); |
|
| 1019 |
this.label120.Name = "label120"; |
|
| 1020 |
this.label120.Size = new System.Drawing.Size(120, 30); |
|
| 1021 |
this.label120.TabIndex = 191; |
|
| 1022 |
this.label120.Text = "工事詳細台帳"; |
|
| 1023 |
this.label120.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 1024 |
// |
|
| 1025 |
// label118 |
|
| 1026 |
// |
|
| 1027 |
this.label118.BackColor = System.Drawing.Color.White; |
|
| 1028 |
this.label118.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1029 |
this.label118.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1030 |
this.label118.Location = new System.Drawing.Point(128, 641); |
|
| 1031 |
this.label118.Name = "label118"; |
|
| 1032 |
this.label118.Size = new System.Drawing.Size(120, 26); |
|
| 1033 |
this.label118.TabIndex = 58; |
|
| 1034 |
this.label118.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 1035 |
// |
|
| 1036 |
// label40 |
|
| 1037 |
// |
|
| 1038 |
this.label40.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
|
| 1039 |
this.label40.BackColor = System.Drawing.Color.LawnGreen; |
|
| 1040 |
this.label40.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1041 |
this.label40.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1042 |
this.label40.Location = new System.Drawing.Point(668, 1040); |
|
| 1043 |
this.label40.Name = "label40"; |
|
| 1044 |
this.label40.Size = new System.Drawing.Size(649, 30); |
|
| 1045 |
this.label40.TabIndex = 178; |
|
| 1046 |
this.label40.Text = "施 工 管 理"; |
|
| 1047 |
this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 1048 |
// |
|
| 1049 |
// panel7 |
|
| 1050 |
// |
|
| 1051 |
this.panel7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
| 1052 |
| System.Windows.Forms.AnchorStyles.Left) |
|
| 612 |
this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
|
| 1053 | 613 |
| System.Windows.Forms.AnchorStyles.Right))); |
| 1054 |
this.panel7.BackColor = System.Drawing.Color.YellowGreen; |
|
| 1055 |
this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1056 |
this.panel7.Controls.Add(this.label105); |
|
| 1057 |
this.panel7.Controls.Add(this.lblFluctuationText); |
|
| 1058 |
this.panel7.Controls.Add(this.pnlFluctuation); |
|
| 1059 |
this.panel7.Controls.Add(this.comboBoxEX4); |
|
| 1060 |
this.panel7.Controls.Add(this.comboBoxEX3); |
|
| 1061 |
this.panel7.Controls.Add(this.cmbConstrSubPerson); |
|
| 1062 |
this.panel7.Controls.Add(this.label46); |
|
| 1063 |
this.panel7.Controls.Add(this.txtInput32); |
|
| 1064 |
this.panel7.Controls.Add(this.label47); |
|
| 1065 |
this.panel7.Controls.Add(this.label51); |
|
| 1066 |
this.panel7.Controls.Add(this.txtInput31); |
|
| 1067 |
this.panel7.Controls.Add(this.label41); |
|
| 1068 |
this.panel7.Controls.Add(this.label50); |
|
| 1069 |
this.panel7.Controls.Add(this.label88); |
|
| 1070 |
this.panel7.Controls.Add(this.textBoxEX3); |
|
| 1071 |
this.panel7.Controls.Add(this.textBoxEX7); |
|
| 1072 |
this.panel7.Controls.Add(this.txtInput35); |
|
| 1073 |
this.panel7.Controls.Add(this.label25); |
|
| 1074 |
this.panel7.Controls.Add(this.txtInput04); |
|
| 1075 |
this.panel7.Controls.Add(this.label42); |
|
| 1076 |
this.panel7.Controls.Add(this.textBoxEX5); |
|
| 1077 |
this.panel7.Controls.Add(this.textBoxEX4); |
|
| 1078 |
this.panel7.Controls.Add(this.txtInput29); |
|
| 1079 |
this.panel7.Controls.Add(this.txtInput30); |
|
| 1080 |
this.panel7.Controls.Add(this.label81); |
|
| 1081 |
this.panel7.Controls.Add(this.label82); |
|
| 1082 |
this.panel7.Controls.Add(this.label77); |
|
| 1083 |
this.panel7.Controls.Add(this.label80); |
|
| 1084 |
this.panel7.Controls.Add(this.label78); |
|
| 1085 |
this.panel7.Controls.Add(this.label67); |
|
| 1086 |
this.panel7.Controls.Add(this.label79); |
|
| 1087 |
this.panel7.Controls.Add(this.label31); |
|
| 1088 |
this.panel7.Controls.Add(this.cmbConstrInst); |
|
| 1089 |
this.panel7.Controls.Add(this.comboBoxEX2); |
|
| 1090 |
this.panel7.Controls.Add(this.cmbConstrPerson); |
|
| 1091 |
this.panel7.Controls.Add(this.label113); |
|
| 1092 |
this.panel7.Controls.Add(this.label76); |
|
| 1093 |
this.panel7.Controls.Add(this.label112); |
|
| 1094 |
this.panel7.Controls.Add(this.label21); |
|
| 1095 |
this.panel7.Location = new System.Drawing.Point(3, 1073); |
|
| 1096 |
this.panel7.Name = "panel7"; |
|
| 1097 |
this.panel7.Size = new System.Drawing.Size(649, 994); |
|
| 1098 |
this.panel7.TabIndex = 179; |
|
| 614 |
this.textBox3.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 615 |
this.textBox3.ImeMode = System.Windows.Forms.ImeMode.On; |
|
| 616 |
this.textBox3.Location = new System.Drawing.Point(129, 139); |
|
| 617 |
this.textBox3.MaxLength = 120; |
|
| 618 |
this.textBox3.Multiline = true; |
|
| 619 |
this.textBox3.Name = "textBox3"; |
|
| 620 |
this.textBox3.Size = new System.Drawing.Size(506, 54); |
|
| 621 |
this.textBox3.TabIndex = 0; |
|
| 622 |
this.textBox3.TextChanged += new System.EventHandler(this.valueChange); |
|
| 1099 | 623 |
// |
| 1100 |
// label21
|
|
| 624 |
// label96
|
|
| 1101 | 625 |
// |
| 1102 |
this.label21.BackColor = System.Drawing.Color.LightGreen; |
|
| 1103 |
this.label21.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 1104 |
this.label21.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 1105 |
this.label21.Location = new System.Drawing.Point(1, 31); |
|
| 1106 |
this.label21.Name = "label21"; |
|
| 1107 |
this.label21.Size = new System.Drawing.Size(120, 30); |
|
| 1108 |
this.label21.TabIndex = 16; |
|
| 1109 |
this.label21.Text = "工事担当"; |
|
| 1110 |
this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 626 |
this.label96.BackColor = System.Drawing.Color.Beige; |
|
| 627 |
this.label96.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
| 628 |
this.label96.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
| 629 |
this.label96.ForeColor = System.Drawing.Color.Black; |
|
| 630 |
this.label96.Location = new System.Drawing.Point(1, 49); |
|
| 631 |
this.label96.Name = "label96"; |
|
| 632 |
this.label96.Size = new System.Drawing.Size(120, 24); |
|
| 633 |
this.label96.TabIndex = 147; |
|
| 634 |
this.label96.Text = "入金確認日"; |
|
| 635 |
this.label96.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
| 1111 | 636 |
// |
| 1112 |
// label112
|
|
| 637 |
// label35
|
|
| 1113 | 638 |
// |
| 1114 |
this.label112.BackColor = System.Drawing.Color.LightGreen; |
|
| 1115 |
this.label112.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
他の形式にエクスポート: Unified diff