123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
- Partial Class 銷售單審核
- Inherits System.Windows.Forms.Form
-
- 'Form 覆寫 Dispose 以清除元件清單。
- <System.Diagnostics.DebuggerNonUserCode()>
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
-
- '為 Windows Form 設計工具的必要項
- Private components As System.ComponentModel.IContainer
-
- '注意: 以下為 Windows Form 設計工具所需的程序
- '可以使用 Windows Form 設計工具進行修改。
- '請勿使用程式碼編輯器進行修改。
- <System.Diagnostics.DebuggerStepThrough()>
- Private Sub InitializeComponent()
- Dim DataGridViewCellStyle33 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle34 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle35 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle36 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle37 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle38 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle39 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle40 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle41 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle42 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle43 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle44 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle45 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle46 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle47 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle48 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Me.業務_cb = New System.Windows.Forms.ComboBox()
- Me.客戶資料驗證_bt = New System.Windows.Forms.Button()
- Me.售價_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.區域庫存_dgv = New System.Windows.Forms.DataGridView()
- Me.成本_nud = New System.Windows.Forms.NumericUpDown()
- Me.盤損數_lb = New System.Windows.Forms.Label()
- Me.可申請_tb = New System.Windows.Forms.TextBox()
- Me.最大庫存量_tb = New System.Windows.Forms.TextBox()
- Me.庫存量_tb = New System.Windows.Forms.TextBox()
- Me.訂購數量_nud = New System.Windows.Forms.NumericUpDown()
- Me.盤盈數_lb = New System.Windows.Forms.Label()
- Me.庫存量_lb = New System.Windows.Forms.Label()
- Me.最大庫存量_lb = New System.Windows.Forms.Label()
- Me.可盤損數_lb = New System.Windows.Forms.Label()
- Me.倉儲狀態_cb = New System.Windows.Forms.ComboBox()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.訂製狀態_cb = New System.Windows.Forms.ComboBox()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.資料筆數_tb = New System.Windows.Forms.TextBox()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.選定內容加入庫存調整申請單_bt = New System.Windows.Forms.Button()
- Me.指定倉庫_cb = New System.Windows.Forms.ComboBox()
- Me.指定倉庫_lb = New System.Windows.Forms.Label()
- Me.供應商編碼_tb = New System.Windows.Forms.TextBox()
- Me.品名_tb = New System.Windows.Forms.TextBox()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.料號_tb = New System.Windows.Forms.TextBox()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.Label29 = New System.Windows.Forms.Label()
- Me.查詢_tb = New System.Windows.Forms.TextBox()
- Me.供應商編碼_cb = New System.Windows.Forms.ComboBox()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.供應商_cb = New System.Windows.Forms.ComboBox()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.清空_bt = New System.Windows.Forms.Button()
- Me.地區_cb = New System.Windows.Forms.ComboBox()
- Me.Label21 = New System.Windows.Forms.Label()
- Me.物料清單_dgv = New System.Windows.Forms.DataGridView()
- Me.需要全部庫存區域清單_ch = New System.Windows.Forms.CheckBox()
- Me.刪除_bt = New System.Windows.Forms.Button()
- Me.刪除單據上點選的資料_bt = New System.Windows.Forms.Button()
- Me.存檔_bt = New System.Windows.Forms.Button()
- Me.含稅_ch = New System.Windows.Forms.CheckBox()
- Me.交貨日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.開單日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.客戶資料查詢_bt = New System.Windows.Forms.Button()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.統編_tb = New System.Windows.Forms.TextBox()
- Me.公司_tb = New System.Windows.Forms.TextBox()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.電話2_tb = New System.Windows.Forms.TextBox()
- Me.電話1_tb = New System.Windows.Forms.TextBox()
- Me.住址_tb = New System.Windows.Forms.TextBox()
- Me.客戶_tb = New System.Windows.Forms.TextBox()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.單號_tb = New System.Windows.Forms.TextBox()
- Me.銷售單據_dgv = New System.Windows.Forms.DataGridView()
- Me.未審核_lb = New System.Windows.Forms.Label()
- Me.單據核准_bt = New System.Windows.Forms.Button()
- Me.單據作廢_bt = New System.Windows.Forms.Button()
- Me.Panel1 = New System.Windows.Forms.Panel()
- Me.刪除衍生運費_bt = New System.Windows.Forms.Button()
- Me.新增衍生運費_bt = New System.Windows.Forms.Button()
- Me.項次4_tb = New System.Windows.Forms.TextBox()
- Me.Label49 = New System.Windows.Forms.Label()
- Me.銷售衍生運費_dgv = New System.Windows.Forms.DataGridView()
- Me.通知_lb = New System.Windows.Forms.Label()
- Me.刷卡總和_tb = New System.Windows.Forms.TextBox()
- Me.刷卡稅金_tb = New System.Windows.Forms.TextBox()
- Me.Label46 = New System.Windows.Forms.Label()
- Me.Label47 = New System.Windows.Forms.Label()
- Me.刷卡傭金_tb = New System.Windows.Forms.TextBox()
- Me.Label48 = New System.Windows.Forms.Label()
- Me.刷卡收款_bt = New System.Windows.Forms.Button()
- Me.其他成本_tb = New System.Windows.Forms.TextBox()
- Me.Label45 = New System.Windows.Forms.Label()
- Me.Reset_bt = New System.Windows.Forms.Button()
- Me.讀取標準成本_bt = New System.Windows.Forms.Button()
- Me.物料成本_tb = New System.Windows.Forms.TextBox()
- Me.Label43 = New System.Windows.Forms.Label()
- Me.預估利潤_tb = New System.Windows.Forms.TextBox()
- Me.Label42 = New System.Windows.Forms.Label()
- Me.管銷費用_tb = New System.Windows.Forms.TextBox()
- Me.Label41 = New System.Windows.Forms.Label()
- Me.司機運費_tb = New System.Windows.Forms.TextBox()
- Me.Label38 = New System.Windows.Forms.Label()
- Me.送貨地點_cb = New System.Windows.Forms.ComboBox()
- Me.Label39 = New System.Windows.Forms.Label()
- Me.項次3_tb = New System.Windows.Forms.TextBox()
- Me.刪除收款事項上點選的資料_bt = New System.Windows.Forms.Button()
- Me.新增一筆收款事項_bt = New System.Windows.Forms.Button()
- Me.項次2_tb = New System.Windows.Forms.TextBox()
- Me.Label36 = New System.Windows.Forms.Label()
- Me.額外收支_tb = New System.Windows.Forms.TextBox()
- Me.Label35 = New System.Windows.Forms.Label()
- Me.銷售合計_tb = New System.Windows.Forms.TextBox()
- Me.Label34 = New System.Windows.Forms.Label()
- Me.稅金_tb = New System.Windows.Forms.TextBox()
- Me.Label33 = New System.Windows.Forms.Label()
- Me.支出小計_tb = New System.Windows.Forms.TextBox()
- Me.Label32 = New System.Windows.Forms.Label()
- Me.收入小計_tb = New System.Windows.Forms.TextBox()
- Me.Label31 = New System.Windows.Forms.Label()
- Me.售價小計_tb = New System.Windows.Forms.TextBox()
- Me.Label30 = New System.Windows.Forms.Label()
- Me.刪除備註_bt = New System.Windows.Forms.Button()
- Me.銷售備註_bt = New System.Windows.Forms.Button()
- Me.項次1_tb = New System.Windows.Forms.TextBox()
- Me.Label26 = New System.Windows.Forms.Label()
- Me.項次_tb = New System.Windows.Forms.TextBox()
- Me.Label25 = New System.Windows.Forms.Label()
- Me.調庫單號_tb = New System.Windows.Forms.TextBox()
- Me.倉儲單號_lb = New System.Windows.Forms.Label()
- Me.客戶流水_tb = New System.Windows.Forms.TextBox()
- Me.客戶資料_dgv = New System.Windows.Forms.DataGridView()
- Me.倉庫級別_tb = New System.Windows.Forms.TextBox()
- Me.倉庫編號_tb = New System.Windows.Forms.TextBox()
- Me.儲態編號_cb = New System.Windows.Forms.ComboBox()
- Me.訂製編碼_cb = New System.Windows.Forms.ComboBox()
- Me.客戶編號_tb = New System.Windows.Forms.TextBox()
- Me.流水號_tb = New System.Windows.Forms.TextBox()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.銷售明細_dgv = New System.Windows.Forms.DataGridView()
- Me.銷售備註_dgv = New System.Windows.Forms.DataGridView()
- Me.收款事項_dgv = New System.Windows.Forms.DataGridView()
- Me.Label28 = New System.Windows.Forms.Label()
- Me.Label40 = New System.Windows.Forms.Label()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.銷售收款流水號_tb = New System.Windows.Forms.TextBox()
- Me.Label37 = New System.Windows.Forms.Label()
- Me.銷售備註流水號_tb = New System.Windows.Forms.TextBox()
- Me.倉儲資料流水號_tb = New System.Windows.Forms.TextBox()
- Me.Label24 = New System.Windows.Forms.Label()
- Me.銷售資料流水號_tb = New System.Windows.Forms.TextBox()
- Me.Label27 = New System.Windows.Forms.Label()
- Me.Label23 = New System.Windows.Forms.Label()
- Me.物料圖_pb = New System.Windows.Forms.PictureBox()
- Me.物料圖1_pb = New System.Windows.Forms.PictureBox()
- Me.最低售價_cb = New System.Windows.Forms.ComboBox()
- Me.最低運費_cb = New System.Windows.Forms.ComboBox()
- Me.大間距_ch = New System.Windows.Forms.CheckBox()
- Me.中間距_ch = New System.Windows.Forms.CheckBox()
- Me.小間距_ch = New System.Windows.Forms.CheckBox()
- Me.已審核資料_ch = New System.Windows.Forms.CheckBox()
- Me.隱藏_bt = New System.Windows.Forms.Button()
- Me.Panel2 = New System.Windows.Forms.Panel()
- Me.Label50 = New System.Windows.Forms.Label()
- Me.運費資料流水號_tb = New System.Windows.Forms.TextBox()
- Me.Panel3 = New System.Windows.Forms.Panel()
- Me.顯示_bt = New System.Windows.Forms.Button()
- Me.物料成本無管銷_tb = New System.Windows.Forms.TextBox()
- CType(Me.售價_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.區域庫存_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.成本_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.訂購數量_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.銷售單據_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel1.SuspendLayout()
- CType(Me.銷售衍生運費_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.客戶資料_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.銷售明細_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.銷售備註_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.收款事項_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel2.SuspendLayout()
- Me.Panel3.SuspendLayout()
- Me.SuspendLayout()
- '
- '業務_cb
- '
- Me.業務_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.業務_cb.FormattingEnabled = True
- Me.業務_cb.Items.AddRange(New Object() {"", "1", "2", "3", "4", "5", "6", "7", "8", "9", "B", "Y"})
- Me.業務_cb.Location = New System.Drawing.Point(86, 2)
- Me.業務_cb.Name = "業務_cb"
- Me.業務_cb.Size = New System.Drawing.Size(62, 24)
- Me.業務_cb.TabIndex = 1328
- '
- '客戶資料驗證_bt
- '
- Me.客戶資料驗證_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.客戶資料驗證_bt.ForeColor = System.Drawing.Color.Purple
- Me.客戶資料驗證_bt.Location = New System.Drawing.Point(610, 49)
- Me.客戶資料驗證_bt.Name = "客戶資料驗證_bt"
- Me.客戶資料驗證_bt.Size = New System.Drawing.Size(110, 40)
- Me.客戶資料驗證_bt.TabIndex = 1327
- Me.客戶資料驗證_bt.Text = "客戶驗證"
- Me.客戶資料驗證_bt.UseVisualStyleBackColor = True
- '
- '售價_nud
- '
- Me.售價_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.售價_nud.ForeColor = System.Drawing.Color.Green
- Me.售價_nud.Location = New System.Drawing.Point(415, 621)
- Me.售價_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
- Me.售價_nud.Name = "售價_nud"
- Me.售價_nud.Size = New System.Drawing.Size(118, 23)
- Me.售價_nud.TabIndex = 1325
- Me.售價_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label22
- '
- Me.Label22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label22.AutoSize = True
- Me.Label22.ForeColor = System.Drawing.Color.Green
- Me.Label22.Location = New System.Drawing.Point(341, 623)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(68, 16)
- Me.Label22.TabIndex = 1324
- Me.Label22.Text = "售 價"
- '
- '區域庫存_dgv
- '
- DataGridViewCellStyle33.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.區域庫存_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle33
- Me.區域庫存_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.區域庫存_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.區域庫存_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.區域庫存_dgv.Location = New System.Drawing.Point(345, 317)
- Me.區域庫存_dgv.Name = "區域庫存_dgv"
- Me.區域庫存_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle34.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.區域庫存_dgv.RowsDefaultCellStyle = DataGridViewCellStyle34
- Me.區域庫存_dgv.RowTemplate.Height = 24
- Me.區域庫存_dgv.Size = New System.Drawing.Size(191, 90)
- Me.區域庫存_dgv.TabIndex = 1323
- '
- '成本_nud
- '
- Me.成本_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.成本_nud.ForeColor = System.Drawing.Color.Green
- Me.成本_nud.Location = New System.Drawing.Point(416, 597)
- Me.成本_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
- Me.成本_nud.Name = "成本_nud"
- Me.成本_nud.Size = New System.Drawing.Size(118, 23)
- Me.成本_nud.TabIndex = 1321
- Me.成本_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '盤損數_lb
- '
- Me.盤損數_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.盤損數_lb.AutoSize = True
- Me.盤損數_lb.ForeColor = System.Drawing.Color.Green
- Me.盤損數_lb.Location = New System.Drawing.Point(342, 575)
- Me.盤損數_lb.Name = "盤損數_lb"
- Me.盤損數_lb.Size = New System.Drawing.Size(68, 16)
- Me.盤損數_lb.TabIndex = 1320
- Me.盤損數_lb.Text = "訂 購 數 量"
- '
- '可申請_tb
- '
- Me.可申請_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.可申請_tb.Enabled = False
- Me.可申請_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.可申請_tb.Location = New System.Drawing.Point(416, 549)
- Me.可申請_tb.Name = "可申請_tb"
- Me.可申請_tb.Size = New System.Drawing.Size(118, 23)
- Me.可申請_tb.TabIndex = 1319
- Me.可申請_tb.Text = "0"
- Me.可申請_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '最大庫存量_tb
- '
- Me.最大庫存量_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.最大庫存量_tb.Enabled = False
- Me.最大庫存量_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.最大庫存量_tb.Location = New System.Drawing.Point(416, 525)
- Me.最大庫存量_tb.Name = "最大庫存量_tb"
- Me.最大庫存量_tb.Size = New System.Drawing.Size(118, 23)
- Me.最大庫存量_tb.TabIndex = 1316
- Me.最大庫存量_tb.Text = "0"
- Me.最大庫存量_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '庫存量_tb
- '
- Me.庫存量_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.庫存量_tb.Enabled = False
- Me.庫存量_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.庫存量_tb.Location = New System.Drawing.Point(416, 501)
- Me.庫存量_tb.Name = "庫存量_tb"
- Me.庫存量_tb.Size = New System.Drawing.Size(118, 23)
- Me.庫存量_tb.TabIndex = 1314
- Me.庫存量_tb.Text = "0"
- Me.庫存量_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '訂購數量_nud
- '
- Me.訂購數量_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.訂購數量_nud.ForeColor = System.Drawing.Color.Green
- Me.訂購數量_nud.Location = New System.Drawing.Point(416, 573)
- Me.訂購數量_nud.Maximum = New Decimal(New Integer() {10000, 0, 0, 0})
- Me.訂購數量_nud.Name = "訂購數量_nud"
- Me.訂購數量_nud.Size = New System.Drawing.Size(118, 23)
- Me.訂購數量_nud.TabIndex = 1313
- Me.訂購數量_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '盤盈數_lb
- '
- Me.盤盈數_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.盤盈數_lb.AutoSize = True
- Me.盤盈數_lb.ForeColor = System.Drawing.Color.Green
- Me.盤盈數_lb.Location = New System.Drawing.Point(342, 599)
- Me.盤盈數_lb.Name = "盤盈數_lb"
- Me.盤盈數_lb.Size = New System.Drawing.Size(68, 16)
- Me.盤盈數_lb.TabIndex = 1312
- Me.盤盈數_lb.Text = "成 本"
- '
- '庫存量_lb
- '
- Me.庫存量_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.庫存量_lb.AutoSize = True
- Me.庫存量_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.庫存量_lb.Location = New System.Drawing.Point(342, 504)
- Me.庫存量_lb.Name = "庫存量_lb"
- Me.庫存量_lb.Size = New System.Drawing.Size(68, 16)
- Me.庫存量_lb.TabIndex = 1315
- Me.庫存量_lb.Text = "庫 存 量"
- '
- '最大庫存量_lb
- '
- Me.最大庫存量_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.最大庫存量_lb.AutoSize = True
- Me.最大庫存量_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.最大庫存量_lb.Location = New System.Drawing.Point(342, 528)
- Me.最大庫存量_lb.Name = "最大庫存量_lb"
- Me.最大庫存量_lb.Size = New System.Drawing.Size(68, 16)
- Me.最大庫存量_lb.TabIndex = 1317
- Me.最大庫存量_lb.Text = "最大庫存量"
- '
- '可盤損數_lb
- '
- Me.可盤損數_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.可盤損數_lb.AutoSize = True
- Me.可盤損數_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.可盤損數_lb.Location = New System.Drawing.Point(342, 552)
- Me.可盤損數_lb.Name = "可盤損數_lb"
- Me.可盤損數_lb.Size = New System.Drawing.Size(71, 16)
- Me.可盤損數_lb.TabIndex = 1318
- Me.可盤損數_lb.Text = "可 出 庫 數"
- '
- '倉儲狀態_cb
- '
- Me.倉儲狀態_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.倉儲狀態_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.倉儲狀態_cb.FormattingEnabled = True
- Me.倉儲狀態_cb.Items.AddRange(New Object() {"2019"})
- Me.倉儲狀態_cb.Location = New System.Drawing.Point(399, 450)
- Me.倉儲狀態_cb.Name = "倉儲狀態_cb"
- Me.倉儲狀態_cb.Size = New System.Drawing.Size(134, 24)
- Me.倉儲狀態_cb.TabIndex = 1310
- '
- 'Label12
- '
- Me.Label12.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label12.AutoSize = True
- Me.Label12.Location = New System.Drawing.Point(341, 453)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(56, 16)
- Me.Label12.TabIndex = 1311
- Me.Label12.Text = "倉儲狀態"
- '
- '訂製狀態_cb
- '
- Me.訂製狀態_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.訂製狀態_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.訂製狀態_cb.FormattingEnabled = True
- Me.訂製狀態_cb.Items.AddRange(New Object() {"2019"})
- Me.訂製狀態_cb.Location = New System.Drawing.Point(399, 476)
- Me.訂製狀態_cb.Name = "訂製狀態_cb"
- Me.訂製狀態_cb.Size = New System.Drawing.Size(134, 24)
- Me.訂製狀態_cb.TabIndex = 1308
- '
- 'Label13
- '
- Me.Label13.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label13.AutoSize = True
- Me.Label13.Location = New System.Drawing.Point(341, 479)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(56, 16)
- Me.Label13.TabIndex = 1309
- Me.Label13.Text = "訂製狀態"
- '
- 'Label14
- '
- Me.Label14.AutoSize = True
- Me.Label14.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label14.Location = New System.Drawing.Point(488, 56)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(44, 16)
- Me.Label14.TabIndex = 1307
- Me.Label14.Text = "筆資料"
- '
- '資料筆數_tb
- '
- Me.資料筆數_tb.Location = New System.Drawing.Point(434, 53)
- Me.資料筆數_tb.Name = "資料筆數_tb"
- Me.資料筆數_tb.Size = New System.Drawing.Size(54, 23)
- Me.資料筆數_tb.TabIndex = 1306
- Me.資料筆數_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label15.Location = New System.Drawing.Point(416, 56)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(20, 16)
- Me.Label15.TabIndex = 1305
- Me.Label15.Text = "共"
- '
- '選定內容加入庫存調整申請單_bt
- '
- Me.選定內容加入庫存調整申請單_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.選定內容加入庫存調整申請單_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.選定內容加入庫存調整申請單_bt.ForeColor = System.Drawing.Color.Green
- Me.選定內容加入庫存調整申請單_bt.Location = New System.Drawing.Point(346, 645)
- Me.選定內容加入庫存調整申請單_bt.Name = "選定內容加入庫存調整申請單_bt"
- Me.選定內容加入庫存調整申請單_bt.Size = New System.Drawing.Size(190, 26)
- Me.選定內容加入庫存調整申請單_bt.TabIndex = 1304
- Me.選定內容加入庫存調整申請單_bt.Text = "選定內容加入銷售申請單"
- Me.選定內容加入庫存調整申請單_bt.UseVisualStyleBackColor = True
- '
- '指定倉庫_cb
- '
- Me.指定倉庫_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.指定倉庫_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.指定倉庫_cb.FormattingEnabled = True
- Me.指定倉庫_cb.Items.AddRange(New Object() {"2019"})
- Me.指定倉庫_cb.Location = New System.Drawing.Point(399, 408)
- Me.指定倉庫_cb.Name = "指定倉庫_cb"
- Me.指定倉庫_cb.Size = New System.Drawing.Size(134, 24)
- Me.指定倉庫_cb.TabIndex = 1302
- '
- '指定倉庫_lb
- '
- Me.指定倉庫_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.指定倉庫_lb.AutoSize = True
- Me.指定倉庫_lb.Location = New System.Drawing.Point(341, 412)
- Me.指定倉庫_lb.Name = "指定倉庫_lb"
- Me.指定倉庫_lb.Size = New System.Drawing.Size(56, 16)
- Me.指定倉庫_lb.TabIndex = 1303
- Me.指定倉庫_lb.Text = "庫存區域"
- '
- '供應商編碼_tb
- '
- Me.供應商編碼_tb.Location = New System.Drawing.Point(56, 129)
- Me.供應商編碼_tb.Name = "供應商編碼_tb"
- Me.供應商編碼_tb.Size = New System.Drawing.Size(67, 23)
- Me.供應商編碼_tb.TabIndex = 1301
- '
- '品名_tb
- '
- Me.品名_tb.Location = New System.Drawing.Point(149, 53)
- Me.品名_tb.Name = "品名_tb"
- Me.品名_tb.Size = New System.Drawing.Size(261, 23)
- Me.品名_tb.TabIndex = 1298
- '
- 'Label16
- '
- Me.Label16.AutoSize = True
- Me.Label16.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label16.Location = New System.Drawing.Point(116, 56)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(32, 16)
- Me.Label16.TabIndex = 1297
- Me.Label16.Text = "品名"
- '
- '料號_tb
- '
- Me.料號_tb.Location = New System.Drawing.Point(32, 53)
- Me.料號_tb.Name = "料號_tb"
- Me.料號_tb.Size = New System.Drawing.Size(82, 23)
- Me.料號_tb.TabIndex = 1296
- '
- 'Label17
- '
- Me.Label17.AutoSize = True
- Me.Label17.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label17.Location = New System.Drawing.Point(-1, 57)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(32, 16)
- Me.Label17.TabIndex = 1295
- Me.Label17.Text = "料號"
- '
- 'Label29
- '
- Me.Label29.AutoSize = True
- Me.Label29.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label29.Location = New System.Drawing.Point(252, 5)
- Me.Label29.Name = "Label29"
- Me.Label29.Size = New System.Drawing.Size(68, 16)
- Me.Label29.TabIndex = 1294
- Me.Label29.Text = "關鍵字查詢"
- '
- '查詢_tb
- '
- Me.查詢_tb.Location = New System.Drawing.Point(320, 2)
- Me.查詢_tb.Name = "查詢_tb"
- Me.查詢_tb.Size = New System.Drawing.Size(145, 23)
- Me.查詢_tb.TabIndex = 1293
- '
- '供應商編碼_cb
- '
- Me.供應商編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.供應商編碼_cb.FormattingEnabled = True
- Me.供應商編碼_cb.Location = New System.Drawing.Point(172, 2)
- Me.供應商編碼_cb.Name = "供應商編碼_cb"
- Me.供應商編碼_cb.Size = New System.Drawing.Size(76, 24)
- Me.供應商編碼_cb.TabIndex = 1292
- '
- 'Label18
- '
- Me.Label18.AutoSize = True
- Me.Label18.ForeColor = System.Drawing.Color.Red
- Me.Label18.Location = New System.Drawing.Point(117, 6)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(56, 16)
- Me.Label18.TabIndex = 1291
- Me.Label18.Text = "廠商編碼"
- '
- '供應商_cb
- '
- Me.供應商_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.供應商_cb.FormattingEnabled = True
- Me.供應商_cb.Location = New System.Drawing.Point(43, 27)
- Me.供應商_cb.Name = "供應商_cb"
- Me.供應商_cb.Size = New System.Drawing.Size(205, 24)
- Me.供應商_cb.TabIndex = 1290
- '
- 'Label19
- '
- Me.Label19.AutoSize = True
- Me.Label19.ForeColor = System.Drawing.Color.Red
- Me.Label19.Location = New System.Drawing.Point(-1, 31)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(44, 16)
- Me.Label19.TabIndex = 1289
- Me.Label19.Text = "供應商"
- '
- '清空_bt
- '
- Me.清空_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.清空_bt.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.清空_bt.Location = New System.Drawing.Point(252, 27)
- Me.清空_bt.Name = "清空_bt"
- Me.清空_bt.Size = New System.Drawing.Size(213, 24)
- Me.清空_bt.TabIndex = 1286
- Me.清空_bt.Text = "清除查詢條件"
- Me.清空_bt.UseVisualStyleBackColor = True
- '
- '地區_cb
- '
- Me.地區_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.地區_cb.FormattingEnabled = True
- Me.地區_cb.Items.AddRange(New Object() {"", "北部", "南部", "材料", "調貨", "其他"})
- Me.地區_cb.Location = New System.Drawing.Point(43, 2)
- Me.地區_cb.Name = "地區_cb"
- Me.地區_cb.Size = New System.Drawing.Size(71, 24)
- Me.地區_cb.TabIndex = 1285
- '
- 'Label21
- '
- Me.Label21.AutoSize = True
- Me.Label21.ForeColor = System.Drawing.Color.Red
- Me.Label21.Location = New System.Drawing.Point(0, 6)
- Me.Label21.Name = "Label21"
- Me.Label21.Size = New System.Drawing.Size(32, 16)
- Me.Label21.TabIndex = 1284
- Me.Label21.Text = "地區"
- '
- '物料清單_dgv
- '
- DataGridViewCellStyle35.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.物料清單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle35
- Me.物料清單_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.物料清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.物料清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.物料清單_dgv.Location = New System.Drawing.Point(2, 79)
- Me.物料清單_dgv.Name = "物料清單_dgv"
- Me.物料清單_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle36.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle36.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.物料清單_dgv.RowsDefaultCellStyle = DataGridViewCellStyle36
- Me.物料清單_dgv.RowTemplate.Height = 24
- Me.物料清單_dgv.Size = New System.Drawing.Size(534, 235)
- Me.物料清單_dgv.TabIndex = 1283
- '
- '需要全部庫存區域清單_ch
- '
- Me.需要全部庫存區域清單_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.需要全部庫存區域清單_ch.AutoSize = True
- Me.需要全部庫存區域清單_ch.Location = New System.Drawing.Point(367, 432)
- Me.需要全部庫存區域清單_ch.Name = "需要全部庫存區域清單_ch"
- Me.需要全部庫存區域清單_ch.Size = New System.Drawing.Size(147, 20)
- Me.需要全部庫存區域清單_ch.TabIndex = 1322
- Me.需要全部庫存區域清單_ch.Text = "需要全部庫存區域清單"
- Me.需要全部庫存區域清單_ch.UseVisualStyleBackColor = True
- '
- '刪除_bt
- '
- Me.刪除_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除_bt.Location = New System.Drawing.Point(610, 8)
- Me.刪除_bt.Name = "刪除_bt"
- Me.刪除_bt.Size = New System.Drawing.Size(110, 40)
- Me.刪除_bt.TabIndex = 1282
- Me.刪除_bt.Text = "刪除銷售單據"
- Me.刪除_bt.UseVisualStyleBackColor = True
- '
- '刪除單據上點選的資料_bt
- '
- Me.刪除單據上點選的資料_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除單據上點選的資料_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除單據上點選的資料_bt.Location = New System.Drawing.Point(202, 3)
- Me.刪除單據上點選的資料_bt.Name = "刪除單據上點選的資料_bt"
- Me.刪除單據上點選的資料_bt.Size = New System.Drawing.Size(163, 23)
- Me.刪除單據上點選的資料_bt.TabIndex = 1281
- Me.刪除單據上點選的資料_bt.Text = "刪除銷售單據上點選的資料"
- Me.刪除單據上點選的資料_bt.UseVisualStyleBackColor = True
- '
- '存檔_bt
- '
- Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.存檔_bt.ForeColor = System.Drawing.Color.Green
- Me.存檔_bt.Location = New System.Drawing.Point(499, 131)
- Me.存檔_bt.Name = "存檔_bt"
- Me.存檔_bt.Size = New System.Drawing.Size(221, 40)
- Me.存檔_bt.TabIndex = 1280
- Me.存檔_bt.Text = "存檔"
- Me.存檔_bt.UseVisualStyleBackColor = True
- '
- '含稅_ch
- '
- Me.含稅_ch.AutoSize = True
- Me.含稅_ch.Location = New System.Drawing.Point(190, 103)
- Me.含稅_ch.Name = "含稅_ch"
- Me.含稅_ch.Size = New System.Drawing.Size(51, 20)
- Me.含稅_ch.TabIndex = 1278
- Me.含稅_ch.Text = "含稅"
- Me.含稅_ch.UseVisualStyleBackColor = True
- '
- '交貨日期_dtp
- '
- Me.交貨日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.交貨日期_dtp.Location = New System.Drawing.Point(370, 26)
- Me.交貨日期_dtp.Name = "交貨日期_dtp"
- Me.交貨日期_dtp.Size = New System.Drawing.Size(127, 23)
- Me.交貨日期_dtp.TabIndex = 1277
- '
- 'Label9
- '
- Me.Label9.AutoSize = True
- Me.Label9.ForeColor = System.Drawing.Color.Red
- Me.Label9.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label9.Location = New System.Drawing.Point(314, 29)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(56, 16)
- Me.Label9.TabIndex = 1276
- Me.Label9.Text = "交貨日期"
- '
- '開單日期_dtp
- '
- Me.開單日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.開單日期_dtp.Location = New System.Drawing.Point(370, 1)
- Me.開單日期_dtp.Name = "開單日期_dtp"
- Me.開單日期_dtp.Size = New System.Drawing.Size(127, 23)
- Me.開單日期_dtp.TabIndex = 1275
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.ForeColor = System.Drawing.Color.Red
- Me.Label4.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label4.Location = New System.Drawing.Point(314, 4)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(56, 16)
- Me.Label4.TabIndex = 1274
- Me.Label4.Text = "開單日期"
- '
- '客戶資料查詢_bt
- '
- Me.客戶資料查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.客戶資料查詢_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.客戶資料查詢_bt.Location = New System.Drawing.Point(499, 49)
- Me.客戶資料查詢_bt.Name = "客戶資料查詢_bt"
- Me.客戶資料查詢_bt.Size = New System.Drawing.Size(110, 40)
- Me.客戶資料查詢_bt.TabIndex = 1273
- Me.客戶資料查詢_bt.Text = "客戶資料查詢"
- Me.客戶資料查詢_bt.UseVisualStyleBackColor = True
- '
- 'Label11
- '
- Me.Label11.AutoSize = True
- Me.Label11.ForeColor = System.Drawing.Color.Black
- Me.Label11.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label11.Location = New System.Drawing.Point(319, 104)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(56, 16)
- Me.Label11.TabIndex = 1272
- Me.Label11.Text = "統一編號"
- '
- '統編_tb
- '
- Me.統編_tb.Location = New System.Drawing.Point(377, 101)
- Me.統編_tb.Name = "統編_tb"
- Me.統編_tb.Size = New System.Drawing.Size(120, 23)
- Me.統編_tb.TabIndex = 1271
- '
- '公司_tb
- '
- Me.公司_tb.Location = New System.Drawing.Point(187, 51)
- Me.公司_tb.Name = "公司_tb"
- Me.公司_tb.Size = New System.Drawing.Size(310, 23)
- Me.公司_tb.TabIndex = 1270
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.ForeColor = System.Drawing.Color.Black
- Me.Label10.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label10.Location = New System.Drawing.Point(150, 54)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(32, 16)
- Me.Label10.TabIndex = 1269
- Me.Label10.Text = "公司"
- '
- '電話2_tb
- '
- Me.電話2_tb.Location = New System.Drawing.Point(377, 76)
- Me.電話2_tb.Name = "電話2_tb"
- Me.電話2_tb.Size = New System.Drawing.Size(120, 23)
- Me.電話2_tb.TabIndex = 1268
- '
- '電話1_tb
- '
- Me.電話1_tb.Location = New System.Drawing.Point(188, 76)
- Me.電話1_tb.Name = "電話1_tb"
- Me.電話1_tb.Size = New System.Drawing.Size(121, 23)
- Me.電話1_tb.TabIndex = 1267
- '
- '住址_tb
- '
- Me.住址_tb.Location = New System.Drawing.Point(187, 126)
- Me.住址_tb.Name = "住址_tb"
- Me.住址_tb.Size = New System.Drawing.Size(310, 23)
- Me.住址_tb.TabIndex = 1266
- '
- '客戶_tb
- '
- Me.客戶_tb.Location = New System.Drawing.Point(187, 26)
- Me.客戶_tb.Name = "客戶_tb"
- Me.客戶_tb.Size = New System.Drawing.Size(122, 23)
- Me.客戶_tb.TabIndex = 1265
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label8.Location = New System.Drawing.Point(338, 79)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(39, 16)
- Me.Label8.TabIndex = 1264
- Me.Label8.Text = "電話2"
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.ForeColor = System.Drawing.Color.Red
- Me.Label7.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label7.Location = New System.Drawing.Point(150, 79)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(39, 16)
- Me.Label7.TabIndex = 1263
- Me.Label7.Text = "電話1"
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.ForeColor = System.Drawing.Color.Red
- Me.Label6.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label6.Location = New System.Drawing.Point(150, 129)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(32, 16)
- Me.Label6.TabIndex = 1262
- Me.Label6.Text = "住址"
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.ForeColor = System.Drawing.Color.Red
- Me.Label3.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label3.Location = New System.Drawing.Point(150, 31)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(32, 16)
- Me.Label3.TabIndex = 1261
- Me.Label3.Text = "客戶"
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.ForeColor = System.Drawing.Color.Red
- Me.Label2.Location = New System.Drawing.Point(150, 4)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(32, 16)
- Me.Label2.TabIndex = 1260
- Me.Label2.Text = "單號"
- '
- '單號_tb
- '
- Me.單號_tb.Enabled = False
- Me.單號_tb.Location = New System.Drawing.Point(187, 1)
- Me.單號_tb.Name = "單號_tb"
- Me.單號_tb.Size = New System.Drawing.Size(122, 23)
- Me.單號_tb.TabIndex = 1259
- '
- '銷售單據_dgv
- '
- DataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.銷售單據_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle37
- Me.銷售單據_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.銷售單據_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.銷售單據_dgv.Location = New System.Drawing.Point(2, 28)
- Me.銷售單據_dgv.Name = "銷售單據_dgv"
- Me.銷售單據_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle38.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.銷售單據_dgv.RowsDefaultCellStyle = DataGridViewCellStyle38
- Me.銷售單據_dgv.RowTemplate.Height = 24
- Me.銷售單據_dgv.Size = New System.Drawing.Size(146, 141)
- Me.銷售單據_dgv.TabIndex = 1256
- '
- '未審核_lb
- '
- Me.未審核_lb.AutoSize = True
- Me.未審核_lb.Location = New System.Drawing.Point(3, 7)
- Me.未審核_lb.Name = "未審核_lb"
- Me.未審核_lb.Size = New System.Drawing.Size(68, 16)
- Me.未審核_lb.TabIndex = 1257
- Me.未審核_lb.Text = "業務銷售單"
- '
- '單據核准_bt
- '
- Me.單據核准_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.單據核准_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.單據核准_bt.Location = New System.Drawing.Point(499, 90)
- Me.單據核准_bt.Name = "單據核准_bt"
- Me.單據核准_bt.Size = New System.Drawing.Size(110, 40)
- Me.單據核准_bt.TabIndex = 1329
- Me.單據核准_bt.Text = "單據核准"
- Me.單據核准_bt.UseVisualStyleBackColor = True
- '
- '單據作廢_bt
- '
- Me.單據作廢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.單據作廢_bt.ForeColor = System.Drawing.Color.Red
- Me.單據作廢_bt.Location = New System.Drawing.Point(610, 90)
- Me.單據作廢_bt.Name = "單據作廢_bt"
- Me.單據作廢_bt.Size = New System.Drawing.Size(110, 40)
- Me.單據作廢_bt.TabIndex = 1330
- Me.單據作廢_bt.Text = "單據作廢"
- Me.單據作廢_bt.UseVisualStyleBackColor = True
- '
- 'Panel1
- '
- Me.Panel1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel1.AutoScroll = True
- Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.Panel1.Controls.Add(Me.刪除衍生運費_bt)
- Me.Panel1.Controls.Add(Me.新增衍生運費_bt)
- Me.Panel1.Controls.Add(Me.項次4_tb)
- Me.Panel1.Controls.Add(Me.Label49)
- Me.Panel1.Controls.Add(Me.銷售衍生運費_dgv)
- Me.Panel1.Controls.Add(Me.通知_lb)
- Me.Panel1.Controls.Add(Me.刷卡總和_tb)
- Me.Panel1.Controls.Add(Me.刷卡稅金_tb)
- Me.Panel1.Controls.Add(Me.Label46)
- Me.Panel1.Controls.Add(Me.Label47)
- Me.Panel1.Controls.Add(Me.刷卡傭金_tb)
- Me.Panel1.Controls.Add(Me.Label48)
- Me.Panel1.Controls.Add(Me.刷卡收款_bt)
- Me.Panel1.Controls.Add(Me.其他成本_tb)
- Me.Panel1.Controls.Add(Me.Label45)
- Me.Panel1.Controls.Add(Me.Reset_bt)
- Me.Panel1.Controls.Add(Me.讀取標準成本_bt)
- Me.Panel1.Controls.Add(Me.物料成本_tb)
- Me.Panel1.Controls.Add(Me.Label43)
- Me.Panel1.Controls.Add(Me.預估利潤_tb)
- Me.Panel1.Controls.Add(Me.Label42)
- Me.Panel1.Controls.Add(Me.管銷費用_tb)
- Me.Panel1.Controls.Add(Me.Label41)
- Me.Panel1.Controls.Add(Me.司機運費_tb)
- Me.Panel1.Controls.Add(Me.Label38)
- Me.Panel1.Controls.Add(Me.送貨地點_cb)
- Me.Panel1.Controls.Add(Me.Label39)
- Me.Panel1.Controls.Add(Me.項次3_tb)
- Me.Panel1.Controls.Add(Me.刪除收款事項上點選的資料_bt)
- Me.Panel1.Controls.Add(Me.新增一筆收款事項_bt)
- Me.Panel1.Controls.Add(Me.項次2_tb)
- Me.Panel1.Controls.Add(Me.Label36)
- Me.Panel1.Controls.Add(Me.額外收支_tb)
- Me.Panel1.Controls.Add(Me.Label35)
- Me.Panel1.Controls.Add(Me.銷售合計_tb)
- Me.Panel1.Controls.Add(Me.Label34)
- Me.Panel1.Controls.Add(Me.稅金_tb)
- Me.Panel1.Controls.Add(Me.Label33)
- Me.Panel1.Controls.Add(Me.支出小計_tb)
- Me.Panel1.Controls.Add(Me.Label32)
- Me.Panel1.Controls.Add(Me.收入小計_tb)
- Me.Panel1.Controls.Add(Me.Label31)
- Me.Panel1.Controls.Add(Me.售價小計_tb)
- Me.Panel1.Controls.Add(Me.Label30)
- Me.Panel1.Controls.Add(Me.刪除備註_bt)
- Me.Panel1.Controls.Add(Me.銷售備註_bt)
- Me.Panel1.Controls.Add(Me.項次1_tb)
- Me.Panel1.Controls.Add(Me.Label26)
- Me.Panel1.Controls.Add(Me.項次_tb)
- Me.Panel1.Controls.Add(Me.Label25)
- Me.Panel1.Controls.Add(Me.調庫單號_tb)
- Me.Panel1.Controls.Add(Me.倉儲單號_lb)
- Me.Panel1.Controls.Add(Me.客戶流水_tb)
- Me.Panel1.Controls.Add(Me.客戶資料_dgv)
- Me.Panel1.Controls.Add(Me.倉庫級別_tb)
- Me.Panel1.Controls.Add(Me.倉庫編號_tb)
- Me.Panel1.Controls.Add(Me.儲態編號_cb)
- Me.Panel1.Controls.Add(Me.訂製編碼_cb)
- Me.Panel1.Controls.Add(Me.客戶編號_tb)
- Me.Panel1.Controls.Add(Me.流水號_tb)
- Me.Panel1.Controls.Add(Me.Label1)
- Me.Panel1.Controls.Add(Me.Label5)
- Me.Panel1.Controls.Add(Me.銷售明細_dgv)
- Me.Panel1.Controls.Add(Me.銷售備註_dgv)
- Me.Panel1.Controls.Add(Me.收款事項_dgv)
- Me.Panel1.Controls.Add(Me.Label28)
- Me.Panel1.Controls.Add(Me.刪除單據上點選的資料_bt)
- Me.Panel1.Controls.Add(Me.Label40)
- Me.Panel1.Controls.Add(Me.Label20)
- Me.Panel1.Location = New System.Drawing.Point(1, 175)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(902, 495)
- Me.Panel1.TabIndex = 1331
- '
- '刪除衍生運費_bt
- '
- Me.刪除衍生運費_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除衍生運費_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除衍生運費_bt.Location = New System.Drawing.Point(768, 440)
- Me.刪除衍生運費_bt.Name = "刪除衍生運費_bt"
- Me.刪除衍生運費_bt.Size = New System.Drawing.Size(89, 23)
- Me.刪除衍生運費_bt.TabIndex = 1348
- Me.刪除衍生運費_bt.Text = "刪除選中的資料"
- Me.刪除衍生運費_bt.UseVisualStyleBackColor = True
- '
- '新增衍生運費_bt
- '
- Me.新增衍生運費_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.新增衍生運費_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.新增衍生運費_bt.Location = New System.Drawing.Point(673, 440)
- Me.新增衍生運費_bt.Name = "新增衍生運費_bt"
- Me.新增衍生運費_bt.Size = New System.Drawing.Size(94, 23)
- Me.新增衍生運費_bt.TabIndex = 1347
- Me.新增衍生運費_bt.Text = "新增衍生運費"
- Me.新增衍生運費_bt.UseVisualStyleBackColor = True
- '
- '項次4_tb
- '
- Me.項次4_tb.Enabled = False
- Me.項次4_tb.Location = New System.Drawing.Point(635, 440)
- Me.項次4_tb.Name = "項次4_tb"
- Me.項次4_tb.Size = New System.Drawing.Size(35, 23)
- Me.項次4_tb.TabIndex = 1345
- '
- 'Label49
- '
- Me.Label49.AutoSize = True
- Me.Label49.Location = New System.Drawing.Point(604, 443)
- Me.Label49.Name = "Label49"
- Me.Label49.Size = New System.Drawing.Size(32, 16)
- Me.Label49.TabIndex = 1346
- Me.Label49.Text = "項次"
- '
- '銷售衍生運費_dgv
- '
- DataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.銷售衍生運費_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle39
- Me.銷售衍生運費_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.銷售衍生運費_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.銷售衍生運費_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.銷售衍生運費_dgv.Location = New System.Drawing.Point(610, 465)
- Me.銷售衍生運費_dgv.Name = "銷售衍生運費_dgv"
- Me.銷售衍生運費_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle40.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle40.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.銷售衍生運費_dgv.RowsDefaultCellStyle = DataGridViewCellStyle40
- Me.銷售衍生運費_dgv.RowTemplate.Height = 24
- Me.銷售衍生運費_dgv.Size = New System.Drawing.Size(95, 190)
- Me.銷售衍生運費_dgv.TabIndex = 1344
- '
- '通知_lb
- '
- Me.通知_lb.AutoSize = True
- Me.通知_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.通知_lb.ForeColor = System.Drawing.Color.Red
- Me.通知_lb.Location = New System.Drawing.Point(368, 7)
- Me.通知_lb.Name = "通知_lb"
- Me.通知_lb.Size = New System.Drawing.Size(127, 15)
- Me.通知_lb.TabIndex = 1343
- Me.通知_lb.Text = "........................................"
- '
- '刷卡總和_tb
- '
- Me.刷卡總和_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.刷卡總和_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.刷卡總和_tb.Location = New System.Drawing.Point(624, 673)
- Me.刷卡總和_tb.Name = "刷卡總和_tb"
- Me.刷卡總和_tb.Size = New System.Drawing.Size(81, 23)
- Me.刷卡總和_tb.TabIndex = 1340
- Me.刷卡總和_tb.Text = "0"
- Me.刷卡總和_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '刷卡稅金_tb
- '
- Me.刷卡稅金_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.刷卡稅金_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.刷卡稅金_tb.Location = New System.Drawing.Point(624, 713)
- Me.刷卡稅金_tb.Name = "刷卡稅金_tb"
- Me.刷卡稅金_tb.Size = New System.Drawing.Size(81, 23)
- Me.刷卡稅金_tb.TabIndex = 1342
- Me.刷卡稅金_tb.Text = "0"
- Me.刷卡稅金_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label46
- '
- Me.Label46.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label46.AutoSize = True
- Me.Label46.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label46.Location = New System.Drawing.Point(623, 697)
- Me.Label46.Name = "Label46"
- Me.Label46.Size = New System.Drawing.Size(83, 16)
- Me.Label46.TabIndex = 1341
- Me.Label46.Text = "刷 卡 稅 金"
- '
- 'Label47
- '
- Me.Label47.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label47.AutoSize = True
- Me.Label47.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label47.Location = New System.Drawing.Point(623, 658)
- Me.Label47.Name = "Label47"
- Me.Label47.Size = New System.Drawing.Size(83, 16)
- Me.Label47.TabIndex = 1339
- Me.Label47.Text = "刷 卡 總 和"
- '
- '刷卡傭金_tb
- '
- Me.刷卡傭金_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.刷卡傭金_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.刷卡傭金_tb.Location = New System.Drawing.Point(625, 752)
- Me.刷卡傭金_tb.Name = "刷卡傭金_tb"
- Me.刷卡傭金_tb.Size = New System.Drawing.Size(81, 23)
- Me.刷卡傭金_tb.TabIndex = 1338
- Me.刷卡傭金_tb.Text = "0"
- Me.刷卡傭金_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label48
- '
- Me.Label48.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label48.AutoSize = True
- Me.Label48.ForeColor = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label48.Location = New System.Drawing.Point(623, 737)
- Me.Label48.Name = "Label48"
- Me.Label48.Size = New System.Drawing.Size(83, 16)
- Me.Label48.TabIndex = 1337
- Me.Label48.Text = "刷 卡 傭 金"
- '
- '刷卡收款_bt
- '
- Me.刷卡收款_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刷卡收款_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.刷卡收款_bt.Location = New System.Drawing.Point(433, 658)
- Me.刷卡收款_bt.Name = "刷卡收款_bt"
- Me.刷卡收款_bt.Size = New System.Drawing.Size(92, 23)
- Me.刷卡收款_bt.TabIndex = 1336
- Me.刷卡收款_bt.Text = "新增刷卡收款"
- Me.刷卡收款_bt.UseVisualStyleBackColor = True
- '
- '其他成本_tb
- '
- Me.其他成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.其他成本_tb.ForeColor = System.Drawing.Color.Green
- Me.其他成本_tb.Location = New System.Drawing.Point(794, 704)
- Me.其他成本_tb.Name = "其他成本_tb"
- Me.其他成本_tb.Size = New System.Drawing.Size(81, 23)
- Me.其他成本_tb.TabIndex = 1335
- Me.其他成本_tb.Text = "0"
- Me.其他成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label45
- '
- Me.Label45.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label45.AutoSize = True
- Me.Label45.ForeColor = System.Drawing.Color.Green
- Me.Label45.Location = New System.Drawing.Point(711, 707)
- Me.Label45.Name = "Label45"
- Me.Label45.Size = New System.Drawing.Size(83, 16)
- Me.Label45.TabIndex = 1334
- Me.Label45.Text = "其 他 成 本"
- '
- 'Reset_bt
- '
- Me.Reset_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Reset_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Reset_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Reset_bt.Location = New System.Drawing.Point(846, 546)
- Me.Reset_bt.Name = "Reset_bt"
- Me.Reset_bt.Size = New System.Drawing.Size(30, 24)
- Me.Reset_bt.TabIndex = 1333
- Me.Reset_bt.Text = "R"
- Me.Reset_bt.UseVisualStyleBackColor = True
- '
- '讀取標準成本_bt
- '
- Me.讀取標準成本_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.讀取標準成本_bt.ForeColor = System.Drawing.Color.Green
- Me.讀取標準成本_bt.Location = New System.Drawing.Point(106, 3)
- Me.讀取標準成本_bt.Name = "讀取標準成本_bt"
- Me.讀取標準成本_bt.Size = New System.Drawing.Size(95, 23)
- Me.讀取標準成本_bt.TabIndex = 1332
- Me.讀取標準成本_bt.Text = "讀取標準成本"
- Me.讀取標準成本_bt.UseVisualStyleBackColor = True
- '
- '物料成本_tb
- '
- Me.物料成本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.物料成本_tb.ForeColor = System.Drawing.Color.Green
- Me.物料成本_tb.Location = New System.Drawing.Point(794, 680)
- Me.物料成本_tb.Name = "物料成本_tb"
- Me.物料成本_tb.Size = New System.Drawing.Size(81, 23)
- Me.物料成本_tb.TabIndex = 1311
- Me.物料成本_tb.Text = "0"
- Me.物料成本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label43
- '
- Me.Label43.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label43.AutoSize = True
- Me.Label43.ForeColor = System.Drawing.Color.Green
- Me.Label43.Location = New System.Drawing.Point(711, 683)
- Me.Label43.Name = "Label43"
- Me.Label43.Size = New System.Drawing.Size(83, 16)
- Me.Label43.TabIndex = 1310
- Me.Label43.Text = "物 料 成 本"
- '
- '預估利潤_tb
- '
- Me.預估利潤_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.預估利潤_tb.ForeColor = System.Drawing.Color.Green
- Me.預估利潤_tb.Location = New System.Drawing.Point(794, 752)
- Me.預估利潤_tb.Name = "預估利潤_tb"
- Me.預估利潤_tb.Size = New System.Drawing.Size(81, 23)
- Me.預估利潤_tb.TabIndex = 1309
- Me.預估利潤_tb.Text = "0"
- Me.預估利潤_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label42
- '
- Me.Label42.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label42.AutoSize = True
- Me.Label42.ForeColor = System.Drawing.Color.Green
- Me.Label42.Location = New System.Drawing.Point(712, 755)
- Me.Label42.Name = "Label42"
- Me.Label42.Size = New System.Drawing.Size(83, 16)
- Me.Label42.TabIndex = 1308
- Me.Label42.Text = "預 估 利 潤"
- '
- '管銷費用_tb
- '
- Me.管銷費用_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.管銷費用_tb.ForeColor = System.Drawing.Color.Green
- Me.管銷費用_tb.Location = New System.Drawing.Point(794, 728)
- Me.管銷費用_tb.Name = "管銷費用_tb"
- Me.管銷費用_tb.Size = New System.Drawing.Size(81, 23)
- Me.管銷費用_tb.TabIndex = 1307
- Me.管銷費用_tb.Text = "0"
- Me.管銷費用_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label41
- '
- Me.Label41.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label41.AutoSize = True
- Me.Label41.ForeColor = System.Drawing.Color.Green
- Me.Label41.Location = New System.Drawing.Point(712, 731)
- Me.Label41.Name = "Label41"
- Me.Label41.Size = New System.Drawing.Size(83, 16)
- Me.Label41.TabIndex = 1306
- Me.Label41.Text = "管 銷 費 用"
- '
- '司機運費_tb
- '
- Me.司機運費_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.司機運費_tb.ForeColor = System.Drawing.Color.Black
- Me.司機運費_tb.Location = New System.Drawing.Point(795, 572)
- Me.司機運費_tb.Name = "司機運費_tb"
- Me.司機運費_tb.Size = New System.Drawing.Size(81, 23)
- Me.司機運費_tb.TabIndex = 1301
- Me.司機運費_tb.Text = "0"
- Me.司機運費_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label38
- '
- Me.Label38.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label38.AutoSize = True
- Me.Label38.ForeColor = System.Drawing.Color.Black
- Me.Label38.Location = New System.Drawing.Point(710, 576)
- Me.Label38.Name = "Label38"
- Me.Label38.Size = New System.Drawing.Size(83, 16)
- Me.Label38.TabIndex = 1300
- Me.Label38.Text = "司 機 運 費"
- '
- '送貨地點_cb
- '
- Me.送貨地點_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.送貨地點_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.送貨地點_cb.FormattingEnabled = True
- Me.送貨地點_cb.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "Y"})
- Me.送貨地點_cb.Location = New System.Drawing.Point(766, 546)
- Me.送貨地點_cb.Name = "送貨地點_cb"
- Me.送貨地點_cb.Size = New System.Drawing.Size(78, 24)
- Me.送貨地點_cb.TabIndex = 1298
- '
- 'Label39
- '
- Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label39.AutoSize = True
- Me.Label39.Location = New System.Drawing.Point(707, 550)
- Me.Label39.Name = "Label39"
- Me.Label39.Size = New System.Drawing.Size(56, 16)
- Me.Label39.TabIndex = 1299
- Me.Label39.Text = "送貨地點"
- '
- '項次3_tb
- '
- Me.項次3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.項次3_tb.Enabled = False
- Me.項次3_tb.Location = New System.Drawing.Point(373, 331)
- Me.項次3_tb.Name = "項次3_tb"
- Me.項次3_tb.Size = New System.Drawing.Size(32, 23)
- Me.項次3_tb.TabIndex = 1290
- Me.項次3_tb.Visible = False
- '
- '刪除收款事項上點選的資料_bt
- '
- Me.刪除收款事項上點選的資料_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除收款事項上點選的資料_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除收款事項上點選的資料_bt.Location = New System.Drawing.Point(269, 658)
- Me.刪除收款事項上點選的資料_bt.Name = "刪除收款事項上點選的資料_bt"
- Me.刪除收款事項上點選的資料_bt.Size = New System.Drawing.Size(163, 23)
- Me.刪除收款事項上點選的資料_bt.TabIndex = 1287
- Me.刪除收款事項上點選的資料_bt.Text = "刪除收款事項上點選的資料"
- Me.刪除收款事項上點選的資料_bt.UseVisualStyleBackColor = True
- '
- '新增一筆收款事項_bt
- '
- Me.新增一筆收款事項_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.新增一筆收款事項_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.新增一筆收款事項_bt.Location = New System.Drawing.Point(105, 658)
- Me.新增一筆收款事項_bt.Name = "新增一筆收款事項_bt"
- Me.新增一筆收款事項_bt.Size = New System.Drawing.Size(163, 23)
- Me.新增一筆收款事項_bt.TabIndex = 1286
- Me.新增一筆收款事項_bt.Text = "新增一筆收款事項"
- Me.新增一筆收款事項_bt.UseVisualStyleBackColor = True
- '
- '項次2_tb
- '
- Me.項次2_tb.Enabled = False
- Me.項次2_tb.Location = New System.Drawing.Point(36, 658)
- Me.項次2_tb.Name = "項次2_tb"
- Me.項次2_tb.Size = New System.Drawing.Size(68, 23)
- Me.項次2_tb.TabIndex = 1284
- '
- 'Label36
- '
- Me.Label36.AutoSize = True
- Me.Label36.Location = New System.Drawing.Point(2, 661)
- Me.Label36.Name = "Label36"
- Me.Label36.Size = New System.Drawing.Size(32, 16)
- Me.Label36.TabIndex = 1285
- Me.Label36.Text = "項次"
- '
- '額外收支_tb
- '
- Me.額外收支_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.額外收支_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.額外收支_tb.Location = New System.Drawing.Point(795, 650)
- Me.額外收支_tb.Name = "額外收支_tb"
- Me.額外收支_tb.Size = New System.Drawing.Size(81, 23)
- Me.額外收支_tb.TabIndex = 1281
- Me.額外收支_tb.Text = "0"
- Me.額外收支_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label35
- '
- Me.Label35.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label35.AutoSize = True
- Me.Label35.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label35.Location = New System.Drawing.Point(709, 653)
- Me.Label35.Name = "Label35"
- Me.Label35.Size = New System.Drawing.Size(86, 16)
- Me.Label35.TabIndex = 1280
- Me.Label35.Text = "額 外 收 支"
- '
- '銷售合計_tb
- '
- Me.銷售合計_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.銷售合計_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.銷售合計_tb.Location = New System.Drawing.Point(794, 517)
- Me.銷售合計_tb.Name = "銷售合計_tb"
- Me.銷售合計_tb.Size = New System.Drawing.Size(81, 23)
- Me.銷售合計_tb.TabIndex = 1279
- Me.銷售合計_tb.Text = "0"
- Me.銷售合計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label34
- '
- Me.Label34.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label34.AutoSize = True
- Me.Label34.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label34.Location = New System.Drawing.Point(709, 520)
- Me.Label34.Name = "Label34"
- Me.Label34.Size = New System.Drawing.Size(86, 16)
- Me.Label34.TabIndex = 1278
- Me.Label34.Text = "銷 售 合 計"
- '
- '稅金_tb
- '
- Me.稅金_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.稅金_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.稅金_tb.Location = New System.Drawing.Point(794, 493)
- Me.稅金_tb.Name = "稅金_tb"
- Me.稅金_tb.Size = New System.Drawing.Size(81, 23)
- Me.稅金_tb.TabIndex = 1277
- Me.稅金_tb.Text = "0"
- Me.稅金_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label33
- '
- Me.Label33.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label33.AutoSize = True
- Me.Label33.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label33.Location = New System.Drawing.Point(709, 496)
- Me.Label33.Name = "Label33"
- Me.Label33.Size = New System.Drawing.Size(85, 16)
- Me.Label33.TabIndex = 1276
- Me.Label33.Text = "明細-稅 金"
- '
- '支出小計_tb
- '
- Me.支出小計_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.支出小計_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出小計_tb.Location = New System.Drawing.Point(795, 626)
- Me.支出小計_tb.Name = "支出小計_tb"
- Me.支出小計_tb.Size = New System.Drawing.Size(81, 23)
- Me.支出小計_tb.TabIndex = 1275
- Me.支出小計_tb.Text = "0"
- Me.支出小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label32
- '
- Me.Label32.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label32.AutoSize = True
- Me.Label32.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label32.Location = New System.Drawing.Point(710, 629)
- Me.Label32.Name = "Label32"
- Me.Label32.Size = New System.Drawing.Size(85, 16)
- Me.Label32.TabIndex = 1274
- Me.Label32.Text = "備註-支出小計"
- '
- '收入小計_tb
- '
- Me.收入小計_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.收入小計_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.收入小計_tb.Location = New System.Drawing.Point(795, 602)
- Me.收入小計_tb.Name = "收入小計_tb"
- Me.收入小計_tb.Size = New System.Drawing.Size(81, 23)
- Me.收入小計_tb.TabIndex = 1273
- Me.收入小計_tb.Text = "0"
- Me.收入小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label31
- '
- Me.Label31.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label31.AutoSize = True
- Me.Label31.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label31.Location = New System.Drawing.Point(708, 605)
- Me.Label31.Name = "Label31"
- Me.Label31.Size = New System.Drawing.Size(85, 16)
- Me.Label31.TabIndex = 1272
- Me.Label31.Text = "備註-收入小計"
- '
- '售價小計_tb
- '
- Me.售價小計_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.售價小計_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.售價小計_tb.Location = New System.Drawing.Point(794, 469)
- Me.售價小計_tb.Name = "售價小計_tb"
- Me.售價小計_tb.Size = New System.Drawing.Size(81, 23)
- Me.售價小計_tb.TabIndex = 1271
- Me.售價小計_tb.Text = "0"
- Me.售價小計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'Label30
- '
- Me.Label30.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label30.AutoSize = True
- Me.Label30.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label30.Location = New System.Drawing.Point(709, 473)
- Me.Label30.Name = "Label30"
- Me.Label30.Size = New System.Drawing.Size(85, 16)
- Me.Label30.TabIndex = 1270
- Me.Label30.Text = "明細-售價小計"
- '
- '刪除備註_bt
- '
- Me.刪除備註_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.刪除備註_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除備註_bt.Location = New System.Drawing.Point(268, 440)
- Me.刪除備註_bt.Name = "刪除備註_bt"
- Me.刪除備註_bt.Size = New System.Drawing.Size(163, 23)
- Me.刪除備註_bt.TabIndex = 1256
- Me.刪除備註_bt.Text = "刪除銷售備註上點選的資料"
- Me.刪除備註_bt.UseVisualStyleBackColor = True
- '
- '銷售備註_bt
- '
- Me.銷售備註_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.銷售備註_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.銷售備註_bt.Location = New System.Drawing.Point(105, 440)
- Me.銷售備註_bt.Name = "銷售備註_bt"
- Me.銷售備註_bt.Size = New System.Drawing.Size(163, 23)
- Me.銷售備註_bt.TabIndex = 1261
- Me.銷售備註_bt.Text = "新增一筆備註"
- Me.銷售備註_bt.UseVisualStyleBackColor = True
- '
- '項次1_tb
- '
- Me.項次1_tb.Enabled = False
- Me.項次1_tb.Location = New System.Drawing.Point(36, 440)
- Me.項次1_tb.Name = "項次1_tb"
- Me.項次1_tb.Size = New System.Drawing.Size(68, 23)
- Me.項次1_tb.TabIndex = 1264
- '
- 'Label26
- '
- Me.Label26.AutoSize = True
- Me.Label26.Location = New System.Drawing.Point(2, 443)
- Me.Label26.Name = "Label26"
- Me.Label26.Size = New System.Drawing.Size(32, 16)
- Me.Label26.TabIndex = 1265
- Me.Label26.Text = "項次"
- '
- '項次_tb
- '
- Me.項次_tb.Enabled = False
- Me.項次_tb.Location = New System.Drawing.Point(37, 3)
- Me.項次_tb.Name = "項次_tb"
- Me.項次_tb.Size = New System.Drawing.Size(68, 23)
- Me.項次_tb.TabIndex = 1262
- '
- 'Label25
- '
- Me.Label25.AutoSize = True
- Me.Label25.Location = New System.Drawing.Point(3, 6)
- Me.Label25.Name = "Label25"
- Me.Label25.Size = New System.Drawing.Size(32, 16)
- Me.Label25.TabIndex = 1263
- Me.Label25.Text = "項次"
- '
- '調庫單號_tb
- '
- Me.調庫單號_tb.Enabled = False
- Me.調庫單號_tb.Location = New System.Drawing.Point(567, 356)
- Me.調庫單號_tb.Name = "調庫單號_tb"
- Me.調庫單號_tb.Size = New System.Drawing.Size(126, 23)
- Me.調庫單號_tb.TabIndex = 1255
- Me.調庫單號_tb.Visible = False
- '
- '倉儲單號_lb
- '
- Me.倉儲單號_lb.AutoSize = True
- Me.倉儲單號_lb.Location = New System.Drawing.Point(564, 335)
- Me.倉儲單號_lb.Name = "倉儲單號_lb"
- Me.倉儲單號_lb.Size = New System.Drawing.Size(56, 16)
- Me.倉儲單號_lb.TabIndex = 1256
- Me.倉儲單號_lb.Text = "倉儲單號"
- Me.倉儲單號_lb.Visible = False
- '
- '客戶流水_tb
- '
- Me.客戶流水_tb.Location = New System.Drawing.Point(202, 356)
- Me.客戶流水_tb.Name = "客戶流水_tb"
- Me.客戶流水_tb.Size = New System.Drawing.Size(100, 23)
- Me.客戶流水_tb.TabIndex = 1254
- Me.客戶流水_tb.Visible = False
- '
- '客戶資料_dgv
- '
- DataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.客戶資料_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle41
- Me.客戶資料_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.客戶資料_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.客戶資料_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.客戶資料_dgv.Location = New System.Drawing.Point(17, 9689)
- Me.客戶資料_dgv.Name = "客戶資料_dgv"
- Me.客戶資料_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle42.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.客戶資料_dgv.RowsDefaultCellStyle = DataGridViewCellStyle42
- Me.客戶資料_dgv.RowTemplate.Height = 24
- Me.客戶資料_dgv.Size = New System.Drawing.Size(191, 92)
- Me.客戶資料_dgv.TabIndex = 1254
- Me.客戶資料_dgv.Visible = False
- '
- '倉庫級別_tb
- '
- Me.倉庫級別_tb.Location = New System.Drawing.Point(441, 332)
- Me.倉庫級別_tb.Name = "倉庫級別_tb"
- Me.倉庫級別_tb.Size = New System.Drawing.Size(120, 23)
- Me.倉庫級別_tb.TabIndex = 1246
- Me.倉庫級別_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- Me.倉庫級別_tb.Visible = False
- '
- '倉庫編號_tb
- '
- Me.倉庫編號_tb.Location = New System.Drawing.Point(441, 357)
- Me.倉庫編號_tb.Name = "倉庫編號_tb"
- Me.倉庫編號_tb.Size = New System.Drawing.Size(120, 23)
- Me.倉庫編號_tb.TabIndex = 1247
- Me.倉庫編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- Me.倉庫編號_tb.Visible = False
- '
- '儲態編號_cb
- '
- Me.儲態編號_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.儲態編號_cb.Enabled = False
- Me.儲態編號_cb.FormattingEnabled = True
- Me.儲態編號_cb.Items.AddRange(New Object() {"2019"})
- Me.儲態編號_cb.Location = New System.Drawing.Point(305, 330)
- Me.儲態編號_cb.Name = "儲態編號_cb"
- Me.儲態編號_cb.Size = New System.Drawing.Size(130, 24)
- Me.儲態編號_cb.TabIndex = 1249
- Me.儲態編號_cb.Visible = False
- '
- '訂製編碼_cb
- '
- Me.訂製編碼_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.訂製編碼_cb.Enabled = False
- Me.訂製編碼_cb.FormattingEnabled = True
- Me.訂製編碼_cb.Items.AddRange(New Object() {"2019"})
- Me.訂製編碼_cb.Location = New System.Drawing.Point(305, 356)
- Me.訂製編碼_cb.Name = "訂製編碼_cb"
- Me.訂製編碼_cb.Size = New System.Drawing.Size(130, 24)
- Me.訂製編碼_cb.TabIndex = 1248
- Me.訂製編碼_cb.Visible = False
- '
- '客戶編號_tb
- '
- Me.客戶編號_tb.Enabled = False
- Me.客戶編號_tb.Location = New System.Drawing.Point(97, 356)
- Me.客戶編號_tb.Name = "客戶編號_tb"
- Me.客戶編號_tb.Size = New System.Drawing.Size(99, 23)
- Me.客戶編號_tb.TabIndex = 1183
- Me.客戶編號_tb.Visible = False
- '
- '流水號_tb
- '
- Me.流水號_tb.Enabled = False
- Me.流水號_tb.Location = New System.Drawing.Point(97, 331)
- Me.流水號_tb.Name = "流水號_tb"
- Me.流水號_tb.Size = New System.Drawing.Size(100, 23)
- Me.流水號_tb.TabIndex = 1172
- Me.流水號_tb.Visible = False
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(39, 334)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(44, 16)
- Me.Label1.TabIndex = 1173
- Me.Label1.Text = "流水號"
- Me.Label1.Visible = False
- '
- 'Label5
- '
- Me.Label5.AutoSize = True
- Me.Label5.ForeColor = System.Drawing.Color.Red
- Me.Label5.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.Label5.Location = New System.Drawing.Point(35, 359)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(56, 16)
- Me.Label5.TabIndex = 1178
- Me.Label5.Text = "編號客戶"
- Me.Label5.Visible = False
- '
- '銷售明細_dgv
- '
- DataGridViewCellStyle43.BackColor = System.Drawing.Color.White
- Me.銷售明細_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle43
- Me.銷售明細_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.銷售明細_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.銷售明細_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.銷售明細_dgv.Location = New System.Drawing.Point(3, 29)
- Me.銷售明細_dgv.Name = "銷售明細_dgv"
- Me.銷售明細_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle44.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.銷售明細_dgv.RowsDefaultCellStyle = DataGridViewCellStyle44
- Me.銷售明細_dgv.RowTemplate.Height = 24
- Me.銷售明細_dgv.Size = New System.Drawing.Size(892, 409)
- Me.銷售明細_dgv.TabIndex = 1199
- '
- '銷售備註_dgv
- '
- DataGridViewCellStyle45.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.銷售備註_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle45
- Me.銷售備註_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.銷售備註_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.銷售備註_dgv.Location = New System.Drawing.Point(3, 465)
- Me.銷售備註_dgv.Name = "銷售備註_dgv"
- Me.銷售備註_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle46.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle46.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.銷售備註_dgv.RowsDefaultCellStyle = DataGridViewCellStyle46
- Me.銷售備註_dgv.RowTemplate.Height = 24
- Me.銷售備註_dgv.Size = New System.Drawing.Size(603, 190)
- Me.銷售備註_dgv.TabIndex = 1250
- '
- '收款事項_dgv
- '
- DataGridViewCellStyle47.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.收款事項_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle47
- Me.收款事項_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.收款事項_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.收款事項_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.收款事項_dgv.Location = New System.Drawing.Point(3, 682)
- Me.收款事項_dgv.Name = "收款事項_dgv"
- Me.收款事項_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle48.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle48.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.收款事項_dgv.RowsDefaultCellStyle = DataGridViewCellStyle48
- Me.收款事項_dgv.RowTemplate.Height = 24
- Me.收款事項_dgv.Size = New System.Drawing.Size(616, 93)
- Me.收款事項_dgv.TabIndex = 1282
- '
- 'Label28
- '
- Me.Label28.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label28.AutoSize = True
- Me.Label28.Location = New System.Drawing.Point(708, 535)
- Me.Label28.Name = "Label28"
- Me.Label28.Size = New System.Drawing.Size(168, 16)
- Me.Label28.TabIndex = 1283
- Me.Label28.Text = "--------------------------------"
- '
- 'Label40
- '
- Me.Label40.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label40.AutoSize = True
- Me.Label40.Location = New System.Drawing.Point(710, 668)
- Me.Label40.Name = "Label40"
- Me.Label40.Size = New System.Drawing.Size(168, 16)
- Me.Label40.TabIndex = 1305
- Me.Label40.Text = "--------------------------------"
- '
- 'Label20
- '
- Me.Label20.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Label20.AutoSize = True
- Me.Label20.Location = New System.Drawing.Point(708, 590)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(168, 16)
- Me.Label20.TabIndex = 1297
- Me.Label20.Text = "--------------------------------"
- '
- '銷售收款流水號_tb
- '
- Me.銷售收款流水號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.銷售收款流水號_tb.Enabled = False
- Me.銷售收款流水號_tb.Location = New System.Drawing.Point(43, 472)
- Me.銷售收款流水號_tb.Name = "銷售收款流水號_tb"
- Me.銷售收款流水號_tb.Size = New System.Drawing.Size(165, 23)
- Me.銷售收款流水號_tb.TabIndex = 1288
- Me.銷售收款流水號_tb.Visible = False
- '
- 'Label37
- '
- Me.Label37.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label37.AutoSize = True
- Me.Label37.Location = New System.Drawing.Point(46, 456)
- Me.Label37.Name = "Label37"
- Me.Label37.Size = New System.Drawing.Size(92, 16)
- Me.Label37.TabIndex = 1289
- Me.Label37.Text = "銷售收款流水號"
- Me.Label37.Visible = False
- '
- '銷售備註流水號_tb
- '
- Me.銷售備註流水號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.銷售備註流水號_tb.Enabled = False
- Me.銷售備註流水號_tb.Location = New System.Drawing.Point(43, 433)
- Me.銷售備註流水號_tb.Name = "銷售備註流水號_tb"
- Me.銷售備註流水號_tb.Size = New System.Drawing.Size(165, 23)
- Me.銷售備註流水號_tb.TabIndex = 1266
- Me.銷售備註流水號_tb.Visible = False
- '
- '倉儲資料流水號_tb
- '
- Me.倉儲資料流水號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.倉儲資料流水號_tb.Enabled = False
- Me.倉儲資料流水號_tb.Location = New System.Drawing.Point(43, 394)
- Me.倉儲資料流水號_tb.Name = "倉儲資料流水號_tb"
- Me.倉儲資料流水號_tb.Size = New System.Drawing.Size(165, 23)
- Me.倉儲資料流水號_tb.TabIndex = 1259
- Me.倉儲資料流水號_tb.Visible = False
- '
- 'Label24
- '
- Me.Label24.AutoSize = True
- Me.Label24.Location = New System.Drawing.Point(46, 378)
- Me.Label24.Name = "Label24"
- Me.Label24.Size = New System.Drawing.Size(92, 16)
- Me.Label24.TabIndex = 1260
- Me.Label24.Text = "倉儲資料流水號"
- Me.Label24.Visible = False
- '
- '銷售資料流水號_tb
- '
- Me.銷售資料流水號_tb.Enabled = False
- Me.銷售資料流水號_tb.Location = New System.Drawing.Point(43, 355)
- Me.銷售資料流水號_tb.Name = "銷售資料流水號_tb"
- Me.銷售資料流水號_tb.Size = New System.Drawing.Size(165, 23)
- Me.銷售資料流水號_tb.TabIndex = 1257
- Me.銷售資料流水號_tb.Visible = False
- '
- 'Label27
- '
- Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label27.AutoSize = True
- Me.Label27.Location = New System.Drawing.Point(46, 418)
- Me.Label27.Name = "Label27"
- Me.Label27.Size = New System.Drawing.Size(92, 16)
- Me.Label27.TabIndex = 1267
- Me.Label27.Text = "銷售備註流水號"
- Me.Label27.Visible = False
- '
- 'Label23
- '
- Me.Label23.AutoSize = True
- Me.Label23.Location = New System.Drawing.Point(46, 340)
- Me.Label23.Name = "Label23"
- Me.Label23.Size = New System.Drawing.Size(92, 16)
- Me.Label23.TabIndex = 1258
- Me.Label23.Text = "銷售資料流水號"
- Me.Label23.Visible = False
- '
- '物料圖_pb
- '
- Me.物料圖_pb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.物料圖_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.物料圖_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.物料圖_pb.Location = New System.Drawing.Point(2, 317)
- Me.物料圖_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.物料圖_pb.Name = "物料圖_pb"
- Me.物料圖_pb.Size = New System.Drawing.Size(338, 354)
- Me.物料圖_pb.TabIndex = 1300
- Me.物料圖_pb.TabStop = False
- '
- '物料圖1_pb
- '
- Me.物料圖1_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.物料圖1_pb.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.物料圖1_pb.Location = New System.Drawing.Point(722, 3)
- Me.物料圖1_pb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.物料圖1_pb.Name = "物料圖1_pb"
- Me.物料圖1_pb.Size = New System.Drawing.Size(183, 167)
- Me.物料圖1_pb.TabIndex = 1279
- Me.物料圖1_pb.TabStop = False
- '
- '最低售價_cb
- '
- Me.最低售價_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.最低售價_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.最低售價_cb.FormattingEnabled = True
- Me.最低售價_cb.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "Y"})
- Me.最低售價_cb.Location = New System.Drawing.Point(98, 527)
- Me.最低售價_cb.Name = "最低售價_cb"
- Me.最低售價_cb.Size = New System.Drawing.Size(110, 24)
- Me.最低售價_cb.TabIndex = 1303
- Me.最低售價_cb.Visible = False
- '
- '最低運費_cb
- '
- Me.最低運費_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.最低運費_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.最低運費_cb.FormattingEnabled = True
- Me.最低運費_cb.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "Y"})
- Me.最低運費_cb.Location = New System.Drawing.Point(98, 501)
- Me.最低運費_cb.Name = "最低運費_cb"
- Me.最低運費_cb.Size = New System.Drawing.Size(110, 24)
- Me.最低運費_cb.TabIndex = 1302
- Me.最低運費_cb.Visible = False
- '
- '大間距_ch
- '
- Me.大間距_ch.AutoSize = True
- Me.大間距_ch.Location = New System.Drawing.Point(435, 151)
- Me.大間距_ch.Name = "大間距_ch"
- Me.大間距_ch.Size = New System.Drawing.Size(63, 20)
- Me.大間距_ch.TabIndex = 1334
- Me.大間距_ch.Text = "大間距"
- Me.大間距_ch.UseVisualStyleBackColor = True
- '
- '中間距_ch
- '
- Me.中間距_ch.AutoSize = True
- Me.中間距_ch.Location = New System.Drawing.Point(366, 151)
- Me.中間距_ch.Name = "中間距_ch"
- Me.中間距_ch.Size = New System.Drawing.Size(63, 20)
- Me.中間距_ch.TabIndex = 1333
- Me.中間距_ch.Text = "中間距"
- Me.中間距_ch.UseVisualStyleBackColor = True
- '
- '小間距_ch
- '
- Me.小間距_ch.AutoSize = True
- Me.小間距_ch.Location = New System.Drawing.Point(297, 151)
- Me.小間距_ch.Name = "小間距_ch"
- Me.小間距_ch.Size = New System.Drawing.Size(63, 20)
- Me.小間距_ch.TabIndex = 1332
- Me.小間距_ch.Text = "小間距"
- Me.小間距_ch.UseVisualStyleBackColor = True
- '
- '已審核資料_ch
- '
- Me.已審核資料_ch.AutoSize = True
- Me.已審核資料_ch.Location = New System.Drawing.Point(154, 151)
- Me.已審核資料_ch.Name = "已審核資料_ch"
- Me.已審核資料_ch.Size = New System.Drawing.Size(111, 20)
- Me.已審核資料_ch.TabIndex = 1335
- Me.已審核資料_ch.Text = "已審核資料顯示"
- Me.已審核資料_ch.TextAlign = System.Drawing.ContentAlignment.BottomRight
- Me.已審核資料_ch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText
- Me.已審核資料_ch.UseVisualStyleBackColor = True
- '
- '隱藏_bt
- '
- Me.隱藏_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.隱藏_bt.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.隱藏_bt.Location = New System.Drawing.Point(466, 1)
- Me.隱藏_bt.Name = "隱藏_bt"
- Me.隱藏_bt.Size = New System.Drawing.Size(70, 51)
- Me.隱藏_bt.TabIndex = 1336
- Me.隱藏_bt.Text = "隱藏" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "控件"
- Me.隱藏_bt.UseVisualStyleBackColor = True
- '
- 'Panel2
- '
- Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.Panel2.Controls.Add(Me.物料成本無管銷_tb)
- Me.Panel2.Controls.Add(Me.Label50)
- Me.Panel2.Controls.Add(Me.運費資料流水號_tb)
- Me.Panel2.Controls.Add(Me.Label21)
- Me.Panel2.Controls.Add(Me.隱藏_bt)
- Me.Panel2.Controls.Add(Me.Label14)
- Me.Panel2.Controls.Add(Me.Label23)
- Me.Panel2.Controls.Add(Me.物料清單_dgv)
- Me.Panel2.Controls.Add(Me.最低售價_cb)
- Me.Panel2.Controls.Add(Me.Label27)
- Me.Panel2.Controls.Add(Me.地區_cb)
- Me.Panel2.Controls.Add(Me.最低運費_cb)
- Me.Panel2.Controls.Add(Me.清空_bt)
- Me.Panel2.Controls.Add(Me.銷售收款流水號_tb)
- Me.Panel2.Controls.Add(Me.Label19)
- Me.Panel2.Controls.Add(Me.Label37)
- Me.Panel2.Controls.Add(Me.供應商_cb)
- Me.Panel2.Controls.Add(Me.供應商編碼_cb)
- Me.Panel2.Controls.Add(Me.查詢_tb)
- Me.Panel2.Controls.Add(Me.Label29)
- Me.Panel2.Controls.Add(Me.售價_nud)
- Me.Panel2.Controls.Add(Me.Label17)
- Me.Panel2.Controls.Add(Me.Label22)
- Me.Panel2.Controls.Add(Me.料號_tb)
- Me.Panel2.Controls.Add(Me.區域庫存_dgv)
- Me.Panel2.Controls.Add(Me.Label16)
- Me.Panel2.Controls.Add(Me.成本_nud)
- Me.Panel2.Controls.Add(Me.品名_tb)
- Me.Panel2.Controls.Add(Me.盤損數_lb)
- Me.Panel2.Controls.Add(Me.供應商編碼_tb)
- Me.Panel2.Controls.Add(Me.可申請_tb)
- Me.Panel2.Controls.Add(Me.指定倉庫_lb)
- Me.Panel2.Controls.Add(Me.最大庫存量_tb)
- Me.Panel2.Controls.Add(Me.銷售資料流水號_tb)
- Me.Panel2.Controls.Add(Me.庫存量_tb)
- Me.Panel2.Controls.Add(Me.指定倉庫_cb)
- Me.Panel2.Controls.Add(Me.訂購數量_nud)
- Me.Panel2.Controls.Add(Me.Label24)
- Me.Panel2.Controls.Add(Me.盤盈數_lb)
- Me.Panel2.Controls.Add(Me.選定內容加入庫存調整申請單_bt)
- Me.Panel2.Controls.Add(Me.庫存量_lb)
- Me.Panel2.Controls.Add(Me.倉儲資料流水號_tb)
- Me.Panel2.Controls.Add(Me.最大庫存量_lb)
- Me.Panel2.Controls.Add(Me.可盤損數_lb)
- Me.Panel2.Controls.Add(Me.資料筆數_tb)
- Me.Panel2.Controls.Add(Me.倉儲狀態_cb)
- Me.Panel2.Controls.Add(Me.Label13)
- Me.Panel2.Controls.Add(Me.銷售備註流水號_tb)
- Me.Panel2.Controls.Add(Me.訂製狀態_cb)
- Me.Panel2.Controls.Add(Me.Label12)
- Me.Panel2.Controls.Add(Me.Label15)
- Me.Panel2.Controls.Add(Me.Label18)
- Me.Panel2.Controls.Add(Me.需要全部庫存區域清單_ch)
- Me.Panel2.Controls.Add(Me.物料圖_pb)
- Me.Panel2.Location = New System.Drawing.Point(2, 2)
- Me.Panel2.Name = "Panel2"
- Me.Panel2.Size = New System.Drawing.Size(543, 676)
- Me.Panel2.TabIndex = 1337
- '
- 'Label50
- '
- Me.Label50.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label50.AutoSize = True
- Me.Label50.Location = New System.Drawing.Point(46, 558)
- Me.Label50.Name = "Label50"
- Me.Label50.Size = New System.Drawing.Size(92, 16)
- Me.Label50.TabIndex = 1338
- Me.Label50.Text = "運費資料流水號"
- Me.Label50.Visible = False
- '
- '運費資料流水號_tb
- '
- Me.運費資料流水號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.運費資料流水號_tb.Enabled = False
- Me.運費資料流水號_tb.Location = New System.Drawing.Point(43, 573)
- Me.運費資料流水號_tb.Name = "運費資料流水號_tb"
- Me.運費資料流水號_tb.Size = New System.Drawing.Size(165, 23)
- Me.運費資料流水號_tb.TabIndex = 1337
- Me.運費資料流水號_tb.Visible = False
- '
- 'Panel3
- '
- Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.Panel3.Controls.Add(Me.顯示_bt)
- Me.Panel3.Controls.Add(Me.未審核_lb)
- Me.Panel3.Controls.Add(Me.已審核資料_ch)
- Me.Panel3.Controls.Add(Me.銷售單據_dgv)
- Me.Panel3.Controls.Add(Me.大間距_ch)
- Me.Panel3.Controls.Add(Me.單號_tb)
- Me.Panel3.Controls.Add(Me.中間距_ch)
- Me.Panel3.Controls.Add(Me.Label2)
- Me.Panel3.Controls.Add(Me.小間距_ch)
- Me.Panel3.Controls.Add(Me.Label3)
- Me.Panel3.Controls.Add(Me.Panel1)
- Me.Panel3.Controls.Add(Me.Label6)
- Me.Panel3.Controls.Add(Me.單據作廢_bt)
- Me.Panel3.Controls.Add(Me.單據核准_bt)
- Me.Panel3.Controls.Add(Me.Label8)
- Me.Panel3.Controls.Add(Me.業務_cb)
- Me.Panel3.Controls.Add(Me.客戶_tb)
- Me.Panel3.Controls.Add(Me.客戶資料驗證_bt)
- Me.Panel3.Controls.Add(Me.住址_tb)
- Me.Panel3.Controls.Add(Me.刪除_bt)
- Me.Panel3.Controls.Add(Me.電話1_tb)
- Me.Panel3.Controls.Add(Me.存檔_bt)
- Me.Panel3.Controls.Add(Me.電話2_tb)
- Me.Panel3.Controls.Add(Me.物料圖1_pb)
- Me.Panel3.Controls.Add(Me.Label10)
- Me.Panel3.Controls.Add(Me.含稅_ch)
- Me.Panel3.Controls.Add(Me.公司_tb)
- Me.Panel3.Controls.Add(Me.交貨日期_dtp)
- Me.Panel3.Controls.Add(Me.統編_tb)
- Me.Panel3.Controls.Add(Me.Label9)
- Me.Panel3.Controls.Add(Me.Label11)
- Me.Panel3.Controls.Add(Me.開單日期_dtp)
- Me.Panel3.Controls.Add(Me.客戶資料查詢_bt)
- Me.Panel3.Controls.Add(Me.Label4)
- Me.Panel3.Controls.Add(Me.Label7)
- Me.Panel3.Location = New System.Drawing.Point(546, 2)
- Me.Panel3.Name = "Panel3"
- Me.Panel3.Size = New System.Drawing.Size(910, 676)
- Me.Panel3.TabIndex = 1338
- '
- '顯示_bt
- '
- Me.顯示_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.顯示_bt.ImeMode = System.Windows.Forms.ImeMode.NoControl
- Me.顯示_bt.Location = New System.Drawing.Point(499, 8)
- Me.顯示_bt.Name = "顯示_bt"
- Me.顯示_bt.Size = New System.Drawing.Size(110, 24)
- Me.顯示_bt.TabIndex = 1336
- Me.顯示_bt.Text = "顯示物料控件"
- Me.顯示_bt.UseVisualStyleBackColor = True
- '
- '物料成本無管銷_tb
- '
- Me.物料成本無管銷_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.物料成本無管銷_tb.Enabled = False
- Me.物料成本無管銷_tb.Location = New System.Drawing.Point(214, 355)
- Me.物料成本無管銷_tb.Name = "物料成本無管銷_tb"
- Me.物料成本無管銷_tb.Size = New System.Drawing.Size(165, 23)
- Me.物料成本無管銷_tb.TabIndex = 1339
- Me.物料成本無管銷_tb.Visible = False
- '
- '銷售單審核
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1458, 681)
- Me.Controls.Add(Me.Panel3)
- Me.Controls.Add(Me.Panel2)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.Name = "銷售單審核"
- Me.Text = "銷售單審核"
- CType(Me.售價_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.區域庫存_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.成本_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.訂購數量_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.物料清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.銷售單據_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel1.ResumeLayout(False)
- Me.Panel1.PerformLayout()
- CType(Me.銷售衍生運費_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.客戶資料_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.銷售明細_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.銷售備註_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.收款事項_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.物料圖_pb, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.物料圖1_pb, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel2.ResumeLayout(False)
- Me.Panel2.PerformLayout()
- Me.Panel3.ResumeLayout(False)
- Me.Panel3.PerformLayout()
- Me.ResumeLayout(False)
-
- End Sub
-
- Friend WithEvents 業務_cb As ComboBox
- Friend WithEvents 客戶資料驗證_bt As Button
- Friend WithEvents 售價_nud As NumericUpDown
- Friend WithEvents Label22 As Label
- Friend WithEvents 區域庫存_dgv As DataGridView
- Friend WithEvents 成本_nud As NumericUpDown
- Friend WithEvents 盤損數_lb As Label
- Friend WithEvents 可申請_tb As TextBox
- Friend WithEvents 最大庫存量_tb As TextBox
- Friend WithEvents 庫存量_tb As TextBox
- Friend WithEvents 訂購數量_nud As NumericUpDown
- Friend WithEvents 盤盈數_lb As Label
- Friend WithEvents 庫存量_lb As Label
- Friend WithEvents 最大庫存量_lb As Label
- Friend WithEvents 可盤損數_lb As Label
- Friend WithEvents 倉儲狀態_cb As ComboBox
- Friend WithEvents Label12 As Label
- Friend WithEvents 訂製狀態_cb As ComboBox
- Friend WithEvents Label13 As Label
- Friend WithEvents Label14 As Label
- Friend WithEvents 資料筆數_tb As TextBox
- Friend WithEvents Label15 As Label
- Friend WithEvents 選定內容加入庫存調整申請單_bt As Button
- Friend WithEvents 指定倉庫_cb As ComboBox
- Friend WithEvents 指定倉庫_lb As Label
- Friend WithEvents 供應商編碼_tb As TextBox
- Friend WithEvents 物料圖_pb As PictureBox
- Friend WithEvents 品名_tb As TextBox
- Friend WithEvents Label16 As Label
- Friend WithEvents 料號_tb As TextBox
- Friend WithEvents Label17 As Label
- Friend WithEvents Label29 As Label
- Friend WithEvents 查詢_tb As TextBox
- Friend WithEvents 供應商編碼_cb As ComboBox
- Friend WithEvents Label18 As Label
- Friend WithEvents 供應商_cb As ComboBox
- Friend WithEvents Label19 As Label
- Friend WithEvents 清空_bt As Button
- Friend WithEvents 地區_cb As ComboBox
- Friend WithEvents Label21 As Label
- Friend WithEvents 物料清單_dgv As DataGridView
- Friend WithEvents 需要全部庫存區域清單_ch As CheckBox
- Friend WithEvents 刪除_bt As Button
- Friend WithEvents 刪除單據上點選的資料_bt As Button
- Friend WithEvents 存檔_bt As Button
- Friend WithEvents 物料圖1_pb As PictureBox
- Friend WithEvents 含稅_ch As CheckBox
- Friend WithEvents 交貨日期_dtp As DateTimePicker
- Friend WithEvents Label9 As Label
- Friend WithEvents 開單日期_dtp As DateTimePicker
- Friend WithEvents Label4 As Label
- Friend WithEvents 客戶資料查詢_bt As Button
- Friend WithEvents Label11 As Label
- Friend WithEvents 統編_tb As TextBox
- Friend WithEvents 公司_tb As TextBox
- Friend WithEvents Label10 As Label
- Friend WithEvents 電話2_tb As TextBox
- Friend WithEvents 電話1_tb As TextBox
- Friend WithEvents 住址_tb As TextBox
- Friend WithEvents 客戶_tb As TextBox
- Friend WithEvents Label8 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents Label6 As Label
- Friend WithEvents Label3 As Label
- Friend WithEvents Label2 As Label
- Friend WithEvents 單號_tb As TextBox
- Friend WithEvents 銷售單據_dgv As DataGridView
- Friend WithEvents 未審核_lb As Label
- Friend WithEvents 單據核准_bt As Button
- Friend WithEvents 單據作廢_bt As Button
- Friend WithEvents Panel1 As Panel
- Friend WithEvents 項次3_tb As TextBox
- Friend WithEvents 銷售收款流水號_tb As TextBox
- Friend WithEvents Label37 As Label
- Friend WithEvents 刪除收款事項上點選的資料_bt As Button
- Friend WithEvents 新增一筆收款事項_bt As Button
- Friend WithEvents 項次2_tb As TextBox
- Friend WithEvents Label36 As Label
- Friend WithEvents 額外收支_tb As TextBox
- Friend WithEvents Label35 As Label
- Friend WithEvents 銷售合計_tb As TextBox
- Friend WithEvents Label34 As Label
- Friend WithEvents 稅金_tb As TextBox
- Friend WithEvents Label33 As Label
- Friend WithEvents 支出小計_tb As TextBox
- Friend WithEvents Label32 As Label
- Friend WithEvents 收入小計_tb As TextBox
- Friend WithEvents Label31 As Label
- Friend WithEvents 售價小計_tb As TextBox
- Friend WithEvents Label30 As Label
- Friend WithEvents 刪除備註_bt As Button
- Friend WithEvents 銷售備註流水號_tb As TextBox
- Friend WithEvents 銷售備註_bt As Button
- Friend WithEvents 項次1_tb As TextBox
- Friend WithEvents Label26 As Label
- Friend WithEvents 項次_tb As TextBox
- Friend WithEvents Label25 As Label
- Friend WithEvents 倉儲資料流水號_tb As TextBox
- Friend WithEvents Label24 As Label
- Friend WithEvents 銷售資料流水號_tb As TextBox
- Friend WithEvents 調庫單號_tb As TextBox
- Friend WithEvents 倉儲單號_lb As Label
- Friend WithEvents 客戶流水_tb As TextBox
- Friend WithEvents 客戶資料_dgv As DataGridView
- Friend WithEvents 倉庫級別_tb As TextBox
- Friend WithEvents 倉庫編號_tb As TextBox
- Friend WithEvents 儲態編號_cb As ComboBox
- Friend WithEvents 訂製編碼_cb As ComboBox
- Friend WithEvents 客戶編號_tb As TextBox
- Friend WithEvents 流水號_tb As TextBox
- Friend WithEvents Label1 As Label
- Friend WithEvents Label5 As Label
- Friend WithEvents 銷售明細_dgv As DataGridView
- Friend WithEvents 銷售備註_dgv As DataGridView
- Friend WithEvents 收款事項_dgv As DataGridView
- Friend WithEvents Label27 As Label
- Friend WithEvents Label28 As Label
- Friend WithEvents Label23 As Label
- Friend WithEvents 司機運費_tb As TextBox
- Friend WithEvents Label38 As Label
- Friend WithEvents 送貨地點_cb As ComboBox
- Friend WithEvents Label20 As Label
- Friend WithEvents Label39 As Label
- Friend WithEvents 最低售價_cb As ComboBox
- Friend WithEvents 最低運費_cb As ComboBox
- Friend WithEvents 物料成本_tb As TextBox
- Friend WithEvents Label43 As Label
- Friend WithEvents 預估利潤_tb As TextBox
- Friend WithEvents Label42 As Label
- Friend WithEvents 管銷費用_tb As TextBox
- Friend WithEvents Label41 As Label
- Friend WithEvents Label40 As Label
- Friend WithEvents 讀取標準成本_bt As Button
- Friend WithEvents Reset_bt As Button
- Friend WithEvents 其他成本_tb As TextBox
- Friend WithEvents Label45 As Label
- Friend WithEvents 刷卡收款_bt As Button
- Friend WithEvents 刷卡總和_tb As TextBox
- Friend WithEvents 刷卡稅金_tb As TextBox
- Friend WithEvents Label46 As Label
- Friend WithEvents Label47 As Label
- Friend WithEvents 刷卡傭金_tb As TextBox
- Friend WithEvents Label48 As Label
- Friend WithEvents 通知_lb As Label
- Friend WithEvents 大間距_ch As CheckBox
- Friend WithEvents 中間距_ch As CheckBox
- Friend WithEvents 小間距_ch As CheckBox
- Friend WithEvents 已審核資料_ch As CheckBox
- Friend WithEvents 隱藏_bt As Button
- Friend WithEvents Panel2 As Panel
- Friend WithEvents Panel3 As Panel
- Friend WithEvents 刪除衍生運費_bt As Button
- Friend WithEvents 新增衍生運費_bt As Button
- Friend WithEvents 項次4_tb As TextBox
- Friend WithEvents Label49 As Label
- Friend WithEvents 銷售衍生運費_dgv As DataGridView
- Friend WithEvents 顯示_bt As Button
- Friend WithEvents Label50 As Label
- Friend WithEvents 運費資料流水號_tb As TextBox
- Friend WithEvents 物料成本無管銷_tb As TextBox
- End Class
|