Bez popisu
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 151KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072
  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 DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  23. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle8 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle9 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Me.報告移交單_ch = New System.Windows.Forms.CheckBox()
  32. Me.Panel3 = New System.Windows.Forms.Panel()
  33. Me.B46_tb = New System.Windows.Forms.TextBox()
  34. Me.B45_tb = New System.Windows.Forms.TextBox()
  35. Me.B44_tb = New System.Windows.Forms.TextBox()
  36. Me.B43_tb = New System.Windows.Forms.TextBox()
  37. Me.B42_tb = New System.Windows.Forms.TextBox()
  38. Me.B40_tb = New System.Windows.Forms.TextBox()
  39. Me.B41_tb = New System.Windows.Forms.TextBox()
  40. Me.B39_tb = New System.Windows.Forms.TextBox()
  41. Me.B38_tb = New System.Windows.Forms.TextBox()
  42. Me.B37_tb = New System.Windows.Forms.TextBox()
  43. Me.B36_tb = New System.Windows.Forms.TextBox()
  44. Me.B35_tb = New System.Windows.Forms.TextBox()
  45. Me.B34_tb = New System.Windows.Forms.TextBox()
  46. Me.B33_tb = New System.Windows.Forms.TextBox()
  47. Me.B32_tb = New System.Windows.Forms.TextBox()
  48. Me.B29_tb = New System.Windows.Forms.TextBox()
  49. Me.B28_tb = New System.Windows.Forms.TextBox()
  50. Me.B27_tb = New System.Windows.Forms.TextBox()
  51. Me.B26_tb = New System.Windows.Forms.TextBox()
  52. Me.B25_tb = New System.Windows.Forms.TextBox()
  53. Me.B24_tb = New System.Windows.Forms.TextBox()
  54. Me.B31_tb = New System.Windows.Forms.TextBox()
  55. Me.B23_tb = New System.Windows.Forms.TextBox()
  56. Me.B22_tb = New System.Windows.Forms.TextBox()
  57. Me.B30_tb = New System.Windows.Forms.TextBox()
  58. Me.TextBox12 = New System.Windows.Forms.TextBox()
  59. Me.TextBox11 = New System.Windows.Forms.TextBox()
  60. Me.TextBox10 = New System.Windows.Forms.TextBox()
  61. Me.TextBox9 = New System.Windows.Forms.TextBox()
  62. Me.TextBox8 = New System.Windows.Forms.TextBox()
  63. Me.TextBox7 = New System.Windows.Forms.TextBox()
  64. Me.B21_tb = New System.Windows.Forms.TextBox()
  65. Me.B20_tb = New System.Windows.Forms.TextBox()
  66. Me.B19_tb = New System.Windows.Forms.TextBox()
  67. Me.B18_tb = New System.Windows.Forms.TextBox()
  68. Me.B17_tb = New System.Windows.Forms.TextBox()
  69. Me.B16_tb = New System.Windows.Forms.TextBox()
  70. Me.B15_tb = New System.Windows.Forms.TextBox()
  71. Me.B14_tb = New System.Windows.Forms.TextBox()
  72. Me.B13_tb = New System.Windows.Forms.TextBox()
  73. Me.B12_tb = New System.Windows.Forms.TextBox()
  74. Me.B11_tb = New System.Windows.Forms.TextBox()
  75. Me.B10_tb = New System.Windows.Forms.TextBox()
  76. Me.B09_tb = New System.Windows.Forms.TextBox()
  77. Me.B08_tb = New System.Windows.Forms.TextBox()
  78. Me.B07_tb = New System.Windows.Forms.TextBox()
  79. Me.B06_tb = New System.Windows.Forms.TextBox()
  80. Me.B05_tb = New System.Windows.Forms.TextBox()
  81. Me.B04_tb = New System.Windows.Forms.TextBox()
  82. Me.B03_tb = New System.Windows.Forms.TextBox()
  83. Me.B02_tb = New System.Windows.Forms.TextBox()
  84. Me.B01_tb = New System.Windows.Forms.TextBox()
  85. Me.A01_lb = New System.Windows.Forms.Label()
  86. Me.視窗2_pl = New System.Windows.Forms.Panel()
  87. Me.Label55 = New System.Windows.Forms.Label()
  88. Me.CanceL2_bt = New System.Windows.Forms.Button()
  89. Me.請款單_ch = New System.Windows.Forms.CheckBox()
  90. Me.存檔_tb = New System.Windows.Forms.Button()
  91. Me.付款期限_cb = New System.Windows.Forms.ComboBox()
  92. Me.Label46 = New System.Windows.Forms.Label()
  93. Me.Label414 = New System.Windows.Forms.Label()
  94. Me.申請日期_dtp = New System.Windows.Forms.DateTimePicker()
  95. Me.請款金額_nud = New System.Windows.Forms.NumericUpDown()
  96. Me.Label45 = New System.Windows.Forms.Label()
  97. Me.請款總額_nud = New System.Windows.Forms.NumericUpDown()
  98. Me.Label44 = New System.Windows.Forms.Label()
  99. Me.稅金_nud = New System.Windows.Forms.NumericUpDown()
  100. Me.Label43 = New System.Windows.Forms.Label()
  101. Me.請款內容_tb = New System.Windows.Forms.TextBox()
  102. Me.Label42 = New System.Windows.Forms.Label()
  103. Me.請款單號_tb = New System.Windows.Forms.TextBox()
  104. Me.比例_nud = New System.Windows.Forms.NumericUpDown()
  105. Me.Label38 = New System.Windows.Forms.Label()
  106. Me.其他意見_tb = New System.Windows.Forms.TextBox()
  107. Me.Label39 = New System.Windows.Forms.Label()
  108. Me.請款單_dgv = New System.Windows.Forms.DataGridView()
  109. Me.請款期數_cb = New System.Windows.Forms.ComboBox()
  110. Me.Label41 = New System.Windows.Forms.Label()
  111. Me.Label40 = New System.Windows.Forms.Label()
  112. Me.Label22 = New System.Windows.Forms.Label()
  113. Me.主頁明細_ch = New System.Windows.Forms.CheckBox()
  114. Me.新版_ch = New System.Windows.Forms.CheckBox()
  115. Me.主頁_ch = New System.Windows.Forms.CheckBox()
  116. Me.Panel1 = New System.Windows.Forms.Panel()
  117. Me.甲方_tb = New System.Windows.Forms.TextBox()
  118. Me.DTP1 = New System.Windows.Forms.DateTimePicker()
  119. Me.報價總表_dgv = New System.Windows.Forms.DataGridView()
  120. Me.工程期1_ch = New System.Windows.Forms.ComboBox()
  121. Me.Label10 = New System.Windows.Forms.Label()
  122. Me.合約_dgv = New System.Windows.Forms.DataGridView()
  123. Me.TabPage5 = New System.Windows.Forms.TabPage()
  124. Me.第1期_dgv = New System.Windows.Forms.DataGridView()
  125. Me.TabPage6 = New System.Windows.Forms.TabPage()
  126. Me.第2期_dgv = New System.Windows.Forms.DataGridView()
  127. Me.TabPage7 = New System.Windows.Forms.TabPage()
  128. Me.第3期_dgv = New System.Windows.Forms.DataGridView()
  129. Me.TabPage8 = New System.Windows.Forms.TabPage()
  130. Me.第4期_dgv = New System.Windows.Forms.DataGridView()
  131. Me.TabPage9 = New System.Windows.Forms.TabPage()
  132. Me.第5期_dgv = New System.Windows.Forms.DataGridView()
  133. Me.Label37 = New System.Windows.Forms.Label()
  134. Me.Label36 = New System.Windows.Forms.Label()
  135. Me.Label35 = New System.Windows.Forms.Label()
  136. Me.Label34 = New System.Windows.Forms.Label()
  137. Me.Label19 = New System.Windows.Forms.Label()
  138. Me.明細選項_bt = New System.Windows.Forms.TextBox()
  139. Me.刪除資料_bt = New System.Windows.Forms.Button()
  140. Me.新增資料_bt = New System.Windows.Forms.Button()
  141. Me.金額6_und = New System.Windows.Forms.NumericUpDown()
  142. Me.工程款6_nud = New System.Windows.Forms.NumericUpDown()
  143. Me.NUD2 = New System.Windows.Forms.NumericUpDown()
  144. Me.NUD1 = New System.Windows.Forms.NumericUpDown()
  145. Me.NUD3 = New System.Windows.Forms.NumericUpDown()
  146. Me.金額5_und = New System.Windows.Forms.NumericUpDown()
  147. Me.金額4_und = New System.Windows.Forms.NumericUpDown()
  148. Me.金額3_und = New System.Windows.Forms.NumericUpDown()
  149. Me.金額2_und = New System.Windows.Forms.NumericUpDown()
  150. Me.金額1_und = New System.Windows.Forms.NumericUpDown()
  151. Me.工程款5_nud = New System.Windows.Forms.NumericUpDown()
  152. Me.工程款4_nud = New System.Windows.Forms.NumericUpDown()
  153. Me.工程款3_nud = New System.Windows.Forms.NumericUpDown()
  154. Me.工程款1_nud = New System.Windows.Forms.NumericUpDown()
  155. Me.工程款2_nud = New System.Windows.Forms.NumericUpDown()
  156. Me.稅額顯示_lb = New System.Windows.Forms.Label()
  157. Me.CH2 = New System.Windows.Forms.CheckBox()
  158. Me.CH1 = New System.Windows.Forms.CheckBox()
  159. Me.Label386 = New System.Windows.Forms.Label()
  160. Me.Label21 = New System.Windows.Forms.Label()
  161. Me.TabControl2 = New System.Windows.Forms.TabControl()
  162. Me.Label387 = New System.Windows.Forms.Label()
  163. Me.Label372 = New System.Windows.Forms.Label()
  164. Me.客戶名稱_tb = New System.Windows.Forms.ComboBox()
  165. Me.Label375 = New System.Windows.Forms.Label()
  166. Me.工程名稱_中_tb = New System.Windows.Forms.TextBox()
  167. Me.工程名稱_英_tb = New System.Windows.Forms.TextBox()
  168. Me.Label378 = New System.Windows.Forms.Label()
  169. Me.Label2 = New System.Windows.Forms.Label()
  170. Me.合約編號_tb = New System.Windows.Forms.TextBox()
  171. Me.Label11 = New System.Windows.Forms.Label()
  172. Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
  173. Me.Label7 = New System.Windows.Forms.Label()
  174. Me.關鍵字搜尋_tb = New System.Windows.Forms.TextBox()
  175. Me.BNUD5 = New System.Windows.Forms.NumericUpDown()
  176. Me.BNUD4 = New System.Windows.Forms.NumericUpDown()
  177. Me.Label31 = New System.Windows.Forms.Label()
  178. Me.Label32 = New System.Windows.Forms.Label()
  179. Me.BNUD3 = New System.Windows.Forms.NumericUpDown()
  180. Me.BNUD2 = New System.Windows.Forms.NumericUpDown()
  181. Me.BNUD1 = New System.Windows.Forms.NumericUpDown()
  182. Me.Label33 = New System.Windows.Forms.Label()
  183. Me.ANUD5 = New System.Windows.Forms.NumericUpDown()
  184. Me.ANUD4 = New System.Windows.Forms.NumericUpDown()
  185. Me.Label29 = New System.Windows.Forms.Label()
  186. Me.Label30 = New System.Windows.Forms.Label()
  187. Me.ANUD3 = New System.Windows.Forms.NumericUpDown()
  188. Me.ANUD2 = New System.Windows.Forms.NumericUpDown()
  189. Me.ANUD1 = New System.Windows.Forms.NumericUpDown()
  190. Me.Label26 = New System.Windows.Forms.Label()
  191. Me.Label27 = New System.Windows.Forms.Label()
  192. Me.Label28 = New System.Windows.Forms.Label()
  193. Me.Label12 = New System.Windows.Forms.Label()
  194. Me.Label20 = New System.Windows.Forms.Label()
  195. Me.Label13 = New System.Windows.Forms.Label()
  196. Me.Label23 = New System.Windows.Forms.Label()
  197. Me.Label24 = New System.Windows.Forms.Label()
  198. Me.Label15 = New System.Windows.Forms.Label()
  199. Me.Label14 = New System.Windows.Forms.Label()
  200. Me.Label16 = New System.Windows.Forms.Label()
  201. Me.Label17 = New System.Windows.Forms.Label()
  202. Me.Label18 = New System.Windows.Forms.Label()
  203. Me.Label5 = New System.Windows.Forms.Label()
  204. Me.附錄編號_tb = New System.Windows.Forms.TextBox()
  205. Me.合約附錄_dgv = New System.Windows.Forms.DataGridView()
  206. Me.NUD6 = New System.Windows.Forms.NumericUpDown()
  207. Me.NUD5 = New System.Windows.Forms.NumericUpDown()
  208. Me.NUD4 = New System.Windows.Forms.NumericUpDown()
  209. Me.Label6 = New System.Windows.Forms.Label()
  210. Me.Label8 = New System.Windows.Forms.Label()
  211. Me.Label9 = New System.Windows.Forms.Label()
  212. Me.Label388 = New System.Windows.Forms.Label()
  213. Me.Label390 = New System.Windows.Forms.Label()
  214. Me.Label389 = New System.Windows.Forms.Label()
  215. Me.Label1 = New System.Windows.Forms.Label()
  216. Me.Label3 = New System.Windows.Forms.Label()
  217. Me.Label4 = New System.Windows.Forms.Label()
  218. Me.Label25 = New System.Windows.Forms.Label()
  219. Me.縮放2_bt = New System.Windows.Forms.Button()
  220. Me.報告移交_bt = New System.Windows.Forms.Button()
  221. Me.列印_bt = New System.Windows.Forms.Button()
  222. Me.刪除_bt = New System.Windows.Forms.Button()
  223. Me.存檔_bt = New System.Windows.Forms.Button()
  224. Me.開新的請款單_bt = New System.Windows.Forms.Button()
  225. Me.SOP3_P = New System.Windows.Forms.PictureBox()
  226. Me.SOP4_P = New System.Windows.Forms.PictureBox()
  227. Me.SOP7_P = New System.Windows.Forms.PictureBox()
  228. Me.SOP5_P = New System.Windows.Forms.PictureBox()
  229. Me.SOP6_P = New System.Windows.Forms.PictureBox()
  230. Me.查詢_bt = New System.Windows.Forms.Button()
  231. Me.J2_PB = New System.Windows.Forms.PictureBox()
  232. Me.JCS_PB = New System.Windows.Forms.PictureBox()
  233. Me.PictureBox2 = New System.Windows.Forms.PictureBox()
  234. Me.PictureBox1 = New System.Windows.Forms.PictureBox()
  235. Me.Panel3.SuspendLayout()
  236. Me.視窗2_pl.SuspendLayout()
  237. CType(Me.請款金額_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  238. CType(Me.請款總額_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  239. CType(Me.稅金_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  240. CType(Me.比例_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  241. CType(Me.請款單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  242. Me.Panel1.SuspendLayout()
  243. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  244. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  245. Me.TabPage5.SuspendLayout()
  246. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  247. Me.TabPage6.SuspendLayout()
  248. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  249. Me.TabPage7.SuspendLayout()
  250. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  251. Me.TabPage8.SuspendLayout()
  252. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  253. Me.TabPage9.SuspendLayout()
  254. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  255. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).BeginInit()
  256. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  257. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).BeginInit()
  258. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).BeginInit()
  259. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).BeginInit()
  260. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).BeginInit()
  261. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).BeginInit()
  262. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).BeginInit()
  263. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).BeginInit()
  264. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).BeginInit()
  265. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  266. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  267. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  268. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  269. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  270. Me.TabControl2.SuspendLayout()
  271. CType(Me.BNUD5, System.ComponentModel.ISupportInitialize).BeginInit()
  272. CType(Me.BNUD4, System.ComponentModel.ISupportInitialize).BeginInit()
  273. CType(Me.BNUD3, System.ComponentModel.ISupportInitialize).BeginInit()
  274. CType(Me.BNUD2, System.ComponentModel.ISupportInitialize).BeginInit()
  275. CType(Me.BNUD1, System.ComponentModel.ISupportInitialize).BeginInit()
  276. CType(Me.ANUD5, System.ComponentModel.ISupportInitialize).BeginInit()
  277. CType(Me.ANUD4, System.ComponentModel.ISupportInitialize).BeginInit()
  278. CType(Me.ANUD3, System.ComponentModel.ISupportInitialize).BeginInit()
  279. CType(Me.ANUD2, System.ComponentModel.ISupportInitialize).BeginInit()
  280. CType(Me.ANUD1, System.ComponentModel.ISupportInitialize).BeginInit()
  281. CType(Me.合約附錄_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  282. CType(Me.NUD6, System.ComponentModel.ISupportInitialize).BeginInit()
  283. CType(Me.NUD5, System.ComponentModel.ISupportInitialize).BeginInit()
  284. CType(Me.NUD4, System.ComponentModel.ISupportInitialize).BeginInit()
  285. CType(Me.SOP3_P, System.ComponentModel.ISupportInitialize).BeginInit()
  286. CType(Me.SOP4_P, System.ComponentModel.ISupportInitialize).BeginInit()
  287. CType(Me.SOP7_P, System.ComponentModel.ISupportInitialize).BeginInit()
  288. CType(Me.SOP5_P, System.ComponentModel.ISupportInitialize).BeginInit()
  289. CType(Me.SOP6_P, System.ComponentModel.ISupportInitialize).BeginInit()
  290. CType(Me.J2_PB, System.ComponentModel.ISupportInitialize).BeginInit()
  291. CType(Me.JCS_PB, System.ComponentModel.ISupportInitialize).BeginInit()
  292. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
  293. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  294. Me.SuspendLayout()
  295. '
  296. '報告移交單_ch
  297. '
  298. Me.報告移交單_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  299. Me.報告移交單_ch.AutoSize = True
  300. Me.報告移交單_ch.Location = New System.Drawing.Point(1191, 417)
  301. Me.報告移交單_ch.Name = "報告移交單_ch"
  302. Me.報告移交單_ch.Size = New System.Drawing.Size(86, 20)
  303. Me.報告移交單_ch.TabIndex = 1903
  304. Me.報告移交單_ch.Text = "報告移交單"
  305. Me.報告移交單_ch.UseVisualStyleBackColor = True
  306. '
  307. 'Panel3
  308. '
  309. Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  310. Or System.Windows.Forms.AnchorStyles.Left) _
  311. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  312. Me.Panel3.BackColor = System.Drawing.Color.LightGray
  313. Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  314. Me.Panel3.Controls.Add(Me.B46_tb)
  315. Me.Panel3.Controls.Add(Me.B45_tb)
  316. Me.Panel3.Controls.Add(Me.B44_tb)
  317. Me.Panel3.Controls.Add(Me.B43_tb)
  318. Me.Panel3.Controls.Add(Me.B42_tb)
  319. Me.Panel3.Controls.Add(Me.B40_tb)
  320. Me.Panel3.Controls.Add(Me.B41_tb)
  321. Me.Panel3.Controls.Add(Me.B39_tb)
  322. Me.Panel3.Controls.Add(Me.B38_tb)
  323. Me.Panel3.Controls.Add(Me.B37_tb)
  324. Me.Panel3.Controls.Add(Me.B36_tb)
  325. Me.Panel3.Controls.Add(Me.B35_tb)
  326. Me.Panel3.Controls.Add(Me.B34_tb)
  327. Me.Panel3.Controls.Add(Me.B33_tb)
  328. Me.Panel3.Controls.Add(Me.B32_tb)
  329. Me.Panel3.Controls.Add(Me.B29_tb)
  330. Me.Panel3.Controls.Add(Me.B28_tb)
  331. Me.Panel3.Controls.Add(Me.B27_tb)
  332. Me.Panel3.Controls.Add(Me.B26_tb)
  333. Me.Panel3.Controls.Add(Me.B25_tb)
  334. Me.Panel3.Controls.Add(Me.B24_tb)
  335. Me.Panel3.Controls.Add(Me.B31_tb)
  336. Me.Panel3.Controls.Add(Me.B23_tb)
  337. Me.Panel3.Controls.Add(Me.B22_tb)
  338. Me.Panel3.Controls.Add(Me.B30_tb)
  339. Me.Panel3.Controls.Add(Me.TextBox12)
  340. Me.Panel3.Controls.Add(Me.TextBox11)
  341. Me.Panel3.Controls.Add(Me.TextBox10)
  342. Me.Panel3.Controls.Add(Me.TextBox9)
  343. Me.Panel3.Controls.Add(Me.TextBox8)
  344. Me.Panel3.Controls.Add(Me.TextBox7)
  345. Me.Panel3.Controls.Add(Me.B21_tb)
  346. Me.Panel3.Controls.Add(Me.B20_tb)
  347. Me.Panel3.Controls.Add(Me.B19_tb)
  348. Me.Panel3.Controls.Add(Me.B18_tb)
  349. Me.Panel3.Controls.Add(Me.B17_tb)
  350. Me.Panel3.Controls.Add(Me.B16_tb)
  351. Me.Panel3.Controls.Add(Me.B15_tb)
  352. Me.Panel3.Controls.Add(Me.B14_tb)
  353. Me.Panel3.Controls.Add(Me.B13_tb)
  354. Me.Panel3.Controls.Add(Me.B12_tb)
  355. Me.Panel3.Controls.Add(Me.B11_tb)
  356. Me.Panel3.Controls.Add(Me.B10_tb)
  357. Me.Panel3.Controls.Add(Me.B09_tb)
  358. Me.Panel3.Controls.Add(Me.B08_tb)
  359. Me.Panel3.Controls.Add(Me.B07_tb)
  360. Me.Panel3.Controls.Add(Me.B06_tb)
  361. Me.Panel3.Controls.Add(Me.B05_tb)
  362. Me.Panel3.Controls.Add(Me.B04_tb)
  363. Me.Panel3.Controls.Add(Me.B03_tb)
  364. Me.Panel3.Controls.Add(Me.B02_tb)
  365. Me.Panel3.Controls.Add(Me.B01_tb)
  366. Me.Panel3.Controls.Add(Me.A01_lb)
  367. Me.Panel3.Location = New System.Drawing.Point(3, 28)
  368. Me.Panel3.Name = "Panel3"
  369. Me.Panel3.Size = New System.Drawing.Size(643, 613)
  370. Me.Panel3.TabIndex = 1367
  371. '
  372. 'B46_tb
  373. '
  374. Me.B46_tb.BackColor = System.Drawing.Color.LightGray
  375. Me.B46_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  376. Me.B46_tb.Enabled = False
  377. Me.B46_tb.Location = New System.Drawing.Point(10, 487)
  378. Me.B46_tb.Name = "B46_tb"
  379. Me.B46_tb.Size = New System.Drawing.Size(90, 16)
  380. Me.B46_tb.TabIndex = 1805
  381. Me.B46_tb.Text = "pertama ini." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  382. '
  383. 'B45_tb
  384. '
  385. Me.B45_tb.BackColor = System.Drawing.Color.LightGray
  386. Me.B45_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  387. Me.B45_tb.Enabled = False
  388. Me.B45_tb.Location = New System.Drawing.Point(340, 465)
  389. Me.B45_tb.Name = "B45_tb"
  390. Me.B45_tb.Size = New System.Drawing.Size(299, 16)
  391. Me.B45_tb.TabIndex = 1804
  392. Me.B45_tb.Text = "hari sejak ditandatangani berita acara serah terima " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  393. '
  394. 'B44_tb
  395. '
  396. Me.B44_tb.BackColor = System.Drawing.Color.LightGray
  397. Me.B44_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  398. Me.B44_tb.ForeColor = System.Drawing.Color.Red
  399. Me.B44_tb.Location = New System.Drawing.Point(297, 465)
  400. Me.B44_tb.Name = "B44_tb"
  401. Me.B44_tb.Size = New System.Drawing.Size(44, 16)
  402. Me.B44_tb.TabIndex = 1803
  403. Me.B44_tb.Text = "180"
  404. Me.B44_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  405. '
  406. 'B43_tb
  407. '
  408. Me.B43_tb.BackColor = System.Drawing.Color.LightGray
  409. Me.B43_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  410. Me.B43_tb.ForeColor = System.Drawing.Color.Red
  411. Me.B43_tb.Location = New System.Drawing.Point(352, 586)
  412. Me.B43_tb.Name = "B43_tb"
  413. Me.B43_tb.Size = New System.Drawing.Size(287, 16)
  414. Me.B43_tb.TabIndex = 1802
  415. Me.B43_tb.Text = "PT. PUNCAK GEMILANG SEMESTA"
  416. '
  417. 'B42_tb
  418. '
  419. Me.B42_tb.BackColor = System.Drawing.Color.LightGray
  420. Me.B42_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  421. Me.B42_tb.ForeColor = System.Drawing.Color.Red
  422. Me.B42_tb.Location = New System.Drawing.Point(10, 586)
  423. Me.B42_tb.Name = "B42_tb"
  424. Me.B42_tb.Size = New System.Drawing.Size(316, 16)
  425. Me.B42_tb.TabIndex = 1801
  426. Me.B42_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
  427. '
  428. 'B40_tb
  429. '
  430. Me.B40_tb.BackColor = System.Drawing.Color.LightGray
  431. Me.B40_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  432. Me.B40_tb.Enabled = False
  433. Me.B40_tb.Location = New System.Drawing.Point(10, 564)
  434. Me.B40_tb.Name = "B40_tb"
  435. Me.B40_tb.Size = New System.Drawing.Size(206, 16)
  436. Me.B40_tb.TabIndex = 1800
  437. Me.B40_tb.Text = "Pihak Kesatu (I)"
  438. Me.B40_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  439. '
  440. 'B41_tb
  441. '
  442. Me.B41_tb.BackColor = System.Drawing.Color.LightGray
  443. Me.B41_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  444. Me.B41_tb.Enabled = False
  445. Me.B41_tb.Location = New System.Drawing.Point(352, 564)
  446. Me.B41_tb.Name = "B41_tb"
  447. Me.B41_tb.Size = New System.Drawing.Size(206, 16)
  448. Me.B41_tb.TabIndex = 1799
  449. Me.B41_tb.Text = "Pihak Kedua (II)"
  450. Me.B41_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  451. '
  452. 'B39_tb
  453. '
  454. Me.B39_tb.BackColor = System.Drawing.Color.LightGray
  455. Me.B39_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  456. Me.B39_tb.Enabled = False
  457. Me.B39_tb.Location = New System.Drawing.Point(433, 542)
  458. Me.B39_tb.Name = "B39_tb"
  459. Me.B39_tb.Size = New System.Drawing.Size(206, 16)
  460. Me.B39_tb.TabIndex = 1798
  461. Me.B39_tb.Text = "Yang Melakukan Pekerjaan,"
  462. Me.B39_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  463. '
  464. 'B38_tb
  465. '
  466. Me.B38_tb.BackColor = System.Drawing.Color.LightGray
  467. Me.B38_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  468. Me.B38_tb.ForeColor = System.Drawing.Color.Red
  469. Me.B38_tb.Location = New System.Drawing.Point(595, 520)
  470. Me.B38_tb.Name = "B38_tb"
  471. Me.B38_tb.Size = New System.Drawing.Size(44, 16)
  472. Me.B38_tb.TabIndex = 1797
  473. Me.B38_tb.Text = "2022"
  474. Me.B38_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  475. '
  476. 'B37_tb
  477. '
  478. Me.B37_tb.BackColor = System.Drawing.Color.LightGray
  479. Me.B37_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  480. Me.B37_tb.ForeColor = System.Drawing.Color.Red
  481. Me.B37_tb.Location = New System.Drawing.Point(552, 520)
  482. Me.B37_tb.Name = "B37_tb"
  483. Me.B37_tb.Size = New System.Drawing.Size(44, 16)
  484. Me.B37_tb.TabIndex = 1796
  485. Me.B37_tb.Text = "Nov"
  486. Me.B37_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  487. '
  488. 'B36_tb
  489. '
  490. Me.B36_tb.BackColor = System.Drawing.Color.LightGray
  491. Me.B36_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  492. Me.B36_tb.ForeColor = System.Drawing.Color.Red
  493. Me.B36_tb.Location = New System.Drawing.Point(522, 520)
  494. Me.B36_tb.Name = "B36_tb"
  495. Me.B36_tb.Size = New System.Drawing.Size(31, 16)
  496. Me.B36_tb.TabIndex = 1795
  497. Me.B36_tb.Text = "7"
  498. Me.B36_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  499. '
  500. 'B35_tb
  501. '
  502. Me.B35_tb.BackColor = System.Drawing.Color.LightGray
  503. Me.B35_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  504. Me.B35_tb.ForeColor = System.Drawing.Color.Red
  505. Me.B35_tb.Location = New System.Drawing.Point(433, 520)
  506. Me.B35_tb.Name = "B35_tb"
  507. Me.B35_tb.Size = New System.Drawing.Size(90, 16)
  508. Me.B35_tb.TabIndex = 1794
  509. Me.B35_tb.Text = "Majalengka"
  510. Me.B35_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  511. '
  512. 'B34_tb
  513. '
  514. Me.B34_tb.BackColor = System.Drawing.Color.LightGray
  515. Me.B34_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  516. Me.B34_tb.Enabled = False
  517. Me.B34_tb.Location = New System.Drawing.Point(10, 511)
  518. Me.B34_tb.Name = "B34_tb"
  519. Me.B34_tb.Size = New System.Drawing.Size(252, 16)
  520. Me.B34_tb.TabIndex = 1793
  521. Me.B34_tb.Text = "Demikian Berita Acara ini dibuat."
  522. '
  523. 'B33_tb
  524. '
  525. Me.B33_tb.BackColor = System.Drawing.Color.LightGray
  526. Me.B33_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  527. Me.B33_tb.Enabled = False
  528. Me.B33_tb.Location = New System.Drawing.Point(10, 465)
  529. Me.B33_tb.Name = "B33_tb"
  530. Me.B33_tb.Size = New System.Drawing.Size(288, 16)
  531. Me.B33_tb.TabIndex = 1792
  532. Me.B33_tb.Text = "Pihak kedua (II) memberikan masa garansi selama" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
  533. '
  534. 'B32_tb
  535. '
  536. Me.B32_tb.BackColor = System.Drawing.Color.LightGray
  537. Me.B32_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  538. Me.B32_tb.Enabled = False
  539. Me.B32_tb.Location = New System.Drawing.Point(10, 427)
  540. Me.B32_tb.Multiline = True
  541. Me.B32_tb.Name = "B32_tb"
  542. Me.B32_tb.Size = New System.Drawing.Size(629, 39)
  543. Me.B32_tb.TabIndex = 1791
  544. Me.B32_tb.Text = "Pihak kesatu (I) telah memeriksa hasil pekerjaan Pihak kedua (II) yang telah sel" &
  545. "esai dikerjakan sesuai dengan kontrak."
  546. '
  547. 'B29_tb
  548. '
  549. Me.B29_tb.BackColor = System.Drawing.Color.LightGray
  550. Me.B29_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  551. Me.B29_tb.ForeColor = System.Drawing.Color.Red
  552. Me.B29_tb.Location = New System.Drawing.Point(261, 352)
  553. Me.B29_tb.Name = "B29_tb"
  554. Me.B29_tb.Size = New System.Drawing.Size(44, 16)
  555. Me.B29_tb.TabIndex = 1790
  556. Me.B29_tb.Text = "2022"
  557. Me.B29_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  558. '
  559. 'B28_tb
  560. '
  561. Me.B28_tb.BackColor = System.Drawing.Color.LightGray
  562. Me.B28_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  563. Me.B28_tb.ForeColor = System.Drawing.Color.Red
  564. Me.B28_tb.Location = New System.Drawing.Point(218, 352)
  565. Me.B28_tb.Name = "B28_tb"
  566. Me.B28_tb.Size = New System.Drawing.Size(44, 16)
  567. Me.B28_tb.TabIndex = 1789
  568. Me.B28_tb.Text = "Nov"
  569. Me.B28_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  570. '
  571. 'B27_tb
  572. '
  573. Me.B27_tb.BackColor = System.Drawing.Color.LightGray
  574. Me.B27_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  575. Me.B27_tb.ForeColor = System.Drawing.Color.Red
  576. Me.B27_tb.Location = New System.Drawing.Point(188, 352)
  577. Me.B27_tb.Name = "B27_tb"
  578. Me.B27_tb.Size = New System.Drawing.Size(31, 16)
  579. Me.B27_tb.TabIndex = 1788
  580. Me.B27_tb.Text = "7"
  581. Me.B27_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  582. '
  583. 'B26_tb
  584. '
  585. Me.B26_tb.BackColor = System.Drawing.Color.LightGray
  586. Me.B26_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  587. Me.B26_tb.ForeColor = System.Drawing.Color.Red
  588. Me.B26_tb.Location = New System.Drawing.Point(261, 330)
  589. Me.B26_tb.Name = "B26_tb"
  590. Me.B26_tb.Size = New System.Drawing.Size(44, 16)
  591. Me.B26_tb.TabIndex = 1787
  592. Me.B26_tb.Text = "2022"
  593. Me.B26_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  594. '
  595. 'B25_tb
  596. '
  597. Me.B25_tb.BackColor = System.Drawing.Color.LightGray
  598. Me.B25_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  599. Me.B25_tb.ForeColor = System.Drawing.Color.Red
  600. Me.B25_tb.Location = New System.Drawing.Point(218, 330)
  601. Me.B25_tb.Name = "B25_tb"
  602. Me.B25_tb.Size = New System.Drawing.Size(44, 16)
  603. Me.B25_tb.TabIndex = 1786
  604. Me.B25_tb.Text = "Nov"
  605. Me.B25_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  606. '
  607. 'B24_tb
  608. '
  609. Me.B24_tb.BackColor = System.Drawing.Color.LightGray
  610. Me.B24_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  611. Me.B24_tb.ForeColor = System.Drawing.Color.Red
  612. Me.B24_tb.Location = New System.Drawing.Point(188, 330)
  613. Me.B24_tb.Name = "B24_tb"
  614. Me.B24_tb.Size = New System.Drawing.Size(31, 16)
  615. Me.B24_tb.TabIndex = 1785
  616. Me.B24_tb.Text = "7"
  617. Me.B24_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  618. '
  619. 'B31_tb
  620. '
  621. Me.B31_tb.BackColor = System.Drawing.Color.LightGray
  622. Me.B31_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  623. Me.B31_tb.ForeColor = System.Drawing.Color.Red
  624. Me.B31_tb.Location = New System.Drawing.Point(188, 396)
  625. Me.B31_tb.Name = "B31_tb"
  626. Me.B31_tb.Size = New System.Drawing.Size(451, 16)
  627. Me.B31_tb.TabIndex = 1784
  628. Me.B31_tb.Text = "Penagihan Invoice Pelunasan 95%"
  629. '
  630. 'B23_tb
  631. '
  632. Me.B23_tb.BackColor = System.Drawing.Color.LightGray
  633. Me.B23_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  634. Me.B23_tb.ForeColor = System.Drawing.Color.Red
  635. Me.B23_tb.Location = New System.Drawing.Point(188, 308)
  636. Me.B23_tb.Name = "B23_tb"
  637. Me.B23_tb.Size = New System.Drawing.Size(451, 16)
  638. Me.B23_tb.TabIndex = 1783
  639. Me.B23_tb.Text = " Instalasi line di gedung 2"
  640. '
  641. 'B22_tb
  642. '
  643. Me.B22_tb.BackColor = System.Drawing.Color.LightGray
  644. Me.B22_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  645. Me.B22_tb.ForeColor = System.Drawing.Color.Red
  646. Me.B22_tb.Location = New System.Drawing.Point(188, 286)
  647. Me.B22_tb.Name = "B22_tb"
  648. Me.B22_tb.Size = New System.Drawing.Size(451, 16)
  649. Me.B22_tb.TabIndex = 1782
  650. Me.B22_tb.Text = "PGS-JCS-220220"
  651. '
  652. 'B30_tb
  653. '
  654. Me.B30_tb.BackColor = System.Drawing.Color.LightGray
  655. Me.B30_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  656. Me.B30_tb.ForeColor = System.Drawing.Color.Red
  657. Me.B30_tb.Location = New System.Drawing.Point(188, 374)
  658. Me.B30_tb.Name = "B30_tb"
  659. Me.B30_tb.Size = New System.Drawing.Size(451, 16)
  660. Me.B30_tb.TabIndex = 1781
  661. Me.B30_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
  662. '
  663. 'TextBox12
  664. '
  665. Me.TextBox12.BackColor = System.Drawing.Color.LightGray
  666. Me.TextBox12.BorderStyle = System.Windows.Forms.BorderStyle.None
  667. Me.TextBox12.Enabled = False
  668. Me.TextBox12.Location = New System.Drawing.Point(172, 396)
  669. Me.TextBox12.Name = "TextBox12"
  670. Me.TextBox12.Size = New System.Drawing.Size(17, 16)
  671. Me.TextBox12.TabIndex = 1780
  672. Me.TextBox12.Text = " : "
  673. Me.TextBox12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  674. '
  675. 'TextBox11
  676. '
  677. Me.TextBox11.BackColor = System.Drawing.Color.LightGray
  678. Me.TextBox11.BorderStyle = System.Windows.Forms.BorderStyle.None
  679. Me.TextBox11.Enabled = False
  680. Me.TextBox11.Location = New System.Drawing.Point(172, 374)
  681. Me.TextBox11.Name = "TextBox11"
  682. Me.TextBox11.Size = New System.Drawing.Size(17, 16)
  683. Me.TextBox11.TabIndex = 1779
  684. Me.TextBox11.Text = " : "
  685. Me.TextBox11.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  686. '
  687. 'TextBox10
  688. '
  689. Me.TextBox10.BackColor = System.Drawing.Color.LightGray
  690. Me.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.None
  691. Me.TextBox10.Enabled = False
  692. Me.TextBox10.Location = New System.Drawing.Point(172, 352)
  693. Me.TextBox10.Name = "TextBox10"
  694. Me.TextBox10.Size = New System.Drawing.Size(17, 16)
  695. Me.TextBox10.TabIndex = 1778
  696. Me.TextBox10.Text = " : "
  697. Me.TextBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  698. '
  699. 'TextBox9
  700. '
  701. Me.TextBox9.BackColor = System.Drawing.Color.LightGray
  702. Me.TextBox9.BorderStyle = System.Windows.Forms.BorderStyle.None
  703. Me.TextBox9.Enabled = False
  704. Me.TextBox9.Location = New System.Drawing.Point(172, 330)
  705. Me.TextBox9.Name = "TextBox9"
  706. Me.TextBox9.Size = New System.Drawing.Size(17, 16)
  707. Me.TextBox9.TabIndex = 1777
  708. Me.TextBox9.Text = " : "
  709. Me.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  710. '
  711. 'TextBox8
  712. '
  713. Me.TextBox8.BackColor = System.Drawing.Color.LightGray
  714. Me.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.None
  715. Me.TextBox8.Enabled = False
  716. Me.TextBox8.Location = New System.Drawing.Point(172, 308)
  717. Me.TextBox8.Name = "TextBox8"
  718. Me.TextBox8.Size = New System.Drawing.Size(17, 16)
  719. Me.TextBox8.TabIndex = 1776
  720. Me.TextBox8.Text = " : "
  721. Me.TextBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  722. '
  723. 'TextBox7
  724. '
  725. Me.TextBox7.BackColor = System.Drawing.Color.LightGray
  726. Me.TextBox7.BorderStyle = System.Windows.Forms.BorderStyle.None
  727. Me.TextBox7.Enabled = False
  728. Me.TextBox7.Location = New System.Drawing.Point(172, 286)
  729. Me.TextBox7.Name = "TextBox7"
  730. Me.TextBox7.Size = New System.Drawing.Size(17, 16)
  731. Me.TextBox7.TabIndex = 1775
  732. Me.TextBox7.Text = " : "
  733. Me.TextBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  734. '
  735. 'B21_tb
  736. '
  737. Me.B21_tb.BackColor = System.Drawing.Color.LightGray
  738. Me.B21_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  739. Me.B21_tb.Enabled = False
  740. Me.B21_tb.Location = New System.Drawing.Point(10, 396)
  741. Me.B21_tb.Name = "B21_tb"
  742. Me.B21_tb.Size = New System.Drawing.Size(163, 16)
  743. Me.B21_tb.TabIndex = 1774
  744. Me.B21_tb.Text = "Tujuan"
  745. '
  746. 'B20_tb
  747. '
  748. Me.B20_tb.BackColor = System.Drawing.Color.LightGray
  749. Me.B20_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  750. Me.B20_tb.Enabled = False
  751. Me.B20_tb.Location = New System.Drawing.Point(10, 374)
  752. Me.B20_tb.Name = "B20_tb"
  753. Me.B20_tb.Size = New System.Drawing.Size(163, 16)
  754. Me.B20_tb.TabIndex = 1773
  755. Me.B20_tb.Text = "Lokasi Pekerjaan"
  756. '
  757. 'B19_tb
  758. '
  759. Me.B19_tb.BackColor = System.Drawing.Color.LightGray
  760. Me.B19_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  761. Me.B19_tb.Enabled = False
  762. Me.B19_tb.Location = New System.Drawing.Point(10, 352)
  763. Me.B19_tb.Name = "B19_tb"
  764. Me.B19_tb.Size = New System.Drawing.Size(163, 16)
  765. Me.B19_tb.TabIndex = 1772
  766. Me.B19_tb.Text = "Batas Akhir Masa Garansi"
  767. '
  768. 'B18_tb
  769. '
  770. Me.B18_tb.BackColor = System.Drawing.Color.LightGray
  771. Me.B18_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  772. Me.B18_tb.Enabled = False
  773. Me.B18_tb.Location = New System.Drawing.Point(10, 330)
  774. Me.B18_tb.Name = "B18_tb"
  775. Me.B18_tb.Size = New System.Drawing.Size(163, 16)
  776. Me.B18_tb.TabIndex = 1771
  777. Me.B18_tb.Text = "Tanggal Selesai Pekerjaan"
  778. '
  779. 'B17_tb
  780. '
  781. Me.B17_tb.BackColor = System.Drawing.Color.LightGray
  782. Me.B17_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  783. Me.B17_tb.Enabled = False
  784. Me.B17_tb.Location = New System.Drawing.Point(10, 308)
  785. Me.B17_tb.Name = "B17_tb"
  786. Me.B17_tb.Size = New System.Drawing.Size(163, 16)
  787. Me.B17_tb.TabIndex = 1770
  788. Me.B17_tb.Text = "Uraian Pekerjaan"
  789. '
  790. 'B16_tb
  791. '
  792. Me.B16_tb.BackColor = System.Drawing.Color.LightGray
  793. Me.B16_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  794. Me.B16_tb.Enabled = False
  795. Me.B16_tb.Location = New System.Drawing.Point(10, 286)
  796. Me.B16_tb.Name = "B16_tb"
  797. Me.B16_tb.Size = New System.Drawing.Size(163, 16)
  798. Me.B16_tb.TabIndex = 1769
  799. Me.B16_tb.Text = "No Kontrak"
  800. '
  801. 'B15_tb
  802. '
  803. Me.B15_tb.BackColor = System.Drawing.Color.LightGray
  804. Me.B15_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  805. Me.B15_tb.Enabled = False
  806. Me.B15_tb.Location = New System.Drawing.Point(10, 257)
  807. Me.B15_tb.Name = "B15_tb"
  808. Me.B15_tb.Size = New System.Drawing.Size(396, 16)
  809. Me.B15_tb.TabIndex = 1768
  810. Me.B15_tb.Text = "Yang selanjutnya disebut sebagai Pihak Kedua (II)"
  811. Me.B15_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  812. '
  813. 'B14_tb
  814. '
  815. Me.B14_tb.BackColor = System.Drawing.Color.LightGray
  816. Me.B14_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  817. Me.B14_tb.ForeColor = System.Drawing.Color.Red
  818. Me.B14_tb.Location = New System.Drawing.Point(140, 203)
  819. Me.B14_tb.Multiline = True
  820. Me.B14_tb.Name = "B14_tb"
  821. Me.B14_tb.Size = New System.Drawing.Size(499, 47)
  822. Me.B14_tb.TabIndex = 1767
  823. Me.B14_tb.Text = "Kawasan Industri Terpadu Indonesia China ( KITIC ) Kav. 42 Lantai 4 Desa Nagasari" &
  824. " Kec. Serang Baru Kab. Bekasi – Jawa Barat"
  825. '
  826. 'B13_tb
  827. '
  828. Me.B13_tb.BackColor = System.Drawing.Color.LightGray
  829. Me.B13_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  830. Me.B13_tb.Enabled = False
  831. Me.B13_tb.Location = New System.Drawing.Point(10, 203)
  832. Me.B13_tb.Name = "B13_tb"
  833. Me.B13_tb.Size = New System.Drawing.Size(131, 16)
  834. Me.B13_tb.TabIndex = 1766
  835. Me.B13_tb.Text = "Alamat perusahaan : "
  836. Me.B13_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  837. '
  838. 'B12_tb
  839. '
  840. Me.B12_tb.BackColor = System.Drawing.Color.LightGray
  841. Me.B12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  842. Me.B12_tb.ForeColor = System.Drawing.Color.Red
  843. Me.B12_tb.Location = New System.Drawing.Point(140, 174)
  844. Me.B12_tb.Name = "B12_tb"
  845. Me.B12_tb.Size = New System.Drawing.Size(499, 16)
  846. Me.B12_tb.TabIndex = 1765
  847. Me.B12_tb.Text = "PT. PUNCAK GEMILANG SEMESTA"
  848. '
  849. 'B11_tb
  850. '
  851. Me.B11_tb.BackColor = System.Drawing.Color.LightGray
  852. Me.B11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  853. Me.B11_tb.Enabled = False
  854. Me.B11_tb.Location = New System.Drawing.Point(10, 174)
  855. Me.B11_tb.Name = "B11_tb"
  856. Me.B11_tb.Size = New System.Drawing.Size(131, 16)
  857. Me.B11_tb.TabIndex = 1764
  858. Me.B11_tb.Text = "Perusahaan : "
  859. Me.B11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  860. '
  861. 'B10_tb
  862. '
  863. Me.B10_tb.BackColor = System.Drawing.Color.LightGray
  864. Me.B10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  865. Me.B10_tb.Enabled = False
  866. Me.B10_tb.Location = New System.Drawing.Point(10, 145)
  867. Me.B10_tb.Name = "B10_tb"
  868. Me.B10_tb.Size = New System.Drawing.Size(396, 16)
  869. Me.B10_tb.TabIndex = 1763
  870. Me.B10_tb.Text = "Yang selanjutnya disebut sebagai Pihak Kesatu (I)"
  871. Me.B10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  872. '
  873. 'B09_tb
  874. '
  875. Me.B09_tb.BackColor = System.Drawing.Color.LightGray
  876. Me.B09_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  877. Me.B09_tb.ForeColor = System.Drawing.Color.Red
  878. Me.B09_tb.Location = New System.Drawing.Point(140, 91)
  879. Me.B09_tb.Multiline = True
  880. Me.B09_tb.Name = "B09_tb"
  881. Me.B09_tb.Size = New System.Drawing.Size(499, 47)
  882. Me.B09_tb.TabIndex = 1762
  883. Me.B09_tb.Text = "Jl. Raya kasokandel km 45, Desa Kasokandel , Kec.Kasokandel, Kab.Majalengka, Jawa" &
  884. " Barat"
  885. '
  886. 'B08_tb
  887. '
  888. Me.B08_tb.BackColor = System.Drawing.Color.LightGray
  889. Me.B08_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  890. Me.B08_tb.Enabled = False
  891. Me.B08_tb.Location = New System.Drawing.Point(10, 91)
  892. Me.B08_tb.Name = "B08_tb"
  893. Me.B08_tb.Size = New System.Drawing.Size(131, 16)
  894. Me.B08_tb.TabIndex = 1761
  895. Me.B08_tb.Text = "Alamat perusahaan : "
  896. Me.B08_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  897. '
  898. 'B07_tb
  899. '
  900. Me.B07_tb.BackColor = System.Drawing.Color.LightGray
  901. Me.B07_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  902. Me.B07_tb.ForeColor = System.Drawing.Color.Red
  903. Me.B07_tb.Location = New System.Drawing.Point(140, 62)
  904. Me.B07_tb.Name = "B07_tb"
  905. Me.B07_tb.Size = New System.Drawing.Size(499, 16)
  906. Me.B07_tb.TabIndex = 1760
  907. Me.B07_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
  908. '
  909. 'B06_tb
  910. '
  911. Me.B06_tb.BackColor = System.Drawing.Color.LightGray
  912. Me.B06_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  913. Me.B06_tb.Enabled = False
  914. Me.B06_tb.Location = New System.Drawing.Point(10, 62)
  915. Me.B06_tb.Name = "B06_tb"
  916. Me.B06_tb.Size = New System.Drawing.Size(131, 16)
  917. Me.B06_tb.TabIndex = 1759
  918. Me.B06_tb.Text = "Perusahaan : "
  919. Me.B06_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  920. '
  921. 'B05_tb
  922. '
  923. Me.B05_tb.BackColor = System.Drawing.Color.LightGray
  924. Me.B05_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  925. Me.B05_tb.Enabled = False
  926. Me.B05_tb.Location = New System.Drawing.Point(215, 33)
  927. Me.B05_tb.Name = "B05_tb"
  928. Me.B05_tb.Size = New System.Drawing.Size(424, 16)
  929. Me.B05_tb.TabIndex = 1758
  930. Me.B05_tb.Text = ", telah diterbitkan berita acara pekerjaan antara kami yang diwakilkan :"
  931. Me.B05_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  932. '
  933. 'B04_tb
  934. '
  935. Me.B04_tb.BackColor = System.Drawing.Color.LightGray
  936. Me.B04_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  937. Me.B04_tb.ForeColor = System.Drawing.Color.Red
  938. Me.B04_tb.Location = New System.Drawing.Point(172, 33)
  939. Me.B04_tb.Name = "B04_tb"
  940. Me.B04_tb.Size = New System.Drawing.Size(44, 16)
  941. Me.B04_tb.TabIndex = 1757
  942. Me.B04_tb.Text = "2022"
  943. Me.B04_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  944. '
  945. 'B03_tb
  946. '
  947. Me.B03_tb.BackColor = System.Drawing.Color.LightGray
  948. Me.B03_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  949. Me.B03_tb.ForeColor = System.Drawing.Color.Red
  950. Me.B03_tb.Location = New System.Drawing.Point(129, 33)
  951. Me.B03_tb.Name = "B03_tb"
  952. Me.B03_tb.Size = New System.Drawing.Size(44, 16)
  953. Me.B03_tb.TabIndex = 1756
  954. Me.B03_tb.Text = "Nov"
  955. Me.B03_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  956. '
  957. 'B02_tb
  958. '
  959. Me.B02_tb.BackColor = System.Drawing.Color.LightGray
  960. Me.B02_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  961. Me.B02_tb.ForeColor = System.Drawing.Color.Red
  962. Me.B02_tb.Location = New System.Drawing.Point(99, 33)
  963. Me.B02_tb.Name = "B02_tb"
  964. Me.B02_tb.Size = New System.Drawing.Size(31, 16)
  965. Me.B02_tb.TabIndex = 1755
  966. Me.B02_tb.Text = "7"
  967. Me.B02_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  968. '
  969. 'B01_tb
  970. '
  971. Me.B01_tb.BackColor = System.Drawing.Color.LightGray
  972. Me.B01_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  973. Me.B01_tb.Enabled = False
  974. Me.B01_tb.Location = New System.Drawing.Point(10, 33)
  975. Me.B01_tb.Name = "B01_tb"
  976. Me.B01_tb.Size = New System.Drawing.Size(90, 16)
  977. Me.B01_tb.TabIndex = 1754
  978. Me.B01_tb.Text = "Pada hari ini ,"
  979. Me.B01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  980. '
  981. 'A01_lb
  982. '
  983. Me.A01_lb.AutoSize = True
  984. Me.A01_lb.BackColor = System.Drawing.Color.LightGray
  985. Me.A01_lb.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  986. Me.A01_lb.Location = New System.Drawing.Point(140, 1)
  987. Me.A01_lb.Name = "A01_lb"
  988. Me.A01_lb.Size = New System.Drawing.Size(374, 24)
  989. Me.A01_lb.TabIndex = 1753
  990. Me.A01_lb.Text = "BERITA ACARA SERAH TERIMA PERTAMA"
  991. Me.A01_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  992. '
  993. '視窗2_pl
  994. '
  995. Me.視窗2_pl.BackColor = System.Drawing.Color.White
  996. Me.視窗2_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  997. Me.視窗2_pl.Controls.Add(Me.Panel3)
  998. Me.視窗2_pl.Controls.Add(Me.Label55)
  999. Me.視窗2_pl.Controls.Add(Me.CanceL2_bt)
  1000. Me.視窗2_pl.Location = New System.Drawing.Point(73, 4)
  1001. Me.視窗2_pl.Name = "視窗2_pl"
  1002. Me.視窗2_pl.Size = New System.Drawing.Size(650, 645)
  1003. Me.視窗2_pl.TabIndex = 1905
  1004. '
  1005. 'Label55
  1006. '
  1007. Me.Label55.AutoSize = True
  1008. Me.Label55.Location = New System.Drawing.Point(5, 7)
  1009. Me.Label55.Name = "Label55"
  1010. Me.Label55.Size = New System.Drawing.Size(67, 16)
  1011. Me.Label55.TabIndex = 1375
  1012. Me.Label55.Text = "報告轉移單"
  1013. '
  1014. 'CanceL2_bt
  1015. '
  1016. Me.CanceL2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1017. Me.CanceL2_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  1018. Me.CanceL2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1019. Me.CanceL2_bt.ForeColor = System.Drawing.Color.Black
  1020. Me.CanceL2_bt.Location = New System.Drawing.Point(618, 2)
  1021. Me.CanceL2_bt.Name = "CanceL2_bt"
  1022. Me.CanceL2_bt.Size = New System.Drawing.Size(26, 26)
  1023. Me.CanceL2_bt.TabIndex = 1374
  1024. Me.CanceL2_bt.Text = "X"
  1025. Me.CanceL2_bt.UseVisualStyleBackColor = False
  1026. '
  1027. '請款單_ch
  1028. '
  1029. Me.請款單_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1030. Me.請款單_ch.AutoSize = True
  1031. Me.請款單_ch.Checked = True
  1032. Me.請款單_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1033. Me.請款單_ch.Location = New System.Drawing.Point(1104, 417)
  1034. Me.請款單_ch.Name = "請款單_ch"
  1035. Me.請款單_ch.Size = New System.Drawing.Size(62, 20)
  1036. Me.請款單_ch.TabIndex = 1908
  1037. Me.請款單_ch.Text = "請款單"
  1038. Me.請款單_ch.UseVisualStyleBackColor = True
  1039. '
  1040. '存檔_tb
  1041. '
  1042. Me.存檔_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1043. Me.存檔_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1044. Me.存檔_tb.ForeColor = System.Drawing.Color.Green
  1045. Me.存檔_tb.Location = New System.Drawing.Point(814, 429)
  1046. Me.存檔_tb.Name = "存檔_tb"
  1047. Me.存檔_tb.Size = New System.Drawing.Size(105, 25)
  1048. Me.存檔_tb.TabIndex = 1901
  1049. Me.存檔_tb.Text = "明細存檔"
  1050. Me.存檔_tb.UseVisualStyleBackColor = True
  1051. '
  1052. '付款期限_cb
  1053. '
  1054. Me.付款期限_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1055. Me.付款期限_cb.FormattingEnabled = True
  1056. Me.付款期限_cb.Items.AddRange(New Object() {"", "1 DAY (天)", "2 DAY (天)", "3 DAY (天)", "4 DAY (天)", "5 DAY (天)", "6 DAY (天)", "7 DAY (天)", "8 DAY (天)", "9 DAY (天)", "10 DAY (天)", "11 DAY (天)", "12 DAY (天)", "13 DAY (天)", "14 DAY (天)", "15 DAY (天)"})
  1057. Me.付款期限_cb.Location = New System.Drawing.Point(982, 391)
  1058. Me.付款期限_cb.Name = "付款期限_cb"
  1059. Me.付款期限_cb.Size = New System.Drawing.Size(184, 24)
  1060. Me.付款期限_cb.TabIndex = 1895
  1061. '
  1062. 'Label46
  1063. '
  1064. Me.Label46.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1065. Me.Label46.AutoSize = True
  1066. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1067. Me.Label46.ForeColor = System.Drawing.Color.Black
  1068. Me.Label46.Location = New System.Drawing.Point(925, 395)
  1069. Me.Label46.Name = "Label46"
  1070. Me.Label46.Size = New System.Drawing.Size(55, 16)
  1071. Me.Label46.TabIndex = 1894
  1072. Me.Label46.Text = "付款期限"
  1073. Me.Label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1074. '
  1075. 'Label414
  1076. '
  1077. Me.Label414.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1078. Me.Label414.AutoSize = True
  1079. Me.Label414.ForeColor = System.Drawing.Color.Black
  1080. Me.Label414.Location = New System.Drawing.Point(1172, 396)
  1081. Me.Label414.Name = "Label414"
  1082. Me.Label414.Size = New System.Drawing.Size(55, 16)
  1083. Me.Label414.TabIndex = 1893
  1084. Me.Label414.Text = "申請日期"
  1085. '
  1086. '申請日期_dtp
  1087. '
  1088. Me.申請日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1089. Me.申請日期_dtp.CustomFormat = "yyyy/MM/dd"
  1090. Me.申請日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  1091. Me.申請日期_dtp.Location = New System.Drawing.Point(1230, 392)
  1092. Me.申請日期_dtp.Name = "申請日期_dtp"
  1093. Me.申請日期_dtp.Size = New System.Drawing.Size(111, 23)
  1094. Me.申請日期_dtp.TabIndex = 1892
  1095. '
  1096. '請款金額_nud
  1097. '
  1098. Me.請款金額_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1099. Me.請款金額_nud.Location = New System.Drawing.Point(982, 366)
  1100. Me.請款金額_nud.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1101. Me.請款金額_nud.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  1102. Me.請款金額_nud.Name = "請款金額_nud"
  1103. Me.請款金額_nud.Size = New System.Drawing.Size(142, 23)
  1104. Me.請款金額_nud.TabIndex = 1890
  1105. Me.請款金額_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1106. Me.請款金額_nud.ThousandsSeparator = True
  1107. '
  1108. 'Label45
  1109. '
  1110. Me.Label45.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1111. Me.Label45.AutoSize = True
  1112. Me.Label45.ForeColor = System.Drawing.Color.Black
  1113. Me.Label45.Location = New System.Drawing.Point(925, 370)
  1114. Me.Label45.Name = "Label45"
  1115. Me.Label45.Size = New System.Drawing.Size(55, 16)
  1116. Me.Label45.TabIndex = 1891
  1117. Me.Label45.Text = "未稅總額"
  1118. '
  1119. '請款總額_nud
  1120. '
  1121. Me.請款總額_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1122. Me.請款總額_nud.Location = New System.Drawing.Point(1199, 366)
  1123. Me.請款總額_nud.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1124. Me.請款總額_nud.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  1125. Me.請款總額_nud.Name = "請款總額_nud"
  1126. Me.請款總額_nud.Size = New System.Drawing.Size(142, 23)
  1127. Me.請款總額_nud.TabIndex = 1888
  1128. Me.請款總額_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1129. Me.請款總額_nud.ThousandsSeparator = True
  1130. '
  1131. 'Label44
  1132. '
  1133. Me.Label44.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1134. Me.Label44.AutoSize = True
  1135. Me.Label44.ForeColor = System.Drawing.Color.Black
  1136. Me.Label44.Location = New System.Drawing.Point(1142, 370)
  1137. Me.Label44.Name = "Label44"
  1138. Me.Label44.Size = New System.Drawing.Size(55, 16)
  1139. Me.Label44.TabIndex = 1889
  1140. Me.Label44.Text = "含稅總額"
  1141. '
  1142. '稅金_nud
  1143. '
  1144. Me.稅金_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1145. Me.稅金_nud.Location = New System.Drawing.Point(1301, 341)
  1146. Me.稅金_nud.Name = "稅金_nud"
  1147. Me.稅金_nud.Size = New System.Drawing.Size(40, 23)
  1148. Me.稅金_nud.TabIndex = 1887
  1149. Me.稅金_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1150. Me.稅金_nud.ThousandsSeparator = True
  1151. Me.稅金_nud.Value = New Decimal(New Integer() {10, 0, 0, 0})
  1152. '
  1153. 'Label43
  1154. '
  1155. Me.Label43.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1156. Me.Label43.AutoSize = True
  1157. Me.Label43.ForeColor = System.Drawing.Color.Black
  1158. Me.Label43.Location = New System.Drawing.Point(1269, 344)
  1159. Me.Label43.Name = "Label43"
  1160. Me.Label43.Size = New System.Drawing.Size(31, 16)
  1161. Me.Label43.TabIndex = 1886
  1162. Me.Label43.Text = "稅金"
  1163. '
  1164. '請款內容_tb
  1165. '
  1166. Me.請款內容_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1167. Me.請款內容_tb.Location = New System.Drawing.Point(924, 456)
  1168. Me.請款內容_tb.Multiline = True
  1169. Me.請款內容_tb.Name = "請款內容_tb"
  1170. Me.請款內容_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1171. Me.請款內容_tb.Size = New System.Drawing.Size(417, 91)
  1172. Me.請款內容_tb.TabIndex = 1884
  1173. '
  1174. 'Label42
  1175. '
  1176. Me.Label42.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1177. Me.Label42.AutoSize = True
  1178. Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1179. Me.Label42.Location = New System.Drawing.Point(927, 438)
  1180. Me.Label42.Name = "Label42"
  1181. Me.Label42.Size = New System.Drawing.Size(193, 16)
  1182. Me.Label42.TabIndex = 1885
  1183. Me.Label42.Text = "本次請款內容: Deskripsi Tagihan"
  1184. Me.Label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1185. '
  1186. '請款單號_tb
  1187. '
  1188. Me.請款單號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1189. Me.請款單號_tb.Enabled = False
  1190. Me.請款單號_tb.Location = New System.Drawing.Point(982, 341)
  1191. Me.請款單號_tb.Name = "請款單號_tb"
  1192. Me.請款單號_tb.Size = New System.Drawing.Size(94, 23)
  1193. Me.請款單號_tb.TabIndex = 1880
  1194. '
  1195. '比例_nud
  1196. '
  1197. Me.比例_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1198. Me.比例_nud.DecimalPlaces = 2
  1199. Me.比例_nud.Location = New System.Drawing.Point(1212, 341)
  1200. Me.比例_nud.Name = "比例_nud"
  1201. Me.比例_nud.Size = New System.Drawing.Size(55, 23)
  1202. Me.比例_nud.TabIndex = 1879
  1203. Me.比例_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1204. Me.比例_nud.ThousandsSeparator = True
  1205. '
  1206. 'Label38
  1207. '
  1208. Me.Label38.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1209. Me.Label38.AutoSize = True
  1210. Me.Label38.ForeColor = System.Drawing.Color.Black
  1211. Me.Label38.Location = New System.Drawing.Point(1180, 344)
  1212. Me.Label38.Name = "Label38"
  1213. Me.Label38.Size = New System.Drawing.Size(31, 16)
  1214. Me.Label38.TabIndex = 1878
  1215. Me.Label38.Text = "比例"
  1216. '
  1217. '其他意見_tb
  1218. '
  1219. Me.其他意見_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1220. Me.其他意見_tb.Location = New System.Drawing.Point(924, 564)
  1221. Me.其他意見_tb.Multiline = True
  1222. Me.其他意見_tb.Name = "其他意見_tb"
  1223. Me.其他意見_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
  1224. Me.其他意見_tb.Size = New System.Drawing.Size(417, 114)
  1225. Me.其他意見_tb.TabIndex = 1876
  1226. '
  1227. 'Label39
  1228. '
  1229. Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1230. Me.Label39.AutoSize = True
  1231. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1232. Me.Label39.Location = New System.Drawing.Point(927, 550)
  1233. Me.Label39.Name = "Label39"
  1234. Me.Label39.Size = New System.Drawing.Size(362, 16)
  1235. Me.Label39.TabIndex = 1877
  1236. Me.Label39.Text = "籌建辦審批意見: Komentar Penyetuju Kantor Konstruksi Umum "
  1237. Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1238. '
  1239. '請款單_dgv
  1240. '
  1241. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1242. Me.請款單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  1243. Me.請款單_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1244. Or System.Windows.Forms.AnchorStyles.Left) _
  1245. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1246. Me.請款單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1247. Me.請款單_dgv.BackgroundColor = System.Drawing.Color.White
  1248. Me.請款單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1249. Me.請款單_dgv.Location = New System.Drawing.Point(924, 5)
  1250. Me.請款單_dgv.Name = "請款單_dgv"
  1251. Me.請款單_dgv.RowHeadersWidth = 5
  1252. Me.請款單_dgv.RowTemplate.Height = 24
  1253. Me.請款單_dgv.Size = New System.Drawing.Size(417, 278)
  1254. Me.請款單_dgv.TabIndex = 1874
  1255. '
  1256. '請款期數_cb
  1257. '
  1258. Me.請款期數_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1259. Me.請款期數_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1260. Me.請款期數_cb.FormattingEnabled = True
  1261. Me.請款期數_cb.Items.AddRange(New Object() {"", "一", "二", "三", "四", "五"})
  1262. Me.請款期數_cb.Location = New System.Drawing.Point(1131, 340)
  1263. Me.請款期數_cb.Name = "請款期數_cb"
  1264. Me.請款期數_cb.Size = New System.Drawing.Size(48, 24)
  1265. Me.請款期數_cb.TabIndex = 1883
  1266. '
  1267. 'Label41
  1268. '
  1269. Me.Label41.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1270. Me.Label41.AutoSize = True
  1271. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1272. Me.Label41.ForeColor = System.Drawing.Color.Black
  1273. Me.Label41.Location = New System.Drawing.Point(1077, 344)
  1274. Me.Label41.Name = "Label41"
  1275. Me.Label41.Size = New System.Drawing.Size(55, 16)
  1276. Me.Label41.TabIndex = 1882
  1277. Me.Label41.Text = "請款期數"
  1278. Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1279. '
  1280. 'Label40
  1281. '
  1282. Me.Label40.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1283. Me.Label40.AutoSize = True
  1284. Me.Label40.BackColor = System.Drawing.SystemColors.Control
  1285. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1286. Me.Label40.Location = New System.Drawing.Point(925, 345)
  1287. Me.Label40.Name = "Label40"
  1288. Me.Label40.Size = New System.Drawing.Size(55, 16)
  1289. Me.Label40.TabIndex = 1881
  1290. Me.Label40.Text = "請款單號"
  1291. Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1292. '
  1293. 'Label22
  1294. '
  1295. Me.Label22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1296. Me.Label22.AutoSize = True
  1297. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1298. Me.Label22.Location = New System.Drawing.Point(917, 321)
  1299. Me.Label22.Name = "Label22"
  1300. Me.Label22.Size = New System.Drawing.Size(427, 16)
  1301. Me.Label22.TabIndex = 1900
  1302. Me.Label22.Text = "_________________________________________________________________________________" &
  1303. "___"
  1304. Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1305. '
  1306. '主頁明細_ch
  1307. '
  1308. Me.主頁明細_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1309. Me.主頁明細_ch.AutoSize = True
  1310. Me.主頁明細_ch.Location = New System.Drawing.Point(1009, 417)
  1311. Me.主頁明細_ch.Name = "主頁明細_ch"
  1312. Me.主頁明細_ch.Size = New System.Drawing.Size(74, 20)
  1313. Me.主頁明細_ch.TabIndex = 1902
  1314. Me.主頁明細_ch.Text = "主頁明細"
  1315. Me.主頁明細_ch.UseVisualStyleBackColor = True
  1316. '
  1317. '新版_ch
  1318. '
  1319. Me.新版_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1320. Me.新版_ch.AutoSize = True
  1321. Me.新版_ch.Location = New System.Drawing.Point(1295, 417)
  1322. Me.新版_ch.Name = "新版_ch"
  1323. Me.新版_ch.Size = New System.Drawing.Size(50, 20)
  1324. Me.新版_ch.TabIndex = 1909
  1325. Me.新版_ch.Text = "新版"
  1326. Me.新版_ch.UseVisualStyleBackColor = True
  1327. '
  1328. '主頁_ch
  1329. '
  1330. Me.主頁_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1331. Me.主頁_ch.AutoSize = True
  1332. Me.主頁_ch.Checked = True
  1333. Me.主頁_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1334. Me.主頁_ch.Location = New System.Drawing.Point(926, 417)
  1335. Me.主頁_ch.Name = "主頁_ch"
  1336. Me.主頁_ch.Size = New System.Drawing.Size(50, 20)
  1337. Me.主頁_ch.TabIndex = 1907
  1338. Me.主頁_ch.Text = "主頁"
  1339. Me.主頁_ch.UseVisualStyleBackColor = True
  1340. '
  1341. 'Panel1
  1342. '
  1343. Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1344. Me.Panel1.Controls.Add(Me.甲方_tb)
  1345. Me.Panel1.Controls.Add(Me.J2_PB)
  1346. Me.Panel1.Controls.Add(Me.JCS_PB)
  1347. Me.Panel1.Controls.Add(Me.DTP1)
  1348. Me.Panel1.Controls.Add(Me.PictureBox2)
  1349. Me.Panel1.Controls.Add(Me.PictureBox1)
  1350. Me.Panel1.Controls.Add(Me.報價總表_dgv)
  1351. Me.Panel1.Controls.Add(Me.工程期1_ch)
  1352. Me.Panel1.Controls.Add(Me.Label10)
  1353. Me.Panel1.Location = New System.Drawing.Point(699, 7)
  1354. Me.Panel1.Name = "Panel1"
  1355. Me.Panel1.Size = New System.Drawing.Size(543, 157)
  1356. Me.Panel1.TabIndex = 1875
  1357. Me.Panel1.Visible = False
  1358. '
  1359. '甲方_tb
  1360. '
  1361. Me.甲方_tb.Enabled = False
  1362. Me.甲方_tb.Location = New System.Drawing.Point(233, 128)
  1363. Me.甲方_tb.Name = "甲方_tb"
  1364. Me.甲方_tb.Size = New System.Drawing.Size(125, 23)
  1365. Me.甲方_tb.TabIndex = 1671
  1366. '
  1367. 'DTP1
  1368. '
  1369. Me.DTP1.CustomFormat = "yyyy/MM/dd"
  1370. Me.DTP1.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  1371. Me.DTP1.Location = New System.Drawing.Point(4, 128)
  1372. Me.DTP1.Name = "DTP1"
  1373. Me.DTP1.Size = New System.Drawing.Size(87, 23)
  1374. Me.DTP1.TabIndex = 1668
  1375. '
  1376. '報價總表_dgv
  1377. '
  1378. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1379. Me.報價總表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  1380. Me.報價總表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1381. Me.報價總表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1382. Me.報價總表_dgv.Location = New System.Drawing.Point(4, 2)
  1383. Me.報價總表_dgv.Name = "報價總表_dgv"
  1384. Me.報價總表_dgv.RowHeadersWidth = 5
  1385. Me.報價總表_dgv.RowTemplate.Height = 24
  1386. Me.報價總表_dgv.Size = New System.Drawing.Size(137, 124)
  1387. Me.報價總表_dgv.TabIndex = 1065
  1388. '
  1389. '工程期1_ch
  1390. '
  1391. Me.工程期1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1392. Me.工程期1_ch.ForeColor = System.Drawing.Color.Blue
  1393. Me.工程期1_ch.FormattingEnabled = True
  1394. Me.工程期1_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  1395. Me.工程期1_ch.Location = New System.Drawing.Point(154, 127)
  1396. Me.工程期1_ch.Name = "工程期1_ch"
  1397. Me.工程期1_ch.Size = New System.Drawing.Size(74, 24)
  1398. Me.工程期1_ch.TabIndex = 1428
  1399. '
  1400. 'Label10
  1401. '
  1402. Me.Label10.AutoSize = True
  1403. Me.Label10.BackColor = System.Drawing.SystemColors.Control
  1404. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1405. Me.Label10.Location = New System.Drawing.Point(97, 131)
  1406. Me.Label10.Name = "Label10"
  1407. Me.Label10.Size = New System.Drawing.Size(55, 16)
  1408. Me.Label10.TabIndex = 1429
  1409. Me.Label10.Text = "工程期數"
  1410. Me.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1411. '
  1412. '合約_dgv
  1413. '
  1414. DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1415. Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3
  1416. Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1417. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1418. Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1419. Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
  1420. Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1421. Me.合約_dgv.Location = New System.Drawing.Point(3, 54)
  1422. Me.合約_dgv.Name = "合約_dgv"
  1423. Me.合約_dgv.RowHeadersWidth = 5
  1424. Me.合約_dgv.RowTemplate.Height = 24
  1425. Me.合約_dgv.Size = New System.Drawing.Size(232, 623)
  1426. Me.合約_dgv.TabIndex = 1781
  1427. '
  1428. 'TabPage5
  1429. '
  1430. Me.TabPage5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1431. Me.TabPage5.Controls.Add(Me.第1期_dgv)
  1432. Me.TabPage5.Location = New System.Drawing.Point(4, 28)
  1433. Me.TabPage5.Name = "TabPage5"
  1434. Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
  1435. Me.TabPage5.Size = New System.Drawing.Size(682, 196)
  1436. Me.TabPage5.TabIndex = 0
  1437. Me.TabPage5.Text = "第一期"
  1438. Me.TabPage5.UseVisualStyleBackColor = True
  1439. '
  1440. '第1期_dgv
  1441. '
  1442. DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1443. Me.第1期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
  1444. Me.第1期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1445. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1446. Me.第1期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1447. Me.第1期_dgv.BackgroundColor = System.Drawing.Color.White
  1448. Me.第1期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1449. Me.第1期_dgv.Location = New System.Drawing.Point(1, 1)
  1450. Me.第1期_dgv.Name = "第1期_dgv"
  1451. Me.第1期_dgv.RowHeadersWidth = 5
  1452. Me.第1期_dgv.RowTemplate.Height = 24
  1453. Me.第1期_dgv.Size = New System.Drawing.Size(675, 178)
  1454. Me.第1期_dgv.TabIndex = 1038
  1455. '
  1456. 'TabPage6
  1457. '
  1458. Me.TabPage6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1459. Me.TabPage6.Controls.Add(Me.第2期_dgv)
  1460. Me.TabPage6.Location = New System.Drawing.Point(4, 28)
  1461. Me.TabPage6.Name = "TabPage6"
  1462. Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
  1463. Me.TabPage6.Size = New System.Drawing.Size(682, 196)
  1464. Me.TabPage6.TabIndex = 1
  1465. Me.TabPage6.Text = "第二期"
  1466. Me.TabPage6.UseVisualStyleBackColor = True
  1467. '
  1468. '第2期_dgv
  1469. '
  1470. DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1471. Me.第2期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
  1472. Me.第2期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1473. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1474. Me.第2期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1475. Me.第2期_dgv.BackgroundColor = System.Drawing.Color.White
  1476. Me.第2期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1477. Me.第2期_dgv.Location = New System.Drawing.Point(1, 1)
  1478. Me.第2期_dgv.Name = "第2期_dgv"
  1479. Me.第2期_dgv.RowHeadersWidth = 5
  1480. Me.第2期_dgv.RowTemplate.Height = 24
  1481. Me.第2期_dgv.Size = New System.Drawing.Size(675, 187)
  1482. Me.第2期_dgv.TabIndex = 1039
  1483. '
  1484. 'TabPage7
  1485. '
  1486. Me.TabPage7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1487. Me.TabPage7.Controls.Add(Me.第3期_dgv)
  1488. Me.TabPage7.Location = New System.Drawing.Point(4, 28)
  1489. Me.TabPage7.Name = "TabPage7"
  1490. Me.TabPage7.Padding = New System.Windows.Forms.Padding(3)
  1491. Me.TabPage7.Size = New System.Drawing.Size(682, 196)
  1492. Me.TabPage7.TabIndex = 2
  1493. Me.TabPage7.Text = "第三期"
  1494. Me.TabPage7.UseVisualStyleBackColor = True
  1495. '
  1496. '第3期_dgv
  1497. '
  1498. DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1499. Me.第3期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
  1500. Me.第3期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1501. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1502. Me.第3期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1503. Me.第3期_dgv.BackgroundColor = System.Drawing.Color.White
  1504. Me.第3期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1505. Me.第3期_dgv.Location = New System.Drawing.Point(1, 1)
  1506. Me.第3期_dgv.Name = "第3期_dgv"
  1507. Me.第3期_dgv.RowHeadersWidth = 5
  1508. Me.第3期_dgv.RowTemplate.Height = 24
  1509. Me.第3期_dgv.Size = New System.Drawing.Size(675, 187)
  1510. Me.第3期_dgv.TabIndex = 1040
  1511. '
  1512. 'TabPage8
  1513. '
  1514. Me.TabPage8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1515. Me.TabPage8.Controls.Add(Me.第4期_dgv)
  1516. Me.TabPage8.Location = New System.Drawing.Point(4, 28)
  1517. Me.TabPage8.Name = "TabPage8"
  1518. Me.TabPage8.Padding = New System.Windows.Forms.Padding(3)
  1519. Me.TabPage8.Size = New System.Drawing.Size(682, 196)
  1520. Me.TabPage8.TabIndex = 3
  1521. Me.TabPage8.Text = "第四期"
  1522. Me.TabPage8.UseVisualStyleBackColor = True
  1523. '
  1524. '第4期_dgv
  1525. '
  1526. DataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1527. Me.第4期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle7
  1528. Me.第4期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1529. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1530. Me.第4期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1531. Me.第4期_dgv.BackgroundColor = System.Drawing.Color.White
  1532. Me.第4期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1533. Me.第4期_dgv.Location = New System.Drawing.Point(1, 1)
  1534. Me.第4期_dgv.Name = "第4期_dgv"
  1535. Me.第4期_dgv.RowHeadersWidth = 5
  1536. Me.第4期_dgv.RowTemplate.Height = 24
  1537. Me.第4期_dgv.Size = New System.Drawing.Size(675, 187)
  1538. Me.第4期_dgv.TabIndex = 1041
  1539. '
  1540. 'TabPage9
  1541. '
  1542. Me.TabPage9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1543. Me.TabPage9.Controls.Add(Me.第5期_dgv)
  1544. Me.TabPage9.Location = New System.Drawing.Point(4, 28)
  1545. Me.TabPage9.Name = "TabPage9"
  1546. Me.TabPage9.Padding = New System.Windows.Forms.Padding(3)
  1547. Me.TabPage9.Size = New System.Drawing.Size(682, 196)
  1548. Me.TabPage9.TabIndex = 4
  1549. Me.TabPage9.Text = "第五期"
  1550. Me.TabPage9.UseVisualStyleBackColor = True
  1551. '
  1552. '第5期_dgv
  1553. '
  1554. DataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1555. Me.第5期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle8
  1556. Me.第5期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1557. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1558. Me.第5期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1559. Me.第5期_dgv.BackgroundColor = System.Drawing.Color.White
  1560. Me.第5期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1561. Me.第5期_dgv.Location = New System.Drawing.Point(1, 1)
  1562. Me.第5期_dgv.Name = "第5期_dgv"
  1563. Me.第5期_dgv.RowHeadersWidth = 5
  1564. Me.第5期_dgv.RowTemplate.Height = 24
  1565. Me.第5期_dgv.Size = New System.Drawing.Size(675, 187)
  1566. Me.第5期_dgv.TabIndex = 1042
  1567. '
  1568. 'Label37
  1569. '
  1570. Me.Label37.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1571. Me.Label37.AutoSize = True
  1572. Me.Label37.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1573. Me.Label37.Location = New System.Drawing.Point(241, 536)
  1574. Me.Label37.Name = "Label37"
  1575. Me.Label37.Size = New System.Drawing.Size(31, 16)
  1576. Me.Label37.TabIndex = 1873
  1577. Me.Label37.Text = "主要"
  1578. '
  1579. 'Label36
  1580. '
  1581. Me.Label36.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1582. Me.Label36.AutoSize = True
  1583. Me.Label36.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1584. Me.Label36.Location = New System.Drawing.Point(586, 536)
  1585. Me.Label36.Name = "Label36"
  1586. Me.Label36.Size = New System.Drawing.Size(31, 16)
  1587. Me.Label36.TabIndex = 1872
  1588. Me.Label36.Text = "其中"
  1589. '
  1590. 'Label35
  1591. '
  1592. Me.Label35.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1593. Me.Label35.AutoSize = True
  1594. Me.Label35.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1595. Me.Label35.Location = New System.Drawing.Point(586, 608)
  1596. Me.Label35.Name = "Label35"
  1597. Me.Label35.Size = New System.Drawing.Size(225, 16)
  1598. Me.Label35.TabIndex = 1867
  1599. Me.Label35.Text = "Installation Fee Application 施工請款 : "
  1600. '
  1601. 'Label34
  1602. '
  1603. Me.Label34.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1604. Me.Label34.AutoSize = True
  1605. Me.Label34.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1606. Me.Label34.Location = New System.Drawing.Point(586, 558)
  1607. Me.Label34.Name = "Label34"
  1608. Me.Label34.Size = New System.Drawing.Size(224, 16)
  1609. Me.Label34.TabIndex = 1863
  1610. Me.Label34.Text = "Prepayments 預付款 : "
  1611. '
  1612. 'Label19
  1613. '
  1614. Me.Label19.AutoSize = True
  1615. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1616. Me.Label19.Location = New System.Drawing.Point(686, 211)
  1617. Me.Label19.Name = "Label19"
  1618. Me.Label19.Size = New System.Drawing.Size(235, 16)
  1619. Me.Label19.TabIndex = 1823
  1620. Me.Label19.Text = "打完比例後,請按左鍵或右鍵金額才會計算"
  1621. Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1622. '
  1623. '明細選項_bt
  1624. '
  1625. Me.明細選項_bt.Enabled = False
  1626. Me.明細選項_bt.Location = New System.Drawing.Point(491, 205)
  1627. Me.明細選項_bt.Name = "明細選項_bt"
  1628. Me.明細選項_bt.Size = New System.Drawing.Size(46, 23)
  1629. Me.明細選項_bt.TabIndex = 1822
  1630. '
  1631. '刪除資料_bt
  1632. '
  1633. Me.刪除資料_bt.ForeColor = System.Drawing.Color.Red
  1634. Me.刪除資料_bt.Location = New System.Drawing.Point(612, 203)
  1635. Me.刪除資料_bt.Name = "刪除資料_bt"
  1636. Me.刪除資料_bt.Size = New System.Drawing.Size(75, 26)
  1637. Me.刪除資料_bt.TabIndex = 1821
  1638. Me.刪除資料_bt.Text = "刪除資料"
  1639. Me.刪除資料_bt.UseVisualStyleBackColor = True
  1640. '
  1641. '新增資料_bt
  1642. '
  1643. Me.新增資料_bt.ForeColor = System.Drawing.Color.Blue
  1644. Me.新增資料_bt.Location = New System.Drawing.Point(537, 203)
  1645. Me.新增資料_bt.Name = "新增資料_bt"
  1646. Me.新增資料_bt.Size = New System.Drawing.Size(75, 26)
  1647. Me.新增資料_bt.TabIndex = 1820
  1648. Me.新增資料_bt.Text = "新增資料"
  1649. Me.新增資料_bt.UseVisualStyleBackColor = True
  1650. '
  1651. '金額6_und
  1652. '
  1653. Me.金額6_und.Enabled = False
  1654. Me.金額6_und.Location = New System.Drawing.Point(814, 179)
  1655. Me.金額6_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1656. Me.金額6_und.Name = "金額6_und"
  1657. Me.金額6_und.Size = New System.Drawing.Size(105, 23)
  1658. Me.金額6_und.TabIndex = 1818
  1659. Me.金額6_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1660. Me.金額6_und.ThousandsSeparator = True
  1661. '
  1662. '工程款6_nud
  1663. '
  1664. Me.工程款6_nud.Enabled = False
  1665. Me.工程款6_nud.Location = New System.Drawing.Point(773, 179)
  1666. Me.工程款6_nud.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
  1667. Me.工程款6_nud.Name = "工程款6_nud"
  1668. Me.工程款6_nud.Size = New System.Drawing.Size(40, 23)
  1669. Me.工程款6_nud.TabIndex = 1817
  1670. Me.工程款6_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1671. Me.工程款6_nud.ThousandsSeparator = True
  1672. Me.工程款6_nud.Value = New Decimal(New Integer() {100, 0, 0, 0})
  1673. '
  1674. 'NUD2
  1675. '
  1676. Me.NUD2.Enabled = False
  1677. Me.NUD2.Location = New System.Drawing.Point(596, 126)
  1678. Me.NUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1679. Me.NUD2.Name = "NUD2"
  1680. Me.NUD2.Size = New System.Drawing.Size(105, 23)
  1681. Me.NUD2.TabIndex = 1797
  1682. Me.NUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1683. Me.NUD2.ThousandsSeparator = True
  1684. '
  1685. 'NUD1
  1686. '
  1687. Me.NUD1.Enabled = False
  1688. Me.NUD1.Location = New System.Drawing.Point(369, 126)
  1689. Me.NUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1690. Me.NUD1.Name = "NUD1"
  1691. Me.NUD1.Size = New System.Drawing.Size(105, 23)
  1692. Me.NUD1.TabIndex = 1796
  1693. Me.NUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1694. Me.NUD1.ThousandsSeparator = True
  1695. '
  1696. 'NUD3
  1697. '
  1698. Me.NUD3.Location = New System.Drawing.Point(815, 126)
  1699. Me.NUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1700. Me.NUD3.Name = "NUD3"
  1701. Me.NUD3.Size = New System.Drawing.Size(103, 23)
  1702. Me.NUD3.TabIndex = 1798
  1703. Me.NUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1704. Me.NUD3.ThousandsSeparator = True
  1705. '
  1706. '金額5_und
  1707. '
  1708. Me.金額5_und.Enabled = False
  1709. Me.金額5_und.Location = New System.Drawing.Point(814, 155)
  1710. Me.金額5_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1711. Me.金額5_und.Name = "金額5_und"
  1712. Me.金額5_und.Size = New System.Drawing.Size(105, 23)
  1713. Me.金額5_und.TabIndex = 1813
  1714. Me.金額5_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1715. Me.金額5_und.ThousandsSeparator = True
  1716. '
  1717. '金額4_und
  1718. '
  1719. Me.金額4_und.Enabled = False
  1720. Me.金額4_und.Location = New System.Drawing.Point(585, 179)
  1721. Me.金額4_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1722. Me.金額4_und.Name = "金額4_und"
  1723. Me.金額4_und.Size = New System.Drawing.Size(105, 23)
  1724. Me.金額4_und.TabIndex = 1812
  1725. Me.金額4_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1726. Me.金額4_und.ThousandsSeparator = True
  1727. '
  1728. '金額3_und
  1729. '
  1730. Me.金額3_und.Enabled = False
  1731. Me.金額3_und.Location = New System.Drawing.Point(585, 155)
  1732. Me.金額3_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1733. Me.金額3_und.Name = "金額3_und"
  1734. Me.金額3_und.Size = New System.Drawing.Size(105, 23)
  1735. Me.金額3_und.TabIndex = 1811
  1736. Me.金額3_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1737. Me.金額3_und.ThousandsSeparator = True
  1738. '
  1739. '金額2_und
  1740. '
  1741. Me.金額2_und.Enabled = False
  1742. Me.金額2_und.Location = New System.Drawing.Point(355, 179)
  1743. Me.金額2_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1744. Me.金額2_und.Name = "金額2_und"
  1745. Me.金額2_und.Size = New System.Drawing.Size(105, 23)
  1746. Me.金額2_und.TabIndex = 1810
  1747. Me.金額2_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1748. Me.金額2_und.ThousandsSeparator = True
  1749. '
  1750. '金額1_und
  1751. '
  1752. Me.金額1_und.Enabled = False
  1753. Me.金額1_und.Location = New System.Drawing.Point(355, 155)
  1754. Me.金額1_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  1755. Me.金額1_und.Name = "金額1_und"
  1756. Me.金額1_und.Size = New System.Drawing.Size(105, 23)
  1757. Me.金額1_und.TabIndex = 1809
  1758. Me.金額1_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1759. Me.金額1_und.ThousandsSeparator = True
  1760. '
  1761. '工程款5_nud
  1762. '
  1763. Me.工程款5_nud.Location = New System.Drawing.Point(773, 155)
  1764. Me.工程款5_nud.Name = "工程款5_nud"
  1765. Me.工程款5_nud.Size = New System.Drawing.Size(40, 23)
  1766. Me.工程款5_nud.TabIndex = 1808
  1767. Me.工程款5_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1768. Me.工程款5_nud.ThousandsSeparator = True
  1769. Me.工程款5_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  1770. '
  1771. '工程款4_nud
  1772. '
  1773. Me.工程款4_nud.Location = New System.Drawing.Point(544, 179)
  1774. Me.工程款4_nud.Name = "工程款4_nud"
  1775. Me.工程款4_nud.Size = New System.Drawing.Size(40, 23)
  1776. Me.工程款4_nud.TabIndex = 1807
  1777. Me.工程款4_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1778. Me.工程款4_nud.ThousandsSeparator = True
  1779. Me.工程款4_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
  1780. '
  1781. '工程款3_nud
  1782. '
  1783. Me.工程款3_nud.Location = New System.Drawing.Point(544, 155)
  1784. Me.工程款3_nud.Name = "工程款3_nud"
  1785. Me.工程款3_nud.Size = New System.Drawing.Size(40, 23)
  1786. Me.工程款3_nud.TabIndex = 1806
  1787. Me.工程款3_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1788. Me.工程款3_nud.ThousandsSeparator = True
  1789. Me.工程款3_nud.Value = New Decimal(New Integer() {20, 0, 0, 0})
  1790. '
  1791. '工程款1_nud
  1792. '
  1793. Me.工程款1_nud.Location = New System.Drawing.Point(314, 155)
  1794. Me.工程款1_nud.Name = "工程款1_nud"
  1795. Me.工程款1_nud.Size = New System.Drawing.Size(40, 23)
  1796. Me.工程款1_nud.TabIndex = 1804
  1797. Me.工程款1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1798. Me.工程款1_nud.ThousandsSeparator = True
  1799. Me.工程款1_nud.Value = New Decimal(New Integer() {30, 0, 0, 0})
  1800. '
  1801. '工程款2_nud
  1802. '
  1803. Me.工程款2_nud.Location = New System.Drawing.Point(314, 179)
  1804. Me.工程款2_nud.Name = "工程款2_nud"
  1805. Me.工程款2_nud.Size = New System.Drawing.Size(40, 23)
  1806. Me.工程款2_nud.TabIndex = 1805
  1807. Me.工程款2_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1808. Me.工程款2_nud.ThousandsSeparator = True
  1809. Me.工程款2_nud.Value = New Decimal(New Integer() {40, 0, 0, 0})
  1810. '
  1811. '稅額顯示_lb
  1812. '
  1813. Me.稅額顯示_lb.AutoSize = True
  1814. Me.稅額顯示_lb.ForeColor = System.Drawing.Color.Green
  1815. Me.稅額顯示_lb.Location = New System.Drawing.Point(479, 129)
  1816. Me.稅額顯示_lb.Name = "稅額顯示_lb"
  1817. Me.稅額顯示_lb.Size = New System.Drawing.Size(120, 16)
  1818. Me.稅額顯示_lb.TabIndex = 1795
  1819. Me.稅額顯示_lb.Text = "PPN 10%稅額 = Rp. "
  1820. '
  1821. 'CH2
  1822. '
  1823. Me.CH2.AutoSize = True
  1824. Me.CH2.ForeColor = System.Drawing.Color.Green
  1825. Me.CH2.Location = New System.Drawing.Point(708, 128)
  1826. Me.CH2.Name = "CH2"
  1827. Me.CH2.Size = New System.Drawing.Size(111, 20)
  1828. Me.CH2.TabIndex = 1815
  1829. Me.CH2.Text = "工程總價 = Rp. "
  1830. Me.CH2.UseVisualStyleBackColor = True
  1831. '
  1832. 'CH1
  1833. '
  1834. Me.CH1.AutoSize = True
  1835. Me.CH1.ForeColor = System.Drawing.Color.Green
  1836. Me.CH1.Location = New System.Drawing.Point(239, 128)
  1837. Me.CH1.Name = "CH1"
  1838. Me.CH1.Size = New System.Drawing.Size(135, 20)
  1839. Me.CH1.TabIndex = 1814
  1840. Me.CH1.Text = "分項工程報價 = Rp. "
  1841. Me.CH1.UseVisualStyleBackColor = True
  1842. '
  1843. 'Label386
  1844. '
  1845. Me.Label386.AutoSize = True
  1846. Me.Label386.ForeColor = System.Drawing.Color.Green
  1847. Me.Label386.Location = New System.Drawing.Point(694, 157)
  1848. Me.Label386.Name = "Label386"
  1849. Me.Label386.Size = New System.Drawing.Size(79, 16)
  1850. Me.Label386.TabIndex = 1803
  1851. Me.Label386.Text = "第五期工程款"
  1852. '
  1853. 'Label21
  1854. '
  1855. Me.Label21.AutoSize = True
  1856. Me.Label21.ForeColor = System.Drawing.Color.Green
  1857. Me.Label21.Location = New System.Drawing.Point(695, 181)
  1858. Me.Label21.Name = "Label21"
  1859. Me.Label21.Size = New System.Drawing.Size(79, 16)
  1860. Me.Label21.TabIndex = 1816
  1861. Me.Label21.Text = "工程款 總數"
  1862. '
  1863. 'TabControl2
  1864. '
  1865. Me.TabControl2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1866. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1867. Me.TabControl2.Appearance = System.Windows.Forms.TabAppearance.Buttons
  1868. Me.TabControl2.Controls.Add(Me.TabPage5)
  1869. Me.TabControl2.Controls.Add(Me.TabPage6)
  1870. Me.TabControl2.Controls.Add(Me.TabPage7)
  1871. Me.TabControl2.Controls.Add(Me.TabPage8)
  1872. Me.TabControl2.Controls.Add(Me.TabPage9)
  1873. Me.TabControl2.Location = New System.Drawing.Point(236, 205)
  1874. Me.TabControl2.Name = "TabControl2"
  1875. Me.TabControl2.SelectedIndex = 0
  1876. Me.TabControl2.Size = New System.Drawing.Size(690, 228)
  1877. Me.TabControl2.TabIndex = 1819
  1878. '
  1879. 'Label387
  1880. '
  1881. Me.Label387.AutoSize = True
  1882. Me.Label387.ForeColor = System.Drawing.Color.Green
  1883. Me.Label387.Location = New System.Drawing.Point(465, 182)
  1884. Me.Label387.Name = "Label387"
  1885. Me.Label387.Size = New System.Drawing.Size(79, 16)
  1886. Me.Label387.TabIndex = 1802
  1887. Me.Label387.Text = "第四期工程款"
  1888. '
  1889. 'Label372
  1890. '
  1891. Me.Label372.AutoSize = True
  1892. Me.Label372.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1893. Me.Label372.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1894. Me.Label372.Location = New System.Drawing.Point(466, 51)
  1895. Me.Label372.Name = "Label372"
  1896. Me.Label372.Size = New System.Drawing.Size(55, 16)
  1897. Me.Label372.TabIndex = 1793
  1898. Me.Label372.Text = "客戶名稱"
  1899. Me.Label372.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1900. '
  1901. '客戶名稱_tb
  1902. '
  1903. Me.客戶名稱_tb.FormattingEnabled = True
  1904. Me.客戶名稱_tb.Location = New System.Drawing.Point(528, 47)
  1905. Me.客戶名稱_tb.Name = "客戶名稱_tb"
  1906. Me.客戶名稱_tb.Size = New System.Drawing.Size(390, 24)
  1907. Me.客戶名稱_tb.TabIndex = 1794
  1908. '
  1909. 'Label375
  1910. '
  1911. Me.Label375.AutoSize = True
  1912. Me.Label375.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1913. Me.Label375.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1914. Me.Label375.Location = New System.Drawing.Point(241, 76)
  1915. Me.Label375.Name = "Label375"
  1916. Me.Label375.Size = New System.Drawing.Size(87, 16)
  1917. Me.Label375.TabIndex = 1789
  1918. Me.Label375.Text = "工程名稱(中文)"
  1919. Me.Label375.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1920. '
  1921. '工程名稱_中_tb
  1922. '
  1923. Me.工程名稱_中_tb.Location = New System.Drawing.Point(335, 73)
  1924. Me.工程名稱_中_tb.Name = "工程名稱_中_tb"
  1925. Me.工程名稱_中_tb.Size = New System.Drawing.Size(583, 23)
  1926. Me.工程名稱_中_tb.TabIndex = 1790
  1927. '
  1928. '工程名稱_英_tb
  1929. '
  1930. Me.工程名稱_英_tb.Location = New System.Drawing.Point(335, 97)
  1931. Me.工程名稱_英_tb.Name = "工程名稱_英_tb"
  1932. Me.工程名稱_英_tb.Size = New System.Drawing.Size(583, 23)
  1933. Me.工程名稱_英_tb.TabIndex = 1792
  1934. '
  1935. 'Label378
  1936. '
  1937. Me.Label378.AutoSize = True
  1938. Me.Label378.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1939. Me.Label378.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
  1940. Me.Label378.Location = New System.Drawing.Point(241, 100)
  1941. Me.Label378.Name = "Label378"
  1942. Me.Label378.Size = New System.Drawing.Size(87, 16)
  1943. Me.Label378.TabIndex = 1791
  1944. Me.Label378.Text = "工程名稱(英文)"
  1945. Me.Label378.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1946. '
  1947. 'Label2
  1948. '
  1949. Me.Label2.AutoSize = True
  1950. Me.Label2.BackColor = System.Drawing.SystemColors.Control
  1951. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1952. Me.Label2.Location = New System.Drawing.Point(240, 51)
  1953. Me.Label2.Name = "Label2"
  1954. Me.Label2.Size = New System.Drawing.Size(88, 16)
  1955. Me.Label2.TabIndex = 1788
  1956. Me.Label2.Text = "合 約 編 號"
  1957. Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1958. '
  1959. '合約編號_tb
  1960. '
  1961. Me.合約編號_tb.Enabled = False
  1962. Me.合約編號_tb.Location = New System.Drawing.Point(335, 48)
  1963. Me.合約編號_tb.Name = "合約編號_tb"
  1964. Me.合約編號_tb.Size = New System.Drawing.Size(125, 23)
  1965. Me.合約編號_tb.TabIndex = 1787
  1966. '
  1967. 'Label11
  1968. '
  1969. Me.Label11.AutoSize = True
  1970. Me.Label11.BackColor = System.Drawing.SystemColors.Control
  1971. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1972. Me.Label11.Location = New System.Drawing.Point(4, 33)
  1973. Me.Label11.Name = "Label11"
  1974. Me.Label11.Size = New System.Drawing.Size(31, 16)
  1975. Me.Label11.TabIndex = 1786
  1976. Me.Label11.Text = "甲方"
  1977. Me.Label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1978. '
  1979. '合約編號1_cb
  1980. '
  1981. Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1982. Me.合約編號1_cb.ForeColor = System.Drawing.Color.Blue
  1983. Me.合約編號1_cb.FormattingEnabled = True
  1984. Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  1985. Me.合約編號1_cb.Location = New System.Drawing.Point(36, 29)
  1986. Me.合約編號1_cb.Name = "合約編號1_cb"
  1987. Me.合約編號1_cb.Size = New System.Drawing.Size(155, 24)
  1988. Me.合約編號1_cb.TabIndex = 1785
  1989. '
  1990. 'Label7
  1991. '
  1992. Me.Label7.AutoSize = True
  1993. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1994. Me.Label7.Location = New System.Drawing.Point(3, 7)
  1995. Me.Label7.Name = "Label7"
  1996. Me.Label7.Size = New System.Drawing.Size(67, 16)
  1997. Me.Label7.TabIndex = 1783
  1998. Me.Label7.Text = "關鍵字搜尋"
  1999. Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2000. '
  2001. '關鍵字搜尋_tb
  2002. '
  2003. Me.關鍵字搜尋_tb.Location = New System.Drawing.Point(72, 4)
  2004. Me.關鍵字搜尋_tb.Name = "關鍵字搜尋_tb"
  2005. Me.關鍵字搜尋_tb.Size = New System.Drawing.Size(119, 23)
  2006. Me.關鍵字搜尋_tb.TabIndex = 1782
  2007. '
  2008. 'BNUD5
  2009. '
  2010. Me.BNUD5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2011. Me.BNUD5.Location = New System.Drawing.Point(813, 655)
  2012. Me.BNUD5.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2013. Me.BNUD5.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2014. Me.BNUD5.Name = "BNUD5"
  2015. Me.BNUD5.Size = New System.Drawing.Size(105, 23)
  2016. Me.BNUD5.TabIndex = 1870
  2017. Me.BNUD5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2018. Me.BNUD5.ThousandsSeparator = True
  2019. '
  2020. 'BNUD4
  2021. '
  2022. Me.BNUD4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2023. Me.BNUD4.Location = New System.Drawing.Point(813, 630)
  2024. Me.BNUD4.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2025. Me.BNUD4.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2026. Me.BNUD4.Name = "BNUD4"
  2027. Me.BNUD4.Size = New System.Drawing.Size(105, 23)
  2028. Me.BNUD4.TabIndex = 1868
  2029. Me.BNUD4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2030. Me.BNUD4.ThousandsSeparator = True
  2031. '
  2032. 'Label31
  2033. '
  2034. Me.Label31.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2035. Me.Label31.AutoSize = True
  2036. Me.Label31.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2037. Me.Label31.Location = New System.Drawing.Point(586, 634)
  2038. Me.Label31.Name = "Label31"
  2039. Me.Label31.Size = New System.Drawing.Size(225, 16)
  2040. Me.Label31.TabIndex = 1869
  2041. Me.Label31.Text = "Final Acceptance 驗收款 : "
  2042. '
  2043. 'Label32
  2044. '
  2045. Me.Label32.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2046. Me.Label32.AutoSize = True
  2047. Me.Label32.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2048. Me.Label32.ImageAlign = System.Drawing.ContentAlignment.TopLeft
  2049. Me.Label32.Location = New System.Drawing.Point(586, 658)
  2050. Me.Label32.Name = "Label32"
  2051. Me.Label32.Size = New System.Drawing.Size(226, 16)
  2052. Me.Label32.TabIndex = 1871
  2053. Me.Label32.Text = "Assure 保留款 : "
  2054. '
  2055. 'BNUD3
  2056. '
  2057. Me.BNUD3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2058. Me.BNUD3.Location = New System.Drawing.Point(813, 605)
  2059. Me.BNUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2060. Me.BNUD3.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2061. Me.BNUD3.Name = "BNUD3"
  2062. Me.BNUD3.Size = New System.Drawing.Size(105, 23)
  2063. Me.BNUD3.TabIndex = 1866
  2064. Me.BNUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2065. Me.BNUD3.ThousandsSeparator = True
  2066. '
  2067. 'BNUD2
  2068. '
  2069. Me.BNUD2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2070. Me.BNUD2.Location = New System.Drawing.Point(813, 580)
  2071. Me.BNUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2072. Me.BNUD2.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2073. Me.BNUD2.Name = "BNUD2"
  2074. Me.BNUD2.Size = New System.Drawing.Size(105, 23)
  2075. Me.BNUD2.TabIndex = 1864
  2076. Me.BNUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2077. Me.BNUD2.ThousandsSeparator = True
  2078. '
  2079. 'BNUD1
  2080. '
  2081. Me.BNUD1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2082. Me.BNUD1.Location = New System.Drawing.Point(813, 555)
  2083. Me.BNUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2084. Me.BNUD1.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2085. Me.BNUD1.Name = "BNUD1"
  2086. Me.BNUD1.Size = New System.Drawing.Size(105, 23)
  2087. Me.BNUD1.TabIndex = 1862
  2088. Me.BNUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2089. Me.BNUD1.ThousandsSeparator = True
  2090. '
  2091. 'Label33
  2092. '
  2093. Me.Label33.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2094. Me.Label33.AutoSize = True
  2095. Me.Label33.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2096. Me.Label33.Location = New System.Drawing.Point(586, 583)
  2097. Me.Label33.Name = "Label33"
  2098. Me.Label33.Size = New System.Drawing.Size(225, 16)
  2099. Me.Label33.TabIndex = 1865
  2100. Me.Label33.Text = "Material Cost Application 材料到貨款 : "
  2101. '
  2102. 'ANUD5
  2103. '
  2104. Me.ANUD5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2105. Me.ANUD5.Location = New System.Drawing.Point(435, 655)
  2106. Me.ANUD5.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2107. Me.ANUD5.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2108. Me.ANUD5.Name = "ANUD5"
  2109. Me.ANUD5.Size = New System.Drawing.Size(105, 23)
  2110. Me.ANUD5.TabIndex = 1860
  2111. Me.ANUD5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2112. Me.ANUD5.ThousandsSeparator = True
  2113. '
  2114. 'ANUD4
  2115. '
  2116. Me.ANUD4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2117. Me.ANUD4.Location = New System.Drawing.Point(435, 630)
  2118. Me.ANUD4.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2119. Me.ANUD4.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2120. Me.ANUD4.Name = "ANUD4"
  2121. Me.ANUD4.Size = New System.Drawing.Size(105, 23)
  2122. Me.ANUD4.TabIndex = 1858
  2123. Me.ANUD4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2124. Me.ANUD4.ThousandsSeparator = True
  2125. '
  2126. 'Label29
  2127. '
  2128. Me.Label29.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2129. Me.Label29.AutoSize = True
  2130. Me.Label29.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2131. Me.Label29.Location = New System.Drawing.Point(241, 633)
  2132. Me.Label29.Name = "Label29"
  2133. Me.Label29.Size = New System.Drawing.Size(196, 16)
  2134. Me.Label29.TabIndex = 1859
  2135. Me.Label29.Text = "已請款 (Requested):"
  2136. '
  2137. 'Label30
  2138. '
  2139. Me.Label30.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2140. Me.Label30.AutoSize = True
  2141. Me.Label30.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2142. Me.Label30.Location = New System.Drawing.Point(241, 658)
  2143. Me.Label30.Name = "Label30"
  2144. Me.Label30.Size = New System.Drawing.Size(190, 16)
  2145. Me.Label30.TabIndex = 1861
  2146. Me.Label30.Text = "剩餘款 (Remaining) :"
  2147. '
  2148. 'ANUD3
  2149. '
  2150. Me.ANUD3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2151. Me.ANUD3.Location = New System.Drawing.Point(435, 605)
  2152. Me.ANUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2153. Me.ANUD3.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2154. Me.ANUD3.Name = "ANUD3"
  2155. Me.ANUD3.Size = New System.Drawing.Size(105, 23)
  2156. Me.ANUD3.TabIndex = 1856
  2157. Me.ANUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2158. Me.ANUD3.ThousandsSeparator = True
  2159. '
  2160. 'ANUD2
  2161. '
  2162. Me.ANUD2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2163. Me.ANUD2.Location = New System.Drawing.Point(435, 580)
  2164. Me.ANUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2165. Me.ANUD2.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2166. Me.ANUD2.Name = "ANUD2"
  2167. Me.ANUD2.Size = New System.Drawing.Size(105, 23)
  2168. Me.ANUD2.TabIndex = 1854
  2169. Me.ANUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2170. Me.ANUD2.ThousandsSeparator = True
  2171. '
  2172. 'ANUD1
  2173. '
  2174. Me.ANUD1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2175. Me.ANUD1.Location = New System.Drawing.Point(435, 555)
  2176. Me.ANUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2177. Me.ANUD1.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2178. Me.ANUD1.Name = "ANUD1"
  2179. Me.ANUD1.Size = New System.Drawing.Size(105, 23)
  2180. Me.ANUD1.TabIndex = 1852
  2181. Me.ANUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2182. Me.ANUD1.ThousandsSeparator = True
  2183. '
  2184. 'Label26
  2185. '
  2186. Me.Label26.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2187. Me.Label26.AutoSize = True
  2188. Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2189. Me.Label26.Location = New System.Drawing.Point(241, 583)
  2190. Me.Label26.Name = "Label26"
  2191. Me.Label26.Size = New System.Drawing.Size(195, 16)
  2192. Me.Label26.TabIndex = 1855
  2193. Me.Label26.Text = "結算金額 (Settlement amount):"
  2194. '
  2195. 'Label27
  2196. '
  2197. Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2198. Me.Label27.AutoSize = True
  2199. Me.Label27.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2200. Me.Label27.Location = New System.Drawing.Point(241, 558)
  2201. Me.Label27.Name = "Label27"
  2202. Me.Label27.Size = New System.Drawing.Size(194, 16)
  2203. Me.Label27.TabIndex = 1853
  2204. Me.Label27.Text = "合約金額 (Contract amount):"
  2205. '
  2206. 'Label28
  2207. '
  2208. Me.Label28.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2209. Me.Label28.AutoSize = True
  2210. Me.Label28.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2211. Me.Label28.Location = New System.Drawing.Point(241, 608)
  2212. Me.Label28.Name = "Label28"
  2213. Me.Label28.Size = New System.Drawing.Size(195, 16)
  2214. Me.Label28.TabIndex = 1857
  2215. Me.Label28.Text = "實際追加減 (Add to):"
  2216. '
  2217. 'Label12
  2218. '
  2219. Me.Label12.AutoSize = True
  2220. Me.Label12.Location = New System.Drawing.Point(829, 8)
  2221. Me.Label12.Name = "Label12"
  2222. Me.Label12.Size = New System.Drawing.Size(73, 16)
  2223. Me.Label12.TabIndex = 1850
  2224. Me.Label12.Text = "SOP7 - 保固"
  2225. '
  2226. 'Label20
  2227. '
  2228. Me.Label20.AutoSize = True
  2229. Me.Label20.Location = New System.Drawing.Point(696, 8)
  2230. Me.Label20.Name = "Label20"
  2231. Me.Label20.Size = New System.Drawing.Size(73, 16)
  2232. Me.Label20.TabIndex = 1849
  2233. Me.Label20.Text = "SOP6 - 驗收"
  2234. '
  2235. 'Label13
  2236. '
  2237. Me.Label13.AutoSize = True
  2238. Me.Label13.Location = New System.Drawing.Point(541, 7)
  2239. Me.Label13.Name = "Label13"
  2240. Me.Label13.Size = New System.Drawing.Size(73, 16)
  2241. Me.Label13.TabIndex = 1848
  2242. Me.Label13.Text = "SOP5 - 施工"
  2243. '
  2244. 'Label23
  2245. '
  2246. Me.Label23.AutoSize = True
  2247. Me.Label23.Location = New System.Drawing.Point(410, 7)
  2248. Me.Label23.Name = "Label23"
  2249. Me.Label23.Size = New System.Drawing.Size(73, 16)
  2250. Me.Label23.TabIndex = 1847
  2251. Me.Label23.Text = "SOP4 - 到料"
  2252. '
  2253. 'Label24
  2254. '
  2255. Me.Label24.AutoSize = True
  2256. Me.Label24.Location = New System.Drawing.Point(276, 7)
  2257. Me.Label24.Name = "Label24"
  2258. Me.Label24.Size = New System.Drawing.Size(73, 16)
  2259. Me.Label24.TabIndex = 1846
  2260. Me.Label24.Text = "SOP3 - 收訂"
  2261. '
  2262. 'Label15
  2263. '
  2264. Me.Label15.AutoSize = True
  2265. Me.Label15.Location = New System.Drawing.Point(829, 23)
  2266. Me.Label15.Name = "Label15"
  2267. Me.Label15.Size = New System.Drawing.Size(54, 16)
  2268. Me.Label15.TabIndex = 1845
  2269. Me.Label15.Text = "Jaminan"
  2270. '
  2271. 'Label14
  2272. '
  2273. Me.Label14.AutoSize = True
  2274. Me.Label14.Location = New System.Drawing.Point(696, 23)
  2275. Me.Label14.Name = "Label14"
  2276. Me.Label14.Size = New System.Drawing.Size(51, 16)
  2277. Me.Label14.TabIndex = 1844
  2278. Me.Label14.Text = "Inspeksi"
  2279. '
  2280. 'Label16
  2281. '
  2282. Me.Label16.AutoSize = True
  2283. Me.Label16.Location = New System.Drawing.Point(541, 23)
  2284. Me.Label16.Name = "Label16"
  2285. Me.Label16.Size = New System.Drawing.Size(109, 16)
  2286. Me.Label16.TabIndex = 1843
  2287. Me.Label16.Text = "Konstruksi Dimulai"
  2288. '
  2289. 'Label17
  2290. '
  2291. Me.Label17.AutoSize = True
  2292. Me.Label17.Location = New System.Drawing.Point(410, 23)
  2293. Me.Label17.Name = "Label17"
  2294. Me.Label17.Size = New System.Drawing.Size(70, 16)
  2295. Me.Label17.TabIndex = 1842
  2296. Me.Label17.Text = "Bahan Tiba"
  2297. '
  2298. 'Label18
  2299. '
  2300. Me.Label18.AutoSize = True
  2301. Me.Label18.Location = New System.Drawing.Point(276, 23)
  2302. Me.Label18.Name = "Label18"
  2303. Me.Label18.Size = New System.Drawing.Size(87, 16)
  2304. Me.Label18.TabIndex = 1841
  2305. Me.Label18.Text = "Ambil Setoran"
  2306. '
  2307. 'Label5
  2308. '
  2309. Me.Label5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2310. Me.Label5.AutoSize = True
  2311. Me.Label5.BackColor = System.Drawing.SystemColors.Control
  2312. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2313. Me.Label5.Location = New System.Drawing.Point(470, 436)
  2314. Me.Label5.Name = "Label5"
  2315. Me.Label5.Size = New System.Drawing.Size(100, 16)
  2316. Me.Label5.TabIndex = 1835
  2317. Me.Label5.Text = "附 錄 編 號"
  2318. Me.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2319. '
  2320. '附錄編號_tb
  2321. '
  2322. Me.附錄編號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2323. Me.附錄編號_tb.Enabled = False
  2324. Me.附錄編號_tb.Location = New System.Drawing.Point(577, 433)
  2325. Me.附錄編號_tb.Name = "附錄編號_tb"
  2326. Me.附錄編號_tb.Size = New System.Drawing.Size(109, 23)
  2327. Me.附錄編號_tb.TabIndex = 1827
  2328. '
  2329. '合約附錄_dgv
  2330. '
  2331. DataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2332. Me.合約附錄_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle9
  2333. Me.合約附錄_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2334. Me.合約附錄_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2335. Me.合約附錄_dgv.BackgroundColor = System.Drawing.Color.White
  2336. Me.合約附錄_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2337. Me.合約附錄_dgv.Location = New System.Drawing.Point(239, 433)
  2338. Me.合約附錄_dgv.Name = "合約附錄_dgv"
  2339. Me.合約附錄_dgv.RowHeadersWidth = 5
  2340. Me.合約附錄_dgv.RowTemplate.Height = 24
  2341. Me.合約附錄_dgv.Size = New System.Drawing.Size(228, 98)
  2342. Me.合約附錄_dgv.TabIndex = 1834
  2343. '
  2344. 'NUD6
  2345. '
  2346. Me.NUD6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2347. Me.NUD6.Location = New System.Drawing.Point(813, 507)
  2348. Me.NUD6.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2349. Me.NUD6.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2350. Me.NUD6.Name = "NUD6"
  2351. Me.NUD6.Size = New System.Drawing.Size(106, 23)
  2352. Me.NUD6.TabIndex = 1832
  2353. Me.NUD6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2354. Me.NUD6.ThousandsSeparator = True
  2355. '
  2356. 'NUD5
  2357. '
  2358. Me.NUD5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2359. Me.NUD5.Location = New System.Drawing.Point(813, 482)
  2360. Me.NUD5.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2361. Me.NUD5.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2362. Me.NUD5.Name = "NUD5"
  2363. Me.NUD5.Size = New System.Drawing.Size(106, 23)
  2364. Me.NUD5.TabIndex = 1830
  2365. Me.NUD5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2366. Me.NUD5.ThousandsSeparator = True
  2367. '
  2368. 'NUD4
  2369. '
  2370. Me.NUD4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2371. Me.NUD4.Location = New System.Drawing.Point(813, 457)
  2372. Me.NUD4.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
  2373. Me.NUD4.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
  2374. Me.NUD4.Name = "NUD4"
  2375. Me.NUD4.Size = New System.Drawing.Size(106, 23)
  2376. Me.NUD4.TabIndex = 1828
  2377. Me.NUD4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  2378. Me.NUD4.ThousandsSeparator = True
  2379. '
  2380. 'Label6
  2381. '
  2382. Me.Label6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2383. Me.Label6.AutoSize = True
  2384. Me.Label6.ForeColor = System.Drawing.Color.Green
  2385. Me.Label6.Location = New System.Drawing.Point(473, 484)
  2386. Me.Label6.Name = "Label6"
  2387. Me.Label6.Size = New System.Drawing.Size(338, 16)
  2388. Me.Label6.TabIndex = 1831
  2389. Me.Label6.Text = "2、追加/追减金額(含税) Additional/Reduction Amount :"
  2390. '
  2391. 'Label8
  2392. '
  2393. Me.Label8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2394. Me.Label8.AutoSize = True
  2395. Me.Label8.ForeColor = System.Drawing.Color.Green
  2396. Me.Label8.Location = New System.Drawing.Point(473, 459)
  2397. Me.Label8.Name = "Label8"
  2398. Me.Label8.Size = New System.Drawing.Size(340, 16)
  2399. Me.Label8.TabIndex = 1829
  2400. Me.Label8.Text = "1、原合约金額(含税) Original Contract Amount : "
  2401. '
  2402. 'Label9
  2403. '
  2404. Me.Label9.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2405. Me.Label9.AutoSize = True
  2406. Me.Label9.ForeColor = System.Drawing.Color.Green
  2407. Me.Label9.Location = New System.Drawing.Point(473, 509)
  2408. Me.Label9.Name = "Label9"
  2409. Me.Label9.Size = New System.Drawing.Size(340, 16)
  2410. Me.Label9.TabIndex = 1833
  2411. Me.Label9.Text = "3、結算總金額(含税) Total Settlement Amount : "
  2412. '
  2413. 'Label388
  2414. '
  2415. Me.Label388.AutoSize = True
  2416. Me.Label388.ForeColor = System.Drawing.Color.Green
  2417. Me.Label388.Location = New System.Drawing.Point(465, 159)
  2418. Me.Label388.Name = "Label388"
  2419. Me.Label388.Size = New System.Drawing.Size(79, 16)
  2420. Me.Label388.TabIndex = 1801
  2421. Me.Label388.Text = "第三期工程款"
  2422. '
  2423. 'Label390
  2424. '
  2425. Me.Label390.AutoSize = True
  2426. Me.Label390.ForeColor = System.Drawing.Color.Green
  2427. Me.Label390.Location = New System.Drawing.Point(236, 159)
  2428. Me.Label390.Name = "Label390"
  2429. Me.Label390.Size = New System.Drawing.Size(79, 16)
  2430. Me.Label390.TabIndex = 1799
  2431. Me.Label390.Text = "第一期工程款"
  2432. '
  2433. 'Label389
  2434. '
  2435. Me.Label389.AutoSize = True
  2436. Me.Label389.ForeColor = System.Drawing.Color.Green
  2437. Me.Label389.Location = New System.Drawing.Point(236, 183)
  2438. Me.Label389.Name = "Label389"
  2439. Me.Label389.Size = New System.Drawing.Size(79, 16)
  2440. Me.Label389.TabIndex = 1800
  2441. Me.Label389.Text = "第二期工程款"
  2442. '
  2443. 'Label1
  2444. '
  2445. Me.Label1.AutoSize = True
  2446. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2447. Me.Label1.Location = New System.Drawing.Point(235, 138)
  2448. Me.Label1.Name = "Label1"
  2449. Me.Label1.Size = New System.Drawing.Size(692, 16)
  2450. Me.Label1.TabIndex = 1824
  2451. Me.Label1.Text = "_________________________________________________________________________________" &
  2452. "________________________________________________________"
  2453. Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2454. '
  2455. 'Label3
  2456. '
  2457. Me.Label3.AutoSize = True
  2458. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2459. Me.Label3.Location = New System.Drawing.Point(235, 109)
  2460. Me.Label3.Name = "Label3"
  2461. Me.Label3.Size = New System.Drawing.Size(692, 16)
  2462. Me.Label3.TabIndex = 1825
  2463. Me.Label3.Text = "_________________________________________________________________________________" &
  2464. "________________________________________________________"
  2465. Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2466. '
  2467. 'Label4
  2468. '
  2469. Me.Label4.AutoSize = True
  2470. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2471. Me.Label4.Location = New System.Drawing.Point(233, 30)
  2472. Me.Label4.Name = "Label4"
  2473. Me.Label4.Size = New System.Drawing.Size(692, 16)
  2474. Me.Label4.TabIndex = 1826
  2475. Me.Label4.Text = "_________________________________________________________________________________" &
  2476. "________________________________________________________"
  2477. Me.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2478. '
  2479. 'Label25
  2480. '
  2481. Me.Label25.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2482. Me.Label25.AutoSize = True
  2483. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2484. Me.Label25.Location = New System.Drawing.Point(233, 520)
  2485. Me.Label25.Name = "Label25"
  2486. Me.Label25.Size = New System.Drawing.Size(692, 16)
  2487. Me.Label25.TabIndex = 1851
  2488. Me.Label25.Text = "_________________________________________________________________________________" &
  2489. "________________________________________________________"
  2490. Me.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2491. '
  2492. '縮放2_bt
  2493. '
  2494. Me.縮放2_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.ZOOM01
  2495. Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2496. Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2497. Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
  2498. Me.縮放2_bt.Location = New System.Drawing.Point(192, 28)
  2499. Me.縮放2_bt.Name = "縮放2_bt"
  2500. Me.縮放2_bt.Size = New System.Drawing.Size(39, 26)
  2501. Me.縮放2_bt.TabIndex = 1906
  2502. Me.縮放2_bt.UseVisualStyleBackColor = True
  2503. '
  2504. '報告移交_bt
  2505. '
  2506. Me.報告移交_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2507. Me.報告移交_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.reports
  2508. Me.報告移交_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2509. Me.報告移交_bt.ForeColor = System.Drawing.Color.Green
  2510. Me.報告移交_bt.Location = New System.Drawing.Point(1090, 284)
  2511. Me.報告移交_bt.Name = "報告移交_bt"
  2512. Me.報告移交_bt.Size = New System.Drawing.Size(83, 48)
  2513. Me.報告移交_bt.TabIndex = 1904
  2514. Me.報告移交_bt.UseVisualStyleBackColor = True
  2515. '
  2516. '列印_bt
  2517. '
  2518. Me.列印_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2519. Me.列印_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.print
  2520. Me.列印_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2521. Me.列印_bt.ForeColor = System.Drawing.Color.Green
  2522. Me.列印_bt.Location = New System.Drawing.Point(1174, 284)
  2523. Me.列印_bt.Name = "列印_bt"
  2524. Me.列印_bt.Size = New System.Drawing.Size(83, 48)
  2525. Me.列印_bt.TabIndex = 1899
  2526. Me.列印_bt.UseVisualStyleBackColor = True
  2527. '
  2528. '刪除_bt
  2529. '
  2530. Me.刪除_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2531. Me.刪除_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.GarbageEmpty
  2532. Me.刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2533. Me.刪除_bt.ForeColor = System.Drawing.Color.Red
  2534. Me.刪除_bt.Location = New System.Drawing.Point(1258, 284)
  2535. Me.刪除_bt.Name = "刪除_bt"
  2536. Me.刪除_bt.Size = New System.Drawing.Size(83, 48)
  2537. Me.刪除_bt.TabIndex = 1898
  2538. Me.刪除_bt.UseVisualStyleBackColor = True
  2539. '
  2540. '存檔_bt
  2541. '
  2542. Me.存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2543. Me.存檔_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.SAVER
  2544. Me.存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2545. Me.存檔_bt.ForeColor = System.Drawing.Color.Green
  2546. Me.存檔_bt.Location = New System.Drawing.Point(1006, 284)
  2547. Me.存檔_bt.Name = "存檔_bt"
  2548. Me.存檔_bt.Size = New System.Drawing.Size(83, 48)
  2549. Me.存檔_bt.TabIndex = 1897
  2550. Me.存檔_bt.UseVisualStyleBackColor = True
  2551. '
  2552. '開新的請款單_bt
  2553. '
  2554. Me.開新的請款單_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2555. Me.開新的請款單_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.New_Folder
  2556. Me.開新的請款單_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2557. Me.開新的請款單_bt.ForeColor = System.Drawing.Color.Blue
  2558. Me.開新的請款單_bt.Location = New System.Drawing.Point(922, 284)
  2559. Me.開新的請款單_bt.Name = "開新的請款單_bt"
  2560. Me.開新的請款單_bt.Size = New System.Drawing.Size(83, 48)
  2561. Me.開新的請款單_bt.TabIndex = 1896
  2562. Me.開新的請款單_bt.UseVisualStyleBackColor = True
  2563. '
  2564. 'SOP3_P
  2565. '
  2566. Me.SOP3_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  2567. Me.SOP3_P.Location = New System.Drawing.Point(244, 8)
  2568. Me.SOP3_P.Name = "SOP3_P"
  2569. Me.SOP3_P.Size = New System.Drawing.Size(30, 30)
  2570. Me.SOP3_P.TabIndex = 1836
  2571. Me.SOP3_P.TabStop = False
  2572. '
  2573. 'SOP4_P
  2574. '
  2575. Me.SOP4_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  2576. Me.SOP4_P.Location = New System.Drawing.Point(378, 8)
  2577. Me.SOP4_P.Name = "SOP4_P"
  2578. Me.SOP4_P.Size = New System.Drawing.Size(30, 30)
  2579. Me.SOP4_P.TabIndex = 1837
  2580. Me.SOP4_P.TabStop = False
  2581. '
  2582. 'SOP7_P
  2583. '
  2584. Me.SOP7_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  2585. Me.SOP7_P.Location = New System.Drawing.Point(797, 8)
  2586. Me.SOP7_P.Name = "SOP7_P"
  2587. Me.SOP7_P.Size = New System.Drawing.Size(30, 30)
  2588. Me.SOP7_P.TabIndex = 1840
  2589. Me.SOP7_P.TabStop = False
  2590. '
  2591. 'SOP5_P
  2592. '
  2593. Me.SOP5_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  2594. Me.SOP5_P.Location = New System.Drawing.Point(509, 8)
  2595. Me.SOP5_P.Name = "SOP5_P"
  2596. Me.SOP5_P.Size = New System.Drawing.Size(30, 30)
  2597. Me.SOP5_P.TabIndex = 1838
  2598. Me.SOP5_P.TabStop = False
  2599. '
  2600. 'SOP6_P
  2601. '
  2602. Me.SOP6_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  2603. Me.SOP6_P.Location = New System.Drawing.Point(664, 8)
  2604. Me.SOP6_P.Name = "SOP6_P"
  2605. Me.SOP6_P.Size = New System.Drawing.Size(30, 30)
  2606. Me.SOP6_P.TabIndex = 1839
  2607. Me.SOP6_P.TabStop = False
  2608. '
  2609. '查詢_bt
  2610. '
  2611. Me.查詢_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.下載
  2612. Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2613. Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2614. Me.查詢_bt.Location = New System.Drawing.Point(193, 2)
  2615. Me.查詢_bt.Name = "查詢_bt"
  2616. Me.查詢_bt.Size = New System.Drawing.Size(40, 26)
  2617. Me.查詢_bt.TabIndex = 1784
  2618. Me.查詢_bt.UseVisualStyleBackColor = True
  2619. '
  2620. 'J2_PB
  2621. '
  2622. Me.J2_PB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2623. Me.J2_PB.Image = Global.工巧明智能管理系統.My.Resources.Resources.J2LOG01
  2624. Me.J2_PB.Location = New System.Drawing.Point(339, 65)
  2625. Me.J2_PB.Name = "J2_PB"
  2626. Me.J2_PB.Size = New System.Drawing.Size(193, 61)
  2627. Me.J2_PB.TabIndex = 1670
  2628. Me.J2_PB.TabStop = False
  2629. '
  2630. 'JCS_PB
  2631. '
  2632. Me.JCS_PB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2633. Me.JCS_PB.Image = Global.工巧明智能管理系統.My.Resources.Resources.JCSLOG01
  2634. Me.JCS_PB.Location = New System.Drawing.Point(338, 2)
  2635. Me.JCS_PB.Name = "JCS_PB"
  2636. Me.JCS_PB.Size = New System.Drawing.Size(193, 61)
  2637. Me.JCS_PB.TabIndex = 1669
  2638. Me.JCS_PB.TabStop = False
  2639. '
  2640. 'PictureBox2
  2641. '
  2642. Me.PictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2643. Me.PictureBox2.Image = Global.工巧明智能管理系統.My.Resources.Resources.HXLOGO01
  2644. Me.PictureBox2.Location = New System.Drawing.Point(143, 65)
  2645. Me.PictureBox2.Name = "PictureBox2"
  2646. Me.PictureBox2.Size = New System.Drawing.Size(193, 61)
  2647. Me.PictureBox2.TabIndex = 1436
  2648. Me.PictureBox2.TabStop = False
  2649. '
  2650. 'PictureBox1
  2651. '
  2652. Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2653. Me.PictureBox1.Image = Global.工巧明智能管理系統.My.Resources.Resources.PGSLOGO01
  2654. Me.PictureBox1.Location = New System.Drawing.Point(143, 2)
  2655. Me.PictureBox1.Name = "PictureBox1"
  2656. Me.PictureBox1.Size = New System.Drawing.Size(193, 61)
  2657. Me.PictureBox1.TabIndex = 1435
  2658. Me.PictureBox1.TabStop = False
  2659. '
  2660. '合約請款單
  2661. '
  2662. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  2663. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  2664. Me.ClientSize = New System.Drawing.Size(1349, 681)
  2665. Me.Controls.Add(Me.Panel1)
  2666. Me.Controls.Add(Me.請款單_dgv)
  2667. Me.Controls.Add(Me.報告移交單_ch)
  2668. Me.Controls.Add(Me.請款單_ch)
  2669. Me.Controls.Add(Me.存檔_tb)
  2670. Me.Controls.Add(Me.付款期限_cb)
  2671. Me.Controls.Add(Me.Label46)
  2672. Me.Controls.Add(Me.Label414)
  2673. Me.Controls.Add(Me.申請日期_dtp)
  2674. Me.Controls.Add(Me.請款金額_nud)
  2675. Me.Controls.Add(Me.Label45)
  2676. Me.Controls.Add(Me.請款總額_nud)
  2677. Me.Controls.Add(Me.Label44)
  2678. Me.Controls.Add(Me.稅金_nud)
  2679. Me.Controls.Add(Me.Label43)
  2680. Me.Controls.Add(Me.請款內容_tb)
  2681. Me.Controls.Add(Me.Label42)
  2682. Me.Controls.Add(Me.請款單號_tb)
  2683. Me.Controls.Add(Me.比例_nud)
  2684. Me.Controls.Add(Me.Label38)
  2685. Me.Controls.Add(Me.其他意見_tb)
  2686. Me.Controls.Add(Me.Label39)
  2687. Me.Controls.Add(Me.請款期數_cb)
  2688. Me.Controls.Add(Me.Label41)
  2689. Me.Controls.Add(Me.Label40)
  2690. Me.Controls.Add(Me.主頁明細_ch)
  2691. Me.Controls.Add(Me.新版_ch)
  2692. Me.Controls.Add(Me.主頁_ch)
  2693. Me.Controls.Add(Me.縮放2_bt)
  2694. Me.Controls.Add(Me.報告移交_bt)
  2695. Me.Controls.Add(Me.列印_bt)
  2696. Me.Controls.Add(Me.刪除_bt)
  2697. Me.Controls.Add(Me.存檔_bt)
  2698. Me.Controls.Add(Me.開新的請款單_bt)
  2699. Me.Controls.Add(Me.SOP3_P)
  2700. Me.Controls.Add(Me.SOP4_P)
  2701. Me.Controls.Add(Me.SOP7_P)
  2702. Me.Controls.Add(Me.SOP5_P)
  2703. Me.Controls.Add(Me.SOP6_P)
  2704. Me.Controls.Add(Me.查詢_bt)
  2705. Me.Controls.Add(Me.合約_dgv)
  2706. Me.Controls.Add(Me.Label37)
  2707. Me.Controls.Add(Me.Label36)
  2708. Me.Controls.Add(Me.Label35)
  2709. Me.Controls.Add(Me.Label34)
  2710. Me.Controls.Add(Me.明細選項_bt)
  2711. Me.Controls.Add(Me.刪除資料_bt)
  2712. Me.Controls.Add(Me.新增資料_bt)
  2713. Me.Controls.Add(Me.金額6_und)
  2714. Me.Controls.Add(Me.工程款6_nud)
  2715. Me.Controls.Add(Me.NUD2)
  2716. Me.Controls.Add(Me.NUD1)
  2717. Me.Controls.Add(Me.NUD3)
  2718. Me.Controls.Add(Me.金額5_und)
  2719. Me.Controls.Add(Me.金額4_und)
  2720. Me.Controls.Add(Me.金額3_und)
  2721. Me.Controls.Add(Me.金額2_und)
  2722. Me.Controls.Add(Me.金額1_und)
  2723. Me.Controls.Add(Me.工程款5_nud)
  2724. Me.Controls.Add(Me.工程款4_nud)
  2725. Me.Controls.Add(Me.工程款3_nud)
  2726. Me.Controls.Add(Me.工程款1_nud)
  2727. Me.Controls.Add(Me.工程款2_nud)
  2728. Me.Controls.Add(Me.稅額顯示_lb)
  2729. Me.Controls.Add(Me.CH2)
  2730. Me.Controls.Add(Me.CH1)
  2731. Me.Controls.Add(Me.Label386)
  2732. Me.Controls.Add(Me.Label21)
  2733. Me.Controls.Add(Me.Label387)
  2734. Me.Controls.Add(Me.Label372)
  2735. Me.Controls.Add(Me.客戶名稱_tb)
  2736. Me.Controls.Add(Me.Label375)
  2737. Me.Controls.Add(Me.工程名稱_中_tb)
  2738. Me.Controls.Add(Me.工程名稱_英_tb)
  2739. Me.Controls.Add(Me.Label378)
  2740. Me.Controls.Add(Me.Label2)
  2741. Me.Controls.Add(Me.合約編號_tb)
  2742. Me.Controls.Add(Me.Label11)
  2743. Me.Controls.Add(Me.合約編號1_cb)
  2744. Me.Controls.Add(Me.Label7)
  2745. Me.Controls.Add(Me.關鍵字搜尋_tb)
  2746. Me.Controls.Add(Me.BNUD5)
  2747. Me.Controls.Add(Me.BNUD4)
  2748. Me.Controls.Add(Me.Label31)
  2749. Me.Controls.Add(Me.Label32)
  2750. Me.Controls.Add(Me.BNUD3)
  2751. Me.Controls.Add(Me.BNUD2)
  2752. Me.Controls.Add(Me.BNUD1)
  2753. Me.Controls.Add(Me.Label33)
  2754. Me.Controls.Add(Me.ANUD5)
  2755. Me.Controls.Add(Me.ANUD4)
  2756. Me.Controls.Add(Me.Label29)
  2757. Me.Controls.Add(Me.Label30)
  2758. Me.Controls.Add(Me.ANUD3)
  2759. Me.Controls.Add(Me.ANUD2)
  2760. Me.Controls.Add(Me.ANUD1)
  2761. Me.Controls.Add(Me.Label26)
  2762. Me.Controls.Add(Me.Label27)
  2763. Me.Controls.Add(Me.Label28)
  2764. Me.Controls.Add(Me.Label12)
  2765. Me.Controls.Add(Me.Label20)
  2766. Me.Controls.Add(Me.Label13)
  2767. Me.Controls.Add(Me.Label23)
  2768. Me.Controls.Add(Me.Label24)
  2769. Me.Controls.Add(Me.Label15)
  2770. Me.Controls.Add(Me.Label14)
  2771. Me.Controls.Add(Me.Label16)
  2772. Me.Controls.Add(Me.Label17)
  2773. Me.Controls.Add(Me.Label18)
  2774. Me.Controls.Add(Me.Label5)
  2775. Me.Controls.Add(Me.附錄編號_tb)
  2776. Me.Controls.Add(Me.合約附錄_dgv)
  2777. Me.Controls.Add(Me.NUD6)
  2778. Me.Controls.Add(Me.NUD5)
  2779. Me.Controls.Add(Me.NUD4)
  2780. Me.Controls.Add(Me.Label6)
  2781. Me.Controls.Add(Me.Label8)
  2782. Me.Controls.Add(Me.Label9)
  2783. Me.Controls.Add(Me.Label388)
  2784. Me.Controls.Add(Me.Label390)
  2785. Me.Controls.Add(Me.Label389)
  2786. Me.Controls.Add(Me.Label25)
  2787. Me.Controls.Add(Me.Label4)
  2788. Me.Controls.Add(Me.Label3)
  2789. Me.Controls.Add(Me.Label1)
  2790. Me.Controls.Add(Me.Label19)
  2791. Me.Controls.Add(Me.TabControl2)
  2792. Me.Controls.Add(Me.Label22)
  2793. Me.Controls.Add(Me.視窗2_pl)
  2794. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2795. Me.Margin = New System.Windows.Forms.Padding(4)
  2796. Me.Name = "合約請款單"
  2797. Me.Text = "合約請款單"
  2798. Me.Panel3.ResumeLayout(False)
  2799. Me.Panel3.PerformLayout()
  2800. Me.視窗2_pl.ResumeLayout(False)
  2801. Me.視窗2_pl.PerformLayout()
  2802. CType(Me.請款金額_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2803. CType(Me.請款總額_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2804. CType(Me.稅金_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2805. CType(Me.比例_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2806. CType(Me.請款單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2807. Me.Panel1.ResumeLayout(False)
  2808. Me.Panel1.PerformLayout()
  2809. CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2810. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2811. Me.TabPage5.ResumeLayout(False)
  2812. CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2813. Me.TabPage6.ResumeLayout(False)
  2814. CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2815. Me.TabPage7.ResumeLayout(False)
  2816. CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2817. Me.TabPage8.ResumeLayout(False)
  2818. CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2819. Me.TabPage9.ResumeLayout(False)
  2820. CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2821. CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).EndInit()
  2822. CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2823. CType(Me.NUD2, System.ComponentModel.ISupportInitialize).EndInit()
  2824. CType(Me.NUD1, System.ComponentModel.ISupportInitialize).EndInit()
  2825. CType(Me.NUD3, System.ComponentModel.ISupportInitialize).EndInit()
  2826. CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).EndInit()
  2827. CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).EndInit()
  2828. CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).EndInit()
  2829. CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).EndInit()
  2830. CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).EndInit()
  2831. CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2832. CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2833. CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2834. CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2835. CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2836. Me.TabControl2.ResumeLayout(False)
  2837. CType(Me.BNUD5, System.ComponentModel.ISupportInitialize).EndInit()
  2838. CType(Me.BNUD4, System.ComponentModel.ISupportInitialize).EndInit()
  2839. CType(Me.BNUD3, System.ComponentModel.ISupportInitialize).EndInit()
  2840. CType(Me.BNUD2, System.ComponentModel.ISupportInitialize).EndInit()
  2841. CType(Me.BNUD1, System.ComponentModel.ISupportInitialize).EndInit()
  2842. CType(Me.ANUD5, System.ComponentModel.ISupportInitialize).EndInit()
  2843. CType(Me.ANUD4, System.ComponentModel.ISupportInitialize).EndInit()
  2844. CType(Me.ANUD3, System.ComponentModel.ISupportInitialize).EndInit()
  2845. CType(Me.ANUD2, System.ComponentModel.ISupportInitialize).EndInit()
  2846. CType(Me.ANUD1, System.ComponentModel.ISupportInitialize).EndInit()
  2847. CType(Me.合約附錄_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2848. CType(Me.NUD6, System.ComponentModel.ISupportInitialize).EndInit()
  2849. CType(Me.NUD5, System.ComponentModel.ISupportInitialize).EndInit()
  2850. CType(Me.NUD4, System.ComponentModel.ISupportInitialize).EndInit()
  2851. CType(Me.SOP3_P, System.ComponentModel.ISupportInitialize).EndInit()
  2852. CType(Me.SOP4_P, System.ComponentModel.ISupportInitialize).EndInit()
  2853. CType(Me.SOP7_P, System.ComponentModel.ISupportInitialize).EndInit()
  2854. CType(Me.SOP5_P, System.ComponentModel.ISupportInitialize).EndInit()
  2855. CType(Me.SOP6_P, System.ComponentModel.ISupportInitialize).EndInit()
  2856. CType(Me.J2_PB, System.ComponentModel.ISupportInitialize).EndInit()
  2857. CType(Me.JCS_PB, System.ComponentModel.ISupportInitialize).EndInit()
  2858. CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
  2859. CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  2860. Me.ResumeLayout(False)
  2861. Me.PerformLayout()
  2862. End Sub
  2863. Friend WithEvents 報告移交單_ch As CheckBox
  2864. Friend WithEvents Panel3 As Panel
  2865. Friend WithEvents B46_tb As TextBox
  2866. Friend WithEvents B45_tb As TextBox
  2867. Friend WithEvents B44_tb As TextBox
  2868. Friend WithEvents B43_tb As TextBox
  2869. Friend WithEvents B42_tb As TextBox
  2870. Friend WithEvents B40_tb As TextBox
  2871. Friend WithEvents B41_tb As TextBox
  2872. Friend WithEvents B39_tb As TextBox
  2873. Friend WithEvents B38_tb As TextBox
  2874. Friend WithEvents B37_tb As TextBox
  2875. Friend WithEvents B36_tb As TextBox
  2876. Friend WithEvents B35_tb As TextBox
  2877. Friend WithEvents B34_tb As TextBox
  2878. Friend WithEvents B33_tb As TextBox
  2879. Friend WithEvents B32_tb As TextBox
  2880. Friend WithEvents B29_tb As TextBox
  2881. Friend WithEvents B28_tb As TextBox
  2882. Friend WithEvents B27_tb As TextBox
  2883. Friend WithEvents B26_tb As TextBox
  2884. Friend WithEvents B25_tb As TextBox
  2885. Friend WithEvents B24_tb As TextBox
  2886. Friend WithEvents B31_tb As TextBox
  2887. Friend WithEvents B23_tb As TextBox
  2888. Friend WithEvents B22_tb As TextBox
  2889. Friend WithEvents B30_tb As TextBox
  2890. Friend WithEvents TextBox12 As TextBox
  2891. Friend WithEvents TextBox11 As TextBox
  2892. Friend WithEvents TextBox10 As TextBox
  2893. Friend WithEvents TextBox9 As TextBox
  2894. Friend WithEvents TextBox8 As TextBox
  2895. Friend WithEvents TextBox7 As TextBox
  2896. Friend WithEvents B21_tb As TextBox
  2897. Friend WithEvents B20_tb As TextBox
  2898. Friend WithEvents B19_tb As TextBox
  2899. Friend WithEvents B18_tb As TextBox
  2900. Friend WithEvents B17_tb As TextBox
  2901. Friend WithEvents B16_tb As TextBox
  2902. Friend WithEvents B15_tb As TextBox
  2903. Friend WithEvents B14_tb As TextBox
  2904. Friend WithEvents B13_tb As TextBox
  2905. Friend WithEvents B12_tb As TextBox
  2906. Friend WithEvents B11_tb As TextBox
  2907. Friend WithEvents B10_tb As TextBox
  2908. Friend WithEvents B09_tb As TextBox
  2909. Friend WithEvents B08_tb As TextBox
  2910. Friend WithEvents B07_tb As TextBox
  2911. Friend WithEvents B06_tb As TextBox
  2912. Friend WithEvents B05_tb As TextBox
  2913. Friend WithEvents B04_tb As TextBox
  2914. Friend WithEvents B03_tb As TextBox
  2915. Friend WithEvents B02_tb As TextBox
  2916. Friend WithEvents B01_tb As TextBox
  2917. Friend WithEvents A01_lb As Label
  2918. Friend WithEvents 視窗2_pl As Panel
  2919. Friend WithEvents Label55 As Label
  2920. Friend WithEvents CanceL2_bt As Button
  2921. Friend WithEvents 請款單_ch As CheckBox
  2922. Friend WithEvents 存檔_tb As Button
  2923. Friend WithEvents 付款期限_cb As ComboBox
  2924. Friend WithEvents Label46 As Label
  2925. Friend WithEvents Label414 As Label
  2926. Friend WithEvents 申請日期_dtp As DateTimePicker
  2927. Friend WithEvents 請款金額_nud As NumericUpDown
  2928. Friend WithEvents Label45 As Label
  2929. Friend WithEvents 請款總額_nud As NumericUpDown
  2930. Friend WithEvents Label44 As Label
  2931. Friend WithEvents 稅金_nud As NumericUpDown
  2932. Friend WithEvents Label43 As Label
  2933. Friend WithEvents 請款內容_tb As TextBox
  2934. Friend WithEvents Label42 As Label
  2935. Friend WithEvents 請款單號_tb As TextBox
  2936. Friend WithEvents 比例_nud As NumericUpDown
  2937. Friend WithEvents Label38 As Label
  2938. Friend WithEvents 其他意見_tb As TextBox
  2939. Friend WithEvents Label39 As Label
  2940. Friend WithEvents 請款單_dgv As DataGridView
  2941. Friend WithEvents 請款期數_cb As ComboBox
  2942. Friend WithEvents Label41 As Label
  2943. Friend WithEvents Label40 As Label
  2944. Friend WithEvents Label22 As Label
  2945. Friend WithEvents 主頁明細_ch As CheckBox
  2946. Friend WithEvents 新版_ch As CheckBox
  2947. Friend WithEvents 主頁_ch As CheckBox
  2948. Friend WithEvents 縮放2_bt As Button
  2949. Friend WithEvents Panel1 As Panel
  2950. Friend WithEvents 甲方_tb As TextBox
  2951. Friend WithEvents J2_PB As PictureBox
  2952. Friend WithEvents JCS_PB As PictureBox
  2953. Friend WithEvents DTP1 As DateTimePicker
  2954. Friend WithEvents PictureBox2 As PictureBox
  2955. Friend WithEvents PictureBox1 As PictureBox
  2956. Friend WithEvents 報價總表_dgv As DataGridView
  2957. Friend WithEvents 工程期1_ch As ComboBox
  2958. Friend WithEvents Label10 As Label
  2959. Friend WithEvents 報告移交_bt As Button
  2960. Friend WithEvents 列印_bt As Button
  2961. Friend WithEvents 刪除_bt As Button
  2962. Friend WithEvents 存檔_bt As Button
  2963. Friend WithEvents 開新的請款單_bt As Button
  2964. Friend WithEvents SOP3_P As PictureBox
  2965. Friend WithEvents SOP4_P As PictureBox
  2966. Friend WithEvents SOP7_P As PictureBox
  2967. Friend WithEvents SOP5_P As PictureBox
  2968. Friend WithEvents SOP6_P As PictureBox
  2969. Friend WithEvents 查詢_bt As Button
  2970. Friend WithEvents 合約_dgv As DataGridView
  2971. Friend WithEvents TabPage5 As TabPage
  2972. Friend WithEvents 第1期_dgv As DataGridView
  2973. Friend WithEvents TabPage6 As TabPage
  2974. Friend WithEvents 第2期_dgv As DataGridView
  2975. Friend WithEvents TabPage7 As TabPage
  2976. Friend WithEvents 第3期_dgv As DataGridView
  2977. Friend WithEvents TabPage8 As TabPage
  2978. Friend WithEvents 第4期_dgv As DataGridView
  2979. Friend WithEvents TabPage9 As TabPage
  2980. Friend WithEvents 第5期_dgv As DataGridView
  2981. Friend WithEvents Label37 As Label
  2982. Friend WithEvents Label36 As Label
  2983. Friend WithEvents Label35 As Label
  2984. Friend WithEvents Label34 As Label
  2985. Friend WithEvents Label19 As Label
  2986. Friend WithEvents 明細選項_bt As TextBox
  2987. Friend WithEvents 刪除資料_bt As Button
  2988. Friend WithEvents 新增資料_bt As Button
  2989. Friend WithEvents 金額6_und As NumericUpDown
  2990. Friend WithEvents 工程款6_nud As NumericUpDown
  2991. Friend WithEvents NUD2 As NumericUpDown
  2992. Friend WithEvents NUD1 As NumericUpDown
  2993. Friend WithEvents NUD3 As NumericUpDown
  2994. Friend WithEvents 金額5_und As NumericUpDown
  2995. Friend WithEvents 金額4_und As NumericUpDown
  2996. Friend WithEvents 金額3_und As NumericUpDown
  2997. Friend WithEvents 金額2_und As NumericUpDown
  2998. Friend WithEvents 金額1_und As NumericUpDown
  2999. Friend WithEvents 工程款5_nud As NumericUpDown
  3000. Friend WithEvents 工程款4_nud As NumericUpDown
  3001. Friend WithEvents 工程款3_nud As NumericUpDown
  3002. Friend WithEvents 工程款1_nud As NumericUpDown
  3003. Friend WithEvents 工程款2_nud As NumericUpDown
  3004. Friend WithEvents 稅額顯示_lb As Label
  3005. Friend WithEvents CH2 As CheckBox
  3006. Friend WithEvents CH1 As CheckBox
  3007. Friend WithEvents Label386 As Label
  3008. Friend WithEvents Label21 As Label
  3009. Friend WithEvents TabControl2 As TabControl
  3010. Friend WithEvents Label387 As Label
  3011. Friend WithEvents Label372 As Label
  3012. Friend WithEvents 客戶名稱_tb As ComboBox
  3013. Friend WithEvents Label375 As Label
  3014. Friend WithEvents 工程名稱_中_tb As TextBox
  3015. Friend WithEvents 工程名稱_英_tb As TextBox
  3016. Friend WithEvents Label378 As Label
  3017. Friend WithEvents Label2 As Label
  3018. Friend WithEvents 合約編號_tb As TextBox
  3019. Friend WithEvents Label11 As Label
  3020. Friend WithEvents 合約編號1_cb As ComboBox
  3021. Friend WithEvents Label7 As Label
  3022. Friend WithEvents 關鍵字搜尋_tb As TextBox
  3023. Friend WithEvents BNUD5 As NumericUpDown
  3024. Friend WithEvents BNUD4 As NumericUpDown
  3025. Friend WithEvents Label31 As Label
  3026. Friend WithEvents Label32 As Label
  3027. Friend WithEvents BNUD3 As NumericUpDown
  3028. Friend WithEvents BNUD2 As NumericUpDown
  3029. Friend WithEvents BNUD1 As NumericUpDown
  3030. Friend WithEvents Label33 As Label
  3031. Friend WithEvents ANUD5 As NumericUpDown
  3032. Friend WithEvents ANUD4 As NumericUpDown
  3033. Friend WithEvents Label29 As Label
  3034. Friend WithEvents Label30 As Label
  3035. Friend WithEvents ANUD3 As NumericUpDown
  3036. Friend WithEvents ANUD2 As NumericUpDown
  3037. Friend WithEvents ANUD1 As NumericUpDown
  3038. Friend WithEvents Label26 As Label
  3039. Friend WithEvents Label27 As Label
  3040. Friend WithEvents Label28 As Label
  3041. Friend WithEvents Label12 As Label
  3042. Friend WithEvents Label20 As Label
  3043. Friend WithEvents Label13 As Label
  3044. Friend WithEvents Label23 As Label
  3045. Friend WithEvents Label24 As Label
  3046. Friend WithEvents Label15 As Label
  3047. Friend WithEvents Label14 As Label
  3048. Friend WithEvents Label16 As Label
  3049. Friend WithEvents Label17 As Label
  3050. Friend WithEvents Label18 As Label
  3051. Friend WithEvents Label5 As Label
  3052. Friend WithEvents 附錄編號_tb As TextBox
  3053. Friend WithEvents 合約附錄_dgv As DataGridView
  3054. Friend WithEvents NUD6 As NumericUpDown
  3055. Friend WithEvents NUD5 As NumericUpDown
  3056. Friend WithEvents NUD4 As NumericUpDown
  3057. Friend WithEvents Label6 As Label
  3058. Friend WithEvents Label8 As Label
  3059. Friend WithEvents Label9 As Label
  3060. Friend WithEvents Label388 As Label
  3061. Friend WithEvents Label390 As Label
  3062. Friend WithEvents Label389 As Label
  3063. Friend WithEvents Label1 As Label
  3064. Friend WithEvents Label3 As Label
  3065. Friend WithEvents Label4 As Label
  3066. Friend WithEvents Label25 As Label
  3067. End Class