暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

合約報價單審核.Designer.vb 191KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class 合約報價單審核
  3. Inherits System.Windows.Forms.Form
  4. 'Form 覆寫 Dispose 以清除元件清單。
  5. <System.Diagnostics.DebuggerNonUserCode()>
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. '為 Windows Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()>
  21. Private Sub InitializeComponent()
  22. Dim DataGridViewCellStyle15 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  23. Dim DataGridViewCellStyle16 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle17 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle18 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle19 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle20 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle21 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle22 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle28 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Me.Label20 = New System.Windows.Forms.Label()
  37. Me.合約編號3_tb = New System.Windows.Forms.TextBox()
  38. Me.合約編號2_tb = New System.Windows.Forms.TextBox()
  39. Me.明細選項_bt = New System.Windows.Forms.TextBox()
  40. Me.項目流水_tb = New System.Windows.Forms.TextBox()
  41. Me.選擇項3_tb = New System.Windows.Forms.TextBox()
  42. Me.連動編號_tb = New System.Windows.Forms.TextBox()
  43. Me.PictureBox2 = New System.Windows.Forms.PictureBox()
  44. Me.PictureBox1 = New System.Windows.Forms.PictureBox()
  45. Me.合約改版_bt = New System.Windows.Forms.Button()
  46. Me.工程期_ch = New System.Windows.Forms.ComboBox()
  47. Me.Label19 = New System.Windows.Forms.Label()
  48. Me.Label15 = New System.Windows.Forms.Label()
  49. Me.選擇項2_tb = New System.Windows.Forms.TextBox()
  50. Me.DGV位置2 = New System.Windows.Forms.NumericUpDown()
  51. Me.DGV位置1 = New System.Windows.Forms.NumericUpDown()
  52. Me.明細表流水_tb = New System.Windows.Forms.TextBox()
  53. Me.總表流水_tb = New System.Windows.Forms.TextBox()
  54. Me.Y_2_tb = New System.Windows.Forms.TextBox()
  55. Me.Y_3_tb = New System.Windows.Forms.TextBox()
  56. Me.係數合約號_tb = New System.Windows.Forms.TextBox()
  57. Me.Label42 = New System.Windows.Forms.Label()
  58. Me.Label379 = New System.Windows.Forms.Label()
  59. Me.最末頁_cb = New System.Windows.Forms.ComboBox()
  60. Me.NUD1 = New System.Windows.Forms.NumericUpDown()
  61. Me.Label43 = New System.Windows.Forms.Label()
  62. Me.合約編號1_tb = New System.Windows.Forms.TextBox()
  63. Me.合約編號_cb = New System.Windows.Forms.ComboBox()
  64. Me.Label397 = New System.Windows.Forms.Label()
  65. Me.金額6_und = New System.Windows.Forms.NumericUpDown()
  66. Me.Label5 = New System.Windows.Forms.Label()
  67. Me.工程款6_nud = New System.Windows.Forms.NumericUpDown()
  68. Me.合約種類_tb = New System.Windows.Forms.TextBox()
  69. Me.語言_dgv = New System.Windows.Forms.DataGridView()
  70. Me.NUD2 = New System.Windows.Forms.NumericUpDown()
  71. Me.係數流水號_tb = New System.Windows.Forms.TextBox()
  72. Me.群組編碼_cb = New System.Windows.Forms.ComboBox()
  73. Me.X_2_tb = New System.Windows.Forms.TextBox()
  74. Me.X_3_tb = New System.Windows.Forms.TextBox()
  75. Me.存檔比較_dgv = New System.Windows.Forms.DataGridView()
  76. Me.範例文本_dgv = New System.Windows.Forms.DataGridView()
  77. Me.群組碼_tb = New System.Windows.Forms.TextBox()
  78. Me.表號_tb = New System.Windows.Forms.TextBox()
  79. Me.表頭_tb = New System.Windows.Forms.TextBox()
  80. Me.報價總表_dgv = New System.Windows.Forms.DataGridView()
  81. Me.Panel1 = New System.Windows.Forms.Panel()
  82. Me.試算控制表_dgv = New System.Windows.Forms.DataGridView()
  83. Me.最高扣款_bt = New System.Windows.Forms.TextBox()
  84. Me.工程合約報價明細_tc = New System.Windows.Forms.TabPage()
  85. Me.詳細資料2_ch = New System.Windows.Forms.CheckBox()
  86. Me.報價係數_dgv = New System.Windows.Forms.DataGridView()
  87. Me.報價單立約日期_dtp = New System.Windows.Forms.DateTimePicker()
  88. Me.Label27 = New System.Windows.Forms.Label()
  89. Me.Label26 = New System.Windows.Forms.Label()
  90. Me.報價單合約編號_tb = New System.Windows.Forms.TextBox()
  91. Me.報價工程名稱_英_tb = New System.Windows.Forms.TextBox()
  92. Me.報價工程名稱_中_tb = New System.Windows.Forms.TextBox()
  93. Me.Label9 = New System.Windows.Forms.Label()
  94. Me.Label8 = New System.Windows.Forms.Label()
  95. Me.報價單客戶名稱_cb = New System.Windows.Forms.ComboBox()
  96. Me.Label6 = New System.Windows.Forms.Label()
  97. Me.報價明細表_dgv = New System.Windows.Forms.DataGridView()
  98. Me.Panel5 = New System.Windows.Forms.Panel()
  99. Me.Label22 = New System.Windows.Forms.Label()
  100. Me.Label33 = New System.Windows.Forms.Label()
  101. Me.工資_ch = New System.Windows.Forms.CheckBox()
  102. Me.料號_tb = New System.Windows.Forms.TextBox()
  103. Me.單位2_tb = New System.Windows.Forms.TextBox()
  104. Me.Label32 = New System.Windows.Forms.Label()
  105. Me.申請數_lb = New System.Windows.Forms.Label()
  106. Me.ITEM3_cb = New System.Windows.Forms.ComboBox()
  107. Me.申請數_nud = New System.Windows.Forms.NumericUpDown()
  108. Me.利潤表_ch = New System.Windows.Forms.CheckBox()
  109. Me.材料_ch = New System.Windows.Forms.CheckBox()
  110. Me.物料圖1_pb = New System.Windows.Forms.PictureBox()
  111. Me.Label372 = New System.Windows.Forms.Label()
  112. Me.Label394 = New System.Windows.Forms.Label()
  113. Me.客戶名稱_tb = New System.Windows.Forms.ComboBox()
  114. Me.Label396 = New System.Windows.Forms.Label()
  115. Me.Label373 = New System.Windows.Forms.Label()
  116. Me.NUD3 = New System.Windows.Forms.NumericUpDown()
  117. Me.Label374 = New System.Windows.Forms.Label()
  118. Me.合約種類_cb = New System.Windows.Forms.ComboBox()
  119. Me.Label375 = New System.Windows.Forms.Label()
  120. Me.逾期_bt = New System.Windows.Forms.TextBox()
  121. Me.存檔_bt = New System.Windows.Forms.Button()
  122. Me.使用計算機_ch = New System.Windows.Forms.CheckBox()
  123. Me.直接輸入_ch = New System.Windows.Forms.CheckBox()
  124. Me.材料加入1_bt = New System.Windows.Forms.Button()
  125. Me.工程名稱_中_tb = New System.Windows.Forms.TextBox()
  126. Me.Label395 = New System.Windows.Forms.Label()
  127. Me.客戶地址_tb = New System.Windows.Forms.TextBox()
  128. Me.Label393 = New System.Windows.Forms.Label()
  129. Me.金額5_und = New System.Windows.Forms.NumericUpDown()
  130. Me.係數_nud = New System.Windows.Forms.NumericUpDown()
  131. Me.Label380 = New System.Windows.Forms.Label()
  132. Me.刪除1_bt = New System.Windows.Forms.Button()
  133. Me.工程地點_tb = New System.Windows.Forms.TextBox()
  134. Me.Label406 = New System.Windows.Forms.Label()
  135. Me.金額4_und = New System.Windows.Forms.NumericUpDown()
  136. Me.逾期_英_bt = New System.Windows.Forms.TextBox()
  137. Me.Label376 = New System.Windows.Forms.Label()
  138. Me.工期_nud = New System.Windows.Forms.NumericUpDown()
  139. Me.金額3_und = New System.Windows.Forms.NumericUpDown()
  140. Me.最高扣款_英_bt = New System.Windows.Forms.TextBox()
  141. Me.Label414 = New System.Windows.Forms.Label()
  142. Me.Label391 = New System.Windows.Forms.Label()
  143. Me.金額2_und = New System.Windows.Forms.NumericUpDown()
  144. Me.Label403 = New System.Windows.Forms.Label()
  145. Me.工程合約試算表_tc = New System.Windows.Forms.TabPage()
  146. Me.詳細資料3_ch = New System.Windows.Forms.CheckBox()
  147. Me.Label4 = New System.Windows.Forms.Label()
  148. Me.修改樓層_迴圈_bt = New System.Windows.Forms.Button()
  149. Me.新增物件_bt = New System.Windows.Forms.Button()
  150. Me.料號_lb = New System.Windows.Forms.Label()
  151. Me.樓層_迴路_cb = New System.Windows.Forms.ComboBox()
  152. Me.料號1_tb = New System.Windows.Forms.TextBox()
  153. Me.Label3 = New System.Windows.Forms.Label()
  154. Me.修改試算表名稱_bt = New System.Windows.Forms.Button()
  155. Me.新增試算表_bt = New System.Windows.Forms.Button()
  156. Me.Label1 = New System.Windows.Forms.Label()
  157. Me.試算表_cb = New System.Windows.Forms.ComboBox()
  158. Me.試算表_dgv = New System.Windows.Forms.DataGridView()
  159. Me.物料圖_pb = New System.Windows.Forms.PictureBox()
  160. Me.選擇公司_cb = New System.Windows.Forms.ComboBox()
  161. Me.立約日期_dtp = New System.Windows.Forms.DateTimePicker()
  162. Me.負責人_B_cb = New System.Windows.Forms.ComboBox()
  163. Me.金額1_und = New System.Windows.Forms.NumericUpDown()
  164. Me.Label407 = New System.Windows.Forms.Label()
  165. Me.Label410 = New System.Windows.Forms.Label()
  166. Me.工程款5_nud = New System.Windows.Forms.NumericUpDown()
  167. Me.Label408 = New System.Windows.Forms.Label()
  168. Me.Label377 = New System.Windows.Forms.Label()
  169. Me.Label405 = New System.Windows.Forms.Label()
  170. Me.工程款4_nud = New System.Windows.Forms.NumericUpDown()
  171. Me.減價_bt = New System.Windows.Forms.TextBox()
  172. Me.頁數_bt = New System.Windows.Forms.TextBox()
  173. Me.Label409 = New System.Windows.Forms.Label()
  174. Me.Label399 = New System.Windows.Forms.Label()
  175. Me.負責人_A_cb = New System.Windows.Forms.ComboBox()
  176. Me.工程名稱_英_tb = New System.Windows.Forms.TextBox()
  177. Me.工程款3_nud = New System.Windows.Forms.NumericUpDown()
  178. Me.Label404 = New System.Windows.Forms.Label()
  179. Me.Label413 = New System.Windows.Forms.Label()
  180. Me.Label412 = New System.Windows.Forms.Label()
  181. Me.Label400 = New System.Windows.Forms.Label()
  182. Me.我司地址_tb = New System.Windows.Forms.TextBox()
  183. Me.工程款1_nud = New System.Windows.Forms.NumericUpDown()
  184. Me.放行_bt = New System.Windows.Forms.Button()
  185. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  186. Me.存檔_tb = New System.Windows.Forms.Button()
  187. Me.合約停止_ch = New System.Windows.Forms.CheckBox()
  188. Me.列印成EXCEL_bt = New System.Windows.Forms.Button()
  189. Me.縮放2_bt = New System.Windows.Forms.Button()
  190. Me.合約_dgv = New System.Windows.Forms.DataGridView()
  191. Me.錨點2 = New System.Windows.Forms.TextBox()
  192. Me.縮放1_bt = New System.Windows.Forms.Button()
  193. Me.查詢_bt = New System.Windows.Forms.Button()
  194. Me.關鍵字搜尋_tb = New System.Windows.Forms.TextBox()
  195. Me.Label53 = New System.Windows.Forms.Label()
  196. Me.Label7 = New System.Windows.Forms.Label()
  197. Me.工材分離_ch = New System.Windows.Forms.CheckBox()
  198. Me.空間3 = New System.Windows.Forms.Panel()
  199. Me.歸零數_tb = New System.Windows.Forms.TextBox()
  200. Me.利潤比4_tb = New System.Windows.Forms.TextBox()
  201. Me.Label71 = New System.Windows.Forms.Label()
  202. Me.Label70 = New System.Windows.Forms.Label()
  203. Me.Label69 = New System.Windows.Forms.Label()
  204. Me.Label68 = New System.Windows.Forms.Label()
  205. Me.Label67 = New System.Windows.Forms.Label()
  206. Me.Label64 = New System.Windows.Forms.Label()
  207. Me.Label63 = New System.Windows.Forms.Label()
  208. Me.利潤比3_tb = New System.Windows.Forms.TextBox()
  209. Me.Label60 = New System.Windows.Forms.Label()
  210. Me.總報價_tb = New System.Windows.Forms.TextBox()
  211. Me.總成本_tb = New System.Windows.Forms.TextBox()
  212. Me.Label58 = New System.Windows.Forms.Label()
  213. Me.Label59 = New System.Windows.Forms.Label()
  214. Me.利潤比2_tb = New System.Windows.Forms.TextBox()
  215. Me.Label57 = New System.Windows.Forms.Label()
  216. Me.利潤比1_tb = New System.Windows.Forms.TextBox()
  217. Me.預估利潤_tb = New System.Windows.Forms.TextBox()
  218. Me.預估材料總報價_tb = New System.Windows.Forms.TextBox()
  219. Me.預估工資總報價_tb = New System.Windows.Forms.TextBox()
  220. Me.預估材料總成本_tb = New System.Windows.Forms.TextBox()
  221. Me.Label54 = New System.Windows.Forms.Label()
  222. Me.預估工資總成本_tb = New System.Windows.Forms.TextBox()
  223. Me.Label55 = New System.Windows.Forms.Label()
  224. Me.Label65 = New System.Windows.Forms.Label()
  225. Me.Label62 = New System.Windows.Forms.Label()
  226. Me.Label66 = New System.Windows.Forms.Label()
  227. Me.Label61 = New System.Windows.Forms.Label()
  228. Me.TabControl3 = New System.Windows.Forms.TabControl()
  229. Me.TabPage1 = New System.Windows.Forms.TabPage()
  230. Me.折價計算_bt = New System.Windows.Forms.Button()
  231. Me.Label83 = New System.Windows.Forms.Label()
  232. Me.甲方_cb = New System.Windows.Forms.ComboBox()
  233. Me.未折價前_tb = New System.Windows.Forms.TextBox()
  234. Me.Label82 = New System.Windows.Forms.Label()
  235. Me.歸零位數_nud = New System.Windows.Forms.NumericUpDown()
  236. Me.Label81 = New System.Windows.Forms.Label()
  237. Me.稅後歸零_ch = New System.Windows.Forms.CheckBox()
  238. Me.稅前歸零_ch = New System.Windows.Forms.CheckBox()
  239. Me.Label80 = New System.Windows.Forms.Label()
  240. Me.折讓比例_nud = New System.Windows.Forms.NumericUpDown()
  241. Me.Label79 = New System.Windows.Forms.Label()
  242. Me.報價小計_tb = New System.Windows.Forms.TextBox()
  243. Me.Label39 = New System.Windows.Forms.Label()
  244. Me.TabPage2 = New System.Windows.Forms.TabPage()
  245. Me.報價說明_tb = New System.Windows.Forms.TextBox()
  246. Me.Panel2 = New System.Windows.Forms.Panel()
  247. Me.Label378 = New System.Windows.Forms.Label()
  248. Me.廠區_中文_tb = New System.Windows.Forms.TextBox()
  249. Me.工程款2_nud = New System.Windows.Forms.NumericUpDown()
  250. Me.Label28 = New System.Windows.Forms.Label()
  251. Me.Label382 = New System.Windows.Forms.Label()
  252. Me.稅額顯示_lb = New System.Windows.Forms.Label()
  253. Me.CH2 = New System.Windows.Forms.CheckBox()
  254. Me.CH1 = New System.Windows.Forms.CheckBox()
  255. Me.Label402 = New System.Windows.Forms.Label()
  256. Me.Label392 = New System.Windows.Forms.Label()
  257. Me.Label381 = New System.Windows.Forms.Label()
  258. Me.Label386 = New System.Windows.Forms.Label()
  259. Me.Label21 = New System.Windows.Forms.Label()
  260. Me.TabControl2 = New System.Windows.Forms.TabControl()
  261. Me.TabPage5 = New System.Windows.Forms.TabPage()
  262. Me.第1期_dgv = New System.Windows.Forms.DataGridView()
  263. Me.TabPage6 = New System.Windows.Forms.TabPage()
  264. Me.第2期_dgv = New System.Windows.Forms.DataGridView()
  265. Me.TabPage7 = New System.Windows.Forms.TabPage()
  266. Me.第3期_dgv = New System.Windows.Forms.DataGridView()
  267. Me.TabPage8 = New System.Windows.Forms.TabPage()
  268. Me.第4期_dgv = New System.Windows.Forms.DataGridView()
  269. Me.TabPage9 = New System.Windows.Forms.TabPage()
  270. Me.第5期_dgv = New System.Windows.Forms.DataGridView()
  271. Me.Label388 = New System.Windows.Forms.Label()
  272. Me.Label387 = New System.Windows.Forms.Label()
  273. Me.Label390 = New System.Windows.Forms.Label()
  274. Me.Label389 = New System.Windows.Forms.Label()
  275. Me.Label411 = New System.Windows.Forms.Label()
  276. Me.Label29 = New System.Windows.Forms.Label()
  277. Me.Label35 = New System.Windows.Forms.Label()
  278. Me.Label34 = New System.Windows.Forms.Label()
  279. Me.建立合約資料_tc = New System.Windows.Forms.TabPage()
  280. Me.印尼盾_ch = New System.Windows.Forms.CheckBox()
  281. Me.人民幣_ch = New System.Windows.Forms.CheckBox()
  282. Me.美金_ch = New System.Windows.Forms.CheckBox()
  283. Me.台幣_ch = New System.Windows.Forms.CheckBox()
  284. Me.合約編號清單_bt = New System.Windows.Forms.Button()
  285. Me.工程期1_ch = New System.Windows.Forms.ComboBox()
  286. Me.Label40 = New System.Windows.Forms.Label()
  287. Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
  288. Me.Label2 = New System.Windows.Forms.Label()
  289. Me.合約編號_tb = New System.Windows.Forms.TextBox()
  290. Me.TabControl1 = New System.Windows.Forms.TabControl()
  291. Me.Label41 = New System.Windows.Forms.Label()
  292. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
  293. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  294. CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).BeginInit()
  295. CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).BeginInit()
  296. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).BeginInit()
  297. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).BeginInit()
  298. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  299. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  300. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).BeginInit()
  301. CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  302. CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  303. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  304. Me.Panel1.SuspendLayout()
  305. CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  306. Me.工程合約報價明細_tc.SuspendLayout()
  307. CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  308. CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  309. Me.Panel5.SuspendLayout()
  310. CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  311. CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  312. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).BeginInit()
  313. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).BeginInit()
  314. CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  315. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).BeginInit()
  316. CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  317. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).BeginInit()
  318. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).BeginInit()
  319. Me.工程合約試算表_tc.SuspendLayout()
  320. CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  321. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  322. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).BeginInit()
  323. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  324. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  325. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  326. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  327. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  328. Me.空間3.SuspendLayout()
  329. Me.TabControl3.SuspendLayout()
  330. Me.TabPage1.SuspendLayout()
  331. CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  332. CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  333. Me.TabPage2.SuspendLayout()
  334. Me.Panel2.SuspendLayout()
  335. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  336. Me.TabControl2.SuspendLayout()
  337. Me.TabPage5.SuspendLayout()
  338. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  339. Me.TabPage6.SuspendLayout()
  340. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  341. Me.TabPage7.SuspendLayout()
  342. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  343. Me.TabPage8.SuspendLayout()
  344. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  345. Me.TabPage9.SuspendLayout()
  346. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  347. Me.建立合約資料_tc.SuspendLayout()
  348. Me.TabControl1.SuspendLayout()
  349. Me.SuspendLayout()
  350. '
  351. 'Label20
  352. '
  353. Me.Label20.AutoSize = True
  354. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  355. Me.Label20.Location = New System.Drawing.Point(523, 22)
  356. Me.Label20.Name = "Label20"
  357. Me.Label20.Size = New System.Drawing.Size(79, 16)
  358. Me.Label20.TabIndex = 1351
  359. Me.Label20.Text = "設定最末頁為"
  360. Me.Label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  361. '
  362. '合約編號3_tb
  363. '
  364. Me.合約編號3_tb.Location = New System.Drawing.Point(220, 18)
  365. Me.合約編號3_tb.Name = "合約編號3_tb"
  366. Me.合約編號3_tb.Size = New System.Drawing.Size(35, 23)
  367. Me.合約編號3_tb.TabIndex = 1041
  368. '
  369. '合約編號2_tb
  370. '
  371. Me.合約編號2_tb.Location = New System.Drawing.Point(154, 18)
  372. Me.合約編號2_tb.MaxLength = 6
  373. Me.合約編號2_tb.Name = "合約編號2_tb"
  374. Me.合約編號2_tb.Size = New System.Drawing.Size(65, 23)
  375. Me.合約編號2_tb.TabIndex = 1040
  376. '
  377. '明細選項_bt
  378. '
  379. Me.明細選項_bt.Enabled = False
  380. Me.明細選項_bt.Location = New System.Drawing.Point(254, 469)
  381. Me.明細選項_bt.Name = "明細選項_bt"
  382. Me.明細選項_bt.Size = New System.Drawing.Size(46, 23)
  383. Me.明細選項_bt.TabIndex = 1145
  384. '
  385. '項目流水_tb
  386. '
  387. Me.項目流水_tb.Location = New System.Drawing.Point(309, 208)
  388. Me.項目流水_tb.Name = "項目流水_tb"
  389. Me.項目流水_tb.Size = New System.Drawing.Size(101, 23)
  390. Me.項目流水_tb.TabIndex = 1435
  391. '
  392. '選擇項3_tb
  393. '
  394. Me.選擇項3_tb.Enabled = False
  395. Me.選擇項3_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  396. Me.選擇項3_tb.Location = New System.Drawing.Point(3, 208)
  397. Me.選擇項3_tb.Name = "選擇項3_tb"
  398. Me.選擇項3_tb.Size = New System.Drawing.Size(50, 23)
  399. Me.選擇項3_tb.TabIndex = 1433
  400. Me.選擇項3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  401. '
  402. '連動編號_tb
  403. '
  404. Me.連動編號_tb.Enabled = False
  405. Me.連動編號_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  406. Me.連動編號_tb.Location = New System.Drawing.Point(108, 233)
  407. Me.連動編號_tb.Name = "連動編號_tb"
  408. Me.連動編號_tb.Size = New System.Drawing.Size(112, 23)
  409. Me.連動編號_tb.TabIndex = 1394
  410. Me.連動編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  411. '
  412. 'PictureBox2
  413. '
  414. Me.PictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  415. Me.PictureBox2.Image = Global.工巧明智能管理系統.My.Resources.Resources.HXLOGO01
  416. Me.PictureBox2.Location = New System.Drawing.Point(3, 144)
  417. Me.PictureBox2.Name = "PictureBox2"
  418. Me.PictureBox2.Size = New System.Drawing.Size(471, 61)
  419. Me.PictureBox2.TabIndex = 1432
  420. Me.PictureBox2.TabStop = False
  421. '
  422. 'PictureBox1
  423. '
  424. Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  425. Me.PictureBox1.Image = Global.工巧明智能管理系統.My.Resources.Resources.PGSLOGO01
  426. Me.PictureBox1.Location = New System.Drawing.Point(3, 81)
  427. Me.PictureBox1.Name = "PictureBox1"
  428. Me.PictureBox1.Size = New System.Drawing.Size(471, 61)
  429. Me.PictureBox1.TabIndex = 1431
  430. Me.PictureBox1.TabStop = False
  431. '
  432. '合約改版_bt
  433. '
  434. Me.合約改版_bt.Location = New System.Drawing.Point(217, 206)
  435. Me.合約改版_bt.Name = "合約改版_bt"
  436. Me.合約改版_bt.Size = New System.Drawing.Size(90, 26)
  437. Me.合約改版_bt.TabIndex = 1366
  438. Me.合約改版_bt.Text = "合約改版複製"
  439. Me.合約改版_bt.UseVisualStyleBackColor = True
  440. '
  441. '工程期_ch
  442. '
  443. Me.工程期_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  444. Me.工程期_ch.ForeColor = System.Drawing.Color.Blue
  445. Me.工程期_ch.FormattingEnabled = True
  446. Me.工程期_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  447. Me.工程期_ch.Location = New System.Drawing.Point(257, 17)
  448. Me.工程期_ch.Name = "工程期_ch"
  449. Me.工程期_ch.Size = New System.Drawing.Size(74, 24)
  450. Me.工程期_ch.TabIndex = 1404
  451. '
  452. 'Label19
  453. '
  454. Me.Label19.AutoSize = True
  455. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  456. Me.Label19.Location = New System.Drawing.Point(449, 475)
  457. Me.Label19.Name = "Label19"
  458. Me.Label19.Size = New System.Drawing.Size(235, 16)
  459. Me.Label19.TabIndex = 1147
  460. Me.Label19.Text = "打完比例後,請按左鍵或右鍵金額才會計算"
  461. Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  462. '
  463. 'Label15
  464. '
  465. Me.Label15.AutoSize = True
  466. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  467. Me.Label15.Location = New System.Drawing.Point(333, 2)
  468. Me.Label15.Name = "Label15"
  469. Me.Label15.Size = New System.Drawing.Size(302, 16)
  470. Me.Label15.TabIndex = 1403
  471. Me.Label15.Text = "立約日期的格式為YYMMDD (年兩位,月兩位,日兩位)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  472. Me.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  473. '
  474. '選擇項2_tb
  475. '
  476. Me.選擇項2_tb.Enabled = False
  477. Me.選擇項2_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  478. Me.選擇項2_tb.Location = New System.Drawing.Point(271, 53)
  479. Me.選擇項2_tb.Name = "選擇項2_tb"
  480. Me.選擇項2_tb.Size = New System.Drawing.Size(50, 23)
  481. Me.選擇項2_tb.TabIndex = 1430
  482. Me.選擇項2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  483. '
  484. 'DGV位置2
  485. '
  486. Me.DGV位置2.Location = New System.Drawing.Point(230, 54)
  487. Me.DGV位置2.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  488. Me.DGV位置2.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
  489. Me.DGV位置2.Name = "DGV位置2"
  490. Me.DGV位置2.Size = New System.Drawing.Size(40, 23)
  491. Me.DGV位置2.TabIndex = 1355
  492. Me.DGV位置2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  493. Me.DGV位置2.ThousandsSeparator = True
  494. '
  495. 'DGV位置1
  496. '
  497. Me.DGV位置1.Location = New System.Drawing.Point(188, 54)
  498. Me.DGV位置1.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  499. Me.DGV位置1.Minimum = New Decimal(New Integer() {10000, 0, 0, -2147483648})
  500. Me.DGV位置1.Name = "DGV位置1"
  501. Me.DGV位置1.Size = New System.Drawing.Size(40, 23)
  502. Me.DGV位置1.TabIndex = 1354
  503. Me.DGV位置1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  504. Me.DGV位置1.ThousandsSeparator = True
  505. '
  506. '明細表流水_tb
  507. '
  508. Me.明細表流水_tb.Location = New System.Drawing.Point(136, 54)
  509. Me.明細表流水_tb.Name = "明細表流水_tb"
  510. Me.明細表流水_tb.Size = New System.Drawing.Size(50, 23)
  511. Me.明細表流水_tb.TabIndex = 1353
  512. '
  513. '總表流水_tb
  514. '
  515. Me.總表流水_tb.Location = New System.Drawing.Point(86, 54)
  516. Me.總表流水_tb.Name = "總表流水_tb"
  517. Me.總表流水_tb.Size = New System.Drawing.Size(50, 23)
  518. Me.總表流水_tb.TabIndex = 1352
  519. '
  520. 'Y_2_tb
  521. '
  522. Me.Y_2_tb.Enabled = False
  523. Me.Y_2_tb.ForeColor = System.Drawing.Color.Red
  524. Me.Y_2_tb.Location = New System.Drawing.Point(179, 208)
  525. Me.Y_2_tb.Name = "Y_2_tb"
  526. Me.Y_2_tb.Size = New System.Drawing.Size(35, 23)
  527. Me.Y_2_tb.TabIndex = 1375
  528. Me.Y_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  529. '
  530. 'Y_3_tb
  531. '
  532. Me.Y_3_tb.Enabled = False
  533. Me.Y_3_tb.Location = New System.Drawing.Point(99, 208)
  534. Me.Y_3_tb.Name = "Y_3_tb"
  535. Me.Y_3_tb.Size = New System.Drawing.Size(35, 23)
  536. Me.Y_3_tb.TabIndex = 1375
  537. Me.Y_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  538. '
  539. '係數合約號_tb
  540. '
  541. Me.係數合約號_tb.Location = New System.Drawing.Point(271, 28)
  542. Me.係數合約號_tb.Name = "係數合約號_tb"
  543. Me.係數合約號_tb.Size = New System.Drawing.Size(50, 23)
  544. Me.係數合約號_tb.TabIndex = 1351
  545. '
  546. 'Label42
  547. '
  548. Me.Label42.AutoSize = True
  549. Me.Label42.ForeColor = System.Drawing.Color.Green
  550. Me.Label42.Location = New System.Drawing.Point(6, 772)
  551. Me.Label42.Name = "Label42"
  552. Me.Label42.Size = New System.Drawing.Size(478, 16)
  553. Me.Label42.TabIndex = 1406
  554. Me.Label42.Text = "如遇有拆除困難,經A方同意在不影響結構安全下應由B方出具保證切結書,得減價收受。" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  555. '
  556. 'Label379
  557. '
  558. Me.Label379.AutoSize = True
  559. Me.Label379.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  560. Me.Label379.Location = New System.Drawing.Point(-1, 3)
  561. Me.Label379.Name = "Label379"
  562. Me.Label379.Size = New System.Drawing.Size(39, 38)
  563. Me.Label379.TabIndex = 1037
  564. Me.Label379.Text = "合約" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "編號"
  565. Me.Label379.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  566. '
  567. '最末頁_cb
  568. '
  569. Me.最末頁_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  570. Me.最末頁_cb.ForeColor = System.Drawing.Color.Blue
  571. Me.最末頁_cb.FormattingEnabled = True
  572. Me.最末頁_cb.Items.AddRange(New Object() {"16", "17", "18", "19", "20"})
  573. Me.最末頁_cb.Location = New System.Drawing.Point(604, 18)
  574. Me.最末頁_cb.Name = "最末頁_cb"
  575. Me.最末頁_cb.Size = New System.Drawing.Size(78, 24)
  576. Me.最末頁_cb.TabIndex = 1352
  577. '
  578. 'NUD1
  579. '
  580. Me.NUD1.Enabled = False
  581. Me.NUD1.Location = New System.Drawing.Point(132, 366)
  582. Me.NUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  583. Me.NUD1.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  584. Me.NUD1.Name = "NUD1"
  585. Me.NUD1.Size = New System.Drawing.Size(105, 23)
  586. Me.NUD1.TabIndex = 1085
  587. Me.NUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  588. Me.NUD1.ThousandsSeparator = True
  589. '
  590. 'Label43
  591. '
  592. Me.Label43.AutoSize = True
  593. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  594. Me.Label43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  595. Me.Label43.Location = New System.Drawing.Point(3, 236)
  596. Me.Label43.Name = "Label43"
  597. Me.Label43.Size = New System.Drawing.Size(103, 16)
  598. Me.Label43.TabIndex = 1395
  599. Me.Label43.Text = "明細計算連動編號"
  600. Me.Label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  601. '
  602. '合約編號1_tb
  603. '
  604. Me.合約編號1_tb.Location = New System.Drawing.Point(103, 18)
  605. Me.合約編號1_tb.Name = "合約編號1_tb"
  606. Me.合約編號1_tb.Size = New System.Drawing.Size(50, 23)
  607. Me.合約編號1_tb.TabIndex = 1039
  608. '
  609. '合約編號_cb
  610. '
  611. Me.合約編號_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  612. Me.合約編號_cb.ForeColor = System.Drawing.Color.Blue
  613. Me.合約編號_cb.FormattingEnabled = True
  614. Me.合約編號_cb.Items.AddRange(New Object() {"GCM", "ICS"})
  615. Me.合約編號_cb.Location = New System.Drawing.Point(39, 17)
  616. Me.合約編號_cb.Name = "合約編號_cb"
  617. Me.合約編號_cb.Size = New System.Drawing.Size(62, 24)
  618. Me.合約編號_cb.TabIndex = 1038
  619. '
  620. 'Label397
  621. '
  622. Me.Label397.AutoSize = True
  623. Me.Label397.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  624. Me.Label397.Location = New System.Drawing.Point(3, 45)
  625. Me.Label397.Name = "Label397"
  626. Me.Label397.Size = New System.Drawing.Size(74, 21)
  627. Me.Label397.TabIndex = 1114
  628. Me.Label397.Text = "工程合約"
  629. Me.Label397.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  630. '
  631. '金額6_und
  632. '
  633. Me.金額6_und.Enabled = False
  634. Me.金額6_und.Location = New System.Drawing.Point(577, 440)
  635. Me.金額6_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  636. Me.金額6_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  637. Me.金額6_und.Name = "金額6_und"
  638. Me.金額6_und.Size = New System.Drawing.Size(105, 23)
  639. Me.金額6_und.TabIndex = 1140
  640. Me.金額6_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  641. Me.金額6_und.ThousandsSeparator = True
  642. '
  643. 'Label5
  644. '
  645. Me.Label5.AutoSize = True
  646. Me.Label5.Location = New System.Drawing.Point(-2, 30)
  647. Me.Label5.Name = "Label5"
  648. Me.Label5.Size = New System.Drawing.Size(687, 16)
  649. Me.Label5.TabIndex = 1151
  650. Me.Label5.Text = "_________________________________________________________________________________" &
  651. "_______________________________________________________"
  652. '
  653. '工程款6_nud
  654. '
  655. Me.工程款6_nud.Enabled = False
  656. Me.工程款6_nud.Location = New System.Drawing.Point(536, 440)
  657. Me.工程款6_nud.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
  658. Me.工程款6_nud.Name = "工程款6_nud"
  659. Me.工程款6_nud.Size = New System.Drawing.Size(40, 23)
  660. Me.工程款6_nud.TabIndex = 1139
  661. Me.工程款6_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  662. Me.工程款6_nud.ThousandsSeparator = True
  663. Me.工程款6_nud.Value = New Decimal(New Integer() {100, 0, 0, 0})
  664. '
  665. '合約種類_tb
  666. '
  667. Me.合約種類_tb.Location = New System.Drawing.Point(190, 68)
  668. Me.合約種類_tb.Name = "合約種類_tb"
  669. Me.合約種類_tb.Size = New System.Drawing.Size(494, 23)
  670. Me.合約種類_tb.TabIndex = 1081
  671. Me.合約種類_tb.Text = "MECHANICAL ELECTRICAL CONSTRUCTION CONTRACT"
  672. '
  673. '語言_dgv
  674. '
  675. Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  676. Me.語言_dgv.Location = New System.Drawing.Point(3, 29)
  677. Me.語言_dgv.Name = "語言_dgv"
  678. Me.語言_dgv.RowHeadersWidth = 5
  679. Me.語言_dgv.RowTemplate.Height = 24
  680. Me.語言_dgv.Size = New System.Drawing.Size(81, 49)
  681. Me.語言_dgv.TabIndex = 1345
  682. '
  683. 'NUD2
  684. '
  685. Me.NUD2.Enabled = False
  686. Me.NUD2.Location = New System.Drawing.Point(359, 366)
  687. Me.NUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  688. Me.NUD2.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  689. Me.NUD2.Name = "NUD2"
  690. Me.NUD2.Size = New System.Drawing.Size(105, 23)
  691. Me.NUD2.TabIndex = 1086
  692. Me.NUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  693. Me.NUD2.ThousandsSeparator = True
  694. '
  695. '係數流水號_tb
  696. '
  697. Me.係數流水號_tb.Location = New System.Drawing.Point(271, 2)
  698. Me.係數流水號_tb.Name = "係數流水號_tb"
  699. Me.係數流水號_tb.Size = New System.Drawing.Size(50, 23)
  700. Me.係數流水號_tb.TabIndex = 1350
  701. '
  702. '群組編碼_cb
  703. '
  704. Me.群組編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  705. Me.群組編碼_cb.FormattingEnabled = True
  706. Me.群組編碼_cb.Items.AddRange(New Object() {"2019"})
  707. Me.群組編碼_cb.Location = New System.Drawing.Point(3, 3)
  708. Me.群組編碼_cb.Name = "群組編碼_cb"
  709. Me.群組編碼_cb.Size = New System.Drawing.Size(81, 24)
  710. Me.群組編碼_cb.TabIndex = 1340
  711. '
  712. 'X_2_tb
  713. '
  714. Me.X_2_tb.Enabled = False
  715. Me.X_2_tb.ForeColor = System.Drawing.Color.Red
  716. Me.X_2_tb.Location = New System.Drawing.Point(140, 208)
  717. Me.X_2_tb.Name = "X_2_tb"
  718. Me.X_2_tb.Size = New System.Drawing.Size(35, 23)
  719. Me.X_2_tb.TabIndex = 1374
  720. Me.X_2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  721. '
  722. 'X_3_tb
  723. '
  724. Me.X_3_tb.Enabled = False
  725. Me.X_3_tb.Location = New System.Drawing.Point(58, 208)
  726. Me.X_3_tb.Name = "X_3_tb"
  727. Me.X_3_tb.Size = New System.Drawing.Size(35, 23)
  728. Me.X_3_tb.TabIndex = 1374
  729. Me.X_3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  730. '
  731. '存檔比較_dgv
  732. '
  733. DataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  734. Me.存檔比較_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle15
  735. Me.存檔比較_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  736. Me.存檔比較_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  737. Me.存檔比較_dgv.Location = New System.Drawing.Point(400, 4)
  738. Me.存檔比較_dgv.Name = "存檔比較_dgv"
  739. Me.存檔比較_dgv.RowHeadersWidth = 5
  740. Me.存檔比較_dgv.RowTemplate.Height = 24
  741. Me.存檔比較_dgv.Size = New System.Drawing.Size(74, 72)
  742. Me.存檔比較_dgv.TabIndex = 1149
  743. '
  744. '範例文本_dgv
  745. '
  746. DataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  747. Me.範例文本_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle16
  748. Me.範例文本_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  749. Me.範例文本_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  750. Me.範例文本_dgv.Location = New System.Drawing.Point(188, 2)
  751. Me.範例文本_dgv.Name = "範例文本_dgv"
  752. Me.範例文本_dgv.RowHeadersWidth = 5
  753. Me.範例文本_dgv.RowTemplate.Height = 24
  754. Me.範例文本_dgv.Size = New System.Drawing.Size(81, 49)
  755. Me.範例文本_dgv.TabIndex = 1146
  756. '
  757. '群組碼_tb
  758. '
  759. Me.群組碼_tb.Location = New System.Drawing.Point(86, 4)
  760. Me.群組碼_tb.Name = "群組碼_tb"
  761. Me.群組碼_tb.Size = New System.Drawing.Size(102, 23)
  762. Me.群組碼_tb.TabIndex = 1349
  763. '
  764. '表號_tb
  765. '
  766. Me.表號_tb.Location = New System.Drawing.Point(86, 29)
  767. Me.表號_tb.Name = "表號_tb"
  768. Me.表號_tb.Size = New System.Drawing.Size(50, 23)
  769. Me.表號_tb.TabIndex = 1047
  770. '
  771. '表頭_tb
  772. '
  773. Me.表頭_tb.Location = New System.Drawing.Point(136, 29)
  774. Me.表頭_tb.Name = "表頭_tb"
  775. Me.表頭_tb.Size = New System.Drawing.Size(50, 23)
  776. Me.表頭_tb.TabIndex = 1052
  777. '
  778. '報價總表_dgv
  779. '
  780. DataGridViewCellStyle17.BackColor = System.Drawing.Color.White
  781. Me.報價總表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17
  782. Me.報價總表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  783. Or System.Windows.Forms.AnchorStyles.Left) _
  784. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  785. Me.報價總表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  786. Me.報價總表_dgv.BackgroundColor = System.Drawing.Color.White
  787. Me.報價總表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  788. Me.報價總表_dgv.Location = New System.Drawing.Point(711, -3)
  789. Me.報價總表_dgv.Name = "報價總表_dgv"
  790. Me.報價總表_dgv.RowHeadersWidth = 5
  791. Me.報價總表_dgv.RowTemplate.Height = 24
  792. Me.報價總表_dgv.Size = New System.Drawing.Size(1045, 781)
  793. Me.報價總表_dgv.TabIndex = 1354
  794. '
  795. 'Panel1
  796. '
  797. Me.Panel1.BackColor = System.Drawing.Color.Gainsboro
  798. Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  799. Me.Panel1.Controls.Add(Me.項目流水_tb)
  800. Me.Panel1.Controls.Add(Me.選擇項3_tb)
  801. Me.Panel1.Controls.Add(Me.連動編號_tb)
  802. Me.Panel1.Controls.Add(Me.PictureBox2)
  803. Me.Panel1.Controls.Add(Me.PictureBox1)
  804. Me.Panel1.Controls.Add(Me.合約改版_bt)
  805. Me.Panel1.Controls.Add(Me.選擇項2_tb)
  806. Me.Panel1.Controls.Add(Me.DGV位置2)
  807. Me.Panel1.Controls.Add(Me.DGV位置1)
  808. Me.Panel1.Controls.Add(Me.明細表流水_tb)
  809. Me.Panel1.Controls.Add(Me.總表流水_tb)
  810. Me.Panel1.Controls.Add(Me.Y_2_tb)
  811. Me.Panel1.Controls.Add(Me.Y_3_tb)
  812. Me.Panel1.Controls.Add(Me.係數合約號_tb)
  813. Me.Panel1.Controls.Add(Me.Label43)
  814. Me.Panel1.Controls.Add(Me.係數流水號_tb)
  815. Me.Panel1.Controls.Add(Me.群組編碼_cb)
  816. Me.Panel1.Controls.Add(Me.X_2_tb)
  817. Me.Panel1.Controls.Add(Me.語言_dgv)
  818. Me.Panel1.Controls.Add(Me.X_3_tb)
  819. Me.Panel1.Controls.Add(Me.存檔比較_dgv)
  820. Me.Panel1.Controls.Add(Me.範例文本_dgv)
  821. Me.Panel1.Controls.Add(Me.群組碼_tb)
  822. Me.Panel1.Controls.Add(Me.表號_tb)
  823. Me.Panel1.Controls.Add(Me.表頭_tb)
  824. Me.Panel1.Controls.Add(Me.試算控制表_dgv)
  825. Me.Panel1.Location = New System.Drawing.Point(725, 5)
  826. Me.Panel1.Name = "Panel1"
  827. Me.Panel1.Size = New System.Drawing.Size(479, 263)
  828. Me.Panel1.TabIndex = 1418
  829. '
  830. '試算控制表_dgv
  831. '
  832. DataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  833. Me.試算控制表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle18
  834. Me.試算控制表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  835. Me.試算控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  836. Me.試算控制表_dgv.Location = New System.Drawing.Point(323, 4)
  837. Me.試算控制表_dgv.Name = "試算控制表_dgv"
  838. Me.試算控制表_dgv.RowHeadersWidth = 5
  839. DataGridViewCellStyle19.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  840. DataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  841. Me.試算控制表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle19
  842. Me.試算控制表_dgv.RowTemplate.Height = 24
  843. Me.試算控制表_dgv.Size = New System.Drawing.Size(74, 72)
  844. Me.試算控制表_dgv.TabIndex = 1340
  845. '
  846. '最高扣款_bt
  847. '
  848. Me.最高扣款_bt.Location = New System.Drawing.Point(536, 676)
  849. Me.最高扣款_bt.Name = "最高扣款_bt"
  850. Me.最高扣款_bt.Size = New System.Drawing.Size(147, 23)
  851. Me.最高扣款_bt.TabIndex = 1109
  852. Me.最高扣款_bt.Text = "5% (百分之五)"
  853. Me.最高扣款_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  854. '
  855. '工程合約報價明細_tc
  856. '
  857. Me.工程合約報價明細_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  858. Me.工程合約報價明細_tc.Controls.Add(Me.詳細資料2_ch)
  859. Me.工程合約報價明細_tc.Controls.Add(Me.報價係數_dgv)
  860. Me.工程合約報價明細_tc.Controls.Add(Me.報價單立約日期_dtp)
  861. Me.工程合約報價明細_tc.Controls.Add(Me.Label27)
  862. Me.工程合約報價明細_tc.Controls.Add(Me.Label26)
  863. Me.工程合約報價明細_tc.Controls.Add(Me.報價單合約編號_tb)
  864. Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_英_tb)
  865. Me.工程合約報價明細_tc.Controls.Add(Me.報價工程名稱_中_tb)
  866. Me.工程合約報價明細_tc.Controls.Add(Me.Label9)
  867. Me.工程合約報價明細_tc.Controls.Add(Me.Label8)
  868. Me.工程合約報價明細_tc.Controls.Add(Me.報價單客戶名稱_cb)
  869. Me.工程合約報價明細_tc.Controls.Add(Me.Label6)
  870. Me.工程合約報價明細_tc.Controls.Add(Me.報價明細表_dgv)
  871. Me.工程合約報價明細_tc.Controls.Add(Me.Panel5)
  872. Me.工程合約報價明細_tc.Controls.Add(Me.物料圖1_pb)
  873. Me.工程合約報價明細_tc.Location = New System.Drawing.Point(4, 28)
  874. Me.工程合約報價明細_tc.Name = "工程合約報價明細_tc"
  875. Me.工程合約報價明細_tc.Padding = New System.Windows.Forms.Padding(3)
  876. Me.工程合約報價明細_tc.Size = New System.Drawing.Size(1906, 1010)
  877. Me.工程合約報價明細_tc.TabIndex = 0
  878. Me.工程合約報價明細_tc.Text = "工程合約報價明細"
  879. Me.工程合約報價明細_tc.UseVisualStyleBackColor = True
  880. '
  881. '詳細資料2_ch
  882. '
  883. Me.詳細資料2_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  884. Me.詳細資料2_ch.AutoSize = True
  885. Me.詳細資料2_ch.Location = New System.Drawing.Point(992, 24)
  886. Me.詳細資料2_ch.Name = "詳細資料2_ch"
  887. Me.詳細資料2_ch.Size = New System.Drawing.Size(126, 20)
  888. Me.詳細資料2_ch.TabIndex = 1833
  889. Me.詳細資料2_ch.Text = "詳細資料 / Rincian"
  890. Me.詳細資料2_ch.UseVisualStyleBackColor = True
  891. '
  892. '報價係數_dgv
  893. '
  894. Me.報價係數_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  895. Me.報價係數_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  896. Me.報價係數_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  897. Me.報價係數_dgv.Location = New System.Drawing.Point(1497, 3)
  898. Me.報價係數_dgv.Name = "報價係數_dgv"
  899. Me.報價係數_dgv.RowHeadersWidth = 5
  900. Me.報價係數_dgv.RowTemplate.Height = 24
  901. Me.報價係數_dgv.Size = New System.Drawing.Size(255, 99)
  902. Me.報價係數_dgv.TabIndex = 1382
  903. '
  904. '報價單立約日期_dtp
  905. '
  906. Me.報價單立約日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  907. Me.報價單立約日期_dtp.CustomFormat = "yyyy/MM/dd"
  908. Me.報價單立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  909. Me.報價單立約日期_dtp.Location = New System.Drawing.Point(886, 3)
  910. Me.報價單立約日期_dtp.Name = "報價單立約日期_dtp"
  911. Me.報價單立約日期_dtp.Size = New System.Drawing.Size(95, 23)
  912. Me.報價單立約日期_dtp.TabIndex = 1388
  913. '
  914. 'Label27
  915. '
  916. Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  917. Me.Label27.AutoSize = True
  918. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  919. Me.Label27.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  920. Me.Label27.Location = New System.Drawing.Point(829, 6)
  921. Me.Label27.Name = "Label27"
  922. Me.Label27.Size = New System.Drawing.Size(55, 16)
  923. Me.Label27.TabIndex = 1387
  924. Me.Label27.Text = "合約日期"
  925. Me.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  926. '
  927. 'Label26
  928. '
  929. Me.Label26.AutoSize = True
  930. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  931. Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  932. Me.Label26.Location = New System.Drawing.Point(6, 5)
  933. Me.Label26.Name = "Label26"
  934. Me.Label26.Size = New System.Drawing.Size(55, 16)
  935. Me.Label26.TabIndex = 1386
  936. Me.Label26.Text = "合約編號"
  937. Me.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  938. '
  939. '報價單合約編號_tb
  940. '
  941. Me.報價單合約編號_tb.Enabled = False
  942. Me.報價單合約編號_tb.Location = New System.Drawing.Point(62, 2)
  943. Me.報價單合約編號_tb.Name = "報價單合約編號_tb"
  944. Me.報價單合約編號_tb.Size = New System.Drawing.Size(163, 23)
  945. Me.報價單合約編號_tb.TabIndex = 1385
  946. '
  947. '報價工程名稱_英_tb
  948. '
  949. Me.報價工程名稱_英_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  950. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  951. Me.報價工程名稱_英_tb.Enabled = False
  952. Me.報價工程名稱_英_tb.Location = New System.Drawing.Point(94, 79)
  953. Me.報價工程名稱_英_tb.Name = "報價工程名稱_英_tb"
  954. Me.報價工程名稱_英_tb.Size = New System.Drawing.Size(887, 23)
  955. Me.報價工程名稱_英_tb.TabIndex = 1362
  956. '
  957. '報價工程名稱_中_tb
  958. '
  959. Me.報價工程名稱_中_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  960. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  961. Me.報價工程名稱_中_tb.Enabled = False
  962. Me.報價工程名稱_中_tb.Location = New System.Drawing.Point(94, 54)
  963. Me.報價工程名稱_中_tb.Name = "報價工程名稱_中_tb"
  964. Me.報價工程名稱_中_tb.Size = New System.Drawing.Size(887, 23)
  965. Me.報價工程名稱_中_tb.TabIndex = 1361
  966. '
  967. 'Label9
  968. '
  969. Me.Label9.AutoSize = True
  970. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  971. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  972. Me.Label9.Location = New System.Drawing.Point(6, 83)
  973. Me.Label9.Name = "Label9"
  974. Me.Label9.Size = New System.Drawing.Size(87, 16)
  975. Me.Label9.TabIndex = 1360
  976. Me.Label9.Text = "工程名稱(英文)"
  977. '
  978. 'Label8
  979. '
  980. Me.Label8.AutoSize = True
  981. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  982. Me.Label8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  983. Me.Label8.Location = New System.Drawing.Point(6, 57)
  984. Me.Label8.Name = "Label8"
  985. Me.Label8.Size = New System.Drawing.Size(87, 16)
  986. Me.Label8.TabIndex = 1359
  987. Me.Label8.Text = "工程名稱(中文)"
  988. '
  989. '報價單客戶名稱_cb
  990. '
  991. Me.報價單客戶名稱_cb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  992. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  993. Me.報價單客戶名稱_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  994. Me.報價單客戶名稱_cb.Enabled = False
  995. Me.報價單客戶名稱_cb.FormattingEnabled = True
  996. Me.報價單客戶名稱_cb.Location = New System.Drawing.Point(62, 28)
  997. Me.報價單客戶名稱_cb.Name = "報價單客戶名稱_cb"
  998. Me.報價單客戶名稱_cb.Size = New System.Drawing.Size(919, 24)
  999. Me.報價單客戶名稱_cb.TabIndex = 1358
  1000. '
  1001. 'Label6
  1002. '
  1003. Me.Label6.AutoSize = True
  1004. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold)
  1005. Me.Label6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1006. Me.Label6.Location = New System.Drawing.Point(6, 33)
  1007. Me.Label6.Name = "Label6"
  1008. Me.Label6.Size = New System.Drawing.Size(55, 16)
  1009. Me.Label6.TabIndex = 1357
  1010. Me.Label6.Text = "客戶名稱"
  1011. '
  1012. '報價明細表_dgv
  1013. '
  1014. Me.報價明細表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1015. Or System.Windows.Forms.AnchorStyles.Left) _
  1016. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1017. Me.報價明細表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1018. Me.報價明細表_dgv.BackgroundColor = System.Drawing.Color.White
  1019. Me.報價明細表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1020. Me.報價明細表_dgv.Location = New System.Drawing.Point(3, 104)
  1021. Me.報價明細表_dgv.Name = "報價明細表_dgv"
  1022. Me.報價明細表_dgv.RowHeadersWidth = 5
  1023. DataGridViewCellStyle20.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1024. DataGridViewCellStyle20.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1025. Me.報價明細表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle20
  1026. Me.報價明細表_dgv.RowTemplate.Height = 24
  1027. Me.報價明細表_dgv.Size = New System.Drawing.Size(1899, 898)
  1028. Me.報價明細表_dgv.TabIndex = 1389
  1029. '
  1030. 'Panel5
  1031. '
  1032. Me.Panel5.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1033. Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1034. Me.Panel5.Controls.Add(Me.Label22)
  1035. Me.Panel5.Controls.Add(Me.Label33)
  1036. Me.Panel5.Controls.Add(Me.工資_ch)
  1037. Me.Panel5.Controls.Add(Me.料號_tb)
  1038. Me.Panel5.Controls.Add(Me.單位2_tb)
  1039. Me.Panel5.Controls.Add(Me.Label32)
  1040. Me.Panel5.Controls.Add(Me.申請數_lb)
  1041. Me.Panel5.Controls.Add(Me.ITEM3_cb)
  1042. Me.Panel5.Controls.Add(Me.申請數_nud)
  1043. Me.Panel5.Controls.Add(Me.利潤表_ch)
  1044. Me.Panel5.Controls.Add(Me.材料_ch)
  1045. Me.Panel5.Location = New System.Drawing.Point(983, 46)
  1046. Me.Panel5.Name = "Panel5"
  1047. Me.Panel5.Size = New System.Drawing.Size(410, 59)
  1048. Me.Panel5.TabIndex = 1431
  1049. '
  1050. 'Label22
  1051. '
  1052. Me.Label22.AutoSize = True
  1053. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1054. Me.Label22.Location = New System.Drawing.Point(126, 7)
  1055. Me.Label22.Name = "Label22"
  1056. Me.Label22.Size = New System.Drawing.Size(36, 16)
  1057. Me.Label22.TabIndex = 1421
  1058. Me.Label22.Text = "ITEM"
  1059. Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1060. '
  1061. 'Label33
  1062. '
  1063. Me.Label33.AutoSize = True
  1064. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1065. Me.Label33.Location = New System.Drawing.Point(216, 7)
  1066. Me.Label33.Name = "Label33"
  1067. Me.Label33.Size = New System.Drawing.Size(36, 16)
  1068. Me.Label33.TabIndex = 1428
  1069. Me.Label33.Text = "UNIT"
  1070. Me.Label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1071. '
  1072. '工資_ch
  1073. '
  1074. Me.工資_ch.AutoSize = True
  1075. Me.工資_ch.Checked = True
  1076. Me.工資_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1077. Me.工資_ch.Location = New System.Drawing.Point(8, 19)
  1078. Me.工資_ch.Name = "工資_ch"
  1079. Me.工資_ch.Size = New System.Drawing.Size(86, 20)
  1080. Me.工資_ch.TabIndex = 1424
  1081. Me.工資_ch.Text = "工資 / GAJI"
  1082. Me.工資_ch.UseVisualStyleBackColor = True
  1083. '
  1084. '料號_tb
  1085. '
  1086. Me.料號_tb.Enabled = False
  1087. Me.料號_tb.Location = New System.Drawing.Point(163, 29)
  1088. Me.料號_tb.Name = "料號_tb"
  1089. Me.料號_tb.Size = New System.Drawing.Size(241, 23)
  1090. Me.料號_tb.TabIndex = 1417
  1091. '
  1092. '單位2_tb
  1093. '
  1094. Me.單位2_tb.Location = New System.Drawing.Point(252, 4)
  1095. Me.單位2_tb.Name = "單位2_tb"
  1096. Me.單位2_tb.Size = New System.Drawing.Size(45, 23)
  1097. Me.單位2_tb.TabIndex = 1427
  1098. Me.單位2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1099. '
  1100. 'Label32
  1101. '
  1102. Me.Label32.AutoSize = True
  1103. Me.Label32.Location = New System.Drawing.Point(128, 32)
  1104. Me.Label32.Name = "Label32"
  1105. Me.Label32.Size = New System.Drawing.Size(31, 16)
  1106. Me.Label32.TabIndex = 1418
  1107. Me.Label32.Text = "料號"
  1108. '
  1109. '申請數_lb
  1110. '
  1111. Me.申請數_lb.AutoSize = True
  1112. Me.申請數_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1113. Me.申請數_lb.Location = New System.Drawing.Point(303, 7)
  1114. Me.申請數_lb.Name = "申請數_lb"
  1115. Me.申請數_lb.Size = New System.Drawing.Size(31, 16)
  1116. Me.申請數_lb.TabIndex = 1419
  1117. Me.申請數_lb.Text = "數量"
  1118. '
  1119. 'ITEM3_cb
  1120. '
  1121. Me.ITEM3_cb.ForeColor = System.Drawing.Color.Blue
  1122. Me.ITEM3_cb.FormattingEnabled = True
  1123. Me.ITEM3_cb.Items.AddRange(New Object() {"", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"})
  1124. Me.ITEM3_cb.Location = New System.Drawing.Point(163, 3)
  1125. Me.ITEM3_cb.Name = "ITEM3_cb"
  1126. Me.ITEM3_cb.Size = New System.Drawing.Size(51, 24)
  1127. Me.ITEM3_cb.TabIndex = 1422
  1128. '
  1129. '申請數_nud
  1130. '
  1131. Me.申請數_nud.Location = New System.Drawing.Point(336, 4)
  1132. Me.申請數_nud.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
  1133. Me.申請數_nud.Minimum = New Decimal(New Integer() {1000000, 0, 0, -2147483648})
  1134. Me.申請數_nud.Name = "申請數_nud"
  1135. Me.申請數_nud.Size = New System.Drawing.Size(67, 23)
  1136. Me.申請數_nud.TabIndex = 1420
  1137. Me.申請數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1138. '
  1139. '利潤表_ch
  1140. '
  1141. Me.利潤表_ch.AutoSize = True
  1142. Me.利潤表_ch.Location = New System.Drawing.Point(8, 0)
  1143. Me.利潤表_ch.Name = "利潤表_ch"
  1144. Me.利潤表_ch.Size = New System.Drawing.Size(102, 20)
  1145. Me.利潤表_ch.TabIndex = 1426
  1146. Me.利潤表_ch.Text = "利潤表 / LABA"
  1147. Me.利潤表_ch.UseVisualStyleBackColor = True
  1148. '
  1149. '材料_ch
  1150. '
  1151. Me.材料_ch.AutoSize = True
  1152. Me.材料_ch.Checked = True
  1153. Me.材料_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1154. Me.材料_ch.Location = New System.Drawing.Point(8, 38)
  1155. Me.材料_ch.Name = "材料_ch"
  1156. Me.材料_ch.Size = New System.Drawing.Size(103, 20)
  1157. Me.材料_ch.TabIndex = 1425
  1158. Me.材料_ch.Text = "材料 / BAHAN"
  1159. Me.材料_ch.UseVisualStyleBackColor = True
  1160. '
  1161. '物料圖1_pb
  1162. '
  1163. Me.物料圖1_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1164. Me.物料圖1_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1165. Me.物料圖1_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1166. Me.物料圖1_pb.Location = New System.Drawing.Point(1755, 1)
  1167. Me.物料圖1_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1168. Me.物料圖1_pb.Name = "物料圖1_pb"
  1169. Me.物料圖1_pb.Size = New System.Drawing.Size(146, 100)
  1170. Me.物料圖1_pb.TabIndex = 1402
  1171. Me.物料圖1_pb.TabStop = False
  1172. '
  1173. 'Label372
  1174. '
  1175. Me.Label372.AutoSize = True
  1176. Me.Label372.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1177. Me.Label372.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1178. Me.Label372.Location = New System.Drawing.Point(1, 121)
  1179. Me.Label372.Name = "Label372"
  1180. Me.Label372.Size = New System.Drawing.Size(55, 16)
  1181. Me.Label372.TabIndex = 1065
  1182. Me.Label372.Text = "客戶名稱"
  1183. Me.Label372.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1184. '
  1185. 'Label394
  1186. '
  1187. Me.Label394.AutoSize = True
  1188. Me.Label394.ForeColor = System.Drawing.Color.Green
  1189. Me.Label394.Location = New System.Drawing.Point(450, 679)
  1190. Me.Label394.Name = "Label394"
  1191. Me.Label394.Size = New System.Drawing.Size(79, 16)
  1192. Me.Label394.TabIndex = 1108
  1193. Me.Label394.Text = ",最高扣罰至"
  1194. '
  1195. '客戶名稱_tb
  1196. '
  1197. Me.客戶名稱_tb.FormattingEnabled = True
  1198. Me.客戶名稱_tb.Location = New System.Drawing.Point(58, 118)
  1199. Me.客戶名稱_tb.Name = "客戶名稱_tb"
  1200. Me.客戶名稱_tb.Size = New System.Drawing.Size(369, 24)
  1201. Me.客戶名稱_tb.TabIndex = 1066
  1202. Me.客戶名稱_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
  1203. '
  1204. 'Label396
  1205. '
  1206. Me.Label396.AutoSize = True
  1207. Me.Label396.ForeColor = System.Drawing.Color.Green
  1208. Me.Label396.Location = New System.Drawing.Point(4, 704)
  1209. Me.Label396.Name = "Label396"
  1210. Me.Label396.Size = New System.Drawing.Size(233, 16)
  1211. Me.Label396.TabIndex = 1110
  1212. Me.Label396.Text = "The penalty of the delay of the project is"
  1213. '
  1214. 'Label373
  1215. '
  1216. Me.Label373.AutoSize = True
  1217. Me.Label373.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1218. Me.Label373.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1219. Me.Label373.Location = New System.Drawing.Point(1, 146)
  1220. Me.Label373.Name = "Label373"
  1221. Me.Label373.Size = New System.Drawing.Size(55, 16)
  1222. Me.Label373.TabIndex = 1067
  1223. Me.Label373.Text = "工程地點"
  1224. Me.Label373.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1225. '
  1226. 'NUD3
  1227. '
  1228. Me.NUD3.Location = New System.Drawing.Point(578, 366)
  1229. Me.NUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1230. Me.NUD3.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  1231. Me.NUD3.Name = "NUD3"
  1232. Me.NUD3.Size = New System.Drawing.Size(105, 23)
  1233. Me.NUD3.TabIndex = 1087
  1234. Me.NUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1235. Me.NUD3.ThousandsSeparator = True
  1236. '
  1237. 'Label374
  1238. '
  1239. Me.Label374.AutoSize = True
  1240. Me.Label374.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1241. Me.Label374.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1242. Me.Label374.Location = New System.Drawing.Point(1, 186)
  1243. Me.Label374.Name = "Label374"
  1244. Me.Label374.Size = New System.Drawing.Size(43, 16)
  1245. Me.Label374.TabIndex = 1068
  1246. Me.Label374.Text = "地 址"
  1247. Me.Label374.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1248. '
  1249. '合約種類_cb
  1250. '
  1251. Me.合約種類_cb.ForeColor = System.Drawing.Color.Black
  1252. Me.合約種類_cb.FormattingEnabled = True
  1253. Me.合約種類_cb.Items.AddRange(New Object() {"HX", "PGS"})
  1254. Me.合約種類_cb.Location = New System.Drawing.Point(58, 67)
  1255. Me.合約種類_cb.Name = "合約種類_cb"
  1256. Me.合約種類_cb.Size = New System.Drawing.Size(126, 24)
  1257. Me.合約種類_cb.TabIndex = 1080
  1258. Me.合約種類_cb.Text = "機電施工合約"
  1259. '
  1260. 'Label375
  1261. '
  1262. Me.Label375.AutoSize = True
  1263. Me.Label375.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1264. Me.Label375.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1265. Me.Label375.Location = New System.Drawing.Point(1, 228)
  1266. Me.Label375.Name = "Label375"
  1267. Me.Label375.Size = New System.Drawing.Size(87, 16)
  1268. Me.Label375.TabIndex = 1069
  1269. Me.Label375.Text = "工程名稱(中文)"
  1270. Me.Label375.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1271. '
  1272. '逾期_bt
  1273. '
  1274. Me.逾期_bt.Location = New System.Drawing.Point(320, 675)
  1275. Me.逾期_bt.Name = "逾期_bt"
  1276. Me.逾期_bt.Size = New System.Drawing.Size(126, 23)
  1277. Me.逾期_bt.TabIndex = 1107
  1278. Me.逾期_bt.Text = "0.0005% (萬分之五)"
  1279. Me.逾期_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1280. '
  1281. '存檔_bt
  1282. '
  1283. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1284. Me.存檔_bt.ForeColor = System.Drawing.Color.Purple
  1285. Me.存檔_bt.Location = New System.Drawing.Point(889, 2)
  1286. Me.存檔_bt.Name = "存檔_bt"
  1287. Me.存檔_bt.Size = New System.Drawing.Size(175, 79)
  1288. Me.存檔_bt.TabIndex = 1354
  1289. Me.存檔_bt.Text = "存檔"
  1290. Me.存檔_bt.UseVisualStyleBackColor = True
  1291. '
  1292. '使用計算機_ch
  1293. '
  1294. Me.使用計算機_ch.AutoSize = True
  1295. Me.使用計算機_ch.Location = New System.Drawing.Point(652, 59)
  1296. Me.使用計算機_ch.Name = "使用計算機_ch"
  1297. Me.使用計算機_ch.Size = New System.Drawing.Size(86, 20)
  1298. Me.使用計算機_ch.TabIndex = 1353
  1299. Me.使用計算機_ch.Text = "使用計算機"
  1300. Me.使用計算機_ch.UseVisualStyleBackColor = True
  1301. '
  1302. '直接輸入_ch
  1303. '
  1304. Me.直接輸入_ch.AutoSize = True
  1305. Me.直接輸入_ch.Location = New System.Drawing.Point(538, 59)
  1306. Me.直接輸入_ch.Name = "直接輸入_ch"
  1307. Me.直接輸入_ch.Size = New System.Drawing.Size(74, 20)
  1308. Me.直接輸入_ch.TabIndex = 1352
  1309. Me.直接輸入_ch.Text = "直接輸入"
  1310. Me.直接輸入_ch.UseVisualStyleBackColor = True
  1311. '
  1312. '材料加入1_bt
  1313. '
  1314. Me.材料加入1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1315. Me.材料加入1_bt.ForeColor = System.Drawing.Color.Purple
  1316. Me.材料加入1_bt.Location = New System.Drawing.Point(533, 30)
  1317. Me.材料加入1_bt.Name = "材料加入1_bt"
  1318. Me.材料加入1_bt.Size = New System.Drawing.Size(175, 25)
  1319. Me.材料加入1_bt.TabIndex = 1351
  1320. Me.材料加入1_bt.Text = "選擇材料加入試算表"
  1321. Me.材料加入1_bt.UseVisualStyleBackColor = True
  1322. '
  1323. '工程名稱_中_tb
  1324. '
  1325. Me.工程名稱_中_tb.Location = New System.Drawing.Point(95, 225)
  1326. Me.工程名稱_中_tb.Name = "工程名稱_中_tb"
  1327. Me.工程名稱_中_tb.Size = New System.Drawing.Size(588, 23)
  1328. Me.工程名稱_中_tb.TabIndex = 1070
  1329. Me.工程名稱_中_tb.Text = "JCS #B3分站高壓電力工程"
  1330. '
  1331. 'Label395
  1332. '
  1333. Me.Label395.AutoSize = True
  1334. Me.Label395.ForeColor = System.Drawing.Color.Green
  1335. Me.Label395.Location = New System.Drawing.Point(4, 729)
  1336. Me.Label395.Name = "Label395"
  1337. Me.Label395.Size = New System.Drawing.Size(358, 16)
  1338. Me.Label395.TabIndex = 1111
  1339. Me.Label395.Text = "per day from total contract price, the maximum penalty is until " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  1340. '
  1341. '客戶地址_tb
  1342. '
  1343. Me.客戶地址_tb.Location = New System.Drawing.Point(58, 184)
  1344. Me.客戶地址_tb.Multiline = True
  1345. Me.客戶地址_tb.Name = "客戶地址_tb"
  1346. Me.客戶地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1347. Me.客戶地址_tb.Size = New System.Drawing.Size(625, 40)
  1348. Me.客戶地址_tb.TabIndex = 1071
  1349. Me.客戶地址_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL, KAB, MAJALENGKA JAWA BARAT, INDONESIA JAWA " &
  1350. "BARAT - 45456"
  1351. '
  1352. 'Label393
  1353. '
  1354. Me.Label393.AutoSize = True
  1355. Me.Label393.ForeColor = System.Drawing.Color.Green
  1356. Me.Label393.Location = New System.Drawing.Point(138, 679)
  1357. Me.Label393.Name = "Label393"
  1358. Me.Label393.Size = New System.Drawing.Size(175, 16)
  1359. Me.Label393.TabIndex = 1106
  1360. Me.Label393.Text = "總工期逾期以每日扣罰工程總價"
  1361. '
  1362. '金額5_und
  1363. '
  1364. Me.金額5_und.Enabled = False
  1365. Me.金額5_und.Location = New System.Drawing.Point(577, 416)
  1366. Me.金額5_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1367. Me.金額5_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  1368. Me.金額5_und.Name = "金額5_und"
  1369. Me.金額5_und.Size = New System.Drawing.Size(105, 23)
  1370. Me.金額5_und.TabIndex = 1102
  1371. Me.金額5_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1372. Me.金額5_und.ThousandsSeparator = True
  1373. '
  1374. '係數_nud
  1375. '
  1376. Me.係數_nud.Location = New System.Drawing.Point(835, 3)
  1377. Me.係數_nud.Name = "係數_nud"
  1378. Me.係數_nud.Size = New System.Drawing.Size(49, 23)
  1379. Me.係數_nud.TabIndex = 1355
  1380. '
  1381. 'Label380
  1382. '
  1383. Me.Label380.AutoSize = True
  1384. Me.Label380.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1385. Me.Label380.Location = New System.Drawing.Point(0, 70)
  1386. Me.Label380.Name = "Label380"
  1387. Me.Label380.Size = New System.Drawing.Size(55, 16)
  1388. Me.Label380.TabIndex = 1079
  1389. Me.Label380.Text = "合約種類"
  1390. Me.Label380.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1391. '
  1392. '刪除1_bt
  1393. '
  1394. Me.刪除1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1395. Me.刪除1_bt.ForeColor = System.Drawing.Color.Red
  1396. Me.刪除1_bt.Location = New System.Drawing.Point(711, 30)
  1397. Me.刪除1_bt.Name = "刪除1_bt"
  1398. Me.刪除1_bt.Size = New System.Drawing.Size(175, 25)
  1399. Me.刪除1_bt.TabIndex = 1356
  1400. Me.刪除1_bt.Text = "刪除試算表中選中的資料"
  1401. Me.刪除1_bt.UseVisualStyleBackColor = True
  1402. '
  1403. '工程地點_tb
  1404. '
  1405. Me.工程地點_tb.Location = New System.Drawing.Point(58, 143)
  1406. Me.工程地點_tb.Multiline = True
  1407. Me.工程地點_tb.Name = "工程地點_tb"
  1408. Me.工程地點_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1409. Me.工程地點_tb.Size = New System.Drawing.Size(625, 40)
  1410. Me.工程地點_tb.TabIndex = 1072
  1411. Me.工程地點_tb.Text = "JL.RAYA KASOKANDEL KM 45, KASOKANDEL KAB, MAJALENGKA JAWA BARAT, INDONESIA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  1412. '
  1413. 'Label406
  1414. '
  1415. Me.Label406.AutoSize = True
  1416. Me.Label406.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1417. Me.Label406.Location = New System.Drawing.Point(3, 95)
  1418. Me.Label406.Name = "Label406"
  1419. Me.Label406.Size = New System.Drawing.Size(154, 21)
  1420. Me.Label406.TabIndex = 1123
  1421. Me.Label406.Text = "第一條、履約和數量"
  1422. Me.Label406.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1423. '
  1424. '金額4_und
  1425. '
  1426. Me.金額4_und.Enabled = False
  1427. Me.金額4_und.Location = New System.Drawing.Point(348, 440)
  1428. Me.金額4_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1429. Me.金額4_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  1430. Me.金額4_und.Name = "金額4_und"
  1431. Me.金額4_und.Size = New System.Drawing.Size(105, 23)
  1432. Me.金額4_und.TabIndex = 1101
  1433. Me.金額4_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1434. Me.金額4_und.ThousandsSeparator = True
  1435. '
  1436. '逾期_英_bt
  1437. '
  1438. Me.逾期_英_bt.Location = New System.Drawing.Point(244, 700)
  1439. Me.逾期_英_bt.Name = "逾期_英_bt"
  1440. Me.逾期_英_bt.Size = New System.Drawing.Size(439, 23)
  1441. Me.逾期_英_bt.TabIndex = 1112
  1442. Me.逾期_英_bt.Text = "0.0005% (null point null null null five percent)"
  1443. '
  1444. 'Label376
  1445. '
  1446. Me.Label376.AutoSize = True
  1447. Me.Label376.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1448. Me.Label376.ForeColor = System.Drawing.Color.Blue
  1449. Me.Label376.Location = New System.Drawing.Point(1, 277)
  1450. Me.Label376.Name = "Label376"
  1451. Me.Label376.Size = New System.Drawing.Size(55, 16)
  1452. Me.Label376.TabIndex = 1073
  1453. Me.Label376.Text = "公司名稱"
  1454. Me.Label376.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1455. '
  1456. '工期_nud
  1457. '
  1458. Me.工期_nud.Location = New System.Drawing.Point(79, 675)
  1459. Me.工期_nud.Maximum = New Decimal(New Integer() {1215752192, 23, 0, 0})
  1460. Me.工期_nud.Name = "工期_nud"
  1461. Me.工期_nud.Size = New System.Drawing.Size(53, 23)
  1462. Me.工期_nud.TabIndex = 1104
  1463. Me.工期_nud.ThousandsSeparator = True
  1464. Me.工期_nud.Value = New Decimal(New Integer() {180, 0, 0, 0})
  1465. '
  1466. '金額3_und
  1467. '
  1468. Me.金額3_und.Enabled = False
  1469. Me.金額3_und.Location = New System.Drawing.Point(348, 416)
  1470. Me.金額3_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1471. Me.金額3_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  1472. Me.金額3_und.Name = "金額3_und"
  1473. Me.金額3_und.Size = New System.Drawing.Size(105, 23)
  1474. Me.金額3_und.TabIndex = 1100
  1475. Me.金額3_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1476. Me.金額3_und.ThousandsSeparator = True
  1477. '
  1478. '最高扣款_英_bt
  1479. '
  1480. Me.最高扣款_英_bt.Location = New System.Drawing.Point(369, 724)
  1481. Me.最高扣款_英_bt.Name = "最高扣款_英_bt"
  1482. Me.最高扣款_英_bt.Size = New System.Drawing.Size(314, 23)
  1483. Me.最高扣款_英_bt.TabIndex = 1113
  1484. Me.最高扣款_英_bt.Text = "5 (five)%. "
  1485. '
  1486. 'Label414
  1487. '
  1488. Me.Label414.AutoSize = True
  1489. Me.Label414.ForeColor = System.Drawing.Color.Green
  1490. Me.Label414.Location = New System.Drawing.Point(514, 839)
  1491. Me.Label414.Name = "Label414"
  1492. Me.Label414.Size = New System.Drawing.Size(55, 16)
  1493. Me.Label414.TabIndex = 1135
  1494. Me.Label414.Text = "立約日期" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  1495. '
  1496. 'Label391
  1497. '
  1498. Me.Label391.AutoSize = True
  1499. Me.Label391.ForeColor = System.Drawing.Color.Green
  1500. Me.Label391.Location = New System.Drawing.Point(5, 678)
  1501. Me.Label391.Name = "Label391"
  1502. Me.Label391.Size = New System.Drawing.Size(67, 16)
  1503. Me.Label391.TabIndex = 1103
  1504. Me.Label391.Text = "需工期時間"
  1505. '
  1506. '金額2_und
  1507. '
  1508. Me.金額2_und.Enabled = False
  1509. Me.金額2_und.Location = New System.Drawing.Point(118, 440)
  1510. Me.金額2_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1511. Me.金額2_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  1512. Me.金額2_und.Name = "金額2_und"
  1513. Me.金額2_und.Size = New System.Drawing.Size(105, 23)
  1514. Me.金額2_und.TabIndex = 1099
  1515. Me.金額2_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1516. Me.金額2_und.ThousandsSeparator = True
  1517. '
  1518. 'Label403
  1519. '
  1520. Me.Label403.AutoSize = True
  1521. Me.Label403.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1522. Me.Label403.Location = New System.Drawing.Point(4, 652)
  1523. Me.Label403.Name = "Label403"
  1524. Me.Label403.Size = New System.Drawing.Size(202, 21)
  1525. Me.Label403.TabIndex = 1118
  1526. Me.Label403.Text = "第四條、工期時間及擔保品"
  1527. Me.Label403.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1528. '
  1529. '工程合約試算表_tc
  1530. '
  1531. Me.工程合約試算表_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1532. Me.工程合約試算表_tc.Controls.Add(Me.詳細資料3_ch)
  1533. Me.工程合約試算表_tc.Controls.Add(Me.Label4)
  1534. Me.工程合約試算表_tc.Controls.Add(Me.刪除1_bt)
  1535. Me.工程合約試算表_tc.Controls.Add(Me.係數_nud)
  1536. Me.工程合約試算表_tc.Controls.Add(Me.存檔_bt)
  1537. Me.工程合約試算表_tc.Controls.Add(Me.使用計算機_ch)
  1538. Me.工程合約試算表_tc.Controls.Add(Me.直接輸入_ch)
  1539. Me.工程合約試算表_tc.Controls.Add(Me.材料加入1_bt)
  1540. Me.工程合約試算表_tc.Controls.Add(Me.修改樓層_迴圈_bt)
  1541. Me.工程合約試算表_tc.Controls.Add(Me.新增物件_bt)
  1542. Me.工程合約試算表_tc.Controls.Add(Me.料號_lb)
  1543. Me.工程合約試算表_tc.Controls.Add(Me.樓層_迴路_cb)
  1544. Me.工程合約試算表_tc.Controls.Add(Me.料號1_tb)
  1545. Me.工程合約試算表_tc.Controls.Add(Me.Label3)
  1546. Me.工程合約試算表_tc.Controls.Add(Me.修改試算表名稱_bt)
  1547. Me.工程合約試算表_tc.Controls.Add(Me.新增試算表_bt)
  1548. Me.工程合約試算表_tc.Controls.Add(Me.Label1)
  1549. Me.工程合約試算表_tc.Controls.Add(Me.試算表_cb)
  1550. Me.工程合約試算表_tc.Controls.Add(Me.試算表_dgv)
  1551. Me.工程合約試算表_tc.Controls.Add(Me.物料圖_pb)
  1552. Me.工程合約試算表_tc.Location = New System.Drawing.Point(4, 28)
  1553. Me.工程合約試算表_tc.Name = "工程合約試算表_tc"
  1554. Me.工程合約試算表_tc.Padding = New System.Windows.Forms.Padding(3)
  1555. Me.工程合約試算表_tc.Size = New System.Drawing.Size(1906, 1010)
  1556. Me.工程合約試算表_tc.TabIndex = 1
  1557. Me.工程合約試算表_tc.Text = "工程合約試算表"
  1558. Me.工程合約試算表_tc.UseVisualStyleBackColor = True
  1559. '
  1560. '詳細資料3_ch
  1561. '
  1562. Me.詳細資料3_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1563. Me.詳細資料3_ch.AutoSize = True
  1564. Me.詳細資料3_ch.Location = New System.Drawing.Point(760, 59)
  1565. Me.詳細資料3_ch.Name = "詳細資料3_ch"
  1566. Me.詳細資料3_ch.Size = New System.Drawing.Size(126, 20)
  1567. Me.詳細資料3_ch.TabIndex = 1834
  1568. Me.詳細資料3_ch.Text = "詳細資料 / Rincian"
  1569. Me.詳細資料3_ch.UseVisualStyleBackColor = True
  1570. '
  1571. 'Label4
  1572. '
  1573. Me.Label4.AutoSize = True
  1574. Me.Label4.Location = New System.Drawing.Point(773, 6)
  1575. Me.Label4.Name = "Label4"
  1576. Me.Label4.Size = New System.Drawing.Size(55, 16)
  1577. Me.Label4.TabIndex = 1357
  1578. Me.Label4.Text = "系 數"
  1579. '
  1580. '修改樓層_迴圈_bt
  1581. '
  1582. Me.修改樓層_迴圈_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1583. Me.修改樓層_迴圈_bt.ForeColor = System.Drawing.Color.Green
  1584. Me.修改樓層_迴圈_bt.Location = New System.Drawing.Point(250, 56)
  1585. Me.修改樓層_迴圈_bt.Name = "修改樓層_迴圈_bt"
  1586. Me.修改樓層_迴圈_bt.Size = New System.Drawing.Size(278, 25)
  1587. Me.修改樓層_迴圈_bt.TabIndex = 1054
  1588. Me.修改樓層_迴圈_bt.Text = "修改樓層/迴路名稱"
  1589. Me.修改樓層_迴圈_bt.UseVisualStyleBackColor = True
  1590. '
  1591. '新增物件_bt
  1592. '
  1593. Me.新增物件_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1594. Me.新增物件_bt.ForeColor = System.Drawing.Color.Blue
  1595. Me.新增物件_bt.Location = New System.Drawing.Point(250, 30)
  1596. Me.新增物件_bt.Name = "新增物件_bt"
  1597. Me.新增物件_bt.Size = New System.Drawing.Size(278, 25)
  1598. Me.新增物件_bt.TabIndex = 1053
  1599. Me.新增物件_bt.Text = "新增樓層/迴路"
  1600. Me.新增物件_bt.UseVisualStyleBackColor = True
  1601. '
  1602. '料號_lb
  1603. '
  1604. Me.料號_lb.AutoSize = True
  1605. Me.料號_lb.Location = New System.Drawing.Point(530, 6)
  1606. Me.料號_lb.Name = "料號_lb"
  1607. Me.料號_lb.Size = New System.Drawing.Size(55, 16)
  1608. Me.料號_lb.TabIndex = 1343
  1609. Me.料號_lb.Text = "料 號"
  1610. '
  1611. '樓層_迴路_cb
  1612. '
  1613. Me.樓層_迴路_cb.ForeColor = System.Drawing.Color.Blue
  1614. Me.樓層_迴路_cb.FormattingEnabled = True
  1615. Me.樓層_迴路_cb.Location = New System.Drawing.Point(312, 3)
  1616. Me.樓層_迴路_cb.Name = "樓層_迴路_cb"
  1617. Me.樓層_迴路_cb.Size = New System.Drawing.Size(216, 24)
  1618. Me.樓層_迴路_cb.TabIndex = 1051
  1619. '
  1620. '料號1_tb
  1621. '
  1622. Me.料號1_tb.Location = New System.Drawing.Point(592, 3)
  1623. Me.料號1_tb.Name = "料號1_tb"
  1624. Me.料號1_tb.Size = New System.Drawing.Size(175, 23)
  1625. Me.料號1_tb.TabIndex = 1342
  1626. '
  1627. 'Label3
  1628. '
  1629. Me.Label3.AutoSize = True
  1630. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1631. Me.Label3.Location = New System.Drawing.Point(251, 7)
  1632. Me.Label3.Name = "Label3"
  1633. Me.Label3.Size = New System.Drawing.Size(60, 16)
  1634. Me.Label3.TabIndex = 1050
  1635. Me.Label3.Text = "樓層/迴路"
  1636. Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1637. '
  1638. '修改試算表名稱_bt
  1639. '
  1640. Me.修改試算表名稱_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1641. Me.修改試算表名稱_bt.ForeColor = System.Drawing.Color.Green
  1642. Me.修改試算表名稱_bt.Location = New System.Drawing.Point(3, 56)
  1643. Me.修改試算表名稱_bt.Name = "修改試算表名稱_bt"
  1644. Me.修改試算表名稱_bt.Size = New System.Drawing.Size(246, 25)
  1645. Me.修改試算表名稱_bt.TabIndex = 1049
  1646. Me.修改試算表名稱_bt.Text = "修改試算表名稱"
  1647. Me.修改試算表名稱_bt.UseVisualStyleBackColor = True
  1648. '
  1649. '新增試算表_bt
  1650. '
  1651. Me.新增試算表_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1652. Me.新增試算表_bt.ForeColor = System.Drawing.Color.Blue
  1653. Me.新增試算表_bt.Location = New System.Drawing.Point(3, 30)
  1654. Me.新增試算表_bt.Name = "新增試算表_bt"
  1655. Me.新增試算表_bt.Size = New System.Drawing.Size(246, 25)
  1656. Me.新增試算表_bt.TabIndex = 1048
  1657. Me.新增試算表_bt.Text = "新增試算表"
  1658. Me.新增試算表_bt.UseVisualStyleBackColor = True
  1659. '
  1660. 'Label1
  1661. '
  1662. Me.Label1.AutoSize = True
  1663. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1664. Me.Label1.Location = New System.Drawing.Point(2, 7)
  1665. Me.Label1.Name = "Label1"
  1666. Me.Label1.Size = New System.Drawing.Size(67, 16)
  1667. Me.Label1.TabIndex = 1046
  1668. Me.Label1.Text = "選擇試算表"
  1669. Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1670. '
  1671. '試算表_cb
  1672. '
  1673. Me.試算表_cb.ForeColor = System.Drawing.Color.Blue
  1674. Me.試算表_cb.FormattingEnabled = True
  1675. Me.試算表_cb.Location = New System.Drawing.Point(73, 4)
  1676. Me.試算表_cb.Name = "試算表_cb"
  1677. Me.試算表_cb.Size = New System.Drawing.Size(176, 24)
  1678. Me.試算表_cb.TabIndex = 946
  1679. Me.試算表_cb.Text = "試算表1"
  1680. '
  1681. '試算表_dgv
  1682. '
  1683. DataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  1684. Me.試算表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle21
  1685. Me.試算表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1686. Or System.Windows.Forms.AnchorStyles.Left) _
  1687. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1688. Me.試算表_dgv.BackgroundColor = System.Drawing.Color.White
  1689. Me.試算表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1690. Me.試算表_dgv.Location = New System.Drawing.Point(2, 84)
  1691. Me.試算表_dgv.Name = "試算表_dgv"
  1692. Me.試算表_dgv.RowHeadersWidth = 5
  1693. DataGridViewCellStyle22.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1694. DataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1695. Me.試算表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle22
  1696. Me.試算表_dgv.RowTemplate.Height = 24
  1697. Me.試算表_dgv.Size = New System.Drawing.Size(1900, 918)
  1698. Me.試算表_dgv.TabIndex = 1339
  1699. '
  1700. '物料圖_pb
  1701. '
  1702. Me.物料圖_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1703. Me.物料圖_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1704. Me.物料圖_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1705. Me.物料圖_pb.Location = New System.Drawing.Point(1746, 1)
  1706. Me.物料圖_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  1707. Me.物料圖_pb.Name = "物料圖_pb"
  1708. Me.物料圖_pb.Size = New System.Drawing.Size(155, 82)
  1709. Me.物料圖_pb.TabIndex = 1350
  1710. Me.物料圖_pb.TabStop = False
  1711. '
  1712. '選擇公司_cb
  1713. '
  1714. Me.選擇公司_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1715. Me.選擇公司_cb.ForeColor = System.Drawing.Color.Blue
  1716. Me.選擇公司_cb.FormattingEnabled = True
  1717. Me.選擇公司_cb.Items.AddRange(New Object() {"PT HONG XHE INDUSTRIAL", "PT PUNCAK GEMILANG SEMESTA"})
  1718. Me.選擇公司_cb.Location = New System.Drawing.Point(57, 274)
  1719. Me.選擇公司_cb.Name = "選擇公司_cb"
  1720. Me.選擇公司_cb.Size = New System.Drawing.Size(369, 24)
  1721. Me.選擇公司_cb.TabIndex = 1074
  1722. '
  1723. '立約日期_dtp
  1724. '
  1725. Me.立約日期_dtp.CustomFormat = "yyyy/MM/dd"
  1726. Me.立約日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  1727. Me.立約日期_dtp.Location = New System.Drawing.Point(572, 835)
  1728. Me.立約日期_dtp.Name = "立約日期_dtp"
  1729. Me.立約日期_dtp.Size = New System.Drawing.Size(111, 23)
  1730. Me.立約日期_dtp.TabIndex = 1134
  1731. '
  1732. '負責人_B_cb
  1733. '
  1734. Me.負責人_B_cb.FormattingEnabled = True
  1735. Me.負責人_B_cb.Location = New System.Drawing.Point(477, 274)
  1736. Me.負責人_B_cb.Name = "負責人_B_cb"
  1737. Me.負責人_B_cb.Size = New System.Drawing.Size(206, 24)
  1738. Me.負責人_B_cb.TabIndex = 1122
  1739. '
  1740. '金額1_und
  1741. '
  1742. Me.金額1_und.Enabled = False
  1743. Me.金額1_und.Location = New System.Drawing.Point(118, 416)
  1744. Me.金額1_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1745. Me.金額1_und.Minimum = New Decimal(New Integer() {-727379968, 232, 0, -2147483648})
  1746. Me.金額1_und.Name = "金額1_und"
  1747. Me.金額1_und.Size = New System.Drawing.Size(105, 23)
  1748. Me.金額1_und.TabIndex = 1098
  1749. Me.金額1_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1750. Me.金額1_und.ThousandsSeparator = True
  1751. '
  1752. 'Label407
  1753. '
  1754. Me.Label407.AutoSize = True
  1755. Me.Label407.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1756. Me.Label407.Location = New System.Drawing.Point(4, 748)
  1757. Me.Label407.Name = "Label407"
  1758. Me.Label407.Size = New System.Drawing.Size(106, 21)
  1759. Me.Label407.TabIndex = 1124
  1760. Me.Label407.Text = "第八條、驗收"
  1761. Me.Label407.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1762. '
  1763. 'Label410
  1764. '
  1765. Me.Label410.AutoSize = True
  1766. Me.Label410.ForeColor = System.Drawing.Color.Green
  1767. Me.Label410.Location = New System.Drawing.Point(5, 792)
  1768. Me.Label410.Name = "Label410"
  1769. Me.Label410.Size = New System.Drawing.Size(151, 16)
  1770. Me.Label410.TabIndex = 1125
  1771. Me.Label410.Text = "減價收受以該工程項目乘以"
  1772. '
  1773. '工程款5_nud
  1774. '
  1775. Me.工程款5_nud.Location = New System.Drawing.Point(536, 416)
  1776. Me.工程款5_nud.Name = "工程款5_nud"
  1777. Me.工程款5_nud.Size = New System.Drawing.Size(40, 23)
  1778. Me.工程款5_nud.TabIndex = 1097
  1779. Me.工程款5_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1780. Me.工程款5_nud.ThousandsSeparator = True
  1781. Me.工程款5_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  1782. '
  1783. 'Label408
  1784. '
  1785. Me.Label408.AutoSize = True
  1786. Me.Label408.ForeColor = System.Drawing.Color.Green
  1787. Me.Label408.Location = New System.Drawing.Point(270, 792)
  1788. Me.Label408.Name = "Label408"
  1789. Me.Label408.Size = New System.Drawing.Size(43, 16)
  1790. Me.Label408.TabIndex = 1126
  1791. Me.Label408.Text = "計價。"
  1792. '
  1793. 'Label377
  1794. '
  1795. Me.Label377.AutoSize = True
  1796. Me.Label377.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1797. Me.Label377.ForeColor = System.Drawing.Color.Blue
  1798. Me.Label377.Location = New System.Drawing.Point(1, 301)
  1799. Me.Label377.Name = "Label377"
  1800. Me.Label377.Size = New System.Drawing.Size(43, 16)
  1801. Me.Label377.TabIndex = 1075
  1802. Me.Label377.Text = "地 址"
  1803. Me.Label377.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1804. '
  1805. 'Label405
  1806. '
  1807. Me.Label405.AutoSize = True
  1808. Me.Label405.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1809. Me.Label405.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1810. Me.Label405.Location = New System.Drawing.Point(432, 278)
  1811. Me.Label405.Name = "Label405"
  1812. Me.Label405.Size = New System.Drawing.Size(43, 16)
  1813. Me.Label405.TabIndex = 1121
  1814. Me.Label405.Text = "負責人"
  1815. Me.Label405.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1816. '
  1817. '工程款4_nud
  1818. '
  1819. Me.工程款4_nud.Location = New System.Drawing.Point(307, 440)
  1820. Me.工程款4_nud.Name = "工程款4_nud"
  1821. Me.工程款4_nud.Size = New System.Drawing.Size(40, 23)
  1822. Me.工程款4_nud.TabIndex = 1096
  1823. Me.工程款4_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1824. Me.工程款4_nud.ThousandsSeparator = True
  1825. Me.工程款4_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  1826. '
  1827. '減價_bt
  1828. '
  1829. Me.減價_bt.Location = New System.Drawing.Point(158, 789)
  1830. Me.減價_bt.Name = "減價_bt"
  1831. Me.減價_bt.Size = New System.Drawing.Size(106, 23)
  1832. Me.減價_bt.TabIndex = 1127
  1833. Me.減價_bt.Text = "60% (sixty) "
  1834. Me.減價_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1835. '
  1836. '頁數_bt
  1837. '
  1838. Me.頁數_bt.Enabled = False
  1839. Me.頁數_bt.Location = New System.Drawing.Point(407, 835)
  1840. Me.頁數_bt.Name = "頁數_bt"
  1841. Me.頁數_bt.Size = New System.Drawing.Size(106, 23)
  1842. Me.頁數_bt.TabIndex = 1133
  1843. Me.頁數_bt.Text = "8 (twelve)"
  1844. Me.頁數_bt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1845. '
  1846. 'Label409
  1847. '
  1848. Me.Label409.AutoSize = True
  1849. Me.Label409.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1850. Me.Label409.Location = New System.Drawing.Point(4, 812)
  1851. Me.Label409.Name = "Label409"
  1852. Me.Label409.Size = New System.Drawing.Size(154, 21)
  1853. Me.Label409.TabIndex = 1128
  1854. Me.Label409.Text = "第十一條、合約效力"
  1855. Me.Label409.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1856. '
  1857. 'Label399
  1858. '
  1859. Me.Label399.AutoSize = True
  1860. Me.Label399.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1861. Me.Label399.Location = New System.Drawing.Point(2, 341)
  1862. Me.Label399.Name = "Label399"
  1863. Me.Label399.Size = New System.Drawing.Size(186, 21)
  1864. Me.Label399.TabIndex = 1115
  1865. Me.Label399.Text = "第二條、工作範圍和總價"
  1866. Me.Label399.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1867. '
  1868. '負責人_A_cb
  1869. '
  1870. Me.負責人_A_cb.FormattingEnabled = True
  1871. Me.負責人_A_cb.Location = New System.Drawing.Point(478, 118)
  1872. Me.負責人_A_cb.Name = "負責人_A_cb"
  1873. Me.負責人_A_cb.Size = New System.Drawing.Size(206, 24)
  1874. Me.負責人_A_cb.TabIndex = 1120
  1875. '
  1876. '工程名稱_英_tb
  1877. '
  1878. Me.工程名稱_英_tb.Location = New System.Drawing.Point(95, 249)
  1879. Me.工程名稱_英_tb.Name = "工程名稱_英_tb"
  1880. Me.工程名稱_英_tb.Size = New System.Drawing.Size(588, 23)
  1881. Me.工程名稱_英_tb.TabIndex = 1078
  1882. Me.工程名稱_英_tb.Text = "JSC #B3 substation high voltage power engineering "
  1883. '
  1884. '工程款3_nud
  1885. '
  1886. Me.工程款3_nud.Location = New System.Drawing.Point(307, 416)
  1887. Me.工程款3_nud.Name = "工程款3_nud"
  1888. Me.工程款3_nud.Size = New System.Drawing.Size(40, 23)
  1889. Me.工程款3_nud.TabIndex = 1095
  1890. Me.工程款3_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1891. Me.工程款3_nud.ThousandsSeparator = True
  1892. Me.工程款3_nud.Value = New Decimal(New Integer() {20, 0, 0, 0})
  1893. '
  1894. 'Label404
  1895. '
  1896. Me.Label404.AutoSize = True
  1897. Me.Label404.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1898. Me.Label404.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1899. Me.Label404.Location = New System.Drawing.Point(433, 122)
  1900. Me.Label404.Name = "Label404"
  1901. Me.Label404.Size = New System.Drawing.Size(43, 16)
  1902. Me.Label404.TabIndex = 1119
  1903. Me.Label404.Text = "負責人"
  1904. Me.Label404.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1905. '
  1906. 'Label413
  1907. '
  1908. Me.Label413.AutoSize = True
  1909. Me.Label413.ForeColor = System.Drawing.Color.Green
  1910. Me.Label413.Location = New System.Drawing.Point(267, 837)
  1911. Me.Label413.Name = "Label413"
  1912. Me.Label413.Size = New System.Drawing.Size(133, 16)
  1913. Me.Label413.TabIndex = 1132
  1914. Me.Label413.Text = "的中英文合 約條款共 計"
  1915. '
  1916. 'Label412
  1917. '
  1918. Me.Label412.AutoSize = True
  1919. Me.Label412.ForeColor = System.Drawing.Color.Green
  1920. Me.Label412.Location = New System.Drawing.Point(3, 838)
  1921. Me.Label412.Name = "Label412"
  1922. Me.Label412.Size = New System.Drawing.Size(111, 16)
  1923. Me.Label412.TabIndex = 1130
  1924. Me.Label412.Text = "客戶工程廠區(中文)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  1925. '
  1926. 'Label400
  1927. '
  1928. Me.Label400.AutoSize = True
  1929. Me.Label400.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1930. Me.Label400.Location = New System.Drawing.Point(2, 391)
  1931. Me.Label400.Name = "Label400"
  1932. Me.Label400.Size = New System.Drawing.Size(218, 21)
  1933. Me.Label400.TabIndex = 1116
  1934. Me.Label400.Text = "第三條、合約金額和支付詳情"
  1935. Me.Label400.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1936. '
  1937. '我司地址_tb
  1938. '
  1939. Me.我司地址_tb.Location = New System.Drawing.Point(57, 299)
  1940. Me.我司地址_tb.Multiline = True
  1941. Me.我司地址_tb.Name = "我司地址_tb"
  1942. Me.我司地址_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1943. Me.我司地址_tb.Size = New System.Drawing.Size(626, 40)
  1944. Me.我司地址_tb.TabIndex = 1076
  1945. Me.我司地址_tb.Text = "BLOK WESEL RT 004 RW 002 NO.88 DESA MEKARWARU KECAMATAN GANTAR KABUPATEN INDRAMAY" &
  1946. "U"
  1947. '
  1948. '工程款1_nud
  1949. '
  1950. Me.工程款1_nud.Location = New System.Drawing.Point(77, 416)
  1951. Me.工程款1_nud.Name = "工程款1_nud"
  1952. Me.工程款1_nud.Size = New System.Drawing.Size(40, 23)
  1953. Me.工程款1_nud.TabIndex = 1093
  1954. Me.工程款1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1955. Me.工程款1_nud.ThousandsSeparator = True
  1956. Me.工程款1_nud.Value = New Decimal(New Integer() {30, 0, 0, 0})
  1957. '
  1958. '放行_bt
  1959. '
  1960. Me.放行_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.check
  1961. Me.放行_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1962. Me.放行_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1963. Me.放行_bt.Location = New System.Drawing.Point(460, 0)
  1964. Me.放行_bt.Name = "放行_bt"
  1965. Me.放行_bt.Size = New System.Drawing.Size(40, 40)
  1966. Me.放行_bt.TabIndex = 1679
  1967. Me.放行_bt.UseVisualStyleBackColor = True
  1968. '
  1969. 'ProgressBar1
  1970. '
  1971. Me.ProgressBar1.Location = New System.Drawing.Point(338, 19)
  1972. Me.ProgressBar1.Maximum = 10000
  1973. Me.ProgressBar1.Name = "ProgressBar1"
  1974. Me.ProgressBar1.Size = New System.Drawing.Size(78, 20)
  1975. Me.ProgressBar1.TabIndex = 1677
  1976. '
  1977. '存檔_tb
  1978. '
  1979. Me.存檔_tb.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.SAVER2
  1980. Me.存檔_tb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1981. Me.存檔_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1982. Me.存檔_tb.ForeColor = System.Drawing.Color.Green
  1983. Me.存檔_tb.Location = New System.Drawing.Point(419, 0)
  1984. Me.存檔_tb.Name = "存檔_tb"
  1985. Me.存檔_tb.Size = New System.Drawing.Size(40, 40)
  1986. Me.存檔_tb.TabIndex = 1676
  1987. Me.存檔_tb.UseVisualStyleBackColor = True
  1988. '
  1989. '合約停止_ch
  1990. '
  1991. Me.合約停止_ch.AutoSize = True
  1992. Me.合約停止_ch.BackColor = System.Drawing.SystemColors.Control
  1993. Me.合約停止_ch.Location = New System.Drawing.Point(342, 1)
  1994. Me.合約停止_ch.Name = "合約停止_ch"
  1995. Me.合約停止_ch.Size = New System.Drawing.Size(74, 20)
  1996. Me.合約停止_ch.TabIndex = 1678
  1997. Me.合約停止_ch.Text = "合約停止"
  1998. Me.合約停止_ch.UseVisualStyleBackColor = False
  1999. '
  2000. '列印成EXCEL_bt
  2001. '
  2002. Me.列印成EXCEL_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2003. Me.列印成EXCEL_bt.BackColor = System.Drawing.SystemColors.Control
  2004. Me.列印成EXCEL_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.print
  2005. Me.列印成EXCEL_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2006. Me.列印成EXCEL_bt.ForeColor = System.Drawing.Color.Green
  2007. Me.列印成EXCEL_bt.Location = New System.Drawing.Point(1859, 1)
  2008. Me.列印成EXCEL_bt.Name = "列印成EXCEL_bt"
  2009. Me.列印成EXCEL_bt.Size = New System.Drawing.Size(40, 40)
  2010. Me.列印成EXCEL_bt.TabIndex = 1414
  2011. Me.列印成EXCEL_bt.UseVisualStyleBackColor = False
  2012. '
  2013. '縮放2_bt
  2014. '
  2015. Me.縮放2_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.ZOOM01
  2016. Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2017. Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2018. Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
  2019. Me.縮放2_bt.Location = New System.Drawing.Point(50, 1)
  2020. Me.縮放2_bt.Name = "縮放2_bt"
  2021. Me.縮放2_bt.Size = New System.Drawing.Size(40, 40)
  2022. Me.縮放2_bt.TabIndex = 1674
  2023. Me.縮放2_bt.UseVisualStyleBackColor = True
  2024. '
  2025. '合約_dgv
  2026. '
  2027. DataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2028. Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle23
  2029. Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2030. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2031. Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2032. Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
  2033. Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2034. Me.合約_dgv.Location = New System.Drawing.Point(-1, 42)
  2035. Me.合約_dgv.Name = "合約_dgv"
  2036. Me.合約_dgv.RowHeadersWidth = 5
  2037. Me.合約_dgv.RowTemplate.Height = 24
  2038. Me.合約_dgv.Size = New System.Drawing.Size(147, 960)
  2039. Me.合約_dgv.TabIndex = 1043
  2040. '
  2041. '錨點2
  2042. '
  2043. Me.錨點2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2044. Me.錨點2.Location = New System.Drawing.Point(145, 1004)
  2045. Me.錨點2.Name = "錨點2"
  2046. Me.錨點2.Size = New System.Drawing.Size(25, 23)
  2047. Me.錨點2.TabIndex = 1363
  2048. Me.錨點2.Visible = False
  2049. '
  2050. '縮放1_bt
  2051. '
  2052. Me.縮放1_bt.Location = New System.Drawing.Point(1, 1)
  2053. Me.縮放1_bt.Name = "縮放1_bt"
  2054. Me.縮放1_bt.Size = New System.Drawing.Size(50, 40)
  2055. Me.縮放1_bt.TabIndex = 1362
  2056. Me.縮放1_bt.Text = "合約清單"
  2057. Me.縮放1_bt.UseVisualStyleBackColor = True
  2058. '
  2059. '查詢_bt
  2060. '
  2061. Me.查詢_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.下載
  2062. Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2063. Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2064. Me.查詢_bt.Location = New System.Drawing.Point(195, 1)
  2065. Me.查詢_bt.Name = "查詢_bt"
  2066. Me.查詢_bt.Size = New System.Drawing.Size(40, 40)
  2067. Me.查詢_bt.TabIndex = 1046
  2068. Me.查詢_bt.UseVisualStyleBackColor = True
  2069. '
  2070. '關鍵字搜尋_tb
  2071. '
  2072. Me.關鍵字搜尋_tb.Location = New System.Drawing.Point(91, 16)
  2073. Me.關鍵字搜尋_tb.Name = "關鍵字搜尋_tb"
  2074. Me.關鍵字搜尋_tb.Size = New System.Drawing.Size(104, 23)
  2075. Me.關鍵字搜尋_tb.TabIndex = 1044
  2076. '
  2077. 'Label53
  2078. '
  2079. Me.Label53.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2080. Me.Label53.AutoSize = True
  2081. Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2082. Me.Label53.ForeColor = System.Drawing.Color.Red
  2083. Me.Label53.Location = New System.Drawing.Point(1655, 5)
  2084. Me.Label53.Name = "Label53"
  2085. Me.Label53.Size = New System.Drawing.Size(127, 32)
  2086. Me.Label53.TabIndex = 1675
  2087. Me.Label53.Text = "連點兩下就可將明細連" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "動帶入總表選定的位置"
  2088. Me.Label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2089. '
  2090. 'Label7
  2091. '
  2092. Me.Label7.AutoSize = True
  2093. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2094. Me.Label7.Location = New System.Drawing.Point(90, 2)
  2095. Me.Label7.Name = "Label7"
  2096. Me.Label7.Size = New System.Drawing.Size(67, 16)
  2097. Me.Label7.TabIndex = 1045
  2098. Me.Label7.Text = "合約號搜尋"
  2099. Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2100. '
  2101. '工材分離_ch
  2102. '
  2103. Me.工材分離_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2104. Me.工材分離_ch.AutoSize = True
  2105. Me.工材分離_ch.BackColor = System.Drawing.SystemColors.Control
  2106. Me.工材分離_ch.ForeColor = System.Drawing.Color.Green
  2107. Me.工材分離_ch.Location = New System.Drawing.Point(1788, 3)
  2108. Me.工材分離_ch.Name = "工材分離_ch"
  2109. Me.工材分離_ch.Size = New System.Drawing.Size(74, 36)
  2110. Me.工材分離_ch.TabIndex = 1414
  2111. Me.工材分離_ch.Text = "工資材料" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "分離格式"
  2112. Me.工材分離_ch.UseVisualStyleBackColor = False
  2113. '
  2114. '空間3
  2115. '
  2116. Me.空間3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2117. Or System.Windows.Forms.AnchorStyles.Left) _
  2118. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2119. Me.空間3.AutoScroll = True
  2120. Me.空間3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2121. Me.空間3.Controls.Add(Me.歸零數_tb)
  2122. Me.空間3.Controls.Add(Me.利潤比4_tb)
  2123. Me.空間3.Controls.Add(Me.Label71)
  2124. Me.空間3.Controls.Add(Me.Label70)
  2125. Me.空間3.Controls.Add(Me.Label69)
  2126. Me.空間3.Controls.Add(Me.Label68)
  2127. Me.空間3.Controls.Add(Me.Label67)
  2128. Me.空間3.Controls.Add(Me.Label64)
  2129. Me.空間3.Controls.Add(Me.Label63)
  2130. Me.空間3.Controls.Add(Me.利潤比3_tb)
  2131. Me.空間3.Controls.Add(Me.Label60)
  2132. Me.空間3.Controls.Add(Me.總報價_tb)
  2133. Me.空間3.Controls.Add(Me.總成本_tb)
  2134. Me.空間3.Controls.Add(Me.Label58)
  2135. Me.空間3.Controls.Add(Me.Label59)
  2136. Me.空間3.Controls.Add(Me.利潤比2_tb)
  2137. Me.空間3.Controls.Add(Me.Label57)
  2138. Me.空間3.Controls.Add(Me.利潤比1_tb)
  2139. Me.空間3.Controls.Add(Me.預估利潤_tb)
  2140. Me.空間3.Controls.Add(Me.預估材料總報價_tb)
  2141. Me.空間3.Controls.Add(Me.預估工資總報價_tb)
  2142. Me.空間3.Controls.Add(Me.預估材料總成本_tb)
  2143. Me.空間3.Controls.Add(Me.Label54)
  2144. Me.空間3.Controls.Add(Me.預估工資總成本_tb)
  2145. Me.空間3.Controls.Add(Me.Label55)
  2146. Me.空間3.Controls.Add(Me.Label65)
  2147. Me.空間3.Controls.Add(Me.Label62)
  2148. Me.空間3.Controls.Add(Me.Label66)
  2149. Me.空間3.Controls.Add(Me.Label61)
  2150. Me.空間3.Controls.Add(Me.TabControl3)
  2151. Me.空間3.Controls.Add(Me.Panel2)
  2152. Me.空間3.Controls.Add(Me.Panel1)
  2153. Me.空間3.Controls.Add(Me.報價總表_dgv)
  2154. Me.空間3.Location = New System.Drawing.Point(145, 42)
  2155. Me.空間3.Name = "空間3"
  2156. Me.空間3.Size = New System.Drawing.Size(1757, 960)
  2157. Me.空間3.TabIndex = 1353
  2158. '
  2159. '歸零數_tb
  2160. '
  2161. Me.歸零數_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2162. Me.歸零數_tb.Location = New System.Drawing.Point(1210, 782)
  2163. Me.歸零數_tb.Name = "歸零數_tb"
  2164. Me.歸零數_tb.Size = New System.Drawing.Size(47, 16)
  2165. Me.歸零數_tb.TabIndex = 1755
  2166. '
  2167. '利潤比4_tb
  2168. '
  2169. Me.利潤比4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2170. Me.利潤比4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2171. Me.利潤比4_tb.Location = New System.Drawing.Point(1205, 936)
  2172. Me.利潤比4_tb.Name = "利潤比4_tb"
  2173. Me.利潤比4_tb.Size = New System.Drawing.Size(47, 16)
  2174. Me.利潤比4_tb.TabIndex = 1752
  2175. Me.利潤比4_tb.Text = "100%"
  2176. Me.利潤比4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2177. '
  2178. 'Label71
  2179. '
  2180. Me.Label71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2181. Me.Label71.AutoSize = True
  2182. Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2183. Me.Label71.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2184. Me.Label71.Location = New System.Drawing.Point(1101, 937)
  2185. Me.Label71.Name = "Label71"
  2186. Me.Label71.Size = New System.Drawing.Size(105, 16)
  2187. Me.Label71.TabIndex = 1753
  2188. Me.Label71.Text = "利 潤 比 (含折讓) :"
  2189. Me.Label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2190. '
  2191. 'Label70
  2192. '
  2193. Me.Label70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2194. Me.Label70.AutoSize = True
  2195. Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2196. Me.Label70.Location = New System.Drawing.Point(917, 936)
  2197. Me.Label70.Name = "Label70"
  2198. Me.Label70.Size = New System.Drawing.Size(26, 16)
  2199. Me.Label70.TabIndex = 1751
  2200. Me.Label70.Text = ") = "
  2201. Me.Label70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2202. '
  2203. 'Label69
  2204. '
  2205. Me.Label69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2206. Me.Label69.AutoSize = True
  2207. Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2208. Me.Label69.ForeColor = System.Drawing.Color.Red
  2209. Me.Label69.Location = New System.Drawing.Point(856, 937)
  2210. Me.Label69.Name = "Label69"
  2211. Me.Label69.Size = New System.Drawing.Size(55, 16)
  2212. Me.Label69.TabIndex = 1750
  2213. Me.Label69.Text = "折讓金額"
  2214. Me.Label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2215. '
  2216. 'Label68
  2217. '
  2218. Me.Label68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2219. Me.Label68.AutoSize = True
  2220. Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2221. Me.Label68.Location = New System.Drawing.Point(838, 935)
  2222. Me.Label68.Name = "Label68"
  2223. Me.Label68.Size = New System.Drawing.Size(12, 16)
  2224. Me.Label68.TabIndex = 1749
  2225. Me.Label68.Text = "-"
  2226. Me.Label68.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2227. '
  2228. 'Label67
  2229. '
  2230. Me.Label67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2231. Me.Label67.AutoSize = True
  2232. Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2233. Me.Label67.ForeColor = System.Drawing.Color.Green
  2234. Me.Label67.Location = New System.Drawing.Point(718, 936)
  2235. Me.Label67.Name = "Label67"
  2236. Me.Label67.Size = New System.Drawing.Size(43, 16)
  2237. Me.Label67.TabIndex = 1748
  2238. Me.Label67.Text = "總報價"
  2239. Me.Label67.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2240. '
  2241. 'Label64
  2242. '
  2243. Me.Label64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2244. Me.Label64.AutoSize = True
  2245. Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2246. Me.Label64.Location = New System.Drawing.Point(763, 935)
  2247. Me.Label64.Name = "Label64"
  2248. Me.Label64.Size = New System.Drawing.Size(19, 16)
  2249. Me.Label64.TabIndex = 1747
  2250. Me.Label64.Text = "- ("
  2251. Me.Label64.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2252. '
  2253. 'Label63
  2254. '
  2255. Me.Label63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2256. Me.Label63.AutoSize = True
  2257. Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2258. Me.Label63.ForeColor = System.Drawing.Color.Red
  2259. Me.Label63.Location = New System.Drawing.Point(786, 936)
  2260. Me.Label63.Name = "Label63"
  2261. Me.Label63.Size = New System.Drawing.Size(46, 16)
  2262. Me.Label63.TabIndex = 1746
  2263. Me.Label63.Text = "總成本 "
  2264. Me.Label63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2265. '
  2266. '利潤比3_tb
  2267. '
  2268. Me.利潤比3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2269. Me.利潤比3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2270. Me.利潤比3_tb.Location = New System.Drawing.Point(1205, 917)
  2271. Me.利潤比3_tb.Name = "利潤比3_tb"
  2272. Me.利潤比3_tb.Size = New System.Drawing.Size(47, 16)
  2273. Me.利潤比3_tb.TabIndex = 1744
  2274. Me.利潤比3_tb.Text = "100%"
  2275. Me.利潤比3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2276. '
  2277. 'Label60
  2278. '
  2279. Me.Label60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2280. Me.Label60.AutoSize = True
  2281. Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2282. Me.Label60.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2283. Me.Label60.Location = New System.Drawing.Point(1101, 918)
  2284. Me.Label60.Name = "Label60"
  2285. Me.Label60.Size = New System.Drawing.Size(105, 16)
  2286. Me.Label60.TabIndex = 1745
  2287. Me.Label60.Text = "利潤比(不含折讓) :"
  2288. Me.Label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2289. '
  2290. '總報價_tb
  2291. '
  2292. Me.總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2293. Me.總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2294. Me.總報價_tb.Location = New System.Drawing.Point(1006, 917)
  2295. Me.總報價_tb.Name = "總報價_tb"
  2296. Me.總報價_tb.Size = New System.Drawing.Size(90, 16)
  2297. Me.總報價_tb.TabIndex = 1741
  2298. Me.總報價_tb.Text = "99,999,999,999"
  2299. Me.總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2300. '
  2301. '總成本_tb
  2302. '
  2303. Me.總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2304. Me.總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2305. Me.總成本_tb.Location = New System.Drawing.Point(812, 917)
  2306. Me.總成本_tb.Name = "總成本_tb"
  2307. Me.總成本_tb.Size = New System.Drawing.Size(90, 16)
  2308. Me.總成本_tb.TabIndex = 1740
  2309. Me.總成本_tb.Text = "99,999,999,999"
  2310. Me.總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2311. '
  2312. 'Label58
  2313. '
  2314. Me.Label58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2315. Me.Label58.AutoSize = True
  2316. Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2317. Me.Label58.ForeColor = System.Drawing.Color.Red
  2318. Me.Label58.Location = New System.Drawing.Point(716, 916)
  2319. Me.Label58.Name = "Label58"
  2320. Me.Label58.Size = New System.Drawing.Size(97, 16)
  2321. Me.Label58.TabIndex = 1742
  2322. Me.Label58.Text = "總 成 本 :"
  2323. Me.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2324. '
  2325. 'Label59
  2326. '
  2327. Me.Label59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2328. Me.Label59.AutoSize = True
  2329. Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2330. Me.Label59.ForeColor = System.Drawing.Color.Green
  2331. Me.Label59.Location = New System.Drawing.Point(911, 916)
  2332. Me.Label59.Name = "Label59"
  2333. Me.Label59.Size = New System.Drawing.Size(97, 16)
  2334. Me.Label59.TabIndex = 1743
  2335. Me.Label59.Text = "總 報 價 :"
  2336. Me.Label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2337. '
  2338. '利潤比2_tb
  2339. '
  2340. Me.利潤比2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2341. Me.利潤比2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2342. Me.利潤比2_tb.Location = New System.Drawing.Point(1206, 897)
  2343. Me.利潤比2_tb.Name = "利潤比2_tb"
  2344. Me.利潤比2_tb.Size = New System.Drawing.Size(47, 16)
  2345. Me.利潤比2_tb.TabIndex = 1738
  2346. Me.利潤比2_tb.Text = "100%"
  2347. Me.利潤比2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2348. '
  2349. 'Label57
  2350. '
  2351. Me.Label57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2352. Me.Label57.AutoSize = True
  2353. Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2354. Me.Label57.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2355. Me.Label57.Location = New System.Drawing.Point(1102, 898)
  2356. Me.Label57.Name = "Label57"
  2357. Me.Label57.Size = New System.Drawing.Size(103, 16)
  2358. Me.Label57.TabIndex = 1739
  2359. Me.Label57.Text = "利 潤 比 :"
  2360. Me.Label57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2361. '
  2362. '利潤比1_tb
  2363. '
  2364. Me.利潤比1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2365. Me.利潤比1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2366. Me.利潤比1_tb.Location = New System.Drawing.Point(1205, 878)
  2367. Me.利潤比1_tb.Name = "利潤比1_tb"
  2368. Me.利潤比1_tb.Size = New System.Drawing.Size(47, 16)
  2369. Me.利潤比1_tb.TabIndex = 1729
  2370. Me.利潤比1_tb.Text = "100%"
  2371. Me.利潤比1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2372. '
  2373. '預估利潤_tb
  2374. '
  2375. Me.預估利潤_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2376. Me.預估利潤_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2377. Me.預估利潤_tb.Location = New System.Drawing.Point(1006, 937)
  2378. Me.預估利潤_tb.Name = "預估利潤_tb"
  2379. Me.預估利潤_tb.Size = New System.Drawing.Size(90, 16)
  2380. Me.預估利潤_tb.TabIndex = 1728
  2381. Me.預估利潤_tb.Text = "99,999,999,999"
  2382. Me.預估利潤_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2383. '
  2384. '預估材料總報價_tb
  2385. '
  2386. Me.預估材料總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2387. Me.預估材料總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2388. Me.預估材料總報價_tb.Location = New System.Drawing.Point(1006, 897)
  2389. Me.預估材料總報價_tb.Name = "預估材料總報價_tb"
  2390. Me.預估材料總報價_tb.Size = New System.Drawing.Size(90, 16)
  2391. Me.預估材料總報價_tb.TabIndex = 1727
  2392. Me.預估材料總報價_tb.Text = "99,999,999,999"
  2393. Me.預估材料總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2394. '
  2395. '預估工資總報價_tb
  2396. '
  2397. Me.預估工資總報價_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2398. Me.預估工資總報價_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2399. Me.預估工資總報價_tb.Location = New System.Drawing.Point(1006, 877)
  2400. Me.預估工資總報價_tb.Name = "預估工資總報價_tb"
  2401. Me.預估工資總報價_tb.Size = New System.Drawing.Size(90, 16)
  2402. Me.預估工資總報價_tb.TabIndex = 1726
  2403. Me.預估工資總報價_tb.Text = "99,999,999,999"
  2404. Me.預估工資總報價_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2405. '
  2406. '預估材料總成本_tb
  2407. '
  2408. Me.預估材料總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2409. Me.預估材料總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2410. Me.預估材料總成本_tb.Location = New System.Drawing.Point(812, 897)
  2411. Me.預估材料總成本_tb.Name = "預估材料總成本_tb"
  2412. Me.預估材料總成本_tb.Size = New System.Drawing.Size(90, 16)
  2413. Me.預估材料總成本_tb.TabIndex = 1725
  2414. Me.預估材料總成本_tb.Text = "99,999,999,999"
  2415. Me.預估材料總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2416. '
  2417. 'Label54
  2418. '
  2419. Me.Label54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2420. Me.Label54.AutoSize = True
  2421. Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2422. Me.Label54.ForeColor = System.Drawing.Color.Red
  2423. Me.Label54.Location = New System.Drawing.Point(715, 877)
  2424. Me.Label54.Name = "Label54"
  2425. Me.Label54.Size = New System.Drawing.Size(97, 16)
  2426. Me.Label54.TabIndex = 1731
  2427. Me.Label54.Text = "預估工資總成本 :"
  2428. Me.Label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2429. '
  2430. '預估工資總成本_tb
  2431. '
  2432. Me.預估工資總成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2433. Me.預估工資總成本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2434. Me.預估工資總成本_tb.Location = New System.Drawing.Point(812, 877)
  2435. Me.預估工資總成本_tb.Name = "預估工資總成本_tb"
  2436. Me.預估工資總成本_tb.Size = New System.Drawing.Size(90, 16)
  2437. Me.預估工資總成本_tb.TabIndex = 1724
  2438. Me.預估工資總成本_tb.Text = "99,999,999,999"
  2439. Me.預估工資總成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2440. '
  2441. 'Label55
  2442. '
  2443. Me.Label55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2444. Me.Label55.AutoSize = True
  2445. Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2446. Me.Label55.ForeColor = System.Drawing.Color.Red
  2447. Me.Label55.Location = New System.Drawing.Point(716, 897)
  2448. Me.Label55.Name = "Label55"
  2449. Me.Label55.Size = New System.Drawing.Size(97, 16)
  2450. Me.Label55.TabIndex = 1733
  2451. Me.Label55.Text = "預估材料總成本 :"
  2452. Me.Label55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2453. '
  2454. 'Label65
  2455. '
  2456. Me.Label65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2457. Me.Label65.AutoSize = True
  2458. Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2459. Me.Label65.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2460. Me.Label65.Location = New System.Drawing.Point(1101, 878)
  2461. Me.Label65.Name = "Label65"
  2462. Me.Label65.Size = New System.Drawing.Size(103, 16)
  2463. Me.Label65.TabIndex = 1737
  2464. Me.Label65.Text = "利 潤 比 :"
  2465. Me.Label65.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2466. '
  2467. 'Label62
  2468. '
  2469. Me.Label62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2470. Me.Label62.AutoSize = True
  2471. Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2472. Me.Label62.ForeColor = System.Drawing.Color.Green
  2473. Me.Label62.Location = New System.Drawing.Point(910, 877)
  2474. Me.Label62.Name = "Label62"
  2475. Me.Label62.Size = New System.Drawing.Size(97, 16)
  2476. Me.Label62.TabIndex = 1734
  2477. Me.Label62.Text = "預估工資總報價 :"
  2478. Me.Label62.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2479. '
  2480. 'Label66
  2481. '
  2482. Me.Label66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2483. Me.Label66.AutoSize = True
  2484. Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2485. Me.Label66.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2486. Me.Label66.Location = New System.Drawing.Point(946, 936)
  2487. Me.Label66.Name = "Label66"
  2488. Me.Label66.Size = New System.Drawing.Size(61, 16)
  2489. Me.Label66.TabIndex = 1736
  2490. Me.Label66.Text = "預估利潤 :"
  2491. Me.Label66.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2492. '
  2493. 'Label61
  2494. '
  2495. Me.Label61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2496. Me.Label61.AutoSize = True
  2497. Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2498. Me.Label61.ForeColor = System.Drawing.Color.Green
  2499. Me.Label61.Location = New System.Drawing.Point(911, 897)
  2500. Me.Label61.Name = "Label61"
  2501. Me.Label61.Size = New System.Drawing.Size(97, 16)
  2502. Me.Label61.TabIndex = 1735
  2503. Me.Label61.Text = "預估材料總報價 :"
  2504. Me.Label61.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2505. '
  2506. 'TabControl3
  2507. '
  2508. Me.TabControl3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  2509. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2510. Me.TabControl3.Appearance = System.Windows.Forms.TabAppearance.Buttons
  2511. Me.TabControl3.Controls.Add(Me.TabPage1)
  2512. Me.TabControl3.Controls.Add(Me.TabPage2)
  2513. Me.TabControl3.Location = New System.Drawing.Point(712, 782)
  2514. Me.TabControl3.Name = "TabControl3"
  2515. Me.TabControl3.SelectedIndex = 0
  2516. Me.TabControl3.Size = New System.Drawing.Size(1040, 93)
  2517. Me.TabControl3.TabIndex = 1730
  2518. '
  2519. 'TabPage1
  2520. '
  2521. Me.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2522. Me.TabPage1.Controls.Add(Me.折價計算_bt)
  2523. Me.TabPage1.Controls.Add(Me.Label83)
  2524. Me.TabPage1.Controls.Add(Me.甲方_cb)
  2525. Me.TabPage1.Controls.Add(Me.未折價前_tb)
  2526. Me.TabPage1.Controls.Add(Me.Label82)
  2527. Me.TabPage1.Controls.Add(Me.歸零位數_nud)
  2528. Me.TabPage1.Controls.Add(Me.Label81)
  2529. Me.TabPage1.Controls.Add(Me.稅後歸零_ch)
  2530. Me.TabPage1.Controls.Add(Me.稅前歸零_ch)
  2531. Me.TabPage1.Controls.Add(Me.Label80)
  2532. Me.TabPage1.Controls.Add(Me.折讓比例_nud)
  2533. Me.TabPage1.Controls.Add(Me.Label79)
  2534. Me.TabPage1.Controls.Add(Me.報價小計_tb)
  2535. Me.TabPage1.Controls.Add(Me.Label39)
  2536. Me.TabPage1.Location = New System.Drawing.Point(4, 28)
  2537. Me.TabPage1.Name = "TabPage1"
  2538. Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
  2539. Me.TabPage1.Size = New System.Drawing.Size(1032, 61)
  2540. Me.TabPage1.TabIndex = 0
  2541. Me.TabPage1.Text = "折讓與報價去尾數 / Discounts and quotes rounded off"
  2542. Me.TabPage1.UseVisualStyleBackColor = True
  2543. '
  2544. '折價計算_bt
  2545. '
  2546. Me.折價計算_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.calc1
  2547. Me.折價計算_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2548. Me.折價計算_bt.Location = New System.Drawing.Point(460, 2)
  2549. Me.折價計算_bt.Name = "折價計算_bt"
  2550. Me.折價計算_bt.Size = New System.Drawing.Size(52, 52)
  2551. Me.折價計算_bt.TabIndex = 1722
  2552. Me.折價計算_bt.UseVisualStyleBackColor = True
  2553. '
  2554. 'Label83
  2555. '
  2556. Me.Label83.AutoSize = True
  2557. Me.Label83.BackColor = System.Drawing.SystemColors.Control
  2558. Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2559. Me.Label83.ForeColor = System.Drawing.Color.Green
  2560. Me.Label83.Location = New System.Drawing.Point(171, 7)
  2561. Me.Label83.Name = "Label83"
  2562. Me.Label83.Size = New System.Drawing.Size(55, 16)
  2563. Me.Label83.TabIndex = 1721
  2564. Me.Label83.Text = "折價參考"
  2565. Me.Label83.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2566. '
  2567. '甲方_cb
  2568. '
  2569. Me.甲方_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2570. Me.甲方_cb.ForeColor = System.Drawing.Color.Green
  2571. Me.甲方_cb.FormattingEnabled = True
  2572. Me.甲方_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  2573. Me.甲方_cb.Location = New System.Drawing.Point(225, 3)
  2574. Me.甲方_cb.Name = "甲方_cb"
  2575. Me.甲方_cb.Size = New System.Drawing.Size(94, 24)
  2576. Me.甲方_cb.TabIndex = 1720
  2577. '
  2578. '未折價前_tb
  2579. '
  2580. Me.未折價前_tb.Location = New System.Drawing.Point(65, 4)
  2581. Me.未折價前_tb.Name = "未折價前_tb"
  2582. Me.未折價前_tb.Size = New System.Drawing.Size(110, 23)
  2583. Me.未折價前_tb.TabIndex = 1718
  2584. Me.未折價前_tb.Text = "99,999,999,999"
  2585. Me.未折價前_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2586. '
  2587. 'Label82
  2588. '
  2589. Me.Label82.AutoSize = True
  2590. Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2591. Me.Label82.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2592. Me.Label82.Location = New System.Drawing.Point(8, 7)
  2593. Me.Label82.Name = "Label82"
  2594. Me.Label82.Size = New System.Drawing.Size(55, 16)
  2595. Me.Label82.TabIndex = 1719
  2596. Me.Label82.Text = "未折價前"
  2597. Me.Label82.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2598. '
  2599. '歸零位數_nud
  2600. '
  2601. Me.歸零位數_nud.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2602. Me.歸零位數_nud.Location = New System.Drawing.Point(403, 25)
  2603. Me.歸零位數_nud.Maximum = New Decimal(New Integer() {10, 0, 0, 0})
  2604. Me.歸零位數_nud.Name = "歸零位數_nud"
  2605. Me.歸零位數_nud.Size = New System.Drawing.Size(52, 23)
  2606. Me.歸零位數_nud.TabIndex = 1717
  2607. Me.歸零位數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2608. Me.歸零位數_nud.ThousandsSeparator = True
  2609. '
  2610. 'Label81
  2611. '
  2612. Me.Label81.AutoSize = True
  2613. Me.Label81.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2614. Me.Label81.Location = New System.Drawing.Point(401, 7)
  2615. Me.Label81.Name = "Label81"
  2616. Me.Label81.Size = New System.Drawing.Size(55, 16)
  2617. Me.Label81.TabIndex = 1716
  2618. Me.Label81.Text = "歸零位數"
  2619. '
  2620. '稅後歸零_ch
  2621. '
  2622. Me.稅後歸零_ch.AutoSize = True
  2623. Me.稅後歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2624. Me.稅後歸零_ch.Location = New System.Drawing.Point(324, 31)
  2625. Me.稅後歸零_ch.Name = "稅後歸零_ch"
  2626. Me.稅後歸零_ch.Size = New System.Drawing.Size(74, 20)
  2627. Me.稅後歸零_ch.TabIndex = 1715
  2628. Me.稅後歸零_ch.Text = "稅後歸零"
  2629. Me.稅後歸零_ch.UseVisualStyleBackColor = True
  2630. '
  2631. '稅前歸零_ch
  2632. '
  2633. Me.稅前歸零_ch.AutoSize = True
  2634. Me.稅前歸零_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  2635. Me.稅前歸零_ch.Location = New System.Drawing.Point(324, 5)
  2636. Me.稅前歸零_ch.Name = "稅前歸零_ch"
  2637. Me.稅前歸零_ch.Size = New System.Drawing.Size(74, 20)
  2638. Me.稅前歸零_ch.TabIndex = 1714
  2639. Me.稅前歸零_ch.Text = "稅前歸零"
  2640. Me.稅前歸零_ch.UseVisualStyleBackColor = True
  2641. '
  2642. 'Label80
  2643. '
  2644. Me.Label80.AutoSize = True
  2645. Me.Label80.ForeColor = System.Drawing.Color.Green
  2646. Me.Label80.Location = New System.Drawing.Point(301, 32)
  2647. Me.Label80.Name = "Label80"
  2648. Me.Label80.Size = New System.Drawing.Size(18, 16)
  2649. Me.Label80.TabIndex = 1713
  2650. Me.Label80.Text = "%"
  2651. '
  2652. '折讓比例_nud
  2653. '
  2654. Me.折讓比例_nud.ForeColor = System.Drawing.Color.Green
  2655. Me.折讓比例_nud.Location = New System.Drawing.Point(249, 29)
  2656. Me.折讓比例_nud.Name = "折讓比例_nud"
  2657. Me.折讓比例_nud.Size = New System.Drawing.Size(49, 23)
  2658. Me.折讓比例_nud.TabIndex = 1712
  2659. Me.折讓比例_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2660. Me.折讓比例_nud.ThousandsSeparator = True
  2661. '
  2662. 'Label79
  2663. '
  2664. Me.Label79.AutoSize = True
  2665. Me.Label79.ForeColor = System.Drawing.Color.Green
  2666. Me.Label79.Location = New System.Drawing.Point(192, 32)
  2667. Me.Label79.Name = "Label79"
  2668. Me.Label79.Size = New System.Drawing.Size(55, 16)
  2669. Me.Label79.TabIndex = 1711
  2670. Me.Label79.Text = "折讓比例"
  2671. '
  2672. '報價小計_tb
  2673. '
  2674. Me.報價小計_tb.Location = New System.Drawing.Point(65, 30)
  2675. Me.報價小計_tb.Name = "報價小計_tb"
  2676. Me.報價小計_tb.Size = New System.Drawing.Size(110, 23)
  2677. Me.報價小計_tb.TabIndex = 1709
  2678. Me.報價小計_tb.Text = "99,999,999,999"
  2679. Me.報價小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2680. '
  2681. 'Label39
  2682. '
  2683. Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2684. Me.Label39.AutoSize = True
  2685. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2686. Me.Label39.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2687. Me.Label39.Location = New System.Drawing.Point(8, 35)
  2688. Me.Label39.Name = "Label39"
  2689. Me.Label39.Size = New System.Drawing.Size(55, 16)
  2690. Me.Label39.TabIndex = 1710
  2691. Me.Label39.Text = "報價小計"
  2692. Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2693. '
  2694. 'TabPage2
  2695. '
  2696. Me.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2697. Me.TabPage2.Controls.Add(Me.報價說明_tb)
  2698. Me.TabPage2.Location = New System.Drawing.Point(4, 28)
  2699. Me.TabPage2.Name = "TabPage2"
  2700. Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
  2701. Me.TabPage2.Size = New System.Drawing.Size(1032, 61)
  2702. Me.TabPage2.TabIndex = 1
  2703. Me.TabPage2.Text = "報價說明/Offer descriptions:"
  2704. Me.TabPage2.UseVisualStyleBackColor = True
  2705. '
  2706. '報價說明_tb
  2707. '
  2708. Me.報價說明_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  2709. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2710. Me.報價說明_tb.Location = New System.Drawing.Point(1, 4)
  2711. Me.報價說明_tb.Multiline = True
  2712. Me.報價說明_tb.Name = "報價說明_tb"
  2713. Me.報價說明_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  2714. Me.報價說明_tb.Size = New System.Drawing.Size(1025, 57)
  2715. Me.報價說明_tb.TabIndex = 1406
  2716. '
  2717. 'Panel2
  2718. '
  2719. Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2720. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2721. Me.Panel2.AutoScroll = True
  2722. Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2723. Me.Panel2.Controls.Add(Me.Label42)
  2724. Me.Panel2.Controls.Add(Me.Label379)
  2725. Me.Panel2.Controls.Add(Me.工程期_ch)
  2726. Me.Panel2.Controls.Add(Me.Label19)
  2727. Me.Panel2.Controls.Add(Me.Label15)
  2728. Me.Panel2.Controls.Add(Me.最末頁_cb)
  2729. Me.Panel2.Controls.Add(Me.Label20)
  2730. Me.Panel2.Controls.Add(Me.合約編號3_tb)
  2731. Me.Panel2.Controls.Add(Me.合約編號2_tb)
  2732. Me.Panel2.Controls.Add(Me.明細選項_bt)
  2733. Me.Panel2.Controls.Add(Me.合約編號1_tb)
  2734. Me.Panel2.Controls.Add(Me.合約編號_cb)
  2735. Me.Panel2.Controls.Add(Me.Label397)
  2736. Me.Panel2.Controls.Add(Me.金額6_und)
  2737. Me.Panel2.Controls.Add(Me.Label5)
  2738. Me.Panel2.Controls.Add(Me.工程款6_nud)
  2739. Me.Panel2.Controls.Add(Me.最高扣款_bt)
  2740. Me.Panel2.Controls.Add(Me.合約種類_tb)
  2741. Me.Panel2.Controls.Add(Me.NUD2)
  2742. Me.Panel2.Controls.Add(Me.NUD1)
  2743. Me.Panel2.Controls.Add(Me.Label372)
  2744. Me.Panel2.Controls.Add(Me.Label394)
  2745. Me.Panel2.Controls.Add(Me.客戶名稱_tb)
  2746. Me.Panel2.Controls.Add(Me.Label396)
  2747. Me.Panel2.Controls.Add(Me.Label373)
  2748. Me.Panel2.Controls.Add(Me.NUD3)
  2749. Me.Panel2.Controls.Add(Me.Label374)
  2750. Me.Panel2.Controls.Add(Me.合約種類_cb)
  2751. Me.Panel2.Controls.Add(Me.Label375)
  2752. Me.Panel2.Controls.Add(Me.逾期_bt)
  2753. Me.Panel2.Controls.Add(Me.工程名稱_中_tb)
  2754. Me.Panel2.Controls.Add(Me.Label395)
  2755. Me.Panel2.Controls.Add(Me.客戶地址_tb)
  2756. Me.Panel2.Controls.Add(Me.Label393)
  2757. Me.Panel2.Controls.Add(Me.金額5_und)
  2758. Me.Panel2.Controls.Add(Me.Label380)
  2759. Me.Panel2.Controls.Add(Me.工程地點_tb)
  2760. Me.Panel2.Controls.Add(Me.Label406)
  2761. Me.Panel2.Controls.Add(Me.金額4_und)
  2762. Me.Panel2.Controls.Add(Me.逾期_英_bt)
  2763. Me.Panel2.Controls.Add(Me.Label376)
  2764. Me.Panel2.Controls.Add(Me.工期_nud)
  2765. Me.Panel2.Controls.Add(Me.金額3_und)
  2766. Me.Panel2.Controls.Add(Me.最高扣款_英_bt)
  2767. Me.Panel2.Controls.Add(Me.Label414)
  2768. Me.Panel2.Controls.Add(Me.Label391)
  2769. Me.Panel2.Controls.Add(Me.金額2_und)
  2770. Me.Panel2.Controls.Add(Me.Label403)
  2771. Me.Panel2.Controls.Add(Me.選擇公司_cb)
  2772. Me.Panel2.Controls.Add(Me.負責人_B_cb)
  2773. Me.Panel2.Controls.Add(Me.金額1_und)
  2774. Me.Panel2.Controls.Add(Me.Label407)
  2775. Me.Panel2.Controls.Add(Me.立約日期_dtp)
  2776. Me.Panel2.Controls.Add(Me.Label410)
  2777. Me.Panel2.Controls.Add(Me.工程款5_nud)
  2778. Me.Panel2.Controls.Add(Me.Label408)
  2779. Me.Panel2.Controls.Add(Me.Label377)
  2780. Me.Panel2.Controls.Add(Me.Label405)
  2781. Me.Panel2.Controls.Add(Me.工程款4_nud)
  2782. Me.Panel2.Controls.Add(Me.減價_bt)
  2783. Me.Panel2.Controls.Add(Me.頁數_bt)
  2784. Me.Panel2.Controls.Add(Me.Label409)
  2785. Me.Panel2.Controls.Add(Me.Label399)
  2786. Me.Panel2.Controls.Add(Me.負責人_A_cb)
  2787. Me.Panel2.Controls.Add(Me.我司地址_tb)
  2788. Me.Panel2.Controls.Add(Me.工程名稱_英_tb)
  2789. Me.Panel2.Controls.Add(Me.工程款3_nud)
  2790. Me.Panel2.Controls.Add(Me.Label404)
  2791. Me.Panel2.Controls.Add(Me.Label413)
  2792. Me.Panel2.Controls.Add(Me.Label412)
  2793. Me.Panel2.Controls.Add(Me.Label400)
  2794. Me.Panel2.Controls.Add(Me.工程款1_nud)
  2795. Me.Panel2.Controls.Add(Me.Label378)
  2796. Me.Panel2.Controls.Add(Me.廠區_中文_tb)
  2797. Me.Panel2.Controls.Add(Me.工程款2_nud)
  2798. Me.Panel2.Controls.Add(Me.Label28)
  2799. Me.Panel2.Controls.Add(Me.Label382)
  2800. Me.Panel2.Controls.Add(Me.稅額顯示_lb)
  2801. Me.Panel2.Controls.Add(Me.CH2)
  2802. Me.Panel2.Controls.Add(Me.CH1)
  2803. Me.Panel2.Controls.Add(Me.Label402)
  2804. Me.Panel2.Controls.Add(Me.Label392)
  2805. Me.Panel2.Controls.Add(Me.Label381)
  2806. Me.Panel2.Controls.Add(Me.Label386)
  2807. Me.Panel2.Controls.Add(Me.Label21)
  2808. Me.Panel2.Controls.Add(Me.TabControl2)
  2809. Me.Panel2.Controls.Add(Me.Label388)
  2810. Me.Panel2.Controls.Add(Me.Label387)
  2811. Me.Panel2.Controls.Add(Me.Label390)
  2812. Me.Panel2.Controls.Add(Me.Label389)
  2813. Me.Panel2.Controls.Add(Me.Label411)
  2814. Me.Panel2.Controls.Add(Me.Label29)
  2815. Me.Panel2.Controls.Add(Me.Label35)
  2816. Me.Panel2.Controls.Add(Me.Label34)
  2817. Me.Panel2.Location = New System.Drawing.Point(-1, -1)
  2818. Me.Panel2.Name = "Panel2"
  2819. Me.Panel2.Size = New System.Drawing.Size(713, 960)
  2820. Me.Panel2.TabIndex = 1408
  2821. '
  2822. 'Label378
  2823. '
  2824. Me.Label378.AutoSize = True
  2825. Me.Label378.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2826. Me.Label378.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  2827. Me.Label378.Location = New System.Drawing.Point(1, 252)
  2828. Me.Label378.Name = "Label378"
  2829. Me.Label378.Size = New System.Drawing.Size(87, 16)
  2830. Me.Label378.TabIndex = 1077
  2831. Me.Label378.Text = "工程名稱(英文)"
  2832. Me.Label378.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2833. '
  2834. '廠區_中文_tb
  2835. '
  2836. Me.廠區_中文_tb.Location = New System.Drawing.Point(121, 835)
  2837. Me.廠區_中文_tb.Name = "廠區_中文_tb"
  2838. Me.廠區_中文_tb.Size = New System.Drawing.Size(140, 23)
  2839. Me.廠區_中文_tb.TabIndex = 1131
  2840. Me.廠區_中文_tb.Text = "印尼耐克鞋厂"
  2841. Me.廠區_中文_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2842. '
  2843. '工程款2_nud
  2844. '
  2845. Me.工程款2_nud.Location = New System.Drawing.Point(77, 440)
  2846. Me.工程款2_nud.Name = "工程款2_nud"
  2847. Me.工程款2_nud.Size = New System.Drawing.Size(40, 23)
  2848. Me.工程款2_nud.TabIndex = 1094
  2849. Me.工程款2_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2850. Me.工程款2_nud.ThousandsSeparator = True
  2851. Me.工程款2_nud.Value = New Decimal(New Integer() {40, 0, 0, 0})
  2852. '
  2853. 'Label28
  2854. '
  2855. Me.Label28.AutoSize = True
  2856. Me.Label28.Location = New System.Drawing.Point(-2, 103)
  2857. Me.Label28.Name = "Label28"
  2858. Me.Label28.Size = New System.Drawing.Size(687, 16)
  2859. Me.Label28.TabIndex = 1353
  2860. Me.Label28.Text = "_________________________________________________________________________________" &
  2861. "_______________________________________________________"
  2862. '
  2863. 'Label382
  2864. '
  2865. Me.Label382.AutoSize = True
  2866. Me.Label382.Location = New System.Drawing.Point(-2, 351)
  2867. Me.Label382.Name = "Label382"
  2868. Me.Label382.Size = New System.Drawing.Size(687, 16)
  2869. Me.Label382.TabIndex = 1083
  2870. Me.Label382.Text = "_________________________________________________________________________________" &
  2871. "_______________________________________________________"
  2872. '
  2873. '稅額顯示_lb
  2874. '
  2875. Me.稅額顯示_lb.AutoSize = True
  2876. Me.稅額顯示_lb.ForeColor = System.Drawing.Color.Green
  2877. Me.稅額顯示_lb.Location = New System.Drawing.Point(242, 369)
  2878. Me.稅額顯示_lb.Name = "稅額顯示_lb"
  2879. Me.稅額顯示_lb.Size = New System.Drawing.Size(120, 16)
  2880. Me.稅額顯示_lb.TabIndex = 1084
  2881. Me.稅額顯示_lb.Text = "PPN 10%稅額 = Rp. "
  2882. '
  2883. 'CH2
  2884. '
  2885. Me.CH2.AutoSize = True
  2886. Me.CH2.ForeColor = System.Drawing.Color.Green
  2887. Me.CH2.Location = New System.Drawing.Point(471, 368)
  2888. Me.CH2.Name = "CH2"
  2889. Me.CH2.Size = New System.Drawing.Size(111, 20)
  2890. Me.CH2.TabIndex = 1137
  2891. Me.CH2.Text = "工程總價 = Rp. "
  2892. Me.CH2.UseVisualStyleBackColor = True
  2893. '
  2894. 'CH1
  2895. '
  2896. Me.CH1.AutoSize = True
  2897. Me.CH1.ForeColor = System.Drawing.Color.Green
  2898. Me.CH1.Location = New System.Drawing.Point(2, 368)
  2899. Me.CH1.Name = "CH1"
  2900. Me.CH1.Size = New System.Drawing.Size(135, 20)
  2901. Me.CH1.TabIndex = 1136
  2902. Me.CH1.Text = "分項工程報價 = Rp. "
  2903. Me.CH1.UseVisualStyleBackColor = True
  2904. '
  2905. 'Label402
  2906. '
  2907. Me.Label402.AutoSize = True
  2908. Me.Label402.Location = New System.Drawing.Point(-2, 401)
  2909. Me.Label402.Name = "Label402"
  2910. Me.Label402.Size = New System.Drawing.Size(687, 16)
  2911. Me.Label402.TabIndex = 1117
  2912. Me.Label402.Text = "_________________________________________________________________________________" &
  2913. "_______________________________________________________"
  2914. '
  2915. 'Label392
  2916. '
  2917. Me.Label392.AutoSize = True
  2918. Me.Label392.Location = New System.Drawing.Point(-2, 660)
  2919. Me.Label392.Name = "Label392"
  2920. Me.Label392.Size = New System.Drawing.Size(687, 16)
  2921. Me.Label392.TabIndex = 1105
  2922. Me.Label392.Text = "_________________________________________________________________________________" &
  2923. "_______________________________________________________"
  2924. '
  2925. 'Label381
  2926. '
  2927. Me.Label381.AutoSize = True
  2928. Me.Label381.Location = New System.Drawing.Point(-2, 756)
  2929. Me.Label381.Name = "Label381"
  2930. Me.Label381.Size = New System.Drawing.Size(687, 16)
  2931. Me.Label381.TabIndex = 1082
  2932. Me.Label381.Text = "_________________________________________________________________________________" &
  2933. "_______________________________________________________"
  2934. '
  2935. 'Label386
  2936. '
  2937. Me.Label386.AutoSize = True
  2938. Me.Label386.ForeColor = System.Drawing.Color.Green
  2939. Me.Label386.Location = New System.Drawing.Point(457, 418)
  2940. Me.Label386.Name = "Label386"
  2941. Me.Label386.Size = New System.Drawing.Size(79, 16)
  2942. Me.Label386.TabIndex = 1092
  2943. Me.Label386.Text = "第五期工程款"
  2944. '
  2945. 'Label21
  2946. '
  2947. Me.Label21.AutoSize = True
  2948. Me.Label21.ForeColor = System.Drawing.Color.Green
  2949. Me.Label21.Location = New System.Drawing.Point(458, 442)
  2950. Me.Label21.Name = "Label21"
  2951. Me.Label21.Size = New System.Drawing.Size(79, 16)
  2952. Me.Label21.TabIndex = 1138
  2953. Me.Label21.Text = "工程款 總數"
  2954. '
  2955. 'TabControl2
  2956. '
  2957. Me.TabControl2.Appearance = System.Windows.Forms.TabAppearance.Buttons
  2958. Me.TabControl2.Controls.Add(Me.TabPage5)
  2959. Me.TabControl2.Controls.Add(Me.TabPage6)
  2960. Me.TabControl2.Controls.Add(Me.TabPage7)
  2961. Me.TabControl2.Controls.Add(Me.TabPage8)
  2962. Me.TabControl2.Controls.Add(Me.TabPage9)
  2963. Me.TabControl2.Location = New System.Drawing.Point(-1, 469)
  2964. Me.TabControl2.Name = "TabControl2"
  2965. Me.TabControl2.SelectedIndex = 0
  2966. Me.TabControl2.Size = New System.Drawing.Size(690, 187)
  2967. Me.TabControl2.TabIndex = 1142
  2968. '
  2969. 'TabPage5
  2970. '
  2971. Me.TabPage5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2972. Me.TabPage5.Controls.Add(Me.第1期_dgv)
  2973. Me.TabPage5.Location = New System.Drawing.Point(4, 28)
  2974. Me.TabPage5.Name = "TabPage5"
  2975. Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
  2976. Me.TabPage5.Size = New System.Drawing.Size(682, 155)
  2977. Me.TabPage5.TabIndex = 0
  2978. Me.TabPage5.Text = "第一期"
  2979. Me.TabPage5.UseVisualStyleBackColor = True
  2980. '
  2981. '第1期_dgv
  2982. '
  2983. DataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2984. Me.第1期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle24
  2985. Me.第1期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2986. Me.第1期_dgv.BackgroundColor = System.Drawing.Color.White
  2987. Me.第1期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2988. Me.第1期_dgv.Location = New System.Drawing.Point(1, 1)
  2989. Me.第1期_dgv.Name = "第1期_dgv"
  2990. Me.第1期_dgv.RowHeadersWidth = 5
  2991. Me.第1期_dgv.RowTemplate.Height = 24
  2992. Me.第1期_dgv.Size = New System.Drawing.Size(675, 149)
  2993. Me.第1期_dgv.TabIndex = 1038
  2994. '
  2995. 'TabPage6
  2996. '
  2997. Me.TabPage6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2998. Me.TabPage6.Controls.Add(Me.第2期_dgv)
  2999. Me.TabPage6.Location = New System.Drawing.Point(4, 28)
  3000. Me.TabPage6.Name = "TabPage6"
  3001. Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
  3002. Me.TabPage6.Size = New System.Drawing.Size(682, 155)
  3003. Me.TabPage6.TabIndex = 1
  3004. Me.TabPage6.Text = "第二期"
  3005. Me.TabPage6.UseVisualStyleBackColor = True
  3006. '
  3007. '第2期_dgv
  3008. '
  3009. DataGridViewCellStyle25.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3010. Me.第2期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle25
  3011. Me.第2期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3012. Me.第2期_dgv.BackgroundColor = System.Drawing.Color.White
  3013. Me.第2期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3014. Me.第2期_dgv.Location = New System.Drawing.Point(1, 1)
  3015. Me.第2期_dgv.Name = "第2期_dgv"
  3016. Me.第2期_dgv.RowHeadersWidth = 5
  3017. Me.第2期_dgv.RowTemplate.Height = 24
  3018. Me.第2期_dgv.Size = New System.Drawing.Size(675, 149)
  3019. Me.第2期_dgv.TabIndex = 1039
  3020. '
  3021. 'TabPage7
  3022. '
  3023. Me.TabPage7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3024. Me.TabPage7.Controls.Add(Me.第3期_dgv)
  3025. Me.TabPage7.Location = New System.Drawing.Point(4, 28)
  3026. Me.TabPage7.Name = "TabPage7"
  3027. Me.TabPage7.Padding = New System.Windows.Forms.Padding(3)
  3028. Me.TabPage7.Size = New System.Drawing.Size(682, 155)
  3029. Me.TabPage7.TabIndex = 2
  3030. Me.TabPage7.Text = "第三期"
  3031. Me.TabPage7.UseVisualStyleBackColor = True
  3032. '
  3033. '第3期_dgv
  3034. '
  3035. DataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3036. Me.第3期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle26
  3037. Me.第3期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3038. Me.第3期_dgv.BackgroundColor = System.Drawing.Color.White
  3039. Me.第3期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3040. Me.第3期_dgv.Location = New System.Drawing.Point(1, 1)
  3041. Me.第3期_dgv.Name = "第3期_dgv"
  3042. Me.第3期_dgv.RowHeadersWidth = 5
  3043. Me.第3期_dgv.RowTemplate.Height = 24
  3044. Me.第3期_dgv.Size = New System.Drawing.Size(675, 149)
  3045. Me.第3期_dgv.TabIndex = 1040
  3046. '
  3047. 'TabPage8
  3048. '
  3049. Me.TabPage8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3050. Me.TabPage8.Controls.Add(Me.第4期_dgv)
  3051. Me.TabPage8.Location = New System.Drawing.Point(4, 28)
  3052. Me.TabPage8.Name = "TabPage8"
  3053. Me.TabPage8.Padding = New System.Windows.Forms.Padding(3)
  3054. Me.TabPage8.Size = New System.Drawing.Size(682, 155)
  3055. Me.TabPage8.TabIndex = 3
  3056. Me.TabPage8.Text = "第四期"
  3057. Me.TabPage8.UseVisualStyleBackColor = True
  3058. '
  3059. '第4期_dgv
  3060. '
  3061. DataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3062. Me.第4期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle27
  3063. Me.第4期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3064. Me.第4期_dgv.BackgroundColor = System.Drawing.Color.White
  3065. Me.第4期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3066. Me.第4期_dgv.Location = New System.Drawing.Point(1, 1)
  3067. Me.第4期_dgv.Name = "第4期_dgv"
  3068. Me.第4期_dgv.RowHeadersWidth = 5
  3069. Me.第4期_dgv.RowTemplate.Height = 24
  3070. Me.第4期_dgv.Size = New System.Drawing.Size(675, 149)
  3071. Me.第4期_dgv.TabIndex = 1041
  3072. '
  3073. 'TabPage9
  3074. '
  3075. Me.TabPage9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3076. Me.TabPage9.Controls.Add(Me.第5期_dgv)
  3077. Me.TabPage9.Location = New System.Drawing.Point(4, 28)
  3078. Me.TabPage9.Name = "TabPage9"
  3079. Me.TabPage9.Padding = New System.Windows.Forms.Padding(3)
  3080. Me.TabPage9.Size = New System.Drawing.Size(682, 155)
  3081. Me.TabPage9.TabIndex = 4
  3082. Me.TabPage9.Text = "第五期"
  3083. Me.TabPage9.UseVisualStyleBackColor = True
  3084. '
  3085. '第5期_dgv
  3086. '
  3087. DataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3088. Me.第5期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle28
  3089. Me.第5期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3090. Me.第5期_dgv.BackgroundColor = System.Drawing.Color.White
  3091. Me.第5期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3092. Me.第5期_dgv.Location = New System.Drawing.Point(1, 1)
  3093. Me.第5期_dgv.Name = "第5期_dgv"
  3094. Me.第5期_dgv.RowHeadersWidth = 5
  3095. Me.第5期_dgv.RowTemplate.Height = 24
  3096. Me.第5期_dgv.Size = New System.Drawing.Size(675, 149)
  3097. Me.第5期_dgv.TabIndex = 1042
  3098. '
  3099. 'Label388
  3100. '
  3101. Me.Label388.AutoSize = True
  3102. Me.Label388.ForeColor = System.Drawing.Color.Green
  3103. Me.Label388.Location = New System.Drawing.Point(228, 420)
  3104. Me.Label388.Name = "Label388"
  3105. Me.Label388.Size = New System.Drawing.Size(79, 16)
  3106. Me.Label388.TabIndex = 1090
  3107. Me.Label388.Text = "第三期工程款"
  3108. '
  3109. 'Label387
  3110. '
  3111. Me.Label387.AutoSize = True
  3112. Me.Label387.ForeColor = System.Drawing.Color.Green
  3113. Me.Label387.Location = New System.Drawing.Point(228, 443)
  3114. Me.Label387.Name = "Label387"
  3115. Me.Label387.Size = New System.Drawing.Size(79, 16)
  3116. Me.Label387.TabIndex = 1091
  3117. Me.Label387.Text = "第四期工程款"
  3118. '
  3119. 'Label390
  3120. '
  3121. Me.Label390.AutoSize = True
  3122. Me.Label390.ForeColor = System.Drawing.Color.Green
  3123. Me.Label390.Location = New System.Drawing.Point(-1, 420)
  3124. Me.Label390.Name = "Label390"
  3125. Me.Label390.Size = New System.Drawing.Size(79, 16)
  3126. Me.Label390.TabIndex = 1088
  3127. Me.Label390.Text = "第一期工程款"
  3128. '
  3129. 'Label389
  3130. '
  3131. Me.Label389.AutoSize = True
  3132. Me.Label389.ForeColor = System.Drawing.Color.Green
  3133. Me.Label389.Location = New System.Drawing.Point(-1, 444)
  3134. Me.Label389.Name = "Label389"
  3135. Me.Label389.Size = New System.Drawing.Size(79, 16)
  3136. Me.Label389.TabIndex = 1089
  3137. Me.Label389.Text = "第二期工程款"
  3138. '
  3139. 'Label411
  3140. '
  3141. Me.Label411.AutoSize = True
  3142. Me.Label411.Location = New System.Drawing.Point(-2, 820)
  3143. Me.Label411.Name = "Label411"
  3144. Me.Label411.Size = New System.Drawing.Size(687, 16)
  3145. Me.Label411.TabIndex = 1129
  3146. Me.Label411.Text = "_________________________________________________________________________________" &
  3147. "_______________________________________________________"
  3148. '
  3149. 'Label29
  3150. '
  3151. Me.Label29.AutoSize = True
  3152. Me.Label29.Location = New System.Drawing.Point(676, 853)
  3153. Me.Label29.Name = "Label29"
  3154. Me.Label29.Size = New System.Drawing.Size(10, 16)
  3155. Me.Label29.TabIndex = 1355
  3156. Me.Label29.Text = "."
  3157. '
  3158. 'Label35
  3159. '
  3160. Me.Label35.AutoSize = True
  3161. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3162. Me.Label35.Location = New System.Drawing.Point(38, 3)
  3163. Me.Label35.Name = "Label35"
  3164. Me.Label35.Size = New System.Drawing.Size(220, 16)
  3165. Me.Label35.TabIndex = 1044
  3166. Me.Label35.Text = "乙方 甲方 立約日期 序號 "
  3167. Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3168. '
  3169. 'Label34
  3170. '
  3171. Me.Label34.AutoSize = True
  3172. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3173. Me.Label34.Location = New System.Drawing.Point(257, 2)
  3174. Me.Label34.Name = "Label34"
  3175. Me.Label34.Size = New System.Drawing.Size(55, 16)
  3176. Me.Label34.TabIndex = 1405
  3177. Me.Label34.Text = "工程期數"
  3178. Me.Label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3179. '
  3180. '建立合約資料_tc
  3181. '
  3182. Me.建立合約資料_tc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  3183. Me.建立合約資料_tc.Controls.Add(Me.印尼盾_ch)
  3184. Me.建立合約資料_tc.Controls.Add(Me.人民幣_ch)
  3185. Me.建立合約資料_tc.Controls.Add(Me.美金_ch)
  3186. Me.建立合約資料_tc.Controls.Add(Me.台幣_ch)
  3187. Me.建立合約資料_tc.Controls.Add(Me.放行_bt)
  3188. Me.建立合約資料_tc.Controls.Add(Me.ProgressBar1)
  3189. Me.建立合約資料_tc.Controls.Add(Me.存檔_tb)
  3190. Me.建立合約資料_tc.Controls.Add(Me.合約停止_ch)
  3191. Me.建立合約資料_tc.Controls.Add(Me.列印成EXCEL_bt)
  3192. Me.建立合約資料_tc.Controls.Add(Me.縮放2_bt)
  3193. Me.建立合約資料_tc.Controls.Add(Me.合約_dgv)
  3194. Me.建立合約資料_tc.Controls.Add(Me.錨點2)
  3195. Me.建立合約資料_tc.Controls.Add(Me.縮放1_bt)
  3196. Me.建立合約資料_tc.Controls.Add(Me.查詢_bt)
  3197. Me.建立合約資料_tc.Controls.Add(Me.關鍵字搜尋_tb)
  3198. Me.建立合約資料_tc.Controls.Add(Me.Label53)
  3199. Me.建立合約資料_tc.Controls.Add(Me.Label7)
  3200. Me.建立合約資料_tc.Controls.Add(Me.工材分離_ch)
  3201. Me.建立合約資料_tc.Controls.Add(Me.空間3)
  3202. Me.建立合約資料_tc.Location = New System.Drawing.Point(4, 28)
  3203. Me.建立合約資料_tc.Name = "建立合約資料_tc"
  3204. Me.建立合約資料_tc.Padding = New System.Windows.Forms.Padding(3)
  3205. Me.建立合約資料_tc.Size = New System.Drawing.Size(1906, 1010)
  3206. Me.建立合約資料_tc.TabIndex = 3
  3207. Me.建立合約資料_tc.Text = "建立合約資料"
  3208. Me.建立合約資料_tc.UseVisualStyleBackColor = True
  3209. '
  3210. '印尼盾_ch
  3211. '
  3212. Me.印尼盾_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3213. Me.印尼盾_ch.AutoSize = True
  3214. Me.印尼盾_ch.Location = New System.Drawing.Point(1581, 20)
  3215. Me.印尼盾_ch.Name = "印尼盾_ch"
  3216. Me.印尼盾_ch.Size = New System.Drawing.Size(62, 20)
  3217. Me.印尼盾_ch.TabIndex = 1685
  3218. Me.印尼盾_ch.Text = "印尼盾"
  3219. Me.印尼盾_ch.UseVisualStyleBackColor = True
  3220. '
  3221. '人民幣_ch
  3222. '
  3223. Me.人民幣_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3224. Me.人民幣_ch.AutoSize = True
  3225. Me.人民幣_ch.Location = New System.Drawing.Point(1581, 1)
  3226. Me.人民幣_ch.Name = "人民幣_ch"
  3227. Me.人民幣_ch.Size = New System.Drawing.Size(62, 20)
  3228. Me.人民幣_ch.TabIndex = 1684
  3229. Me.人民幣_ch.Text = "人民幣"
  3230. Me.人民幣_ch.UseVisualStyleBackColor = True
  3231. '
  3232. '美金_ch
  3233. '
  3234. Me.美金_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3235. Me.美金_ch.AutoSize = True
  3236. Me.美金_ch.Location = New System.Drawing.Point(1533, 1)
  3237. Me.美金_ch.Name = "美金_ch"
  3238. Me.美金_ch.Size = New System.Drawing.Size(50, 20)
  3239. Me.美金_ch.TabIndex = 1683
  3240. Me.美金_ch.Text = "美金"
  3241. Me.美金_ch.UseVisualStyleBackColor = True
  3242. '
  3243. '台幣_ch
  3244. '
  3245. Me.台幣_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3246. Me.台幣_ch.AutoSize = True
  3247. Me.台幣_ch.Location = New System.Drawing.Point(1533, 20)
  3248. Me.台幣_ch.Name = "台幣_ch"
  3249. Me.台幣_ch.Size = New System.Drawing.Size(50, 20)
  3250. Me.台幣_ch.TabIndex = 1682
  3251. Me.台幣_ch.Text = "台幣"
  3252. Me.台幣_ch.UseVisualStyleBackColor = True
  3253. '
  3254. '合約編號清單_bt
  3255. '
  3256. Me.合約編號清單_bt.BackColor = System.Drawing.SystemColors.Control
  3257. Me.合約編號清單_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3258. Me.合約編號清單_bt.Location = New System.Drawing.Point(552, 2)
  3259. Me.合約編號清單_bt.Name = "合約編號清單_bt"
  3260. Me.合約編號清單_bt.Size = New System.Drawing.Size(90, 26)
  3261. Me.合約編號清單_bt.TabIndex = 1421
  3262. Me.合約編號清單_bt.Text = "合約編號清單"
  3263. Me.合約編號清單_bt.UseVisualStyleBackColor = False
  3264. '
  3265. '工程期1_ch
  3266. '
  3267. Me.工程期1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3268. Me.工程期1_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3269. Me.工程期1_ch.FormattingEnabled = True
  3270. Me.工程期1_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  3271. Me.工程期1_ch.Location = New System.Drawing.Point(475, 3)
  3272. Me.工程期1_ch.Name = "工程期1_ch"
  3273. Me.工程期1_ch.Size = New System.Drawing.Size(74, 24)
  3274. Me.工程期1_ch.TabIndex = 1424
  3275. '
  3276. 'Label40
  3277. '
  3278. Me.Label40.AutoSize = True
  3279. Me.Label40.BackColor = System.Drawing.SystemColors.Control
  3280. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3281. Me.Label40.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3282. Me.Label40.Location = New System.Drawing.Point(307, 7)
  3283. Me.Label40.Name = "Label40"
  3284. Me.Label40.Size = New System.Drawing.Size(31, 16)
  3285. Me.Label40.TabIndex = 1423
  3286. Me.Label40.Text = "甲方"
  3287. Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3288. '
  3289. '合約編號1_cb
  3290. '
  3291. Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3292. Me.合約編號1_cb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3293. Me.合約編號1_cb.FormattingEnabled = True
  3294. Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  3295. Me.合約編號1_cb.Location = New System.Drawing.Point(339, 3)
  3296. Me.合約編號1_cb.Name = "合約編號1_cb"
  3297. Me.合約編號1_cb.Size = New System.Drawing.Size(74, 24)
  3298. Me.合約編號1_cb.TabIndex = 1422
  3299. '
  3300. 'Label2
  3301. '
  3302. Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3303. Me.Label2.AutoSize = True
  3304. Me.Label2.BackColor = System.Drawing.SystemColors.Control
  3305. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3306. Me.Label2.Location = New System.Drawing.Point(1726, 6)
  3307. Me.Label2.Name = "Label2"
  3308. Me.Label2.Size = New System.Drawing.Size(55, 16)
  3309. Me.Label2.TabIndex = 1420
  3310. Me.Label2.Text = "合約編號"
  3311. Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3312. '
  3313. '合約編號_tb
  3314. '
  3315. Me.合約編號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3316. Me.合約編號_tb.Enabled = False
  3317. Me.合約編號_tb.Location = New System.Drawing.Point(1782, 2)
  3318. Me.合約編號_tb.Name = "合約編號_tb"
  3319. Me.合約編號_tb.Size = New System.Drawing.Size(125, 23)
  3320. Me.合約編號_tb.TabIndex = 1419
  3321. '
  3322. 'TabControl1
  3323. '
  3324. Me.TabControl1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3325. Or System.Windows.Forms.AnchorStyles.Left) _
  3326. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3327. Me.TabControl1.Appearance = System.Windows.Forms.TabAppearance.Buttons
  3328. Me.TabControl1.Controls.Add(Me.建立合約資料_tc)
  3329. Me.TabControl1.Controls.Add(Me.工程合約報價明細_tc)
  3330. Me.TabControl1.Controls.Add(Me.工程合約試算表_tc)
  3331. Me.TabControl1.Location = New System.Drawing.Point(0, 1)
  3332. Me.TabControl1.Multiline = True
  3333. Me.TabControl1.Name = "TabControl1"
  3334. Me.TabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No
  3335. Me.TabControl1.SelectedIndex = 0
  3336. Me.TabControl1.Size = New System.Drawing.Size(1914, 1042)
  3337. Me.TabControl1.TabIndex = 1418
  3338. '
  3339. 'Label41
  3340. '
  3341. Me.Label41.AutoSize = True
  3342. Me.Label41.BackColor = System.Drawing.SystemColors.Control
  3343. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3344. Me.Label41.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3345. Me.Label41.Location = New System.Drawing.Point(418, 7)
  3346. Me.Label41.Name = "Label41"
  3347. Me.Label41.Size = New System.Drawing.Size(55, 16)
  3348. Me.Label41.TabIndex = 1425
  3349. Me.Label41.Text = "工程期數"
  3350. Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3351. '
  3352. '合約報價單審核
  3353. '
  3354. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  3355. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  3356. Me.ClientSize = New System.Drawing.Size(1914, 1041)
  3357. Me.Controls.Add(Me.合約編號清單_bt)
  3358. Me.Controls.Add(Me.工程期1_ch)
  3359. Me.Controls.Add(Me.Label40)
  3360. Me.Controls.Add(Me.合約編號1_cb)
  3361. Me.Controls.Add(Me.Label2)
  3362. Me.Controls.Add(Me.合約編號_tb)
  3363. Me.Controls.Add(Me.TabControl1)
  3364. Me.Controls.Add(Me.Label41)
  3365. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3366. Me.Margin = New System.Windows.Forms.Padding(4)
  3367. Me.Name = "合約報價單審核"
  3368. Me.Text = "合約報價單審核"
  3369. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
  3370. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  3371. CType(Me.DGV位置2, System.ComponentModel.ISupportInitialize).EndInit()
  3372. CType(Me.DGV位置1, System.ComponentModel.ISupportInitialize).EndInit()
  3373. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).EndInit()
  3374. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).EndInit()
  3375. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3376. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3377. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).EndInit()
  3378. CType(Me.存檔比較_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3379. CType(Me.範例文本_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3380. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3381. Me.Panel1.ResumeLayout(False)
  3382. Me.Panel1.PerformLayout()
  3383. CType(Me.試算控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3384. Me.工程合約報價明細_tc.ResumeLayout(False)
  3385. Me.工程合約報價明細_tc.PerformLayout()
  3386. CType(Me.報價係數_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3387. CType(Me.報價明細表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3388. Me.Panel5.ResumeLayout(False)
  3389. Me.Panel5.PerformLayout()
  3390. CType(Me.申請數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3391. CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).EndInit()
  3392. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).EndInit()
  3393. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).EndInit()
  3394. CType(Me.係數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3395. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).EndInit()
  3396. CType(Me.工期_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3397. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).EndInit()
  3398. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).EndInit()
  3399. Me.工程合約試算表_tc.ResumeLayout(False)
  3400. Me.工程合約試算表_tc.PerformLayout()
  3401. CType(Me.試算表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3402. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).EndInit()
  3403. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).EndInit()
  3404. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3405. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3406. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3407. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3408. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3409. Me.空間3.ResumeLayout(False)
  3410. Me.空間3.PerformLayout()
  3411. Me.TabControl3.ResumeLayout(False)
  3412. Me.TabPage1.ResumeLayout(False)
  3413. Me.TabPage1.PerformLayout()
  3414. CType(Me.歸零位數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3415. CType(Me.折讓比例_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3416. Me.TabPage2.ResumeLayout(False)
  3417. Me.TabPage2.PerformLayout()
  3418. Me.Panel2.ResumeLayout(False)
  3419. Me.Panel2.PerformLayout()
  3420. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).EndInit()
  3421. Me.TabControl2.ResumeLayout(False)
  3422. Me.TabPage5.ResumeLayout(False)
  3423. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3424. Me.TabPage6.ResumeLayout(False)
  3425. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3426. Me.TabPage7.ResumeLayout(False)
  3427. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3428. Me.TabPage8.ResumeLayout(False)
  3429. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3430. Me.TabPage9.ResumeLayout(False)
  3431. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3432. Me.建立合約資料_tc.ResumeLayout(False)
  3433. Me.建立合約資料_tc.PerformLayout()
  3434. Me.TabControl1.ResumeLayout(False)
  3435. Me.ResumeLayout(False)
  3436. Me.PerformLayout()
  3437. End Sub
  3438. Friend WithEvents Label20 As Label
  3439. Friend WithEvents 合約編號3_tb As TextBox
  3440. Friend WithEvents 合約編號2_tb As TextBox
  3441. Friend WithEvents 明細選項_bt As TextBox
  3442. Friend WithEvents 項目流水_tb As TextBox
  3443. Friend WithEvents 選擇項3_tb As TextBox
  3444. Friend WithEvents 連動編號_tb As TextBox
  3445. Friend WithEvents PictureBox2 As PictureBox
  3446. Friend WithEvents PictureBox1 As PictureBox
  3447. Friend WithEvents 合約改版_bt As Button
  3448. Friend WithEvents 工程期_ch As ComboBox
  3449. Friend WithEvents Label19 As Label
  3450. Friend WithEvents Label15 As Label
  3451. Friend WithEvents 選擇項2_tb As TextBox
  3452. Friend WithEvents DGV位置2 As NumericUpDown
  3453. Friend WithEvents DGV位置1 As NumericUpDown
  3454. Friend WithEvents 明細表流水_tb As TextBox
  3455. Friend WithEvents 總表流水_tb As TextBox
  3456. Friend WithEvents Y_2_tb As TextBox
  3457. Friend WithEvents Y_3_tb As TextBox
  3458. Friend WithEvents 係數合約號_tb As TextBox
  3459. Friend WithEvents Label42 As Label
  3460. Friend WithEvents Label379 As Label
  3461. Friend WithEvents 最末頁_cb As ComboBox
  3462. Friend WithEvents NUD1 As NumericUpDown
  3463. Friend WithEvents Label43 As Label
  3464. Friend WithEvents 合約編號1_tb As TextBox
  3465. Friend WithEvents 合約編號_cb As ComboBox
  3466. Friend WithEvents Label397 As Label
  3467. Friend WithEvents 金額6_und As NumericUpDown
  3468. Friend WithEvents Label5 As Label
  3469. Friend WithEvents 工程款6_nud As NumericUpDown
  3470. Friend WithEvents 合約種類_tb As TextBox
  3471. Friend WithEvents 語言_dgv As DataGridView
  3472. Friend WithEvents NUD2 As NumericUpDown
  3473. Friend WithEvents 係數流水號_tb As TextBox
  3474. Friend WithEvents 群組編碼_cb As ComboBox
  3475. Friend WithEvents X_2_tb As TextBox
  3476. Friend WithEvents X_3_tb As TextBox
  3477. Friend WithEvents 存檔比較_dgv As DataGridView
  3478. Friend WithEvents 範例文本_dgv As DataGridView
  3479. Friend WithEvents 群組碼_tb As TextBox
  3480. Friend WithEvents 表號_tb As TextBox
  3481. Friend WithEvents 表頭_tb As TextBox
  3482. Friend WithEvents 報價總表_dgv As DataGridView
  3483. Friend WithEvents Panel1 As Panel
  3484. Friend WithEvents 試算控制表_dgv As DataGridView
  3485. Friend WithEvents 最高扣款_bt As TextBox
  3486. Friend WithEvents 工程合約報價明細_tc As TabPage
  3487. Friend WithEvents 詳細資料2_ch As CheckBox
  3488. Friend WithEvents 報價係數_dgv As DataGridView
  3489. Friend WithEvents 報價單立約日期_dtp As DateTimePicker
  3490. Friend WithEvents Label27 As Label
  3491. Friend WithEvents Label26 As Label
  3492. Friend WithEvents 報價單合約編號_tb As TextBox
  3493. Friend WithEvents 報價工程名稱_英_tb As TextBox
  3494. Friend WithEvents 報價工程名稱_中_tb As TextBox
  3495. Friend WithEvents Label9 As Label
  3496. Friend WithEvents Label8 As Label
  3497. Friend WithEvents 報價單客戶名稱_cb As ComboBox
  3498. Friend WithEvents Label6 As Label
  3499. Friend WithEvents 報價明細表_dgv As DataGridView
  3500. Friend WithEvents Panel5 As Panel
  3501. Friend WithEvents Label22 As Label
  3502. Friend WithEvents Label33 As Label
  3503. Friend WithEvents 工資_ch As CheckBox
  3504. Friend WithEvents 料號_tb As TextBox
  3505. Friend WithEvents 單位2_tb As TextBox
  3506. Friend WithEvents Label32 As Label
  3507. Friend WithEvents 申請數_lb As Label
  3508. Friend WithEvents ITEM3_cb As ComboBox
  3509. Friend WithEvents 申請數_nud As NumericUpDown
  3510. Friend WithEvents 利潤表_ch As CheckBox
  3511. Friend WithEvents 材料_ch As CheckBox
  3512. Friend WithEvents 物料圖1_pb As PictureBox
  3513. Friend WithEvents Label372 As Label
  3514. Friend WithEvents Label394 As Label
  3515. Friend WithEvents 客戶名稱_tb As ComboBox
  3516. Friend WithEvents Label396 As Label
  3517. Friend WithEvents Label373 As Label
  3518. Friend WithEvents NUD3 As NumericUpDown
  3519. Friend WithEvents Label374 As Label
  3520. Friend WithEvents 合約種類_cb As ComboBox
  3521. Friend WithEvents Label375 As Label
  3522. Friend WithEvents 逾期_bt As TextBox
  3523. Friend WithEvents 存檔_bt As Button
  3524. Friend WithEvents 使用計算機_ch As CheckBox
  3525. Friend WithEvents 直接輸入_ch As CheckBox
  3526. Friend WithEvents 材料加入1_bt As Button
  3527. Friend WithEvents 工程名稱_中_tb As TextBox
  3528. Friend WithEvents Label395 As Label
  3529. Friend WithEvents 客戶地址_tb As TextBox
  3530. Friend WithEvents Label393 As Label
  3531. Friend WithEvents 金額5_und As NumericUpDown
  3532. Friend WithEvents 係數_nud As NumericUpDown
  3533. Friend WithEvents Label380 As Label
  3534. Friend WithEvents 刪除1_bt As Button
  3535. Friend WithEvents 工程地點_tb As TextBox
  3536. Friend WithEvents Label406 As Label
  3537. Friend WithEvents 金額4_und As NumericUpDown
  3538. Friend WithEvents 逾期_英_bt As TextBox
  3539. Friend WithEvents Label376 As Label
  3540. Friend WithEvents 工期_nud As NumericUpDown
  3541. Friend WithEvents 金額3_und As NumericUpDown
  3542. Friend WithEvents 最高扣款_英_bt As TextBox
  3543. Friend WithEvents Label414 As Label
  3544. Friend WithEvents Label391 As Label
  3545. Friend WithEvents 金額2_und As NumericUpDown
  3546. Friend WithEvents Label403 As Label
  3547. Friend WithEvents 工程合約試算表_tc As TabPage
  3548. Friend WithEvents 詳細資料3_ch As CheckBox
  3549. Friend WithEvents Label4 As Label
  3550. Friend WithEvents 修改樓層_迴圈_bt As Button
  3551. Friend WithEvents 新增物件_bt As Button
  3552. Friend WithEvents 料號_lb As Label
  3553. Friend WithEvents 樓層_迴路_cb As ComboBox
  3554. Friend WithEvents 料號1_tb As TextBox
  3555. Friend WithEvents Label3 As Label
  3556. Friend WithEvents 修改試算表名稱_bt As Button
  3557. Friend WithEvents 新增試算表_bt As Button
  3558. Friend WithEvents Label1 As Label
  3559. Friend WithEvents 試算表_cb As ComboBox
  3560. Friend WithEvents 試算表_dgv As DataGridView
  3561. Friend WithEvents 物料圖_pb As PictureBox
  3562. Friend WithEvents 選擇公司_cb As ComboBox
  3563. Friend WithEvents 立約日期_dtp As DateTimePicker
  3564. Friend WithEvents 負責人_B_cb As ComboBox
  3565. Friend WithEvents 金額1_und As NumericUpDown
  3566. Friend WithEvents Label407 As Label
  3567. Friend WithEvents Label410 As Label
  3568. Friend WithEvents 工程款5_nud As NumericUpDown
  3569. Friend WithEvents Label408 As Label
  3570. Friend WithEvents Label377 As Label
  3571. Friend WithEvents Label405 As Label
  3572. Friend WithEvents 工程款4_nud As NumericUpDown
  3573. Friend WithEvents 減價_bt As TextBox
  3574. Friend WithEvents 頁數_bt As TextBox
  3575. Friend WithEvents Label409 As Label
  3576. Friend WithEvents Label399 As Label
  3577. Friend WithEvents 負責人_A_cb As ComboBox
  3578. Friend WithEvents 工程名稱_英_tb As TextBox
  3579. Friend WithEvents 工程款3_nud As NumericUpDown
  3580. Friend WithEvents Label404 As Label
  3581. Friend WithEvents Label413 As Label
  3582. Friend WithEvents Label412 As Label
  3583. Friend WithEvents Label400 As Label
  3584. Friend WithEvents 我司地址_tb As TextBox
  3585. Friend WithEvents 工程款1_nud As NumericUpDown
  3586. Friend WithEvents 放行_bt As Button
  3587. Friend WithEvents ProgressBar1 As ProgressBar
  3588. Friend WithEvents 存檔_tb As Button
  3589. Friend WithEvents 合約停止_ch As CheckBox
  3590. Friend WithEvents 列印成EXCEL_bt As Button
  3591. Friend WithEvents 縮放2_bt As Button
  3592. Friend WithEvents 合約_dgv As DataGridView
  3593. Friend WithEvents 錨點2 As TextBox
  3594. Friend WithEvents 縮放1_bt As Button
  3595. Friend WithEvents 查詢_bt As Button
  3596. Friend WithEvents 關鍵字搜尋_tb As TextBox
  3597. Friend WithEvents Label53 As Label
  3598. Friend WithEvents Label7 As Label
  3599. Friend WithEvents 工材分離_ch As CheckBox
  3600. Friend WithEvents 空間3 As Panel
  3601. Friend WithEvents 報價說明_tb As TextBox
  3602. Friend WithEvents Panel2 As Panel
  3603. Friend WithEvents Label378 As Label
  3604. Friend WithEvents 廠區_中文_tb As TextBox
  3605. Friend WithEvents 工程款2_nud As NumericUpDown
  3606. Friend WithEvents Label28 As Label
  3607. Friend WithEvents Label382 As Label
  3608. Friend WithEvents 稅額顯示_lb As Label
  3609. Friend WithEvents CH2 As CheckBox
  3610. Friend WithEvents CH1 As CheckBox
  3611. Friend WithEvents Label402 As Label
  3612. Friend WithEvents Label392 As Label
  3613. Friend WithEvents Label381 As Label
  3614. Friend WithEvents Label386 As Label
  3615. Friend WithEvents Label21 As Label
  3616. Friend WithEvents TabControl2 As TabControl
  3617. Friend WithEvents TabPage5 As TabPage
  3618. Friend WithEvents 第1期_dgv As DataGridView
  3619. Friend WithEvents TabPage6 As TabPage
  3620. Friend WithEvents 第2期_dgv As DataGridView
  3621. Friend WithEvents TabPage7 As TabPage
  3622. Friend WithEvents 第3期_dgv As DataGridView
  3623. Friend WithEvents TabPage8 As TabPage
  3624. Friend WithEvents 第4期_dgv As DataGridView
  3625. Friend WithEvents TabPage9 As TabPage
  3626. Friend WithEvents 第5期_dgv As DataGridView
  3627. Friend WithEvents Label388 As Label
  3628. Friend WithEvents Label387 As Label
  3629. Friend WithEvents Label390 As Label
  3630. Friend WithEvents Label389 As Label
  3631. Friend WithEvents Label411 As Label
  3632. Friend WithEvents Label29 As Label
  3633. Friend WithEvents Label35 As Label
  3634. Friend WithEvents Label34 As Label
  3635. Friend WithEvents 建立合約資料_tc As TabPage
  3636. Friend WithEvents 合約編號清單_bt As Button
  3637. Friend WithEvents 工程期1_ch As ComboBox
  3638. Friend WithEvents Label40 As Label
  3639. Friend WithEvents 合約編號1_cb As ComboBox
  3640. Friend WithEvents Label2 As Label
  3641. Friend WithEvents 合約編號_tb As TextBox
  3642. Friend WithEvents TabControl1 As TabControl
  3643. Friend WithEvents Label41 As Label
  3644. Friend WithEvents 印尼盾_ch As CheckBox
  3645. Friend WithEvents 人民幣_ch As CheckBox
  3646. Friend WithEvents 美金_ch As CheckBox
  3647. Friend WithEvents 台幣_ch As CheckBox
  3648. Friend WithEvents 歸零數_tb As TextBox
  3649. Friend WithEvents 利潤比4_tb As TextBox
  3650. Friend WithEvents Label71 As Label
  3651. Friend WithEvents Label70 As Label
  3652. Friend WithEvents Label69 As Label
  3653. Friend WithEvents Label68 As Label
  3654. Friend WithEvents Label67 As Label
  3655. Friend WithEvents Label64 As Label
  3656. Friend WithEvents Label63 As Label
  3657. Friend WithEvents 利潤比3_tb As TextBox
  3658. Friend WithEvents Label60 As Label
  3659. Friend WithEvents 總報價_tb As TextBox
  3660. Friend WithEvents 總成本_tb As TextBox
  3661. Friend WithEvents Label58 As Label
  3662. Friend WithEvents Label59 As Label
  3663. Friend WithEvents 利潤比2_tb As TextBox
  3664. Friend WithEvents Label57 As Label
  3665. Friend WithEvents 利潤比1_tb As TextBox
  3666. Friend WithEvents 預估利潤_tb As TextBox
  3667. Friend WithEvents 預估材料總報價_tb As TextBox
  3668. Friend WithEvents 預估工資總報價_tb As TextBox
  3669. Friend WithEvents 預估材料總成本_tb As TextBox
  3670. Friend WithEvents Label54 As Label
  3671. Friend WithEvents 預估工資總成本_tb As TextBox
  3672. Friend WithEvents Label55 As Label
  3673. Friend WithEvents Label65 As Label
  3674. Friend WithEvents Label62 As Label
  3675. Friend WithEvents Label66 As Label
  3676. Friend WithEvents Label61 As Label
  3677. Friend WithEvents TabControl3 As TabControl
  3678. Friend WithEvents TabPage1 As TabPage
  3679. Friend WithEvents 折價計算_bt As Button
  3680. Friend WithEvents Label83 As Label
  3681. Friend WithEvents 甲方_cb As ComboBox
  3682. Friend WithEvents 未折價前_tb As TextBox
  3683. Friend WithEvents Label82 As Label
  3684. Friend WithEvents 歸零位數_nud As NumericUpDown
  3685. Friend WithEvents Label81 As Label
  3686. Friend WithEvents 稅後歸零_ch As CheckBox
  3687. Friend WithEvents 稅前歸零_ch As CheckBox
  3688. Friend WithEvents Label80 As Label
  3689. Friend WithEvents 折讓比例_nud As NumericUpDown
  3690. Friend WithEvents Label79 As Label
  3691. Friend WithEvents 報價小計_tb As TextBox
  3692. Friend WithEvents Label39 As Label
  3693. Friend WithEvents TabPage2 As TabPage
  3694. End Class