Geen omschrijving
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 155KB

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