Nessuna descrizione
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 142KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739
  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. Me.components = New System.ComponentModel.Container()
  23. Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle28 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle29 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle30 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle31 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle32 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle33 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle34 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle35 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Dim DataGridViewCellStyle36 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  37. Dim DataGridViewCellStyle37 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  38. Dim DataGridViewCellStyle38 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  39. Dim DataGridViewCellStyle39 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  40. Dim DataGridViewCellStyle40 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  41. Dim DataGridViewCellStyle41 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  42. Dim DataGridViewCellStyle42 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  43. Dim DataGridViewCellStyle43 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  44. Dim DataGridViewCellStyle44 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  45. Me.語言_dgv = New System.Windows.Forms.DataGridView()
  46. Me.物料原則二_cb = New System.Windows.Forms.ComboBox()
  47. Me.物料原則一_cb = New System.Windows.Forms.ComboBox()
  48. Me.群組編碼_lb = New System.Windows.Forms.Label()
  49. Me.群組編碼_cb = New System.Windows.Forms.ComboBox()
  50. Me.物料清單_dgv = New System.Windows.Forms.DataGridView()
  51. Me.申請人_tb = New System.Windows.Forms.TextBox()
  52. Me.申請日期_lb = New System.Windows.Forms.Label()
  53. Me.倉儲單號_lb = New System.Windows.Forms.Label()
  54. Me.調庫單號_tb = New System.Windows.Forms.TextBox()
  55. Me.物料規格_dgv = New System.Windows.Forms.DataGridView()
  56. Me.搜尋_bt = New System.Windows.Forms.Button()
  57. Me.倉庫編號_tb = New System.Windows.Forms.TextBox()
  58. Me.倉庫級別_tb = New System.Windows.Forms.TextBox()
  59. Me.指定倉庫_cb = New System.Windows.Forms.ComboBox()
  60. Me.申請日期_dtp = New System.Windows.Forms.DateTimePicker()
  61. Me.項次_tb = New System.Windows.Forms.TextBox()
  62. Me.項次_lb = New System.Windows.Forms.Label()
  63. Me.選擇_lb = New System.Windows.Forms.Label()
  64. Me.指定倉庫_lb = New System.Windows.Forms.Label()
  65. Me.群組碼_tb = New System.Windows.Forms.TextBox()
  66. Me.物料圖_pb = New System.Windows.Forms.PictureBox()
  67. Me.可申請_tb = New System.Windows.Forms.TextBox()
  68. Me.最大庫存量_tb = New System.Windows.Forms.TextBox()
  69. Me.庫存量_tb = New System.Windows.Forms.TextBox()
  70. Me.盤損數_nud = New System.Windows.Forms.NumericUpDown()
  71. Me.盤盈數_lb = New System.Windows.Forms.Label()
  72. Me.料號_lb = New System.Windows.Forms.Label()
  73. Me.料號_tb = New System.Windows.Forms.TextBox()
  74. Me.庫存量_lb = New System.Windows.Forms.Label()
  75. Me.最大庫存量_lb = New System.Windows.Forms.Label()
  76. Me.可盤損數_lb = New System.Windows.Forms.Label()
  77. Me.調庫單據_dgv = New System.Windows.Forms.DataGridView()
  78. Me.調庫明細_dgv = New System.Windows.Forms.DataGridView()
  79. Me.開立庫存調整單_bt = New System.Windows.Forms.Button()
  80. Me.未審核_lb = New System.Windows.Forms.Label()
  81. Me.選定內容加入庫存調整申請單_bt = New System.Windows.Forms.Button()
  82. Me.盤盈數_nud = New System.Windows.Forms.NumericUpDown()
  83. Me.盤損數_lb = New System.Windows.Forms.Label()
  84. Me.存檔_bt = New System.Windows.Forms.Button()
  85. Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
  86. Me.重新整理_tsm = New System.Windows.Forms.ToolStripMenuItem()
  87. Me.搜尋_tsm = New System.Windows.Forms.ToolStripMenuItem()
  88. Me.刪除_bt = New System.Windows.Forms.Button()
  89. Me.刪除選取_bt = New System.Windows.Forms.Button()
  90. Me.大間距1_ch = New System.Windows.Forms.CheckBox()
  91. Me.中間距1_ch = New System.Windows.Forms.CheckBox()
  92. Me.小間距1_ch = New System.Windows.Forms.CheckBox()
  93. Me.大間距_ch = New System.Windows.Forms.CheckBox()
  94. Me.中間距_ch = New System.Windows.Forms.CheckBox()
  95. Me.小間距_ch = New System.Windows.Forms.CheckBox()
  96. Me.語轉扭_bt = New System.Windows.Forms.Button()
  97. Me.新群組1_cb = New System.Windows.Forms.ComboBox()
  98. Me.Panel1 = New System.Windows.Forms.Panel()
  99. Me.退料工地_cb = New System.Windows.Forms.ComboBox()
  100. Me.物料_dgv = New System.Windows.Forms.DataGridView()
  101. Me.群組分類_dgv = New System.Windows.Forms.DataGridView()
  102. Me.RadSeparator1 = New Telerik.WinControls.UI.RadSeparator()
  103. Me.舊式_P = New System.Windows.Forms.Panel()
  104. Me.新式_P = New System.Windows.Forms.Panel()
  105. Me.甲方_lb = New System.Windows.Forms.Label()
  106. Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
  107. Me.搜尋1_bt = New System.Windows.Forms.Button()
  108. Me.縮放3_bt = New System.Windows.Forms.Button()
  109. Me.回次頁_bt = New System.Windows.Forms.Button()
  110. Me.單據_bt = New System.Windows.Forms.Button()
  111. Me.回首頁_bt = New System.Windows.Forms.Button()
  112. Me.物料_p = New System.Windows.Forms.Panel()
  113. Me.料號1_lb = New System.Windows.Forms.Label()
  114. Me.選定內容加入庫存調整申請單1_bt = New System.Windows.Forms.Button()
  115. Me.物料清單1_dgv = New System.Windows.Forms.DataGridView()
  116. Me.可盤損數1_lb = New System.Windows.Forms.Label()
  117. Me.盤盈數1_nud = New System.Windows.Forms.NumericUpDown()
  118. Me.可申請1_tb = New System.Windows.Forms.TextBox()
  119. Me.最大庫存量1_lb = New System.Windows.Forms.Label()
  120. Me.最大庫存量1_tb = New System.Windows.Forms.TextBox()
  121. Me.庫存量1_lb = New System.Windows.Forms.Label()
  122. Me.盤損數1_lb = New System.Windows.Forms.Label()
  123. Me.庫存量1_tb = New System.Windows.Forms.TextBox()
  124. Me.料號1_tb = New System.Windows.Forms.TextBox()
  125. Me.盤損數1_nud = New System.Windows.Forms.NumericUpDown()
  126. Me.盤盈數1_lb = New System.Windows.Forms.Label()
  127. Me.物料規格1_dgv = New System.Windows.Forms.DataGridView()
  128. Me.主頁_p = New System.Windows.Forms.Panel()
  129. Me.其他_bt = New System.Windows.Forms.Button()
  130. Me.日用_bt = New System.Windows.Forms.Button()
  131. Me.工具_bt = New System.Windows.Forms.Button()
  132. Me.設備_bt = New System.Windows.Forms.Button()
  133. Me.五金_bt = New System.Windows.Forms.Button()
  134. Me.建材_bt = New System.Windows.Forms.Button()
  135. Me.槽架_bt = New System.Windows.Forms.Button()
  136. Me.電料_bt = New System.Windows.Forms.Button()
  137. Me.電線_bt = New System.Windows.Forms.Button()
  138. Me.管材_bt = New System.Windows.Forms.Button()
  139. Me.次頁_p = New System.Windows.Forms.Panel()
  140. Me.AP21 = New System.Windows.Forms.Panel()
  141. Me.TB_21 = New System.Windows.Forms.TextBox()
  142. Me.PB_21 = New System.Windows.Forms.PictureBox()
  143. Me.AP20 = New System.Windows.Forms.Panel()
  144. Me.TB_20 = New System.Windows.Forms.TextBox()
  145. Me.PB_20 = New System.Windows.Forms.PictureBox()
  146. Me.AP19 = New System.Windows.Forms.Panel()
  147. Me.TB_19 = New System.Windows.Forms.TextBox()
  148. Me.PB_19 = New System.Windows.Forms.PictureBox()
  149. Me.AP18 = New System.Windows.Forms.Panel()
  150. Me.TB_18 = New System.Windows.Forms.TextBox()
  151. Me.PB_18 = New System.Windows.Forms.PictureBox()
  152. Me.AP17 = New System.Windows.Forms.Panel()
  153. Me.TB_17 = New System.Windows.Forms.TextBox()
  154. Me.PB_17 = New System.Windows.Forms.PictureBox()
  155. Me.AP16 = New System.Windows.Forms.Panel()
  156. Me.TB_16 = New System.Windows.Forms.TextBox()
  157. Me.PB_16 = New System.Windows.Forms.PictureBox()
  158. Me.AP15 = New System.Windows.Forms.Panel()
  159. Me.TB_15 = New System.Windows.Forms.TextBox()
  160. Me.PB_15 = New System.Windows.Forms.PictureBox()
  161. Me.AP12 = New System.Windows.Forms.Panel()
  162. Me.TB_12 = New System.Windows.Forms.TextBox()
  163. Me.PB_12 = New System.Windows.Forms.PictureBox()
  164. Me.AP9 = New System.Windows.Forms.Panel()
  165. Me.TB_9 = New System.Windows.Forms.TextBox()
  166. Me.PB_9 = New System.Windows.Forms.PictureBox()
  167. Me.AP14 = New System.Windows.Forms.Panel()
  168. Me.TB_14 = New System.Windows.Forms.TextBox()
  169. Me.PB_14 = New System.Windows.Forms.PictureBox()
  170. Me.AP11 = New System.Windows.Forms.Panel()
  171. Me.TB_11 = New System.Windows.Forms.TextBox()
  172. Me.PB_11 = New System.Windows.Forms.PictureBox()
  173. Me.AP8 = New System.Windows.Forms.Panel()
  174. Me.TB_8 = New System.Windows.Forms.TextBox()
  175. Me.PB_8 = New System.Windows.Forms.PictureBox()
  176. Me.AP13 = New System.Windows.Forms.Panel()
  177. Me.TB_13 = New System.Windows.Forms.TextBox()
  178. Me.PB_13 = New System.Windows.Forms.PictureBox()
  179. Me.AP10 = New System.Windows.Forms.Panel()
  180. Me.TB_10 = New System.Windows.Forms.TextBox()
  181. Me.PB_10 = New System.Windows.Forms.PictureBox()
  182. Me.AP7 = New System.Windows.Forms.Panel()
  183. Me.TB_7 = New System.Windows.Forms.TextBox()
  184. Me.PB_7 = New System.Windows.Forms.PictureBox()
  185. Me.AP6 = New System.Windows.Forms.Panel()
  186. Me.TB_6 = New System.Windows.Forms.TextBox()
  187. Me.PB_6 = New System.Windows.Forms.PictureBox()
  188. Me.AP5 = New System.Windows.Forms.Panel()
  189. Me.TB_5 = New System.Windows.Forms.TextBox()
  190. Me.PB_5 = New System.Windows.Forms.PictureBox()
  191. Me.AP4 = New System.Windows.Forms.Panel()
  192. Me.TB_4 = New System.Windows.Forms.TextBox()
  193. Me.PB_4 = New System.Windows.Forms.PictureBox()
  194. Me.AP3 = New System.Windows.Forms.Panel()
  195. Me.TB_3 = New System.Windows.Forms.TextBox()
  196. Me.PB_3 = New System.Windows.Forms.PictureBox()
  197. Me.AP2 = New System.Windows.Forms.Panel()
  198. Me.TB_2 = New System.Windows.Forms.TextBox()
  199. Me.PB_2 = New System.Windows.Forms.PictureBox()
  200. Me.AP1 = New System.Windows.Forms.Panel()
  201. Me.TB_1 = New System.Windows.Forms.TextBox()
  202. Me.PB_1 = New System.Windows.Forms.PictureBox()
  203. Me.合約_P = New System.Windows.Forms.Panel()
  204. Me.合約1_dgv = New System.Windows.Forms.DataGridView()
  205. Me.單據_p = New System.Windows.Forms.Panel()
  206. Me.已核准1_dgv = New System.Windows.Forms.DataGridView()
  207. Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
  208. Me.切換_ts = New Telerik.WinControls.UI.RadToggleSwitch()
  209. Me.切換_lb = New System.Windows.Forms.Label()
  210. Me.合約號_tb = New System.Windows.Forms.TextBox()
  211. Me.合約編號_lb = New System.Windows.Forms.Label()
  212. Me.合約號_lb = New System.Windows.Forms.Label()
  213. Me.合約編號3_tb = New System.Windows.Forms.TextBox()
  214. Me.合約編號2_tb = New System.Windows.Forms.TextBox()
  215. Me.合約編號1_tb = New System.Windows.Forms.TextBox()
  216. Me.合約編號_cb = New System.Windows.Forms.ComboBox()
  217. Me.Label35 = New System.Windows.Forms.Label()
  218. Me.退料單建立完成_bt = New System.Windows.Forms.Button()
  219. Me.詳細資料1_ch = New System.Windows.Forms.CheckBox()
  220. Me.品名_tb = New System.Windows.Forms.TextBox()
  221. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  222. CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  223. CType(Me.物料規格_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  224. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).BeginInit()
  225. CType(Me.盤損數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  226. CType(Me.調庫單據_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  227. CType(Me.調庫明細_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  228. CType(Me.盤盈數_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  229. Me.ContextMenuStrip1.SuspendLayout()
  230. Me.Panel1.SuspendLayout()
  231. CType(Me.物料_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  232. CType(Me.群組分類_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  233. CType(Me.RadSeparator1, System.ComponentModel.ISupportInitialize).BeginInit()
  234. Me.舊式_P.SuspendLayout()
  235. Me.新式_P.SuspendLayout()
  236. Me.物料_p.SuspendLayout()
  237. CType(Me.物料清單1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  238. CType(Me.盤盈數1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  239. CType(Me.盤損數1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
  240. CType(Me.物料規格1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  241. Me.主頁_p.SuspendLayout()
  242. Me.次頁_p.SuspendLayout()
  243. Me.AP21.SuspendLayout()
  244. CType(Me.PB_21, System.ComponentModel.ISupportInitialize).BeginInit()
  245. Me.AP20.SuspendLayout()
  246. CType(Me.PB_20, System.ComponentModel.ISupportInitialize).BeginInit()
  247. Me.AP19.SuspendLayout()
  248. CType(Me.PB_19, System.ComponentModel.ISupportInitialize).BeginInit()
  249. Me.AP18.SuspendLayout()
  250. CType(Me.PB_18, System.ComponentModel.ISupportInitialize).BeginInit()
  251. Me.AP17.SuspendLayout()
  252. CType(Me.PB_17, System.ComponentModel.ISupportInitialize).BeginInit()
  253. Me.AP16.SuspendLayout()
  254. CType(Me.PB_16, System.ComponentModel.ISupportInitialize).BeginInit()
  255. Me.AP15.SuspendLayout()
  256. CType(Me.PB_15, System.ComponentModel.ISupportInitialize).BeginInit()
  257. Me.AP12.SuspendLayout()
  258. CType(Me.PB_12, System.ComponentModel.ISupportInitialize).BeginInit()
  259. Me.AP9.SuspendLayout()
  260. CType(Me.PB_9, System.ComponentModel.ISupportInitialize).BeginInit()
  261. Me.AP14.SuspendLayout()
  262. CType(Me.PB_14, System.ComponentModel.ISupportInitialize).BeginInit()
  263. Me.AP11.SuspendLayout()
  264. CType(Me.PB_11, System.ComponentModel.ISupportInitialize).BeginInit()
  265. Me.AP8.SuspendLayout()
  266. CType(Me.PB_8, System.ComponentModel.ISupportInitialize).BeginInit()
  267. Me.AP13.SuspendLayout()
  268. CType(Me.PB_13, System.ComponentModel.ISupportInitialize).BeginInit()
  269. Me.AP10.SuspendLayout()
  270. CType(Me.PB_10, System.ComponentModel.ISupportInitialize).BeginInit()
  271. Me.AP7.SuspendLayout()
  272. CType(Me.PB_7, System.ComponentModel.ISupportInitialize).BeginInit()
  273. Me.AP6.SuspendLayout()
  274. CType(Me.PB_6, System.ComponentModel.ISupportInitialize).BeginInit()
  275. Me.AP5.SuspendLayout()
  276. CType(Me.PB_5, System.ComponentModel.ISupportInitialize).BeginInit()
  277. Me.AP4.SuspendLayout()
  278. CType(Me.PB_4, System.ComponentModel.ISupportInitialize).BeginInit()
  279. Me.AP3.SuspendLayout()
  280. CType(Me.PB_3, System.ComponentModel.ISupportInitialize).BeginInit()
  281. Me.AP2.SuspendLayout()
  282. CType(Me.PB_2, System.ComponentModel.ISupportInitialize).BeginInit()
  283. Me.AP1.SuspendLayout()
  284. CType(Me.PB_1, System.ComponentModel.ISupportInitialize).BeginInit()
  285. Me.合約_P.SuspendLayout()
  286. CType(Me.合約1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  287. Me.單據_p.SuspendLayout()
  288. CType(Me.已核准1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  289. CType(Me.切換_ts, System.ComponentModel.ISupportInitialize).BeginInit()
  290. Me.SuspendLayout()
  291. '
  292. '語言_dgv
  293. '
  294. Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  295. Me.語言_dgv.Location = New System.Drawing.Point(3, 58)
  296. Me.語言_dgv.Name = "語言_dgv"
  297. Me.語言_dgv.RowHeadersWidth = 5
  298. Me.語言_dgv.RowTemplate.Height = 24
  299. Me.語言_dgv.Size = New System.Drawing.Size(81, 49)
  300. Me.語言_dgv.TabIndex = 1039
  301. '
  302. '物料原則二_cb
  303. '
  304. Me.物料原則二_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  305. Me.物料原則二_cb.FormattingEnabled = True
  306. Me.物料原則二_cb.Items.AddRange(New Object() {"2019"})
  307. Me.物料原則二_cb.Location = New System.Drawing.Point(151, 3)
  308. Me.物料原則二_cb.Name = "物料原則二_cb"
  309. Me.物料原則二_cb.Size = New System.Drawing.Size(82, 24)
  310. Me.物料原則二_cb.TabIndex = 1038
  311. '
  312. '物料原則一_cb
  313. '
  314. Me.物料原則一_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  315. Me.物料原則一_cb.FormattingEnabled = True
  316. Me.物料原則一_cb.Items.AddRange(New Object() {"2019"})
  317. Me.物料原則一_cb.Location = New System.Drawing.Point(102, 3)
  318. Me.物料原則一_cb.Name = "物料原則一_cb"
  319. Me.物料原則一_cb.Size = New System.Drawing.Size(46, 24)
  320. Me.物料原則一_cb.TabIndex = 1036
  321. '
  322. '群組編碼_lb
  323. '
  324. Me.群組編碼_lb.AutoSize = True
  325. Me.群組編碼_lb.Location = New System.Drawing.Point(7, 7)
  326. Me.群組編碼_lb.Name = "群組編碼_lb"
  327. Me.群組編碼_lb.Size = New System.Drawing.Size(64, 16)
  328. Me.群組編碼_lb.TabIndex = 1035
  329. Me.群組編碼_lb.Text = "群 組 編 碼"
  330. Me.群組編碼_lb.TextAlign = System.Drawing.ContentAlignment.TopRight
  331. '
  332. '群組編碼_cb
  333. '
  334. Me.群組編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  335. Me.群組編碼_cb.FormattingEnabled = True
  336. Me.群組編碼_cb.Items.AddRange(New Object() {"2019"})
  337. Me.群組編碼_cb.Location = New System.Drawing.Point(3, 30)
  338. Me.群組編碼_cb.Name = "群組編碼_cb"
  339. Me.群組編碼_cb.Size = New System.Drawing.Size(200, 24)
  340. Me.群組編碼_cb.TabIndex = 1034
  341. '
  342. '物料清單_dgv
  343. '
  344. DataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  345. Me.物料清單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle23
  346. Me.物料清單_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  347. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  348. Me.物料清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  349. Me.物料清單_dgv.BackgroundColor = System.Drawing.Color.White
  350. Me.物料清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  351. Me.物料清單_dgv.Location = New System.Drawing.Point(4, 29)
  352. Me.物料清單_dgv.Name = "物料清單_dgv"
  353. Me.物料清單_dgv.RowHeadersWidth = 5
  354. DataGridViewCellStyle24.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  355. DataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  356. Me.物料清單_dgv.RowsDefaultCellStyle = DataGridViewCellStyle24
  357. Me.物料清單_dgv.RowTemplate.Height = 24
  358. Me.物料清單_dgv.Size = New System.Drawing.Size(529, 457)
  359. Me.物料清單_dgv.TabIndex = 1027
  360. '
  361. '申請人_tb
  362. '
  363. Me.申請人_tb.Location = New System.Drawing.Point(128, 57)
  364. Me.申請人_tb.Name = "申請人_tb"
  365. Me.申請人_tb.Size = New System.Drawing.Size(165, 23)
  366. Me.申請人_tb.TabIndex = 1032
  367. '
  368. '申請日期_lb
  369. '
  370. Me.申請日期_lb.BackColor = System.Drawing.Color.Transparent
  371. Me.申請日期_lb.ForeColor = System.Drawing.Color.Black
  372. Me.申請日期_lb.Location = New System.Drawing.Point(821, 32)
  373. Me.申請日期_lb.Name = "申請日期_lb"
  374. Me.申請日期_lb.Size = New System.Drawing.Size(123, 17)
  375. Me.申請日期_lb.TabIndex = 1031
  376. Me.申請日期_lb.Text = "申 請 日 期"
  377. Me.申請日期_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  378. '
  379. '倉儲單號_lb
  380. '
  381. Me.倉儲單號_lb.BackColor = System.Drawing.Color.Transparent
  382. Me.倉儲單號_lb.ForeColor = System.Drawing.Color.Black
  383. Me.倉儲單號_lb.Location = New System.Drawing.Point(662, 5)
  384. Me.倉儲單號_lb.Name = "倉儲單號_lb"
  385. Me.倉儲單號_lb.Size = New System.Drawing.Size(100, 16)
  386. Me.倉儲單號_lb.TabIndex = 1030
  387. Me.倉儲單號_lb.Text = "倉 儲 單 號"
  388. Me.倉儲單號_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  389. '
  390. '調庫單號_tb
  391. '
  392. Me.調庫單號_tb.BackColor = System.Drawing.Color.White
  393. Me.調庫單號_tb.ForeColor = System.Drawing.Color.Black
  394. Me.調庫單號_tb.Location = New System.Drawing.Point(765, 2)
  395. Me.調庫單號_tb.Name = "調庫單號_tb"
  396. Me.調庫單號_tb.Size = New System.Drawing.Size(276, 23)
  397. Me.調庫單號_tb.TabIndex = 1029
  398. '
  399. '物料規格_dgv
  400. '
  401. DataGridViewCellStyle25.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  402. Me.物料規格_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle25
  403. Me.物料規格_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  404. Me.物料規格_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  405. Me.物料規格_dgv.BackgroundColor = System.Drawing.Color.White
  406. Me.物料規格_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  407. Me.物料規格_dgv.Location = New System.Drawing.Point(4, 485)
  408. Me.物料規格_dgv.Name = "物料規格_dgv"
  409. Me.物料規格_dgv.RowHeadersWidth = 5
  410. DataGridViewCellStyle26.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  411. DataGridViewCellStyle26.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  412. Me.物料規格_dgv.RowsDefaultCellStyle = DataGridViewCellStyle26
  413. Me.物料規格_dgv.RowTemplate.Height = 24
  414. Me.物料規格_dgv.Size = New System.Drawing.Size(529, 193)
  415. Me.物料規格_dgv.TabIndex = 1028
  416. '
  417. '搜尋_bt
  418. '
  419. Me.搜尋_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Search
  420. Me.搜尋_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  421. Me.搜尋_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  422. Me.搜尋_bt.ForeColor = System.Drawing.Color.Black
  423. Me.搜尋_bt.Location = New System.Drawing.Point(373, 2)
  424. Me.搜尋_bt.Name = "搜尋_bt"
  425. Me.搜尋_bt.Size = New System.Drawing.Size(26, 26)
  426. Me.搜尋_bt.TabIndex = 1051
  427. Me.搜尋_bt.UseVisualStyleBackColor = True
  428. '
  429. '倉庫編號_tb
  430. '
  431. Me.倉庫編號_tb.Location = New System.Drawing.Point(239, 4)
  432. Me.倉庫編號_tb.Name = "倉庫編號_tb"
  433. Me.倉庫編號_tb.Size = New System.Drawing.Size(54, 23)
  434. Me.倉庫編號_tb.TabIndex = 1049
  435. Me.倉庫編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  436. '
  437. '倉庫級別_tb
  438. '
  439. Me.倉庫級別_tb.Location = New System.Drawing.Point(209, 30)
  440. Me.倉庫級別_tb.Name = "倉庫級別_tb"
  441. Me.倉庫級別_tb.Size = New System.Drawing.Size(84, 23)
  442. Me.倉庫級別_tb.TabIndex = 1047
  443. Me.倉庫級別_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  444. '
  445. '指定倉庫_cb
  446. '
  447. Me.指定倉庫_cb.BackColor = System.Drawing.Color.White
  448. Me.指定倉庫_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  449. Me.指定倉庫_cb.ForeColor = System.Drawing.Color.Black
  450. Me.指定倉庫_cb.FormattingEnabled = True
  451. Me.指定倉庫_cb.Items.AddRange(New Object() {"2019"})
  452. Me.指定倉庫_cb.Location = New System.Drawing.Point(680, 57)
  453. Me.指定倉庫_cb.Name = "指定倉庫_cb"
  454. Me.指定倉庫_cb.Size = New System.Drawing.Size(134, 24)
  455. Me.指定倉庫_cb.TabIndex = 1045
  456. '
  457. '申請日期_dtp
  458. '
  459. Me.申請日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  460. Me.申請日期_dtp.Location = New System.Drawing.Point(950, 30)
  461. Me.申請日期_dtp.Name = "申請日期_dtp"
  462. Me.申請日期_dtp.Size = New System.Drawing.Size(91, 23)
  463. Me.申請日期_dtp.TabIndex = 1044
  464. '
  465. '項次_tb
  466. '
  467. Me.項次_tb.BackColor = System.Drawing.Color.White
  468. Me.項次_tb.ForeColor = System.Drawing.Color.Black
  469. Me.項次_tb.Location = New System.Drawing.Point(178, 113)
  470. Me.項次_tb.Name = "項次_tb"
  471. Me.項次_tb.Size = New System.Drawing.Size(115, 23)
  472. Me.項次_tb.TabIndex = 1042
  473. '
  474. '項次_lb
  475. '
  476. Me.項次_lb.AutoSize = True
  477. Me.項次_lb.BackColor = System.Drawing.Color.Transparent
  478. Me.項次_lb.ForeColor = System.Drawing.Color.Black
  479. Me.項次_lb.Location = New System.Drawing.Point(1084, 106)
  480. Me.項次_lb.Name = "項次_lb"
  481. Me.項次_lb.Size = New System.Drawing.Size(31, 16)
  482. Me.項次_lb.TabIndex = 1041
  483. Me.項次_lb.Text = "項次"
  484. '
  485. '選擇_lb
  486. '
  487. Me.選擇_lb.BackColor = System.Drawing.Color.Transparent
  488. Me.選擇_lb.ForeColor = System.Drawing.Color.Black
  489. Me.選擇_lb.Location = New System.Drawing.Point(815, 104)
  490. Me.選擇_lb.Name = "選擇_lb"
  491. Me.選擇_lb.Size = New System.Drawing.Size(45, 20)
  492. Me.選擇_lb.TabIndex = 1040
  493. Me.選擇_lb.Text = "選擇"
  494. Me.選擇_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  495. '
  496. '指定倉庫_lb
  497. '
  498. Me.指定倉庫_lb.BackColor = System.Drawing.Color.Transparent
  499. Me.指定倉庫_lb.ForeColor = System.Drawing.Color.Black
  500. Me.指定倉庫_lb.Location = New System.Drawing.Point(540, 61)
  501. Me.指定倉庫_lb.Name = "指定倉庫_lb"
  502. Me.指定倉庫_lb.Size = New System.Drawing.Size(136, 16)
  503. Me.指定倉庫_lb.TabIndex = 1046
  504. Me.指定倉庫_lb.Text = "指 定 倉 庫"
  505. Me.指定倉庫_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  506. '
  507. '群組碼_tb
  508. '
  509. Me.群組碼_tb.Location = New System.Drawing.Point(3, 4)
  510. Me.群組碼_tb.Name = "群組碼_tb"
  511. Me.群組碼_tb.Size = New System.Drawing.Size(95, 23)
  512. Me.群組碼_tb.TabIndex = 1052
  513. '
  514. '物料圖_pb
  515. '
  516. Me.物料圖_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  517. Me.物料圖_pb.BackColor = System.Drawing.Color.White
  518. Me.物料圖_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  519. Me.物料圖_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  520. Me.物料圖_pb.Location = New System.Drawing.Point(1177, 3)
  521. Me.物料圖_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  522. Me.物料圖_pb.Name = "物料圖_pb"
  523. Me.物料圖_pb.Size = New System.Drawing.Size(168, 121)
  524. Me.物料圖_pb.TabIndex = 1053
  525. Me.物料圖_pb.TabStop = False
  526. '
  527. '可申請_tb
  528. '
  529. Me.可申請_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  530. Me.可申請_tb.Location = New System.Drawing.Point(468, 681)
  531. Me.可申請_tb.Name = "可申請_tb"
  532. Me.可申請_tb.Size = New System.Drawing.Size(65, 23)
  533. Me.可申請_tb.TabIndex = 1063
  534. '
  535. '最大庫存量_tb
  536. '
  537. Me.最大庫存量_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  538. Me.最大庫存量_tb.Location = New System.Drawing.Point(83, 731)
  539. Me.最大庫存量_tb.Name = "最大庫存量_tb"
  540. Me.最大庫存量_tb.Size = New System.Drawing.Size(53, 23)
  541. Me.最大庫存量_tb.TabIndex = 1060
  542. '
  543. '庫存量_tb
  544. '
  545. Me.庫存量_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  546. Me.庫存量_tb.Location = New System.Drawing.Point(83, 707)
  547. Me.庫存量_tb.Name = "庫存量_tb"
  548. Me.庫存量_tb.Size = New System.Drawing.Size(53, 23)
  549. Me.庫存量_tb.TabIndex = 1058
  550. '
  551. '盤損數_nud
  552. '
  553. Me.盤損數_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  554. Me.盤損數_nud.ForeColor = System.Drawing.Color.Green
  555. Me.盤損數_nud.Location = New System.Drawing.Point(343, 707)
  556. Me.盤損數_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  557. Me.盤損數_nud.Name = "盤損數_nud"
  558. Me.盤損數_nud.Size = New System.Drawing.Size(65, 23)
  559. Me.盤損數_nud.TabIndex = 1057
  560. Me.盤損數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  561. '
  562. '盤盈數_lb
  563. '
  564. Me.盤盈數_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  565. Me.盤盈數_lb.ForeColor = System.Drawing.Color.Green
  566. Me.盤盈數_lb.Location = New System.Drawing.Point(142, 732)
  567. Me.盤盈數_lb.Name = "盤盈數_lb"
  568. Me.盤盈數_lb.Size = New System.Drawing.Size(197, 20)
  569. Me.盤盈數_lb.TabIndex = 1056
  570. Me.盤盈數_lb.Text = "盤 盈 數"
  571. Me.盤盈數_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  572. '
  573. '料號_lb
  574. '
  575. Me.料號_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  576. Me.料號_lb.Location = New System.Drawing.Point(2, 685)
  577. Me.料號_lb.Name = "料號_lb"
  578. Me.料號_lb.Size = New System.Drawing.Size(55, 16)
  579. Me.料號_lb.TabIndex = 1055
  580. Me.料號_lb.Text = "料 號"
  581. Me.料號_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  582. '
  583. '料號_tb
  584. '
  585. Me.料號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  586. Me.料號_tb.Location = New System.Drawing.Point(61, 682)
  587. Me.料號_tb.Name = "料號_tb"
  588. Me.料號_tb.Size = New System.Drawing.Size(193, 23)
  589. Me.料號_tb.TabIndex = 1054
  590. '
  591. '庫存量_lb
  592. '
  593. Me.庫存量_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  594. Me.庫存量_lb.Location = New System.Drawing.Point(3, 710)
  595. Me.庫存量_lb.Name = "庫存量_lb"
  596. Me.庫存量_lb.Size = New System.Drawing.Size(74, 18)
  597. Me.庫存量_lb.TabIndex = 1059
  598. Me.庫存量_lb.Text = "庫 存 量"
  599. Me.庫存量_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  600. '
  601. '最大庫存量_lb
  602. '
  603. Me.最大庫存量_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  604. Me.最大庫存量_lb.Location = New System.Drawing.Point(3, 734)
  605. Me.最大庫存量_lb.Name = "最大庫存量_lb"
  606. Me.最大庫存量_lb.Size = New System.Drawing.Size(74, 18)
  607. Me.最大庫存量_lb.TabIndex = 1061
  608. Me.最大庫存量_lb.Text = "最大庫存量"
  609. Me.最大庫存量_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  610. '
  611. '可盤損數_lb
  612. '
  613. Me.可盤損數_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  614. Me.可盤損數_lb.Location = New System.Drawing.Point(266, 685)
  615. Me.可盤損數_lb.Name = "可盤損數_lb"
  616. Me.可盤損數_lb.Size = New System.Drawing.Size(199, 16)
  617. Me.可盤損數_lb.TabIndex = 1062
  618. Me.可盤損數_lb.Text = "可 盤 損 數"
  619. Me.可盤損數_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  620. '
  621. '調庫單據_dgv
  622. '
  623. DataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  624. Me.調庫單據_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle27
  625. Me.調庫單據_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  626. Me.調庫單據_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  627. Me.調庫單據_dgv.BackgroundColor = System.Drawing.Color.White
  628. Me.調庫單據_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  629. Me.調庫單據_dgv.Location = New System.Drawing.Point(4, 777)
  630. Me.調庫單據_dgv.Name = "調庫單據_dgv"
  631. Me.調庫單據_dgv.RowHeadersWidth = 5
  632. DataGridViewCellStyle28.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  633. DataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  634. Me.調庫單據_dgv.RowsDefaultCellStyle = DataGridViewCellStyle28
  635. Me.調庫單據_dgv.RowTemplate.Height = 24
  636. Me.調庫單據_dgv.Size = New System.Drawing.Size(529, 164)
  637. Me.調庫單據_dgv.TabIndex = 1064
  638. '
  639. '調庫明細_dgv
  640. '
  641. DataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
  642. Me.調庫明細_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle29
  643. Me.調庫明細_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  644. Or System.Windows.Forms.AnchorStyles.Left) _
  645. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  646. Me.調庫明細_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  647. Me.調庫明細_dgv.BackgroundColor = System.Drawing.Color.White
  648. Me.調庫明細_dgv.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  649. DataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  650. DataGridViewCellStyle30.BackColor = System.Drawing.Color.White
  651. DataGridViewCellStyle30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  652. DataGridViewCellStyle30.ForeColor = System.Drawing.Color.Black
  653. DataGridViewCellStyle30.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  654. DataGridViewCellStyle30.SelectionForeColor = System.Drawing.Color.White
  655. DataGridViewCellStyle30.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  656. Me.調庫明細_dgv.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle30
  657. Me.調庫明細_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  658. DataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  659. DataGridViewCellStyle31.BackColor = System.Drawing.Color.White
  660. DataGridViewCellStyle31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  661. DataGridViewCellStyle31.ForeColor = System.Drawing.Color.Black
  662. DataGridViewCellStyle31.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  663. DataGridViewCellStyle31.SelectionForeColor = System.Drawing.SystemColors.HighlightText
  664. DataGridViewCellStyle31.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
  665. Me.調庫明細_dgv.DefaultCellStyle = DataGridViewCellStyle31
  666. Me.調庫明細_dgv.Location = New System.Drawing.Point(536, 125)
  667. Me.調庫明細_dgv.Name = "調庫明細_dgv"
  668. DataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  669. DataGridViewCellStyle32.BackColor = System.Drawing.Color.White
  670. DataGridViewCellStyle32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  671. DataGridViewCellStyle32.ForeColor = System.Drawing.Color.Black
  672. DataGridViewCellStyle32.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  673. DataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText
  674. DataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  675. Me.調庫明細_dgv.RowHeadersDefaultCellStyle = DataGridViewCellStyle32
  676. Me.調庫明細_dgv.RowHeadersWidth = 5
  677. DataGridViewCellStyle33.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  678. DataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  679. Me.調庫明細_dgv.RowsDefaultCellStyle = DataGridViewCellStyle33
  680. Me.調庫明細_dgv.RowTemplate.Height = 24
  681. Me.調庫明細_dgv.Size = New System.Drawing.Size(812, 816)
  682. Me.調庫明細_dgv.TabIndex = 1065
  683. '
  684. '開立庫存調整單_bt
  685. '
  686. Me.開立庫存調整單_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.add_2
  687. Me.開立庫存調整單_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  688. Me.開立庫存調整單_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  689. Me.開立庫存調整單_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  690. Me.開立庫存調整單_bt.Location = New System.Drawing.Point(818, 54)
  691. Me.開立庫存調整單_bt.Name = "開立庫存調整單_bt"
  692. Me.開立庫存調整單_bt.Size = New System.Drawing.Size(50, 50)
  693. Me.開立庫存調整單_bt.TabIndex = 1066
  694. Me.開立庫存調整單_bt.UseVisualStyleBackColor = True
  695. '
  696. '未審核_lb
  697. '
  698. Me.未審核_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  699. Me.未審核_lb.Location = New System.Drawing.Point(1, 759)
  700. Me.未審核_lb.Name = "未審核_lb"
  701. Me.未審核_lb.Size = New System.Drawing.Size(307, 16)
  702. Me.未審核_lb.TabIndex = 1067
  703. Me.未審核_lb.Text = "未 審 核 庫 存 調 整 單 據"
  704. Me.未審核_lb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
  705. '
  706. '選定內容加入庫存調整申請單_bt
  707. '
  708. Me.選定內容加入庫存調整申請單_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  709. Me.選定內容加入庫存調整申請單_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping4
  710. Me.選定內容加入庫存調整申請單_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  711. Me.選定內容加入庫存調整申請單_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  712. Me.選定內容加入庫存調整申請單_bt.ForeColor = System.Drawing.Color.Green
  713. Me.選定內容加入庫存調整申請單_bt.Location = New System.Drawing.Point(410, 705)
  714. Me.選定內容加入庫存調整申請單_bt.Name = "選定內容加入庫存調整申請單_bt"
  715. Me.選定內容加入庫存調整申請單_bt.Size = New System.Drawing.Size(125, 50)
  716. Me.選定內容加入庫存調整申請單_bt.TabIndex = 1068
  717. Me.選定內容加入庫存調整申請單_bt.UseVisualStyleBackColor = True
  718. '
  719. '盤盈數_nud
  720. '
  721. Me.盤盈數_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  722. Me.盤盈數_nud.ForeColor = System.Drawing.Color.Green
  723. Me.盤盈數_nud.Location = New System.Drawing.Point(343, 731)
  724. Me.盤盈數_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  725. Me.盤盈數_nud.Name = "盤盈數_nud"
  726. Me.盤盈數_nud.Size = New System.Drawing.Size(65, 23)
  727. Me.盤盈數_nud.TabIndex = 1070
  728. Me.盤盈數_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  729. '
  730. '盤損數_lb
  731. '
  732. Me.盤損數_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  733. Me.盤損數_lb.ForeColor = System.Drawing.Color.Green
  734. Me.盤損數_lb.Location = New System.Drawing.Point(133, 708)
  735. Me.盤損數_lb.Name = "盤損數_lb"
  736. Me.盤損數_lb.Size = New System.Drawing.Size(207, 20)
  737. Me.盤損數_lb.TabIndex = 1069
  738. Me.盤損數_lb.Text = "盤 損 數"
  739. Me.盤損數_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  740. '
  741. '存檔_bt
  742. '
  743. Me.存檔_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER
  744. Me.存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  745. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  746. Me.存檔_bt.ForeColor = System.Drawing.Color.Green
  747. Me.存檔_bt.Location = New System.Drawing.Point(875, 54)
  748. Me.存檔_bt.Name = "存檔_bt"
  749. Me.存檔_bt.Size = New System.Drawing.Size(51, 50)
  750. Me.存檔_bt.TabIndex = 1071
  751. Me.存檔_bt.UseVisualStyleBackColor = True
  752. '
  753. 'ContextMenuStrip1
  754. '
  755. Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.重新整理_tsm, Me.搜尋_tsm})
  756. Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
  757. Me.ContextMenuStrip1.Size = New System.Drawing.Size(123, 48)
  758. '
  759. '重新整理_tsm
  760. '
  761. Me.重新整理_tsm.Name = "重新整理_tsm"
  762. Me.重新整理_tsm.Size = New System.Drawing.Size(122, 22)
  763. Me.重新整理_tsm.Text = "重新整理"
  764. '
  765. '搜尋_tsm
  766. '
  767. Me.搜尋_tsm.Name = "搜尋_tsm"
  768. Me.搜尋_tsm.Size = New System.Drawing.Size(122, 22)
  769. Me.搜尋_tsm.Text = "搜尋"
  770. '
  771. '刪除_bt
  772. '
  773. Me.刪除_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  774. Me.刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  775. Me.刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  776. Me.刪除_bt.ForeColor = System.Drawing.Color.Red
  777. Me.刪除_bt.Location = New System.Drawing.Point(1069, 54)
  778. Me.刪除_bt.Name = "刪除_bt"
  779. Me.刪除_bt.Size = New System.Drawing.Size(50, 50)
  780. Me.刪除_bt.TabIndex = 1358
  781. Me.刪除_bt.UseVisualStyleBackColor = True
  782. '
  783. '刪除選取_bt
  784. '
  785. Me.刪除選取_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Close
  786. Me.刪除選取_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  787. Me.刪除選取_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  788. Me.刪除選取_bt.ForeColor = System.Drawing.Color.Red
  789. Me.刪除選取_bt.Location = New System.Drawing.Point(926, 54)
  790. Me.刪除選取_bt.Name = "刪除選取_bt"
  791. Me.刪除選取_bt.Size = New System.Drawing.Size(50, 50)
  792. Me.刪除選取_bt.TabIndex = 1359
  793. Me.刪除選取_bt.UseVisualStyleBackColor = True
  794. '
  795. '大間距1_ch
  796. '
  797. Me.大間距1_ch.AutoSize = True
  798. Me.大間距1_ch.Location = New System.Drawing.Point(490, 5)
  799. Me.大間距1_ch.Name = "大間距1_ch"
  800. Me.大間距1_ch.Size = New System.Drawing.Size(39, 20)
  801. Me.大間距1_ch.TabIndex = 1670
  802. Me.大間距1_ch.Text = "L3"
  803. Me.大間距1_ch.UseVisualStyleBackColor = True
  804. '
  805. '中間距1_ch
  806. '
  807. Me.中間距1_ch.AutoSize = True
  808. Me.中間距1_ch.Location = New System.Drawing.Point(447, 5)
  809. Me.中間距1_ch.Name = "中間距1_ch"
  810. Me.中間距1_ch.Size = New System.Drawing.Size(39, 20)
  811. Me.中間距1_ch.TabIndex = 1669
  812. Me.中間距1_ch.Text = "L2"
  813. Me.中間距1_ch.UseVisualStyleBackColor = True
  814. '
  815. '小間距1_ch
  816. '
  817. Me.小間距1_ch.AutoSize = True
  818. Me.小間距1_ch.Location = New System.Drawing.Point(405, 5)
  819. Me.小間距1_ch.Name = "小間距1_ch"
  820. Me.小間距1_ch.Size = New System.Drawing.Size(39, 20)
  821. Me.小間距1_ch.TabIndex = 1668
  822. Me.小間距1_ch.Text = "L1"
  823. Me.小間距1_ch.UseVisualStyleBackColor = True
  824. '
  825. '大間距_ch
  826. '
  827. Me.大間距_ch.AutoSize = True
  828. Me.大間距_ch.BackColor = System.Drawing.Color.Transparent
  829. Me.大間距_ch.ForeColor = System.Drawing.Color.Black
  830. Me.大間距_ch.Location = New System.Drawing.Point(1126, 104)
  831. Me.大間距_ch.Name = "大間距_ch"
  832. Me.大間距_ch.Size = New System.Drawing.Size(39, 20)
  833. Me.大間距_ch.TabIndex = 1673
  834. Me.大間距_ch.Text = "L3"
  835. Me.大間距_ch.UseVisualStyleBackColor = False
  836. '
  837. '中間距_ch
  838. '
  839. Me.中間距_ch.AutoSize = True
  840. Me.中間距_ch.BackColor = System.Drawing.Color.Transparent
  841. Me.中間距_ch.ForeColor = System.Drawing.Color.Black
  842. Me.中間距_ch.Location = New System.Drawing.Point(1126, 81)
  843. Me.中間距_ch.Name = "中間距_ch"
  844. Me.中間距_ch.Size = New System.Drawing.Size(39, 20)
  845. Me.中間距_ch.TabIndex = 1672
  846. Me.中間距_ch.Text = "L2"
  847. Me.中間距_ch.UseVisualStyleBackColor = False
  848. '
  849. '小間距_ch
  850. '
  851. Me.小間距_ch.AutoSize = True
  852. Me.小間距_ch.BackColor = System.Drawing.Color.Transparent
  853. Me.小間距_ch.ForeColor = System.Drawing.Color.Black
  854. Me.小間距_ch.Location = New System.Drawing.Point(1126, 58)
  855. Me.小間距_ch.Name = "小間距_ch"
  856. Me.小間距_ch.Size = New System.Drawing.Size(39, 20)
  857. Me.小間距_ch.TabIndex = 1671
  858. Me.小間距_ch.Text = "L1"
  859. Me.小間距_ch.UseVisualStyleBackColor = False
  860. '
  861. '語轉扭_bt
  862. '
  863. Me.語轉扭_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  864. Me.語轉扭_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  865. Me.語轉扭_bt.ForeColor = System.Drawing.Color.Black
  866. Me.語轉扭_bt.Location = New System.Drawing.Point(1150, 1)
  867. Me.語轉扭_bt.Name = "語轉扭_bt"
  868. Me.語轉扭_bt.Size = New System.Drawing.Size(25, 25)
  869. Me.語轉扭_bt.TabIndex = 1674
  870. Me.語轉扭_bt.Text = "L"
  871. Me.語轉扭_bt.UseVisualStyleBackColor = True
  872. '
  873. '新群組1_cb
  874. '
  875. Me.新群組1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  876. Me.新群組1_cb.FormattingEnabled = True
  877. Me.新群組1_cb.Items.AddRange(New Object() {"2019"})
  878. Me.新群組1_cb.Location = New System.Drawing.Point(85, 3)
  879. Me.新群組1_cb.Name = "新群組1_cb"
  880. Me.新群組1_cb.Size = New System.Drawing.Size(284, 24)
  881. Me.新群組1_cb.TabIndex = 1675
  882. '
  883. 'Panel1
  884. '
  885. Me.Panel1.Controls.Add(Me.退料工地_cb)
  886. Me.Panel1.Controls.Add(Me.物料_dgv)
  887. Me.Panel1.Controls.Add(Me.群組分類_dgv)
  888. Me.Panel1.Controls.Add(Me.群組碼_tb)
  889. Me.Panel1.Controls.Add(Me.物料原則一_cb)
  890. Me.Panel1.Controls.Add(Me.物料原則二_cb)
  891. Me.Panel1.Controls.Add(Me.群組編碼_cb)
  892. Me.Panel1.Controls.Add(Me.倉庫編號_tb)
  893. Me.Panel1.Controls.Add(Me.倉庫級別_tb)
  894. Me.Panel1.Controls.Add(Me.語言_dgv)
  895. Me.Panel1.Controls.Add(Me.申請人_tb)
  896. Me.Panel1.Controls.Add(Me.項次_tb)
  897. Me.Panel1.Location = New System.Drawing.Point(579, 239)
  898. Me.Panel1.Name = "Panel1"
  899. Me.Panel1.Size = New System.Drawing.Size(302, 177)
  900. Me.Panel1.TabIndex = 1676
  901. '
  902. '退料工地_cb
  903. '
  904. Me.退料工地_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  905. Me.退料工地_cb.FormattingEnabled = True
  906. Me.退料工地_cb.Items.AddRange(New Object() {"2019"})
  907. Me.退料工地_cb.Location = New System.Drawing.Point(214, 83)
  908. Me.退料工地_cb.Name = "退料工地_cb"
  909. Me.退料工地_cb.Size = New System.Drawing.Size(79, 24)
  910. Me.退料工地_cb.TabIndex = 1365
  911. '
  912. '物料_dgv
  913. '
  914. Me.物料_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  915. Me.物料_dgv.Location = New System.Drawing.Point(91, 112)
  916. Me.物料_dgv.Name = "物料_dgv"
  917. Me.物料_dgv.RowHeadersWidth = 5
  918. Me.物料_dgv.RowTemplate.Height = 24
  919. Me.物料_dgv.Size = New System.Drawing.Size(81, 50)
  920. Me.物料_dgv.TabIndex = 1364
  921. '
  922. '群組分類_dgv
  923. '
  924. Me.群組分類_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  925. Me.群組分類_dgv.Location = New System.Drawing.Point(3, 113)
  926. Me.群組分類_dgv.Name = "群組分類_dgv"
  927. Me.群組分類_dgv.RowHeadersWidth = 5
  928. Me.群組分類_dgv.RowTemplate.Height = 24
  929. Me.群組分類_dgv.Size = New System.Drawing.Size(81, 49)
  930. Me.群組分類_dgv.TabIndex = 1361
  931. '
  932. 'RadSeparator1
  933. '
  934. Me.RadSeparator1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  935. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  936. Me.RadSeparator1.BackColor = System.Drawing.Color.Transparent
  937. Me.RadSeparator1.Location = New System.Drawing.Point(539, 23)
  938. Me.RadSeparator1.Name = "RadSeparator1"
  939. Me.RadSeparator1.Size = New System.Drawing.Size(790, 10)
  940. Me.RadSeparator1.TabIndex = 1847
  941. '
  942. '舊式_P
  943. '
  944. Me.舊式_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  945. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  946. Me.舊式_P.Controls.Add(Me.群組編碼_lb)
  947. Me.舊式_P.Controls.Add(Me.未審核_lb)
  948. Me.舊式_P.Controls.Add(Me.料號_lb)
  949. Me.舊式_P.Controls.Add(Me.物料規格_dgv)
  950. Me.舊式_P.Controls.Add(Me.新群組1_cb)
  951. Me.舊式_P.Controls.Add(Me.物料清單_dgv)
  952. Me.舊式_P.Controls.Add(Me.大間距1_ch)
  953. Me.舊式_P.Controls.Add(Me.搜尋_bt)
  954. Me.舊式_P.Controls.Add(Me.中間距1_ch)
  955. Me.舊式_P.Controls.Add(Me.可盤損數_lb)
  956. Me.舊式_P.Controls.Add(Me.小間距1_ch)
  957. Me.舊式_P.Controls.Add(Me.最大庫存量_lb)
  958. Me.舊式_P.Controls.Add(Me.庫存量_lb)
  959. Me.舊式_P.Controls.Add(Me.料號_tb)
  960. Me.舊式_P.Controls.Add(Me.盤盈數_lb)
  961. Me.舊式_P.Controls.Add(Me.盤損數_nud)
  962. Me.舊式_P.Controls.Add(Me.盤盈數_nud)
  963. Me.舊式_P.Controls.Add(Me.庫存量_tb)
  964. Me.舊式_P.Controls.Add(Me.盤損數_lb)
  965. Me.舊式_P.Controls.Add(Me.最大庫存量_tb)
  966. Me.舊式_P.Controls.Add(Me.選定內容加入庫存調整申請單_bt)
  967. Me.舊式_P.Controls.Add(Me.可申請_tb)
  968. Me.舊式_P.Controls.Add(Me.調庫單據_dgv)
  969. Me.舊式_P.Location = New System.Drawing.Point(-1, -1)
  970. Me.舊式_P.Name = "舊式_P"
  971. Me.舊式_P.Size = New System.Drawing.Size(537, 945)
  972. Me.舊式_P.TabIndex = 1848
  973. '
  974. '新式_P
  975. '
  976. Me.新式_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  977. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  978. Me.新式_P.Controls.Add(Me.甲方_lb)
  979. Me.新式_P.Controls.Add(Me.合約編號1_cb)
  980. Me.新式_P.Controls.Add(Me.搜尋1_bt)
  981. Me.新式_P.Controls.Add(Me.縮放3_bt)
  982. Me.新式_P.Controls.Add(Me.回次頁_bt)
  983. Me.新式_P.Controls.Add(Me.單據_bt)
  984. Me.新式_P.Controls.Add(Me.回首頁_bt)
  985. Me.新式_P.Controls.Add(Me.物料_p)
  986. Me.新式_P.Controls.Add(Me.主頁_p)
  987. Me.新式_P.Controls.Add(Me.次頁_p)
  988. Me.新式_P.Controls.Add(Me.合約_P)
  989. Me.新式_P.Controls.Add(Me.單據_p)
  990. Me.新式_P.Location = New System.Drawing.Point(-1, -1)
  991. Me.新式_P.Name = "新式_P"
  992. Me.新式_P.Size = New System.Drawing.Size(537, 945)
  993. Me.新式_P.TabIndex = 1849
  994. '
  995. '甲方_lb
  996. '
  997. Me.甲方_lb.AutoSize = True
  998. Me.甲方_lb.BackColor = System.Drawing.Color.Transparent
  999. Me.甲方_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1000. Me.甲方_lb.ForeColor = System.Drawing.Color.Black
  1001. Me.甲方_lb.Location = New System.Drawing.Point(420, 8)
  1002. Me.甲方_lb.Name = "甲方_lb"
  1003. Me.甲方_lb.Size = New System.Drawing.Size(50, 16)
  1004. Me.甲方_lb.TabIndex = 1873
  1005. Me.甲方_lb.Text = "Partai A"
  1006. Me.甲方_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1007. '
  1008. '合約編號1_cb
  1009. '
  1010. Me.合約編號1_cb.BackColor = System.Drawing.SystemColors.Window
  1011. Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  1012. Me.合約編號1_cb.ForeColor = System.Drawing.Color.Black
  1013. Me.合約編號1_cb.FormattingEnabled = True
  1014. Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  1015. Me.合約編號1_cb.Location = New System.Drawing.Point(403, 25)
  1016. Me.合約編號1_cb.Name = "合約編號1_cb"
  1017. Me.合約編號1_cb.Size = New System.Drawing.Size(80, 24)
  1018. Me.合約編號1_cb.TabIndex = 1872
  1019. '
  1020. '搜尋1_bt
  1021. '
  1022. Me.搜尋1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Search
  1023. Me.搜尋1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1024. Me.搜尋1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1025. Me.搜尋1_bt.ForeColor = System.Drawing.Color.Black
  1026. Me.搜尋1_bt.Location = New System.Drawing.Point(259, 4)
  1027. Me.搜尋1_bt.Name = "搜尋1_bt"
  1028. Me.搜尋1_bt.Size = New System.Drawing.Size(48, 48)
  1029. Me.搜尋1_bt.TabIndex = 1871
  1030. Me.搜尋1_bt.UseVisualStyleBackColor = True
  1031. '
  1032. '縮放3_bt
  1033. '
  1034. Me.縮放3_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.pen3
  1035. Me.縮放3_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1036. Me.縮放3_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1037. Me.縮放3_bt.ForeColor = System.Drawing.Color.Blue
  1038. Me.縮放3_bt.Location = New System.Drawing.Point(485, 4)
  1039. Me.縮放3_bt.Name = "縮放3_bt"
  1040. Me.縮放3_bt.Size = New System.Drawing.Size(48, 48)
  1041. Me.縮放3_bt.TabIndex = 1869
  1042. Me.縮放3_bt.UseVisualStyleBackColor = True
  1043. '
  1044. '回次頁_bt
  1045. '
  1046. Me.回次頁_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.home
  1047. Me.回次頁_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1048. Me.回次頁_bt.Location = New System.Drawing.Point(209, 4)
  1049. Me.回次頁_bt.Name = "回次頁_bt"
  1050. Me.回次頁_bt.Size = New System.Drawing.Size(48, 48)
  1051. Me.回次頁_bt.TabIndex = 1867
  1052. Me.回次頁_bt.UseVisualStyleBackColor = True
  1053. '
  1054. '單據_bt
  1055. '
  1056. Me.單據_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.pen1
  1057. Me.單據_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1058. Me.單據_bt.Location = New System.Drawing.Point(5, 4)
  1059. Me.單據_bt.Name = "單據_bt"
  1060. Me.單據_bt.Size = New System.Drawing.Size(48, 48)
  1061. Me.單據_bt.TabIndex = 1864
  1062. Me.單據_bt.UseVisualStyleBackColor = True
  1063. '
  1064. '回首頁_bt
  1065. '
  1066. Me.回首頁_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources._1_103
  1067. Me.回首頁_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1068. Me.回首頁_bt.Location = New System.Drawing.Point(159, 4)
  1069. Me.回首頁_bt.Name = "回首頁_bt"
  1070. Me.回首頁_bt.Size = New System.Drawing.Size(48, 48)
  1071. Me.回首頁_bt.TabIndex = 1863
  1072. Me.回首頁_bt.UseVisualStyleBackColor = True
  1073. '
  1074. '物料_p
  1075. '
  1076. Me.物料_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1077. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1078. Me.物料_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1079. Me.物料_p.Controls.Add(Me.料號1_lb)
  1080. Me.物料_p.Controls.Add(Me.選定內容加入庫存調整申請單1_bt)
  1081. Me.物料_p.Controls.Add(Me.物料清單1_dgv)
  1082. Me.物料_p.Controls.Add(Me.可盤損數1_lb)
  1083. Me.物料_p.Controls.Add(Me.盤盈數1_nud)
  1084. Me.物料_p.Controls.Add(Me.可申請1_tb)
  1085. Me.物料_p.Controls.Add(Me.最大庫存量1_lb)
  1086. Me.物料_p.Controls.Add(Me.最大庫存量1_tb)
  1087. Me.物料_p.Controls.Add(Me.庫存量1_lb)
  1088. Me.物料_p.Controls.Add(Me.盤損數1_lb)
  1089. Me.物料_p.Controls.Add(Me.庫存量1_tb)
  1090. Me.物料_p.Controls.Add(Me.料號1_tb)
  1091. Me.物料_p.Controls.Add(Me.盤損數1_nud)
  1092. Me.物料_p.Controls.Add(Me.盤盈數1_lb)
  1093. Me.物料_p.Controls.Add(Me.物料規格1_dgv)
  1094. Me.物料_p.Location = New System.Drawing.Point(1, 54)
  1095. Me.物料_p.Name = "物料_p"
  1096. Me.物料_p.Size = New System.Drawing.Size(534, 888)
  1097. Me.物料_p.TabIndex = 1865
  1098. '
  1099. '料號1_lb
  1100. '
  1101. Me.料號1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1102. Me.料號1_lb.BackColor = System.Drawing.Color.Transparent
  1103. Me.料號1_lb.ForeColor = System.Drawing.Color.Black
  1104. Me.料號1_lb.Location = New System.Drawing.Point(5, 815)
  1105. Me.料號1_lb.Name = "料號1_lb"
  1106. Me.料號1_lb.Size = New System.Drawing.Size(55, 16)
  1107. Me.料號1_lb.TabIndex = 1873
  1108. Me.料號1_lb.Text = "料 號"
  1109. Me.料號1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1110. '
  1111. '選定內容加入庫存調整申請單1_bt
  1112. '
  1113. Me.選定內容加入庫存調整申請單1_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1114. Me.選定內容加入庫存調整申請單1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Shipping4
  1115. Me.選定內容加入庫存調整申請單1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1116. Me.選定內容加入庫存調整申請單1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1117. Me.選定內容加入庫存調整申請單1_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1118. Me.選定內容加入庫存調整申請單1_bt.Location = New System.Drawing.Point(403, 834)
  1119. Me.選定內容加入庫存調整申請單1_bt.Name = "選定內容加入庫存調整申請單1_bt"
  1120. Me.選定內容加入庫存調整申請單1_bt.Size = New System.Drawing.Size(125, 50)
  1121. Me.選定內容加入庫存調整申請單1_bt.TabIndex = 1868
  1122. Me.選定內容加入庫存調整申請單1_bt.UseVisualStyleBackColor = True
  1123. '
  1124. '物料清單1_dgv
  1125. '
  1126. Me.物料清單1_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1127. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1128. Me.物料清單1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1129. Me.物料清單1_dgv.BackgroundColor = System.Drawing.Color.White
  1130. Me.物料清單1_dgv.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1131. DataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  1132. DataGridViewCellStyle34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1133. DataGridViewCellStyle34.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1134. DataGridViewCellStyle34.SelectionForeColor = System.Drawing.Color.White
  1135. DataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1136. Me.物料清單1_dgv.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle34
  1137. Me.物料清單1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1138. DataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  1139. DataGridViewCellStyle35.BackColor = System.Drawing.SystemColors.Window
  1140. DataGridViewCellStyle35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1141. DataGridViewCellStyle35.ForeColor = System.Drawing.SystemColors.ControlText
  1142. DataGridViewCellStyle35.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1143. DataGridViewCellStyle35.SelectionForeColor = System.Drawing.SystemColors.HighlightText
  1144. DataGridViewCellStyle35.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
  1145. Me.物料清單1_dgv.DefaultCellStyle = DataGridViewCellStyle35
  1146. Me.物料清單1_dgv.Location = New System.Drawing.Point(2, 1)
  1147. Me.物料清單1_dgv.Name = "物料清單1_dgv"
  1148. DataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  1149. DataGridViewCellStyle36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1150. DataGridViewCellStyle36.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1151. DataGridViewCellStyle36.SelectionForeColor = System.Drawing.SystemColors.HighlightText
  1152. DataGridViewCellStyle36.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1153. Me.物料清單1_dgv.RowHeadersDefaultCellStyle = DataGridViewCellStyle36
  1154. Me.物料清單1_dgv.RowHeadersWidth = 5
  1155. DataGridViewCellStyle37.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1156. DataGridViewCellStyle37.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1157. DataGridViewCellStyle37.SelectionForeColor = System.Drawing.Color.White
  1158. DataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1159. Me.物料清單1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle37
  1160. Me.物料清單1_dgv.RowTemplate.Height = 24
  1161. Me.物料清單1_dgv.Size = New System.Drawing.Size(529, 538)
  1162. Me.物料清單1_dgv.TabIndex = 680
  1163. '
  1164. '可盤損數1_lb
  1165. '
  1166. Me.可盤損數1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1167. Me.可盤損數1_lb.BackColor = System.Drawing.Color.Transparent
  1168. Me.可盤損數1_lb.ForeColor = System.Drawing.Color.Black
  1169. Me.可盤損數1_lb.Location = New System.Drawing.Point(261, 815)
  1170. Me.可盤損數1_lb.Name = "可盤損數1_lb"
  1171. Me.可盤損數1_lb.Size = New System.Drawing.Size(199, 16)
  1172. Me.可盤損數1_lb.TabIndex = 1880
  1173. Me.可盤損數1_lb.Text = "可 盤 損 數"
  1174. Me.可盤損數1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1175. '
  1176. '盤盈數1_nud
  1177. '
  1178. Me.盤盈數1_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1179. Me.盤盈數1_nud.BackColor = System.Drawing.Color.White
  1180. Me.盤盈數1_nud.ForeColor = System.Drawing.Color.Green
  1181. Me.盤盈數1_nud.Location = New System.Drawing.Point(295, 861)
  1182. Me.盤盈數1_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  1183. Me.盤盈數1_nud.Name = "盤盈數1_nud"
  1184. Me.盤盈數1_nud.Size = New System.Drawing.Size(65, 23)
  1185. Me.盤盈數1_nud.TabIndex = 1884
  1186. Me.盤盈數1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1187. '
  1188. '可申請1_tb
  1189. '
  1190. Me.可申請1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1191. Me.可申請1_tb.BackColor = System.Drawing.Color.White
  1192. Me.可申請1_tb.ForeColor = System.Drawing.Color.Black
  1193. Me.可申請1_tb.Location = New System.Drawing.Point(463, 811)
  1194. Me.可申請1_tb.Name = "可申請1_tb"
  1195. Me.可申請1_tb.Size = New System.Drawing.Size(65, 23)
  1196. Me.可申請1_tb.TabIndex = 1881
  1197. '
  1198. '最大庫存量1_lb
  1199. '
  1200. Me.最大庫存量1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1201. Me.最大庫存量1_lb.BackColor = System.Drawing.Color.Transparent
  1202. Me.最大庫存量1_lb.ForeColor = System.Drawing.Color.Black
  1203. Me.最大庫存量1_lb.Location = New System.Drawing.Point(6, 864)
  1204. Me.最大庫存量1_lb.Name = "最大庫存量1_lb"
  1205. Me.最大庫存量1_lb.Size = New System.Drawing.Size(67, 16)
  1206. Me.最大庫存量1_lb.TabIndex = 1879
  1207. Me.最大庫存量1_lb.Text = "最大庫存量"
  1208. Me.最大庫存量1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1209. '
  1210. '最大庫存量1_tb
  1211. '
  1212. Me.最大庫存量1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1213. Me.最大庫存量1_tb.BackColor = System.Drawing.Color.White
  1214. Me.最大庫存量1_tb.ForeColor = System.Drawing.Color.Black
  1215. Me.最大庫存量1_tb.Location = New System.Drawing.Point(82, 861)
  1216. Me.最大庫存量1_tb.Name = "最大庫存量1_tb"
  1217. Me.最大庫存量1_tb.Size = New System.Drawing.Size(53, 23)
  1218. Me.最大庫存量1_tb.TabIndex = 1878
  1219. '
  1220. '庫存量1_lb
  1221. '
  1222. Me.庫存量1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1223. Me.庫存量1_lb.BackColor = System.Drawing.Color.Transparent
  1224. Me.庫存量1_lb.ForeColor = System.Drawing.Color.Black
  1225. Me.庫存量1_lb.Location = New System.Drawing.Point(6, 840)
  1226. Me.庫存量1_lb.Name = "庫存量1_lb"
  1227. Me.庫存量1_lb.Size = New System.Drawing.Size(67, 16)
  1228. Me.庫存量1_lb.TabIndex = 1877
  1229. Me.庫存量1_lb.Text = "庫 存 量"
  1230. Me.庫存量1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1231. '
  1232. '盤損數1_lb
  1233. '
  1234. Me.盤損數1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1235. Me.盤損數1_lb.BackColor = System.Drawing.Color.Transparent
  1236. Me.盤損數1_lb.ForeColor = System.Drawing.Color.Green
  1237. Me.盤損數1_lb.Location = New System.Drawing.Point(141, 840)
  1238. Me.盤損數1_lb.Name = "盤損數1_lb"
  1239. Me.盤損數1_lb.Size = New System.Drawing.Size(151, 16)
  1240. Me.盤損數1_lb.TabIndex = 1883
  1241. Me.盤損數1_lb.Text = "盤 損 數"
  1242. Me.盤損數1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1243. '
  1244. '庫存量1_tb
  1245. '
  1246. Me.庫存量1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1247. Me.庫存量1_tb.BackColor = System.Drawing.Color.White
  1248. Me.庫存量1_tb.ForeColor = System.Drawing.Color.Black
  1249. Me.庫存量1_tb.Location = New System.Drawing.Point(82, 837)
  1250. Me.庫存量1_tb.Name = "庫存量1_tb"
  1251. Me.庫存量1_tb.Size = New System.Drawing.Size(53, 23)
  1252. Me.庫存量1_tb.TabIndex = 1876
  1253. '
  1254. '料號1_tb
  1255. '
  1256. Me.料號1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1257. Me.料號1_tb.BackColor = System.Drawing.Color.White
  1258. Me.料號1_tb.ForeColor = System.Drawing.Color.Black
  1259. Me.料號1_tb.Location = New System.Drawing.Point(64, 812)
  1260. Me.料號1_tb.Name = "料號1_tb"
  1261. Me.料號1_tb.Size = New System.Drawing.Size(193, 23)
  1262. Me.料號1_tb.TabIndex = 1872
  1263. '
  1264. '盤損數1_nud
  1265. '
  1266. Me.盤損數1_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1267. Me.盤損數1_nud.BackColor = System.Drawing.Color.White
  1268. Me.盤損數1_nud.ForeColor = System.Drawing.Color.Green
  1269. Me.盤損數1_nud.Location = New System.Drawing.Point(295, 837)
  1270. Me.盤損數1_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
  1271. Me.盤損數1_nud.Name = "盤損數1_nud"
  1272. Me.盤損數1_nud.Size = New System.Drawing.Size(65, 23)
  1273. Me.盤損數1_nud.TabIndex = 1875
  1274. Me.盤損數1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1275. '
  1276. '盤盈數1_lb
  1277. '
  1278. Me.盤盈數1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1279. Me.盤盈數1_lb.BackColor = System.Drawing.Color.Transparent
  1280. Me.盤盈數1_lb.ForeColor = System.Drawing.Color.Green
  1281. Me.盤盈數1_lb.Location = New System.Drawing.Point(141, 864)
  1282. Me.盤盈數1_lb.Name = "盤盈數1_lb"
  1283. Me.盤盈數1_lb.Size = New System.Drawing.Size(150, 17)
  1284. Me.盤盈數1_lb.TabIndex = 1874
  1285. Me.盤盈數1_lb.Text = "盤 盈 數"
  1286. Me.盤盈數1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1287. '
  1288. '物料規格1_dgv
  1289. '
  1290. Me.物料規格1_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1291. Me.物料規格1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1292. Me.物料規格1_dgv.BackgroundColor = System.Drawing.Color.White
  1293. Me.物料規格1_dgv.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1294. DataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  1295. DataGridViewCellStyle38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1296. DataGridViewCellStyle38.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1297. DataGridViewCellStyle38.SelectionForeColor = System.Drawing.Color.White
  1298. DataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1299. Me.物料規格1_dgv.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle38
  1300. Me.物料規格1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1301. DataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  1302. DataGridViewCellStyle39.BackColor = System.Drawing.SystemColors.Window
  1303. DataGridViewCellStyle39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1304. DataGridViewCellStyle39.ForeColor = System.Drawing.SystemColors.ControlText
  1305. DataGridViewCellStyle39.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1306. DataGridViewCellStyle39.SelectionForeColor = System.Drawing.SystemColors.HighlightText
  1307. DataGridViewCellStyle39.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
  1308. Me.物料規格1_dgv.DefaultCellStyle = DataGridViewCellStyle39
  1309. Me.物料規格1_dgv.Location = New System.Drawing.Point(2, 538)
  1310. Me.物料規格1_dgv.Name = "物料規格1_dgv"
  1311. DataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
  1312. DataGridViewCellStyle40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1313. DataGridViewCellStyle40.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1314. DataGridViewCellStyle40.SelectionForeColor = System.Drawing.SystemColors.HighlightText
  1315. DataGridViewCellStyle40.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1316. Me.物料規格1_dgv.RowHeadersDefaultCellStyle = DataGridViewCellStyle40
  1317. Me.物料規格1_dgv.RowHeadersWidth = 5
  1318. DataGridViewCellStyle41.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1319. DataGridViewCellStyle41.SelectionBackColor = System.Drawing.SystemColors.HotTrack
  1320. DataGridViewCellStyle41.SelectionForeColor = System.Drawing.Color.White
  1321. DataGridViewCellStyle41.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1322. Me.物料規格1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle41
  1323. Me.物料規格1_dgv.RowTemplate.Height = 24
  1324. Me.物料規格1_dgv.Size = New System.Drawing.Size(529, 272)
  1325. Me.物料規格1_dgv.TabIndex = 681
  1326. '
  1327. '主頁_p
  1328. '
  1329. Me.主頁_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1330. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1331. Me.主頁_p.AutoScroll = True
  1332. Me.主頁_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1333. Me.主頁_p.Controls.Add(Me.其他_bt)
  1334. Me.主頁_p.Controls.Add(Me.日用_bt)
  1335. Me.主頁_p.Controls.Add(Me.工具_bt)
  1336. Me.主頁_p.Controls.Add(Me.設備_bt)
  1337. Me.主頁_p.Controls.Add(Me.五金_bt)
  1338. Me.主頁_p.Controls.Add(Me.建材_bt)
  1339. Me.主頁_p.Controls.Add(Me.槽架_bt)
  1340. Me.主頁_p.Controls.Add(Me.電料_bt)
  1341. Me.主頁_p.Controls.Add(Me.電線_bt)
  1342. Me.主頁_p.Controls.Add(Me.管材_bt)
  1343. Me.主頁_p.Location = New System.Drawing.Point(1, 54)
  1344. Me.主頁_p.Name = "主頁_p"
  1345. Me.主頁_p.Size = New System.Drawing.Size(534, 888)
  1346. Me.主頁_p.TabIndex = 1861
  1347. '
  1348. '其他_bt
  1349. '
  1350. Me.其他_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.其他
  1351. Me.其他_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1352. Me.其他_bt.Location = New System.Drawing.Point(5, 367)
  1353. Me.其他_bt.Name = "其他_bt"
  1354. Me.其他_bt.Size = New System.Drawing.Size(171, 120)
  1355. Me.其他_bt.TabIndex = 3
  1356. Me.其他_bt.UseVisualStyleBackColor = True
  1357. '
  1358. '日用_bt
  1359. '
  1360. Me.日用_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.日常
  1361. Me.日用_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1362. Me.日用_bt.Location = New System.Drawing.Point(357, 245)
  1363. Me.日用_bt.Name = "日用_bt"
  1364. Me.日用_bt.Size = New System.Drawing.Size(171, 120)
  1365. Me.日用_bt.TabIndex = 2
  1366. Me.日用_bt.UseVisualStyleBackColor = True
  1367. '
  1368. '工具_bt
  1369. '
  1370. Me.工具_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.工具
  1371. Me.工具_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1372. Me.工具_bt.Location = New System.Drawing.Point(181, 244)
  1373. Me.工具_bt.Name = "工具_bt"
  1374. Me.工具_bt.Size = New System.Drawing.Size(171, 120)
  1375. Me.工具_bt.TabIndex = 2
  1376. Me.工具_bt.UseVisualStyleBackColor = True
  1377. '
  1378. '設備_bt
  1379. '
  1380. Me.設備_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.設備
  1381. Me.設備_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1382. Me.設備_bt.Location = New System.Drawing.Point(5, 244)
  1383. Me.設備_bt.Name = "設備_bt"
  1384. Me.設備_bt.Size = New System.Drawing.Size(171, 120)
  1385. Me.設備_bt.TabIndex = 2
  1386. Me.設備_bt.UseVisualStyleBackColor = True
  1387. '
  1388. '五金_bt
  1389. '
  1390. Me.五金_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.五金
  1391. Me.五金_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1392. Me.五金_bt.Location = New System.Drawing.Point(356, 123)
  1393. Me.五金_bt.Name = "五金_bt"
  1394. Me.五金_bt.Size = New System.Drawing.Size(171, 120)
  1395. Me.五金_bt.TabIndex = 2
  1396. Me.五金_bt.UseVisualStyleBackColor = True
  1397. '
  1398. '建材_bt
  1399. '
  1400. Me.建材_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.建材
  1401. Me.建材_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1402. Me.建材_bt.Location = New System.Drawing.Point(181, 123)
  1403. Me.建材_bt.Name = "建材_bt"
  1404. Me.建材_bt.Size = New System.Drawing.Size(171, 120)
  1405. Me.建材_bt.TabIndex = 2
  1406. Me.建材_bt.UseVisualStyleBackColor = True
  1407. '
  1408. '槽架_bt
  1409. '
  1410. Me.槽架_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.槽架
  1411. Me.槽架_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1412. Me.槽架_bt.Location = New System.Drawing.Point(5, 123)
  1413. Me.槽架_bt.Name = "槽架_bt"
  1414. Me.槽架_bt.Size = New System.Drawing.Size(171, 120)
  1415. Me.槽架_bt.TabIndex = 2
  1416. Me.槽架_bt.UseVisualStyleBackColor = True
  1417. '
  1418. '電料_bt
  1419. '
  1420. Me.電料_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.電料
  1421. Me.電料_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1422. Me.電料_bt.Location = New System.Drawing.Point(356, 2)
  1423. Me.電料_bt.Name = "電料_bt"
  1424. Me.電料_bt.Size = New System.Drawing.Size(171, 120)
  1425. Me.電料_bt.TabIndex = 2
  1426. Me.電料_bt.UseVisualStyleBackColor = True
  1427. '
  1428. '電線_bt
  1429. '
  1430. Me.電線_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.電線
  1431. Me.電線_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1432. Me.電線_bt.Location = New System.Drawing.Point(180, 2)
  1433. Me.電線_bt.Name = "電線_bt"
  1434. Me.電線_bt.Size = New System.Drawing.Size(171, 120)
  1435. Me.電線_bt.TabIndex = 2
  1436. Me.電線_bt.UseVisualStyleBackColor = True
  1437. '
  1438. '管材_bt
  1439. '
  1440. Me.管材_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.管材
  1441. Me.管材_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1442. Me.管材_bt.Location = New System.Drawing.Point(5, 2)
  1443. Me.管材_bt.Name = "管材_bt"
  1444. Me.管材_bt.Size = New System.Drawing.Size(171, 120)
  1445. Me.管材_bt.TabIndex = 2
  1446. Me.管材_bt.UseVisualStyleBackColor = True
  1447. '
  1448. '次頁_p
  1449. '
  1450. Me.次頁_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1451. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1452. Me.次頁_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1453. Me.次頁_p.Controls.Add(Me.AP21)
  1454. Me.次頁_p.Controls.Add(Me.AP20)
  1455. Me.次頁_p.Controls.Add(Me.AP19)
  1456. Me.次頁_p.Controls.Add(Me.AP18)
  1457. Me.次頁_p.Controls.Add(Me.AP17)
  1458. Me.次頁_p.Controls.Add(Me.AP16)
  1459. Me.次頁_p.Controls.Add(Me.AP15)
  1460. Me.次頁_p.Controls.Add(Me.AP12)
  1461. Me.次頁_p.Controls.Add(Me.AP9)
  1462. Me.次頁_p.Controls.Add(Me.AP14)
  1463. Me.次頁_p.Controls.Add(Me.AP11)
  1464. Me.次頁_p.Controls.Add(Me.AP8)
  1465. Me.次頁_p.Controls.Add(Me.AP13)
  1466. Me.次頁_p.Controls.Add(Me.AP10)
  1467. Me.次頁_p.Controls.Add(Me.AP7)
  1468. Me.次頁_p.Controls.Add(Me.AP6)
  1469. Me.次頁_p.Controls.Add(Me.AP5)
  1470. Me.次頁_p.Controls.Add(Me.AP4)
  1471. Me.次頁_p.Controls.Add(Me.AP3)
  1472. Me.次頁_p.Controls.Add(Me.AP2)
  1473. Me.次頁_p.Controls.Add(Me.AP1)
  1474. Me.次頁_p.Location = New System.Drawing.Point(1, 54)
  1475. Me.次頁_p.Name = "次頁_p"
  1476. Me.次頁_p.Size = New System.Drawing.Size(534, 888)
  1477. Me.次頁_p.TabIndex = 1862
  1478. '
  1479. 'AP21
  1480. '
  1481. Me.AP21.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1482. Me.AP21.Controls.Add(Me.TB_21)
  1483. Me.AP21.Controls.Add(Me.PB_21)
  1484. Me.AP21.Location = New System.Drawing.Point(355, 747)
  1485. Me.AP21.Name = "AP21"
  1486. Me.AP21.Size = New System.Drawing.Size(171, 120)
  1487. Me.AP21.TabIndex = 20
  1488. '
  1489. 'TB_21
  1490. '
  1491. Me.TB_21.BorderStyle = System.Windows.Forms.BorderStyle.None
  1492. Me.TB_21.Cursor = System.Windows.Forms.Cursors.Hand
  1493. Me.TB_21.Location = New System.Drawing.Point(1, 84)
  1494. Me.TB_21.Multiline = True
  1495. Me.TB_21.Name = "TB_21"
  1496. Me.TB_21.Size = New System.Drawing.Size(169, 31)
  1497. Me.TB_21.TabIndex = 1
  1498. Me.TB_21.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1499. '
  1500. 'PB_21
  1501. '
  1502. Me.PB_21.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1503. Or System.Windows.Forms.AnchorStyles.Left) _
  1504. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1505. Me.PB_21.BackColor = System.Drawing.Color.White
  1506. Me.PB_21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1507. Me.PB_21.Cursor = System.Windows.Forms.Cursors.Hand
  1508. Me.PB_21.Location = New System.Drawing.Point(0, 0)
  1509. Me.PB_21.Name = "PB_21"
  1510. Me.PB_21.Size = New System.Drawing.Size(167, 84)
  1511. Me.PB_21.TabIndex = 0
  1512. Me.PB_21.TabStop = False
  1513. '
  1514. 'AP20
  1515. '
  1516. Me.AP20.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1517. Me.AP20.Controls.Add(Me.TB_20)
  1518. Me.AP20.Controls.Add(Me.PB_20)
  1519. Me.AP20.Location = New System.Drawing.Point(180, 747)
  1520. Me.AP20.Name = "AP20"
  1521. Me.AP20.Size = New System.Drawing.Size(171, 120)
  1522. Me.AP20.TabIndex = 19
  1523. '
  1524. 'TB_20
  1525. '
  1526. Me.TB_20.BorderStyle = System.Windows.Forms.BorderStyle.None
  1527. Me.TB_20.Cursor = System.Windows.Forms.Cursors.Hand
  1528. Me.TB_20.Location = New System.Drawing.Point(1, 84)
  1529. Me.TB_20.Multiline = True
  1530. Me.TB_20.Name = "TB_20"
  1531. Me.TB_20.Size = New System.Drawing.Size(169, 31)
  1532. Me.TB_20.TabIndex = 1
  1533. Me.TB_20.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1534. '
  1535. 'PB_20
  1536. '
  1537. Me.PB_20.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1538. Or System.Windows.Forms.AnchorStyles.Left) _
  1539. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1540. Me.PB_20.BackColor = System.Drawing.Color.White
  1541. Me.PB_20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1542. Me.PB_20.Cursor = System.Windows.Forms.Cursors.Hand
  1543. Me.PB_20.Location = New System.Drawing.Point(0, 0)
  1544. Me.PB_20.Name = "PB_20"
  1545. Me.PB_20.Size = New System.Drawing.Size(167, 84)
  1546. Me.PB_20.TabIndex = 0
  1547. Me.PB_20.TabStop = False
  1548. '
  1549. 'AP19
  1550. '
  1551. Me.AP19.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1552. Me.AP19.Controls.Add(Me.TB_19)
  1553. Me.AP19.Controls.Add(Me.PB_19)
  1554. Me.AP19.Location = New System.Drawing.Point(5, 747)
  1555. Me.AP19.Name = "AP19"
  1556. Me.AP19.Size = New System.Drawing.Size(171, 120)
  1557. Me.AP19.TabIndex = 18
  1558. '
  1559. 'TB_19
  1560. '
  1561. Me.TB_19.BorderStyle = System.Windows.Forms.BorderStyle.None
  1562. Me.TB_19.Cursor = System.Windows.Forms.Cursors.Hand
  1563. Me.TB_19.Location = New System.Drawing.Point(1, 84)
  1564. Me.TB_19.Multiline = True
  1565. Me.TB_19.Name = "TB_19"
  1566. Me.TB_19.Size = New System.Drawing.Size(169, 31)
  1567. Me.TB_19.TabIndex = 1
  1568. Me.TB_19.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1569. '
  1570. 'PB_19
  1571. '
  1572. Me.PB_19.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1573. Or System.Windows.Forms.AnchorStyles.Left) _
  1574. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1575. Me.PB_19.BackColor = System.Drawing.Color.White
  1576. Me.PB_19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1577. Me.PB_19.Cursor = System.Windows.Forms.Cursors.Hand
  1578. Me.PB_19.Location = New System.Drawing.Point(0, 0)
  1579. Me.PB_19.Name = "PB_19"
  1580. Me.PB_19.Size = New System.Drawing.Size(167, 84)
  1581. Me.PB_19.TabIndex = 0
  1582. Me.PB_19.TabStop = False
  1583. '
  1584. 'AP18
  1585. '
  1586. Me.AP18.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1587. Me.AP18.Controls.Add(Me.TB_18)
  1588. Me.AP18.Controls.Add(Me.PB_18)
  1589. Me.AP18.Location = New System.Drawing.Point(355, 623)
  1590. Me.AP18.Name = "AP18"
  1591. Me.AP18.Size = New System.Drawing.Size(171, 120)
  1592. Me.AP18.TabIndex = 17
  1593. '
  1594. 'TB_18
  1595. '
  1596. Me.TB_18.BorderStyle = System.Windows.Forms.BorderStyle.None
  1597. Me.TB_18.Cursor = System.Windows.Forms.Cursors.Hand
  1598. Me.TB_18.Location = New System.Drawing.Point(1, 84)
  1599. Me.TB_18.Multiline = True
  1600. Me.TB_18.Name = "TB_18"
  1601. Me.TB_18.Size = New System.Drawing.Size(169, 31)
  1602. Me.TB_18.TabIndex = 1
  1603. Me.TB_18.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1604. '
  1605. 'PB_18
  1606. '
  1607. Me.PB_18.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1608. Or System.Windows.Forms.AnchorStyles.Left) _
  1609. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1610. Me.PB_18.BackColor = System.Drawing.Color.White
  1611. Me.PB_18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1612. Me.PB_18.Cursor = System.Windows.Forms.Cursors.Hand
  1613. Me.PB_18.Location = New System.Drawing.Point(0, 0)
  1614. Me.PB_18.Name = "PB_18"
  1615. Me.PB_18.Size = New System.Drawing.Size(167, 84)
  1616. Me.PB_18.TabIndex = 0
  1617. Me.PB_18.TabStop = False
  1618. '
  1619. 'AP17
  1620. '
  1621. Me.AP17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1622. Me.AP17.Controls.Add(Me.TB_17)
  1623. Me.AP17.Controls.Add(Me.PB_17)
  1624. Me.AP17.Location = New System.Drawing.Point(180, 623)
  1625. Me.AP17.Name = "AP17"
  1626. Me.AP17.Size = New System.Drawing.Size(171, 120)
  1627. Me.AP17.TabIndex = 16
  1628. '
  1629. 'TB_17
  1630. '
  1631. Me.TB_17.BorderStyle = System.Windows.Forms.BorderStyle.None
  1632. Me.TB_17.Cursor = System.Windows.Forms.Cursors.Hand
  1633. Me.TB_17.Location = New System.Drawing.Point(1, 84)
  1634. Me.TB_17.Multiline = True
  1635. Me.TB_17.Name = "TB_17"
  1636. Me.TB_17.Size = New System.Drawing.Size(169, 31)
  1637. Me.TB_17.TabIndex = 1
  1638. Me.TB_17.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1639. '
  1640. 'PB_17
  1641. '
  1642. Me.PB_17.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1643. Or System.Windows.Forms.AnchorStyles.Left) _
  1644. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1645. Me.PB_17.BackColor = System.Drawing.Color.White
  1646. Me.PB_17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1647. Me.PB_17.Cursor = System.Windows.Forms.Cursors.Hand
  1648. Me.PB_17.Location = New System.Drawing.Point(0, 0)
  1649. Me.PB_17.Name = "PB_17"
  1650. Me.PB_17.Size = New System.Drawing.Size(167, 84)
  1651. Me.PB_17.TabIndex = 0
  1652. Me.PB_17.TabStop = False
  1653. '
  1654. 'AP16
  1655. '
  1656. Me.AP16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1657. Me.AP16.Controls.Add(Me.TB_16)
  1658. Me.AP16.Controls.Add(Me.PB_16)
  1659. Me.AP16.Location = New System.Drawing.Point(5, 623)
  1660. Me.AP16.Name = "AP16"
  1661. Me.AP16.Size = New System.Drawing.Size(171, 120)
  1662. Me.AP16.TabIndex = 15
  1663. '
  1664. 'TB_16
  1665. '
  1666. Me.TB_16.BorderStyle = System.Windows.Forms.BorderStyle.None
  1667. Me.TB_16.Cursor = System.Windows.Forms.Cursors.Hand
  1668. Me.TB_16.Location = New System.Drawing.Point(1, 84)
  1669. Me.TB_16.Multiline = True
  1670. Me.TB_16.Name = "TB_16"
  1671. Me.TB_16.Size = New System.Drawing.Size(169, 31)
  1672. Me.TB_16.TabIndex = 1
  1673. Me.TB_16.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1674. '
  1675. 'PB_16
  1676. '
  1677. Me.PB_16.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1678. Or System.Windows.Forms.AnchorStyles.Left) _
  1679. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1680. Me.PB_16.BackColor = System.Drawing.Color.White
  1681. Me.PB_16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1682. Me.PB_16.Cursor = System.Windows.Forms.Cursors.Hand
  1683. Me.PB_16.Location = New System.Drawing.Point(0, 0)
  1684. Me.PB_16.Name = "PB_16"
  1685. Me.PB_16.Size = New System.Drawing.Size(167, 84)
  1686. Me.PB_16.TabIndex = 0
  1687. Me.PB_16.TabStop = False
  1688. '
  1689. 'AP15
  1690. '
  1691. Me.AP15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1692. Me.AP15.Controls.Add(Me.TB_15)
  1693. Me.AP15.Controls.Add(Me.PB_15)
  1694. Me.AP15.Location = New System.Drawing.Point(356, 499)
  1695. Me.AP15.Name = "AP15"
  1696. Me.AP15.Size = New System.Drawing.Size(171, 120)
  1697. Me.AP15.TabIndex = 14
  1698. '
  1699. 'TB_15
  1700. '
  1701. Me.TB_15.BorderStyle = System.Windows.Forms.BorderStyle.None
  1702. Me.TB_15.Cursor = System.Windows.Forms.Cursors.Hand
  1703. Me.TB_15.Location = New System.Drawing.Point(1, 84)
  1704. Me.TB_15.Multiline = True
  1705. Me.TB_15.Name = "TB_15"
  1706. Me.TB_15.Size = New System.Drawing.Size(169, 31)
  1707. Me.TB_15.TabIndex = 1
  1708. Me.TB_15.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1709. '
  1710. 'PB_15
  1711. '
  1712. Me.PB_15.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1713. Or System.Windows.Forms.AnchorStyles.Left) _
  1714. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1715. Me.PB_15.BackColor = System.Drawing.Color.White
  1716. Me.PB_15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1717. Me.PB_15.Cursor = System.Windows.Forms.Cursors.Hand
  1718. Me.PB_15.Location = New System.Drawing.Point(0, 0)
  1719. Me.PB_15.Name = "PB_15"
  1720. Me.PB_15.Size = New System.Drawing.Size(167, 84)
  1721. Me.PB_15.TabIndex = 0
  1722. Me.PB_15.TabStop = False
  1723. '
  1724. 'AP12
  1725. '
  1726. Me.AP12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1727. Me.AP12.Controls.Add(Me.TB_12)
  1728. Me.AP12.Controls.Add(Me.PB_12)
  1729. Me.AP12.Location = New System.Drawing.Point(356, 375)
  1730. Me.AP12.Name = "AP12"
  1731. Me.AP12.Size = New System.Drawing.Size(171, 120)
  1732. Me.AP12.TabIndex = 13
  1733. '
  1734. 'TB_12
  1735. '
  1736. Me.TB_12.BorderStyle = System.Windows.Forms.BorderStyle.None
  1737. Me.TB_12.Cursor = System.Windows.Forms.Cursors.Hand
  1738. Me.TB_12.Location = New System.Drawing.Point(1, 84)
  1739. Me.TB_12.Multiline = True
  1740. Me.TB_12.Name = "TB_12"
  1741. Me.TB_12.Size = New System.Drawing.Size(169, 31)
  1742. Me.TB_12.TabIndex = 1
  1743. Me.TB_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1744. '
  1745. 'PB_12
  1746. '
  1747. Me.PB_12.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1748. Or System.Windows.Forms.AnchorStyles.Left) _
  1749. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1750. Me.PB_12.BackColor = System.Drawing.Color.White
  1751. Me.PB_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1752. Me.PB_12.Cursor = System.Windows.Forms.Cursors.Hand
  1753. Me.PB_12.Location = New System.Drawing.Point(0, 0)
  1754. Me.PB_12.Name = "PB_12"
  1755. Me.PB_12.Size = New System.Drawing.Size(167, 84)
  1756. Me.PB_12.TabIndex = 0
  1757. Me.PB_12.TabStop = False
  1758. '
  1759. 'AP9
  1760. '
  1761. Me.AP9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1762. Me.AP9.Controls.Add(Me.TB_9)
  1763. Me.AP9.Controls.Add(Me.PB_9)
  1764. Me.AP9.Location = New System.Drawing.Point(356, 251)
  1765. Me.AP9.Name = "AP9"
  1766. Me.AP9.Size = New System.Drawing.Size(171, 120)
  1767. Me.AP9.TabIndex = 12
  1768. '
  1769. 'TB_9
  1770. '
  1771. Me.TB_9.BorderStyle = System.Windows.Forms.BorderStyle.None
  1772. Me.TB_9.Cursor = System.Windows.Forms.Cursors.Hand
  1773. Me.TB_9.Location = New System.Drawing.Point(1, 84)
  1774. Me.TB_9.Multiline = True
  1775. Me.TB_9.Name = "TB_9"
  1776. Me.TB_9.Size = New System.Drawing.Size(169, 31)
  1777. Me.TB_9.TabIndex = 1
  1778. Me.TB_9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1779. '
  1780. 'PB_9
  1781. '
  1782. Me.PB_9.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1783. Or System.Windows.Forms.AnchorStyles.Left) _
  1784. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1785. Me.PB_9.BackColor = System.Drawing.Color.White
  1786. Me.PB_9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1787. Me.PB_9.Cursor = System.Windows.Forms.Cursors.Hand
  1788. Me.PB_9.Location = New System.Drawing.Point(0, 0)
  1789. Me.PB_9.Name = "PB_9"
  1790. Me.PB_9.Size = New System.Drawing.Size(167, 84)
  1791. Me.PB_9.TabIndex = 0
  1792. Me.PB_9.TabStop = False
  1793. '
  1794. 'AP14
  1795. '
  1796. Me.AP14.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1797. Me.AP14.Controls.Add(Me.TB_14)
  1798. Me.AP14.Controls.Add(Me.PB_14)
  1799. Me.AP14.Location = New System.Drawing.Point(181, 499)
  1800. Me.AP14.Name = "AP14"
  1801. Me.AP14.Size = New System.Drawing.Size(171, 120)
  1802. Me.AP14.TabIndex = 11
  1803. '
  1804. 'TB_14
  1805. '
  1806. Me.TB_14.BorderStyle = System.Windows.Forms.BorderStyle.None
  1807. Me.TB_14.Cursor = System.Windows.Forms.Cursors.Hand
  1808. Me.TB_14.Location = New System.Drawing.Point(1, 84)
  1809. Me.TB_14.Multiline = True
  1810. Me.TB_14.Name = "TB_14"
  1811. Me.TB_14.Size = New System.Drawing.Size(169, 31)
  1812. Me.TB_14.TabIndex = 1
  1813. Me.TB_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1814. '
  1815. 'PB_14
  1816. '
  1817. Me.PB_14.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1818. Or System.Windows.Forms.AnchorStyles.Left) _
  1819. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1820. Me.PB_14.BackColor = System.Drawing.Color.White
  1821. Me.PB_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1822. Me.PB_14.Cursor = System.Windows.Forms.Cursors.Hand
  1823. Me.PB_14.Location = New System.Drawing.Point(0, 0)
  1824. Me.PB_14.Name = "PB_14"
  1825. Me.PB_14.Size = New System.Drawing.Size(167, 84)
  1826. Me.PB_14.TabIndex = 0
  1827. Me.PB_14.TabStop = False
  1828. '
  1829. 'AP11
  1830. '
  1831. Me.AP11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1832. Me.AP11.Controls.Add(Me.TB_11)
  1833. Me.AP11.Controls.Add(Me.PB_11)
  1834. Me.AP11.Location = New System.Drawing.Point(181, 375)
  1835. Me.AP11.Name = "AP11"
  1836. Me.AP11.Size = New System.Drawing.Size(171, 120)
  1837. Me.AP11.TabIndex = 10
  1838. '
  1839. 'TB_11
  1840. '
  1841. Me.TB_11.BorderStyle = System.Windows.Forms.BorderStyle.None
  1842. Me.TB_11.Cursor = System.Windows.Forms.Cursors.Hand
  1843. Me.TB_11.Location = New System.Drawing.Point(1, 84)
  1844. Me.TB_11.Multiline = True
  1845. Me.TB_11.Name = "TB_11"
  1846. Me.TB_11.Size = New System.Drawing.Size(169, 31)
  1847. Me.TB_11.TabIndex = 1
  1848. Me.TB_11.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1849. '
  1850. 'PB_11
  1851. '
  1852. Me.PB_11.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1853. Or System.Windows.Forms.AnchorStyles.Left) _
  1854. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1855. Me.PB_11.BackColor = System.Drawing.Color.White
  1856. Me.PB_11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1857. Me.PB_11.Cursor = System.Windows.Forms.Cursors.Hand
  1858. Me.PB_11.Location = New System.Drawing.Point(0, 0)
  1859. Me.PB_11.Name = "PB_11"
  1860. Me.PB_11.Size = New System.Drawing.Size(167, 84)
  1861. Me.PB_11.TabIndex = 0
  1862. Me.PB_11.TabStop = False
  1863. '
  1864. 'AP8
  1865. '
  1866. Me.AP8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1867. Me.AP8.Controls.Add(Me.TB_8)
  1868. Me.AP8.Controls.Add(Me.PB_8)
  1869. Me.AP8.Location = New System.Drawing.Point(181, 251)
  1870. Me.AP8.Name = "AP8"
  1871. Me.AP8.Size = New System.Drawing.Size(171, 120)
  1872. Me.AP8.TabIndex = 9
  1873. '
  1874. 'TB_8
  1875. '
  1876. Me.TB_8.BorderStyle = System.Windows.Forms.BorderStyle.None
  1877. Me.TB_8.Cursor = System.Windows.Forms.Cursors.Hand
  1878. Me.TB_8.Location = New System.Drawing.Point(1, 84)
  1879. Me.TB_8.Multiline = True
  1880. Me.TB_8.Name = "TB_8"
  1881. Me.TB_8.Size = New System.Drawing.Size(169, 31)
  1882. Me.TB_8.TabIndex = 1
  1883. Me.TB_8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1884. '
  1885. 'PB_8
  1886. '
  1887. Me.PB_8.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1888. Or System.Windows.Forms.AnchorStyles.Left) _
  1889. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1890. Me.PB_8.BackColor = System.Drawing.Color.White
  1891. Me.PB_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1892. Me.PB_8.Cursor = System.Windows.Forms.Cursors.Hand
  1893. Me.PB_8.Location = New System.Drawing.Point(0, 0)
  1894. Me.PB_8.Name = "PB_8"
  1895. Me.PB_8.Size = New System.Drawing.Size(167, 84)
  1896. Me.PB_8.TabIndex = 0
  1897. Me.PB_8.TabStop = False
  1898. '
  1899. 'AP13
  1900. '
  1901. Me.AP13.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1902. Me.AP13.Controls.Add(Me.TB_13)
  1903. Me.AP13.Controls.Add(Me.PB_13)
  1904. Me.AP13.Location = New System.Drawing.Point(6, 499)
  1905. Me.AP13.Name = "AP13"
  1906. Me.AP13.Size = New System.Drawing.Size(171, 120)
  1907. Me.AP13.TabIndex = 8
  1908. '
  1909. 'TB_13
  1910. '
  1911. Me.TB_13.BorderStyle = System.Windows.Forms.BorderStyle.None
  1912. Me.TB_13.Cursor = System.Windows.Forms.Cursors.Hand
  1913. Me.TB_13.Location = New System.Drawing.Point(1, 84)
  1914. Me.TB_13.Multiline = True
  1915. Me.TB_13.Name = "TB_13"
  1916. Me.TB_13.Size = New System.Drawing.Size(169, 31)
  1917. Me.TB_13.TabIndex = 1
  1918. Me.TB_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1919. '
  1920. 'PB_13
  1921. '
  1922. Me.PB_13.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1923. Or System.Windows.Forms.AnchorStyles.Left) _
  1924. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1925. Me.PB_13.BackColor = System.Drawing.Color.White
  1926. Me.PB_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1927. Me.PB_13.Cursor = System.Windows.Forms.Cursors.Hand
  1928. Me.PB_13.Location = New System.Drawing.Point(0, 0)
  1929. Me.PB_13.Name = "PB_13"
  1930. Me.PB_13.Size = New System.Drawing.Size(167, 84)
  1931. Me.PB_13.TabIndex = 0
  1932. Me.PB_13.TabStop = False
  1933. '
  1934. 'AP10
  1935. '
  1936. Me.AP10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1937. Me.AP10.Controls.Add(Me.TB_10)
  1938. Me.AP10.Controls.Add(Me.PB_10)
  1939. Me.AP10.Location = New System.Drawing.Point(6, 375)
  1940. Me.AP10.Name = "AP10"
  1941. Me.AP10.Size = New System.Drawing.Size(171, 120)
  1942. Me.AP10.TabIndex = 7
  1943. '
  1944. 'TB_10
  1945. '
  1946. Me.TB_10.BorderStyle = System.Windows.Forms.BorderStyle.None
  1947. Me.TB_10.Cursor = System.Windows.Forms.Cursors.Hand
  1948. Me.TB_10.Location = New System.Drawing.Point(1, 84)
  1949. Me.TB_10.Multiline = True
  1950. Me.TB_10.Name = "TB_10"
  1951. Me.TB_10.Size = New System.Drawing.Size(169, 31)
  1952. Me.TB_10.TabIndex = 1
  1953. Me.TB_10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1954. '
  1955. 'PB_10
  1956. '
  1957. Me.PB_10.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1958. Or System.Windows.Forms.AnchorStyles.Left) _
  1959. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1960. Me.PB_10.BackColor = System.Drawing.Color.White
  1961. Me.PB_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1962. Me.PB_10.Cursor = System.Windows.Forms.Cursors.Hand
  1963. Me.PB_10.Location = New System.Drawing.Point(0, 0)
  1964. Me.PB_10.Name = "PB_10"
  1965. Me.PB_10.Size = New System.Drawing.Size(167, 84)
  1966. Me.PB_10.TabIndex = 0
  1967. Me.PB_10.TabStop = False
  1968. '
  1969. 'AP7
  1970. '
  1971. Me.AP7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1972. Me.AP7.Controls.Add(Me.TB_7)
  1973. Me.AP7.Controls.Add(Me.PB_7)
  1974. Me.AP7.Location = New System.Drawing.Point(6, 251)
  1975. Me.AP7.Name = "AP7"
  1976. Me.AP7.Size = New System.Drawing.Size(171, 120)
  1977. Me.AP7.TabIndex = 6
  1978. '
  1979. 'TB_7
  1980. '
  1981. Me.TB_7.BorderStyle = System.Windows.Forms.BorderStyle.None
  1982. Me.TB_7.Cursor = System.Windows.Forms.Cursors.Hand
  1983. Me.TB_7.Location = New System.Drawing.Point(1, 84)
  1984. Me.TB_7.Multiline = True
  1985. Me.TB_7.Name = "TB_7"
  1986. Me.TB_7.Size = New System.Drawing.Size(169, 31)
  1987. Me.TB_7.TabIndex = 1
  1988. Me.TB_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1989. '
  1990. 'PB_7
  1991. '
  1992. Me.PB_7.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1993. Or System.Windows.Forms.AnchorStyles.Left) _
  1994. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1995. Me.PB_7.BackColor = System.Drawing.Color.White
  1996. Me.PB_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1997. Me.PB_7.Cursor = System.Windows.Forms.Cursors.Hand
  1998. Me.PB_7.Location = New System.Drawing.Point(0, 0)
  1999. Me.PB_7.Name = "PB_7"
  2000. Me.PB_7.Size = New System.Drawing.Size(167, 84)
  2001. Me.PB_7.TabIndex = 0
  2002. Me.PB_7.TabStop = False
  2003. '
  2004. 'AP6
  2005. '
  2006. Me.AP6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2007. Me.AP6.Controls.Add(Me.TB_6)
  2008. Me.AP6.Controls.Add(Me.PB_6)
  2009. Me.AP6.Location = New System.Drawing.Point(356, 127)
  2010. Me.AP6.Name = "AP6"
  2011. Me.AP6.Size = New System.Drawing.Size(171, 120)
  2012. Me.AP6.TabIndex = 5
  2013. '
  2014. 'TB_6
  2015. '
  2016. Me.TB_6.BorderStyle = System.Windows.Forms.BorderStyle.None
  2017. Me.TB_6.Cursor = System.Windows.Forms.Cursors.Hand
  2018. Me.TB_6.Location = New System.Drawing.Point(1, 84)
  2019. Me.TB_6.Multiline = True
  2020. Me.TB_6.Name = "TB_6"
  2021. Me.TB_6.Size = New System.Drawing.Size(169, 31)
  2022. Me.TB_6.TabIndex = 1
  2023. Me.TB_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2024. '
  2025. 'PB_6
  2026. '
  2027. Me.PB_6.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2028. Or System.Windows.Forms.AnchorStyles.Left) _
  2029. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2030. Me.PB_6.BackColor = System.Drawing.Color.White
  2031. Me.PB_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2032. Me.PB_6.Cursor = System.Windows.Forms.Cursors.Hand
  2033. Me.PB_6.Location = New System.Drawing.Point(0, 0)
  2034. Me.PB_6.Name = "PB_6"
  2035. Me.PB_6.Size = New System.Drawing.Size(167, 84)
  2036. Me.PB_6.TabIndex = 0
  2037. Me.PB_6.TabStop = False
  2038. '
  2039. 'AP5
  2040. '
  2041. Me.AP5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2042. Me.AP5.Controls.Add(Me.TB_5)
  2043. Me.AP5.Controls.Add(Me.PB_5)
  2044. Me.AP5.Location = New System.Drawing.Point(181, 127)
  2045. Me.AP5.Name = "AP5"
  2046. Me.AP5.Size = New System.Drawing.Size(171, 120)
  2047. Me.AP5.TabIndex = 4
  2048. '
  2049. 'TB_5
  2050. '
  2051. Me.TB_5.BorderStyle = System.Windows.Forms.BorderStyle.None
  2052. Me.TB_5.Cursor = System.Windows.Forms.Cursors.Hand
  2053. Me.TB_5.Location = New System.Drawing.Point(1, 84)
  2054. Me.TB_5.Multiline = True
  2055. Me.TB_5.Name = "TB_5"
  2056. Me.TB_5.Size = New System.Drawing.Size(169, 31)
  2057. Me.TB_5.TabIndex = 1
  2058. Me.TB_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2059. '
  2060. 'PB_5
  2061. '
  2062. Me.PB_5.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2063. Or System.Windows.Forms.AnchorStyles.Left) _
  2064. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2065. Me.PB_5.BackColor = System.Drawing.Color.White
  2066. Me.PB_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2067. Me.PB_5.Cursor = System.Windows.Forms.Cursors.Hand
  2068. Me.PB_5.Location = New System.Drawing.Point(0, 0)
  2069. Me.PB_5.Name = "PB_5"
  2070. Me.PB_5.Size = New System.Drawing.Size(167, 84)
  2071. Me.PB_5.TabIndex = 0
  2072. Me.PB_5.TabStop = False
  2073. '
  2074. 'AP4
  2075. '
  2076. Me.AP4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2077. Me.AP4.Controls.Add(Me.TB_4)
  2078. Me.AP4.Controls.Add(Me.PB_4)
  2079. Me.AP4.Location = New System.Drawing.Point(6, 127)
  2080. Me.AP4.Name = "AP4"
  2081. Me.AP4.Size = New System.Drawing.Size(171, 120)
  2082. Me.AP4.TabIndex = 3
  2083. '
  2084. 'TB_4
  2085. '
  2086. Me.TB_4.BorderStyle = System.Windows.Forms.BorderStyle.None
  2087. Me.TB_4.Cursor = System.Windows.Forms.Cursors.Hand
  2088. Me.TB_4.Location = New System.Drawing.Point(1, 84)
  2089. Me.TB_4.Multiline = True
  2090. Me.TB_4.Name = "TB_4"
  2091. Me.TB_4.Size = New System.Drawing.Size(169, 31)
  2092. Me.TB_4.TabIndex = 1
  2093. Me.TB_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2094. '
  2095. 'PB_4
  2096. '
  2097. Me.PB_4.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2098. Or System.Windows.Forms.AnchorStyles.Left) _
  2099. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2100. Me.PB_4.BackColor = System.Drawing.Color.White
  2101. Me.PB_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2102. Me.PB_4.Cursor = System.Windows.Forms.Cursors.Hand
  2103. Me.PB_4.Location = New System.Drawing.Point(0, 0)
  2104. Me.PB_4.Name = "PB_4"
  2105. Me.PB_4.Size = New System.Drawing.Size(167, 84)
  2106. Me.PB_4.TabIndex = 0
  2107. Me.PB_4.TabStop = False
  2108. '
  2109. 'AP3
  2110. '
  2111. Me.AP3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2112. Me.AP3.Controls.Add(Me.TB_3)
  2113. Me.AP3.Controls.Add(Me.PB_3)
  2114. Me.AP3.Location = New System.Drawing.Point(356, 4)
  2115. Me.AP3.Name = "AP3"
  2116. Me.AP3.Size = New System.Drawing.Size(171, 120)
  2117. Me.AP3.TabIndex = 2
  2118. '
  2119. 'TB_3
  2120. '
  2121. Me.TB_3.BorderStyle = System.Windows.Forms.BorderStyle.None
  2122. Me.TB_3.Cursor = System.Windows.Forms.Cursors.Hand
  2123. Me.TB_3.Location = New System.Drawing.Point(1, 84)
  2124. Me.TB_3.Multiline = True
  2125. Me.TB_3.Name = "TB_3"
  2126. Me.TB_3.Size = New System.Drawing.Size(169, 31)
  2127. Me.TB_3.TabIndex = 1
  2128. Me.TB_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2129. '
  2130. 'PB_3
  2131. '
  2132. Me.PB_3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2133. Or System.Windows.Forms.AnchorStyles.Left) _
  2134. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2135. Me.PB_3.BackColor = System.Drawing.Color.White
  2136. Me.PB_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2137. Me.PB_3.Cursor = System.Windows.Forms.Cursors.Hand
  2138. Me.PB_3.Location = New System.Drawing.Point(0, 0)
  2139. Me.PB_3.Name = "PB_3"
  2140. Me.PB_3.Size = New System.Drawing.Size(167, 84)
  2141. Me.PB_3.TabIndex = 0
  2142. Me.PB_3.TabStop = False
  2143. '
  2144. 'AP2
  2145. '
  2146. Me.AP2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2147. Me.AP2.Controls.Add(Me.TB_2)
  2148. Me.AP2.Controls.Add(Me.PB_2)
  2149. Me.AP2.Location = New System.Drawing.Point(181, 4)
  2150. Me.AP2.Name = "AP2"
  2151. Me.AP2.Size = New System.Drawing.Size(171, 120)
  2152. Me.AP2.TabIndex = 1
  2153. '
  2154. 'TB_2
  2155. '
  2156. Me.TB_2.BorderStyle = System.Windows.Forms.BorderStyle.None
  2157. Me.TB_2.Cursor = System.Windows.Forms.Cursors.Hand
  2158. Me.TB_2.Location = New System.Drawing.Point(1, 84)
  2159. Me.TB_2.Multiline = True
  2160. Me.TB_2.Name = "TB_2"
  2161. Me.TB_2.Size = New System.Drawing.Size(169, 31)
  2162. Me.TB_2.TabIndex = 1
  2163. Me.TB_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2164. '
  2165. 'PB_2
  2166. '
  2167. Me.PB_2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2168. Or System.Windows.Forms.AnchorStyles.Left) _
  2169. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2170. Me.PB_2.BackColor = System.Drawing.Color.White
  2171. Me.PB_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2172. Me.PB_2.Cursor = System.Windows.Forms.Cursors.Hand
  2173. Me.PB_2.Location = New System.Drawing.Point(0, 0)
  2174. Me.PB_2.Name = "PB_2"
  2175. Me.PB_2.Size = New System.Drawing.Size(167, 84)
  2176. Me.PB_2.TabIndex = 0
  2177. Me.PB_2.TabStop = False
  2178. '
  2179. 'AP1
  2180. '
  2181. Me.AP1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  2182. Me.AP1.Controls.Add(Me.TB_1)
  2183. Me.AP1.Controls.Add(Me.PB_1)
  2184. Me.AP1.Location = New System.Drawing.Point(6, 4)
  2185. Me.AP1.Name = "AP1"
  2186. Me.AP1.Size = New System.Drawing.Size(171, 120)
  2187. Me.AP1.TabIndex = 0
  2188. '
  2189. 'TB_1
  2190. '
  2191. Me.TB_1.BorderStyle = System.Windows.Forms.BorderStyle.None
  2192. Me.TB_1.Cursor = System.Windows.Forms.Cursors.Hand
  2193. Me.TB_1.Location = New System.Drawing.Point(1, 84)
  2194. Me.TB_1.Multiline = True
  2195. Me.TB_1.Name = "TB_1"
  2196. Me.TB_1.Size = New System.Drawing.Size(169, 31)
  2197. Me.TB_1.TabIndex = 1
  2198. Me.TB_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2199. '
  2200. 'PB_1
  2201. '
  2202. Me.PB_1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2203. Or System.Windows.Forms.AnchorStyles.Left) _
  2204. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2205. Me.PB_1.BackColor = System.Drawing.Color.White
  2206. Me.PB_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2207. Me.PB_1.Cursor = System.Windows.Forms.Cursors.Hand
  2208. Me.PB_1.Location = New System.Drawing.Point(0, 0)
  2209. Me.PB_1.Name = "PB_1"
  2210. Me.PB_1.Size = New System.Drawing.Size(167, 84)
  2211. Me.PB_1.TabIndex = 0
  2212. Me.PB_1.TabStop = False
  2213. '
  2214. '合約_P
  2215. '
  2216. Me.合約_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2217. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2218. Me.合約_P.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2219. Me.合約_P.Controls.Add(Me.合約1_dgv)
  2220. Me.合約_P.Location = New System.Drawing.Point(1, 54)
  2221. Me.合約_P.Name = "合約_P"
  2222. Me.合約_P.Size = New System.Drawing.Size(534, 888)
  2223. Me.合約_P.TabIndex = 1870
  2224. '
  2225. '合約1_dgv
  2226. '
  2227. DataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2228. Me.合約1_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle42
  2229. Me.合約1_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2230. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2231. Me.合約1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2232. Me.合約1_dgv.BackgroundColor = System.Drawing.Color.White
  2233. Me.合約1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2234. Me.合約1_dgv.Location = New System.Drawing.Point(2, 1)
  2235. Me.合約1_dgv.Name = "合約1_dgv"
  2236. Me.合約1_dgv.RowHeadersWidth = 5
  2237. Me.合約1_dgv.RowTemplate.Height = 24
  2238. Me.合約1_dgv.Size = New System.Drawing.Size(529, 886)
  2239. Me.合約1_dgv.TabIndex = 1845
  2240. '
  2241. '單據_p
  2242. '
  2243. Me.單據_p.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2244. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2245. Me.單據_p.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2246. Me.單據_p.Controls.Add(Me.已核准1_dgv)
  2247. Me.單據_p.Location = New System.Drawing.Point(1, 54)
  2248. Me.單據_p.Name = "單據_p"
  2249. Me.單據_p.Size = New System.Drawing.Size(534, 888)
  2250. Me.單據_p.TabIndex = 1866
  2251. '
  2252. '已核准1_dgv
  2253. '
  2254. DataGridViewCellStyle43.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  2255. Me.已核准1_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle43
  2256. Me.已核准1_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2257. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2258. Me.已核准1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2259. Me.已核准1_dgv.BackgroundColor = System.Drawing.Color.White
  2260. Me.已核准1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2261. Me.已核准1_dgv.Location = New System.Drawing.Point(2, 1)
  2262. Me.已核准1_dgv.Name = "已核准1_dgv"
  2263. Me.已核准1_dgv.RowHeadersWidth = 5
  2264. DataGridViewCellStyle44.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2265. Me.已核准1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle44
  2266. Me.已核准1_dgv.RowTemplate.Height = 24
  2267. Me.已核准1_dgv.Size = New System.Drawing.Size(529, 886)
  2268. Me.已核准1_dgv.TabIndex = 1018
  2269. '
  2270. 'ToolTip1
  2271. '
  2272. Me.ToolTip1.AutoPopDelay = 5000
  2273. Me.ToolTip1.InitialDelay = 500
  2274. Me.ToolTip1.IsBalloon = True
  2275. Me.ToolTip1.ReshowDelay = 100
  2276. Me.ToolTip1.ToolTipTitle = "illustrate"
  2277. '
  2278. '切換_ts
  2279. '
  2280. Me.切換_ts.Location = New System.Drawing.Point(539, 3)
  2281. Me.切換_ts.Name = "切換_ts"
  2282. Me.切換_ts.Size = New System.Drawing.Size(35, 20)
  2283. Me.切換_ts.TabIndex = 1850
  2284. '
  2285. '切換_lb
  2286. '
  2287. Me.切換_lb.AutoSize = True
  2288. Me.切換_lb.BackColor = System.Drawing.Color.Transparent
  2289. Me.切換_lb.ForeColor = System.Drawing.Color.Black
  2290. Me.切換_lb.Location = New System.Drawing.Point(579, 5)
  2291. Me.切換_lb.Name = "切換_lb"
  2292. Me.切換_lb.Size = New System.Drawing.Size(31, 16)
  2293. Me.切換_lb.TabIndex = 1851
  2294. Me.切換_lb.Text = "新式"
  2295. '
  2296. '合約號_tb
  2297. '
  2298. Me.合約號_tb.BackColor = System.Drawing.Color.White
  2299. Me.合約號_tb.Enabled = False
  2300. Me.合約號_tb.ForeColor = System.Drawing.Color.Black
  2301. Me.合約號_tb.Location = New System.Drawing.Point(608, 32)
  2302. Me.合約號_tb.Name = "合約號_tb"
  2303. Me.合約號_tb.Size = New System.Drawing.Size(206, 23)
  2304. Me.合約號_tb.TabIndex = 1867
  2305. '
  2306. '合約編號_lb
  2307. '
  2308. Me.合約編號_lb.BackColor = System.Drawing.Color.Transparent
  2309. Me.合約編號_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2310. Me.合約編號_lb.ForeColor = System.Drawing.Color.Black
  2311. Me.合約編號_lb.Location = New System.Drawing.Point(541, 34)
  2312. Me.合約編號_lb.Name = "合約編號_lb"
  2313. Me.合約編號_lb.Size = New System.Drawing.Size(64, 20)
  2314. Me.合約編號_lb.TabIndex = 1866
  2315. Me.合約編號_lb.Text = "Kontrak"
  2316. Me.合約編號_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  2317. '
  2318. '合約號_lb
  2319. '
  2320. Me.合約號_lb.BackColor = System.Drawing.Color.Transparent
  2321. Me.合約號_lb.ForeColor = System.Drawing.Color.Black
  2322. Me.合約號_lb.Location = New System.Drawing.Point(540, 103)
  2323. Me.合約號_lb.Name = "合約號_lb"
  2324. Me.合約號_lb.Size = New System.Drawing.Size(64, 16)
  2325. Me.合約號_lb.TabIndex = 1873
  2326. Me.合約號_lb.Text = "合約編號 : "
  2327. Me.合約號_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  2328. '
  2329. '合約編號3_tb
  2330. '
  2331. Me.合約編號3_tb.BackColor = System.Drawing.Color.White
  2332. Me.合約編號3_tb.ForeColor = System.Drawing.Color.Black
  2333. Me.合約編號3_tb.Location = New System.Drawing.Point(787, 100)
  2334. Me.合約編號3_tb.Name = "合約編號3_tb"
  2335. Me.合約編號3_tb.Size = New System.Drawing.Size(27, 23)
  2336. Me.合約編號3_tb.TabIndex = 1871
  2337. '
  2338. '合約編號2_tb
  2339. '
  2340. Me.合約編號2_tb.BackColor = System.Drawing.Color.White
  2341. Me.合約編號2_tb.ForeColor = System.Drawing.Color.Black
  2342. Me.合約編號2_tb.Location = New System.Drawing.Point(721, 100)
  2343. Me.合約編號2_tb.MaxLength = 6
  2344. Me.合約編號2_tb.Name = "合約編號2_tb"
  2345. Me.合約編號2_tb.Size = New System.Drawing.Size(65, 23)
  2346. Me.合約編號2_tb.TabIndex = 1870
  2347. '
  2348. '合約編號1_tb
  2349. '
  2350. Me.合約編號1_tb.BackColor = System.Drawing.Color.White
  2351. Me.合約編號1_tb.ForeColor = System.Drawing.Color.Black
  2352. Me.合約編號1_tb.Location = New System.Drawing.Point(670, 100)
  2353. Me.合約編號1_tb.Name = "合約編號1_tb"
  2354. Me.合約編號1_tb.Size = New System.Drawing.Size(50, 23)
  2355. Me.合約編號1_tb.TabIndex = 1869
  2356. '
  2357. '合約編號_cb
  2358. '
  2359. Me.合約編號_cb.BackColor = System.Drawing.Color.White
  2360. Me.合約編號_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple
  2361. Me.合約編號_cb.ForeColor = System.Drawing.Color.Black
  2362. Me.合約編號_cb.FormattingEnabled = True
  2363. Me.合約編號_cb.Items.AddRange(New Object() {"", "HX", "PGS"})
  2364. Me.合約編號_cb.Location = New System.Drawing.Point(606, 99)
  2365. Me.合約編號_cb.Name = "合約編號_cb"
  2366. Me.合約編號_cb.Size = New System.Drawing.Size(62, 24)
  2367. Me.合約編號_cb.TabIndex = 1868
  2368. '
  2369. 'Label35
  2370. '
  2371. Me.Label35.AutoSize = True
  2372. Me.Label35.BackColor = System.Drawing.Color.Transparent
  2373. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2374. Me.Label35.ForeColor = System.Drawing.Color.Black
  2375. Me.Label35.Location = New System.Drawing.Point(607, 84)
  2376. Me.Label35.Name = "Label35"
  2377. Me.Label35.Size = New System.Drawing.Size(208, 16)
  2378. Me.Label35.TabIndex = 1872
  2379. Me.Label35.Text = "B方 A方 Date No. "
  2380. Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2381. '
  2382. '退料單建立完成_bt
  2383. '
  2384. Me.退料單建立完成_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Sendnow
  2385. Me.退料單建立完成_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  2386. Me.退料單建立完成_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  2387. Me.退料單建立完成_bt.Location = New System.Drawing.Point(997, 54)
  2388. Me.退料單建立完成_bt.Name = "退料單建立完成_bt"
  2389. Me.退料單建立完成_bt.Size = New System.Drawing.Size(50, 50)
  2390. Me.退料單建立完成_bt.TabIndex = 1875
  2391. Me.退料單建立完成_bt.UseVisualStyleBackColor = True
  2392. '
  2393. '詳細資料1_ch
  2394. '
  2395. Me.詳細資料1_ch.AutoSize = True
  2396. Me.詳細資料1_ch.BackColor = System.Drawing.Color.Transparent
  2397. Me.詳細資料1_ch.ForeColor = System.Drawing.Color.Black
  2398. Me.詳細資料1_ch.Location = New System.Drawing.Point(1047, 4)
  2399. Me.詳細資料1_ch.Name = "詳細資料1_ch"
  2400. Me.詳細資料1_ch.Size = New System.Drawing.Size(74, 20)
  2401. Me.詳細資料1_ch.TabIndex = 1876
  2402. Me.詳細資料1_ch.Text = "詳細資料"
  2403. Me.詳細資料1_ch.UseVisualStyleBackColor = False
  2404. '
  2405. '品名_tb
  2406. '
  2407. Me.品名_tb.BackColor = System.Drawing.Color.White
  2408. Me.品名_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  2409. Me.品名_tb.ForeColor = System.Drawing.Color.Black
  2410. Me.品名_tb.Location = New System.Drawing.Point(861, 106)
  2411. Me.品名_tb.Name = "品名_tb"
  2412. Me.品名_tb.Size = New System.Drawing.Size(219, 16)
  2413. Me.品名_tb.TabIndex = 1878
  2414. '
  2415. '盤盈盤損申請
  2416. '
  2417. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  2418. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  2419. Me.BackColor = System.Drawing.SystemColors.Control
  2420. Me.ClientSize = New System.Drawing.Size(1350, 944)
  2421. Me.ContextMenuStrip = Me.ContextMenuStrip1
  2422. Me.Controls.Add(Me.品名_tb)
  2423. Me.Controls.Add(Me.詳細資料1_ch)
  2424. Me.Controls.Add(Me.退料單建立完成_bt)
  2425. Me.Controls.Add(Me.合約號_lb)
  2426. Me.Controls.Add(Me.語轉扭_bt)
  2427. Me.Controls.Add(Me.合約編號3_tb)
  2428. Me.Controls.Add(Me.合約編號2_tb)
  2429. Me.Controls.Add(Me.合約編號1_tb)
  2430. Me.Controls.Add(Me.合約編號_cb)
  2431. Me.Controls.Add(Me.Label35)
  2432. Me.Controls.Add(Me.合約號_tb)
  2433. Me.Controls.Add(Me.合約編號_lb)
  2434. Me.Controls.Add(Me.切換_ts)
  2435. Me.Controls.Add(Me.切換_lb)
  2436. Me.Controls.Add(Me.大間距_ch)
  2437. Me.Controls.Add(Me.中間距_ch)
  2438. Me.Controls.Add(Me.小間距_ch)
  2439. Me.Controls.Add(Me.Panel1)
  2440. Me.Controls.Add(Me.刪除選取_bt)
  2441. Me.Controls.Add(Me.刪除_bt)
  2442. Me.Controls.Add(Me.開立庫存調整單_bt)
  2443. Me.Controls.Add(Me.存檔_bt)
  2444. Me.Controls.Add(Me.物料圖_pb)
  2445. Me.Controls.Add(Me.申請日期_dtp)
  2446. Me.Controls.Add(Me.項次_lb)
  2447. Me.Controls.Add(Me.選擇_lb)
  2448. Me.Controls.Add(Me.申請日期_lb)
  2449. Me.Controls.Add(Me.調庫單號_tb)
  2450. Me.Controls.Add(Me.倉儲單號_lb)
  2451. Me.Controls.Add(Me.調庫明細_dgv)
  2452. Me.Controls.Add(Me.指定倉庫_cb)
  2453. Me.Controls.Add(Me.指定倉庫_lb)
  2454. Me.Controls.Add(Me.RadSeparator1)
  2455. Me.Controls.Add(Me.新式_P)
  2456. Me.Controls.Add(Me.舊式_P)
  2457. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2458. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  2459. Me.Name = "盤盈盤損申請"
  2460. Me.Text = "盤盈盤損申請"
  2461. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2462. CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2463. CType(Me.物料規格_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2464. CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).EndInit()
  2465. CType(Me.盤損數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2466. CType(Me.調庫單據_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2467. CType(Me.調庫明細_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2468. CType(Me.盤盈數_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2469. Me.ContextMenuStrip1.ResumeLayout(False)
  2470. Me.Panel1.ResumeLayout(False)
  2471. Me.Panel1.PerformLayout()
  2472. CType(Me.物料_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2473. CType(Me.群組分類_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2474. CType(Me.RadSeparator1, System.ComponentModel.ISupportInitialize).EndInit()
  2475. Me.舊式_P.ResumeLayout(False)
  2476. Me.舊式_P.PerformLayout()
  2477. Me.新式_P.ResumeLayout(False)
  2478. Me.新式_P.PerformLayout()
  2479. Me.物料_p.ResumeLayout(False)
  2480. Me.物料_p.PerformLayout()
  2481. CType(Me.物料清單1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2482. CType(Me.盤盈數1_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2483. CType(Me.盤損數1_nud, System.ComponentModel.ISupportInitialize).EndInit()
  2484. CType(Me.物料規格1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2485. Me.主頁_p.ResumeLayout(False)
  2486. Me.次頁_p.ResumeLayout(False)
  2487. Me.AP21.ResumeLayout(False)
  2488. Me.AP21.PerformLayout()
  2489. CType(Me.PB_21, System.ComponentModel.ISupportInitialize).EndInit()
  2490. Me.AP20.ResumeLayout(False)
  2491. Me.AP20.PerformLayout()
  2492. CType(Me.PB_20, System.ComponentModel.ISupportInitialize).EndInit()
  2493. Me.AP19.ResumeLayout(False)
  2494. Me.AP19.PerformLayout()
  2495. CType(Me.PB_19, System.ComponentModel.ISupportInitialize).EndInit()
  2496. Me.AP18.ResumeLayout(False)
  2497. Me.AP18.PerformLayout()
  2498. CType(Me.PB_18, System.ComponentModel.ISupportInitialize).EndInit()
  2499. Me.AP17.ResumeLayout(False)
  2500. Me.AP17.PerformLayout()
  2501. CType(Me.PB_17, System.ComponentModel.ISupportInitialize).EndInit()
  2502. Me.AP16.ResumeLayout(False)
  2503. Me.AP16.PerformLayout()
  2504. CType(Me.PB_16, System.ComponentModel.ISupportInitialize).EndInit()
  2505. Me.AP15.ResumeLayout(False)
  2506. Me.AP15.PerformLayout()
  2507. CType(Me.PB_15, System.ComponentModel.ISupportInitialize).EndInit()
  2508. Me.AP12.ResumeLayout(False)
  2509. Me.AP12.PerformLayout()
  2510. CType(Me.PB_12, System.ComponentModel.ISupportInitialize).EndInit()
  2511. Me.AP9.ResumeLayout(False)
  2512. Me.AP9.PerformLayout()
  2513. CType(Me.PB_9, System.ComponentModel.ISupportInitialize).EndInit()
  2514. Me.AP14.ResumeLayout(False)
  2515. Me.AP14.PerformLayout()
  2516. CType(Me.PB_14, System.ComponentModel.ISupportInitialize).EndInit()
  2517. Me.AP11.ResumeLayout(False)
  2518. Me.AP11.PerformLayout()
  2519. CType(Me.PB_11, System.ComponentModel.ISupportInitialize).EndInit()
  2520. Me.AP8.ResumeLayout(False)
  2521. Me.AP8.PerformLayout()
  2522. CType(Me.PB_8, System.ComponentModel.ISupportInitialize).EndInit()
  2523. Me.AP13.ResumeLayout(False)
  2524. Me.AP13.PerformLayout()
  2525. CType(Me.PB_13, System.ComponentModel.ISupportInitialize).EndInit()
  2526. Me.AP10.ResumeLayout(False)
  2527. Me.AP10.PerformLayout()
  2528. CType(Me.PB_10, System.ComponentModel.ISupportInitialize).EndInit()
  2529. Me.AP7.ResumeLayout(False)
  2530. Me.AP7.PerformLayout()
  2531. CType(Me.PB_7, System.ComponentModel.ISupportInitialize).EndInit()
  2532. Me.AP6.ResumeLayout(False)
  2533. Me.AP6.PerformLayout()
  2534. CType(Me.PB_6, System.ComponentModel.ISupportInitialize).EndInit()
  2535. Me.AP5.ResumeLayout(False)
  2536. Me.AP5.PerformLayout()
  2537. CType(Me.PB_5, System.ComponentModel.ISupportInitialize).EndInit()
  2538. Me.AP4.ResumeLayout(False)
  2539. Me.AP4.PerformLayout()
  2540. CType(Me.PB_4, System.ComponentModel.ISupportInitialize).EndInit()
  2541. Me.AP3.ResumeLayout(False)
  2542. Me.AP3.PerformLayout()
  2543. CType(Me.PB_3, System.ComponentModel.ISupportInitialize).EndInit()
  2544. Me.AP2.ResumeLayout(False)
  2545. Me.AP2.PerformLayout()
  2546. CType(Me.PB_2, System.ComponentModel.ISupportInitialize).EndInit()
  2547. Me.AP1.ResumeLayout(False)
  2548. Me.AP1.PerformLayout()
  2549. CType(Me.PB_1, System.ComponentModel.ISupportInitialize).EndInit()
  2550. Me.合約_P.ResumeLayout(False)
  2551. CType(Me.合約1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2552. Me.單據_p.ResumeLayout(False)
  2553. CType(Me.已核准1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  2554. CType(Me.切換_ts, System.ComponentModel.ISupportInitialize).EndInit()
  2555. Me.ResumeLayout(False)
  2556. Me.PerformLayout()
  2557. End Sub
  2558. Friend WithEvents 語言_dgv As DataGridView
  2559. Friend WithEvents 物料原則二_cb As ComboBox
  2560. Friend WithEvents 物料原則一_cb As ComboBox
  2561. Friend WithEvents 群組編碼_lb As Label
  2562. Friend WithEvents 群組編碼_cb As ComboBox
  2563. Friend WithEvents 物料清單_dgv As DataGridView
  2564. Friend WithEvents 申請人_tb As TextBox
  2565. Friend WithEvents 申請日期_lb As Label
  2566. Friend WithEvents 倉儲單號_lb As Label
  2567. Friend WithEvents 調庫單號_tb As TextBox
  2568. Friend WithEvents 物料規格_dgv As DataGridView
  2569. Friend WithEvents 搜尋_bt As Button
  2570. Friend WithEvents 倉庫編號_tb As TextBox
  2571. Friend WithEvents 倉庫級別_tb As TextBox
  2572. Friend WithEvents 指定倉庫_cb As ComboBox
  2573. Friend WithEvents 申請日期_dtp As DateTimePicker
  2574. Friend WithEvents 項次_tb As TextBox
  2575. Friend WithEvents 項次_lb As Label
  2576. Friend WithEvents 選擇_lb As Label
  2577. Friend WithEvents 指定倉庫_lb As Label
  2578. Friend WithEvents 群組碼_tb As TextBox
  2579. Friend WithEvents 物料圖_pb As PictureBox
  2580. Friend WithEvents 可申請_tb As TextBox
  2581. Friend WithEvents 最大庫存量_tb As TextBox
  2582. Friend WithEvents 庫存量_tb As TextBox
  2583. Friend WithEvents 盤損數_nud As NumericUpDown
  2584. Friend WithEvents 盤盈數_lb As Label
  2585. Friend WithEvents 料號_lb As Label
  2586. Friend WithEvents 料號_tb As TextBox
  2587. Friend WithEvents 庫存量_lb As Label
  2588. Friend WithEvents 最大庫存量_lb As Label
  2589. Friend WithEvents 可盤損數_lb As Label
  2590. Friend WithEvents 調庫單據_dgv As DataGridView
  2591. Friend WithEvents 調庫明細_dgv As DataGridView
  2592. Friend WithEvents 開立庫存調整單_bt As Button
  2593. Friend WithEvents 未審核_lb As Label
  2594. Friend WithEvents 選定內容加入庫存調整申請單_bt As Button
  2595. Friend WithEvents 盤盈數_nud As NumericUpDown
  2596. Friend WithEvents 盤損數_lb As Label
  2597. Friend WithEvents 存檔_bt As Button
  2598. Friend WithEvents ContextMenuStrip1 As ContextMenuStrip
  2599. Friend WithEvents 重新整理_tsm As ToolStripMenuItem
  2600. Friend WithEvents 搜尋_tsm As ToolStripMenuItem
  2601. Friend WithEvents 刪除_bt As Button
  2602. Friend WithEvents 刪除選取_bt As Button
  2603. Friend WithEvents 大間距1_ch As CheckBox
  2604. Friend WithEvents 中間距1_ch As CheckBox
  2605. Friend WithEvents 小間距1_ch As CheckBox
  2606. Friend WithEvents 大間距_ch As CheckBox
  2607. Friend WithEvents 中間距_ch As CheckBox
  2608. Friend WithEvents 小間距_ch As CheckBox
  2609. Friend WithEvents 語轉扭_bt As Button
  2610. Friend WithEvents 新群組1_cb As ComboBox
  2611. Friend WithEvents Panel1 As Panel
  2612. Friend WithEvents RadSeparator1 As Telerik.WinControls.UI.RadSeparator
  2613. Friend WithEvents 舊式_P As Panel
  2614. Friend WithEvents 新式_P As Panel
  2615. Friend WithEvents 搜尋1_bt As Button
  2616. Friend WithEvents 縮放3_bt As Button
  2617. Friend WithEvents 選定內容加入庫存調整申請單1_bt As Button
  2618. Friend WithEvents 回次頁_bt As Button
  2619. Friend WithEvents 單據_bt As Button
  2620. Friend WithEvents 回首頁_bt As Button
  2621. Friend WithEvents 單據_p As Panel
  2622. Friend WithEvents 已核准1_dgv As DataGridView
  2623. Friend WithEvents 物料_p As Panel
  2624. Friend WithEvents 物料規格1_dgv As DataGridView
  2625. Friend WithEvents 物料清單1_dgv As DataGridView
  2626. Friend WithEvents 主頁_p As Panel
  2627. Friend WithEvents 其他_bt As Button
  2628. Friend WithEvents 日用_bt As Button
  2629. Friend WithEvents 工具_bt As Button
  2630. Friend WithEvents 設備_bt As Button
  2631. Friend WithEvents 五金_bt As Button
  2632. Friend WithEvents 建材_bt As Button
  2633. Friend WithEvents 槽架_bt As Button
  2634. Friend WithEvents 電料_bt As Button
  2635. Friend WithEvents 電線_bt As Button
  2636. Friend WithEvents 管材_bt As Button
  2637. Friend WithEvents 次頁_p As Panel
  2638. Friend WithEvents AP21 As Panel
  2639. Friend WithEvents TB_21 As TextBox
  2640. Friend WithEvents PB_21 As PictureBox
  2641. Friend WithEvents AP20 As Panel
  2642. Friend WithEvents TB_20 As TextBox
  2643. Friend WithEvents PB_20 As PictureBox
  2644. Friend WithEvents AP19 As Panel
  2645. Friend WithEvents TB_19 As TextBox
  2646. Friend WithEvents PB_19 As PictureBox
  2647. Friend WithEvents AP18 As Panel
  2648. Friend WithEvents TB_18 As TextBox
  2649. Friend WithEvents PB_18 As PictureBox
  2650. Friend WithEvents AP17 As Panel
  2651. Friend WithEvents TB_17 As TextBox
  2652. Friend WithEvents PB_17 As PictureBox
  2653. Friend WithEvents AP16 As Panel
  2654. Friend WithEvents TB_16 As TextBox
  2655. Friend WithEvents PB_16 As PictureBox
  2656. Friend WithEvents AP15 As Panel
  2657. Friend WithEvents TB_15 As TextBox
  2658. Friend WithEvents PB_15 As PictureBox
  2659. Friend WithEvents AP12 As Panel
  2660. Friend WithEvents TB_12 As TextBox
  2661. Friend WithEvents PB_12 As PictureBox
  2662. Friend WithEvents AP9 As Panel
  2663. Friend WithEvents TB_9 As TextBox
  2664. Friend WithEvents PB_9 As PictureBox
  2665. Friend WithEvents AP14 As Panel
  2666. Friend WithEvents TB_14 As TextBox
  2667. Friend WithEvents PB_14 As PictureBox
  2668. Friend WithEvents AP11 As Panel
  2669. Friend WithEvents TB_11 As TextBox
  2670. Friend WithEvents PB_11 As PictureBox
  2671. Friend WithEvents AP8 As Panel
  2672. Friend WithEvents TB_8 As TextBox
  2673. Friend WithEvents PB_8 As PictureBox
  2674. Friend WithEvents AP13 As Panel
  2675. Friend WithEvents TB_13 As TextBox
  2676. Friend WithEvents PB_13 As PictureBox
  2677. Friend WithEvents AP10 As Panel
  2678. Friend WithEvents TB_10 As TextBox
  2679. Friend WithEvents PB_10 As PictureBox
  2680. Friend WithEvents AP7 As Panel
  2681. Friend WithEvents TB_7 As TextBox
  2682. Friend WithEvents PB_7 As PictureBox
  2683. Friend WithEvents AP6 As Panel
  2684. Friend WithEvents TB_6 As TextBox
  2685. Friend WithEvents PB_6 As PictureBox
  2686. Friend WithEvents AP5 As Panel
  2687. Friend WithEvents TB_5 As TextBox
  2688. Friend WithEvents PB_5 As PictureBox
  2689. Friend WithEvents AP4 As Panel
  2690. Friend WithEvents TB_4 As TextBox
  2691. Friend WithEvents PB_4 As PictureBox
  2692. Friend WithEvents AP3 As Panel
  2693. Friend WithEvents TB_3 As TextBox
  2694. Friend WithEvents PB_3 As PictureBox
  2695. Friend WithEvents AP2 As Panel
  2696. Friend WithEvents TB_2 As TextBox
  2697. Friend WithEvents PB_2 As PictureBox
  2698. Friend WithEvents AP1 As Panel
  2699. Friend WithEvents TB_1 As TextBox
  2700. Friend WithEvents PB_1 As PictureBox
  2701. Friend WithEvents 合約_P As Panel
  2702. Friend WithEvents 合約1_dgv As DataGridView
  2703. Friend WithEvents ToolTip1 As ToolTip
  2704. Friend WithEvents 切換_ts As Telerik.WinControls.UI.RadToggleSwitch
  2705. Friend WithEvents 切換_lb As Label
  2706. Friend WithEvents 合約號_tb As TextBox
  2707. Friend WithEvents 合約編號_lb As Label
  2708. Friend WithEvents 合約號_lb As Label
  2709. Friend WithEvents 合約編號3_tb As TextBox
  2710. Friend WithEvents 合約編號2_tb As TextBox
  2711. Friend WithEvents 合約編號1_tb As TextBox
  2712. Friend WithEvents 合約編號_cb As ComboBox
  2713. Friend WithEvents Label35 As Label
  2714. Friend WithEvents 退料單建立完成_bt As Button
  2715. Friend WithEvents 詳細資料1_ch As CheckBox
  2716. Friend WithEvents 料號1_lb As Label
  2717. Friend WithEvents 可盤損數1_lb As Label
  2718. Friend WithEvents 盤盈數1_nud As NumericUpDown
  2719. Friend WithEvents 可申請1_tb As TextBox
  2720. Friend WithEvents 最大庫存量1_lb As Label
  2721. Friend WithEvents 最大庫存量1_tb As TextBox
  2722. Friend WithEvents 庫存量1_lb As Label
  2723. Friend WithEvents 盤損數1_lb As Label
  2724. Friend WithEvents 庫存量1_tb As TextBox
  2725. Friend WithEvents 料號1_tb As TextBox
  2726. Friend WithEvents 盤損數1_nud As NumericUpDown
  2727. Friend WithEvents 盤盈數1_lb As Label
  2728. Friend WithEvents 甲方_lb As Label
  2729. Friend WithEvents 合約編號1_cb As ComboBox
  2730. Friend WithEvents 群組分類_dgv As DataGridView
  2731. Friend WithEvents 物料_dgv As DataGridView
  2732. Friend WithEvents 退料工地_cb As ComboBox
  2733. Friend WithEvents 品名_tb As TextBox
  2734. End Class