설명 없음
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 117KB

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