Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

銷售單審核.Designer.vb 119KB

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