Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

車輛銷售管理.Designer.vb 119KB

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