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

合約文本_Word.Designer.vb 85KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class 合約文本_Word
  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 resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(合約文本_Word))
  25. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Me.Word文本框 = New Telerik.WinControls.UI.RadRichTextEditor()
  27. Me.檔案路徑_tb = New System.Windows.Forms.TextBox()
  28. Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
  29. Me.RadThemeManager1 = New Telerik.WinControls.RadThemeManager()
  30. Me.RadRichTextEditorRuler1 = New Telerik.WinControls.UI.RadRichTextEditorRuler()
  31. Me.Panel1 = New System.Windows.Forms.Panel()
  32. Me.存檔日期_dtp = New System.Windows.Forms.DateTimePicker()
  33. Me.更新光標_bt = New System.Windows.Forms.Button()
  34. Me.語轉扭_bt = New System.Windows.Forms.Button()
  35. Me.合約狀態_tb = New System.Windows.Forms.TextBox()
  36. Me.語言_dgv = New System.Windows.Forms.DataGridView()
  37. Me.Column1 = New System.Windows.Forms.DataGridViewTextBoxColumn()
  38. Me.Column2 = New System.Windows.Forms.DataGridViewTextBoxColumn()
  39. Me.合約_dgv = New System.Windows.Forms.DataGridView()
  40. Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
  41. Me.Label11 = New System.Windows.Forms.Label()
  42. Me.計算分流 = New System.Windows.Forms.Timer(Me.components)
  43. Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
  44. Me.視窗2_pl = New System.Windows.Forms.Panel()
  45. Me.Panel3 = New System.Windows.Forms.Panel()
  46. Me.Label56 = New System.Windows.Forms.Label()
  47. Me.Label55 = New System.Windows.Forms.Label()
  48. Me.Label54 = New System.Windows.Forms.Label()
  49. Me.Label53 = New System.Windows.Forms.Label()
  50. Me.Label52 = New System.Windows.Forms.Label()
  51. Me.GA26 = New System.Windows.Forms.TextBox()
  52. Me.GA25 = New System.Windows.Forms.TextBox()
  53. Me.GA24 = New System.Windows.Forms.TextBox()
  54. Me.GA23 = New System.Windows.Forms.TextBox()
  55. Me.GA22 = New System.Windows.Forms.TextBox()
  56. Me.Label44 = New System.Windows.Forms.Label()
  57. Me.Label45 = New System.Windows.Forms.Label()
  58. Me.Label46 = New System.Windows.Forms.Label()
  59. Me.Label47 = New System.Windows.Forms.Label()
  60. Me.Label48 = New System.Windows.Forms.Label()
  61. Me.Label49 = New System.Windows.Forms.Label()
  62. Me.Label50 = New System.Windows.Forms.Label()
  63. Me.Label51 = New System.Windows.Forms.Label()
  64. Me.Label43 = New System.Windows.Forms.Label()
  65. Me.Label42 = New System.Windows.Forms.Label()
  66. Me.Label41 = New System.Windows.Forms.Label()
  67. Me.Label40 = New System.Windows.Forms.Label()
  68. Me.Label39 = New System.Windows.Forms.Label()
  69. Me.Label38 = New System.Windows.Forms.Label()
  70. Me.Label37 = New System.Windows.Forms.Label()
  71. Me.Label36 = New System.Windows.Forms.Label()
  72. Me.更新光標1_bt = New System.Windows.Forms.Button()
  73. Me.Label35 = New System.Windows.Forms.Label()
  74. Me.Label34 = New System.Windows.Forms.Label()
  75. Me.Label33 = New System.Windows.Forms.Label()
  76. Me.Label32 = New System.Windows.Forms.Label()
  77. Me.Label31 = New System.Windows.Forms.Label()
  78. Me.Label30 = New System.Windows.Forms.Label()
  79. Me.Label29 = New System.Windows.Forms.Label()
  80. Me.Label28 = New System.Windows.Forms.Label()
  81. Me.Label27 = New System.Windows.Forms.Label()
  82. Me.Label26 = New System.Windows.Forms.Label()
  83. Me.GA21 = New System.Windows.Forms.TextBox()
  84. Me.Label24 = New System.Windows.Forms.Label()
  85. Me.GA20 = New System.Windows.Forms.TextBox()
  86. Me.Label25 = New System.Windows.Forms.Label()
  87. Me.GA19 = New System.Windows.Forms.TextBox()
  88. Me.Label17 = New System.Windows.Forms.Label()
  89. Me.GA18 = New System.Windows.Forms.TextBox()
  90. Me.Label18 = New System.Windows.Forms.Label()
  91. Me.GA17 = New System.Windows.Forms.TextBox()
  92. Me.Label19 = New System.Windows.Forms.Label()
  93. Me.GA16 = New System.Windows.Forms.TextBox()
  94. Me.Label20 = New System.Windows.Forms.Label()
  95. Me.GA15 = New System.Windows.Forms.TextBox()
  96. Me.Label21 = New System.Windows.Forms.Label()
  97. Me.GA14 = New System.Windows.Forms.TextBox()
  98. Me.Label22 = New System.Windows.Forms.Label()
  99. Me.GA13 = New System.Windows.Forms.TextBox()
  100. Me.Label23 = New System.Windows.Forms.Label()
  101. Me.GA12 = New System.Windows.Forms.TextBox()
  102. Me.Label10 = New System.Windows.Forms.Label()
  103. Me.GA11 = New System.Windows.Forms.TextBox()
  104. Me.Label12 = New System.Windows.Forms.Label()
  105. Me.GA10 = New System.Windows.Forms.TextBox()
  106. Me.Label13 = New System.Windows.Forms.Label()
  107. Me.GA9 = New System.Windows.Forms.TextBox()
  108. Me.Label14 = New System.Windows.Forms.Label()
  109. Me.GA8 = New System.Windows.Forms.TextBox()
  110. Me.Label15 = New System.Windows.Forms.Label()
  111. Me.GA7 = New System.Windows.Forms.TextBox()
  112. Me.Label16 = New System.Windows.Forms.Label()
  113. Me.GA6 = New System.Windows.Forms.TextBox()
  114. Me.Label7 = New System.Windows.Forms.Label()
  115. Me.GA5 = New System.Windows.Forms.TextBox()
  116. Me.Label8 = New System.Windows.Forms.Label()
  117. Me.GA4 = New System.Windows.Forms.TextBox()
  118. Me.Label9 = New System.Windows.Forms.Label()
  119. Me.GA3 = New System.Windows.Forms.TextBox()
  120. Me.Label6 = New System.Windows.Forms.Label()
  121. Me.GA2 = New System.Windows.Forms.TextBox()
  122. Me.Label5 = New System.Windows.Forms.Label()
  123. Me.GA1 = New System.Windows.Forms.TextBox()
  124. Me.Label3 = New System.Windows.Forms.Label()
  125. Me.Label1 = New System.Windows.Forms.Label()
  126. Me.刪除範本_bt = New System.Windows.Forms.Button()
  127. Me.範本清單_dgv = New System.Windows.Forms.DataGridView()
  128. Me.舊合約_ch = New System.Windows.Forms.CheckBox()
  129. Me.範本_ch = New System.Windows.Forms.CheckBox()
  130. Me.合約名稱_tb = New System.Windows.Forms.TextBox()
  131. Me.範本名稱_lb = New System.Windows.Forms.Label()
  132. Me.範本存檔_bt = New System.Windows.Forms.Button()
  133. Me.輸出word_bt = New System.Windows.Forms.Button()
  134. Me.導入word_bt = New System.Windows.Forms.Button()
  135. Me.Label2 = New System.Windows.Forms.Label()
  136. Me.Label4 = New System.Windows.Forms.Label()
  137. Me.高級編輯_lb = New System.Windows.Forms.Label()
  138. Me.CanceL2_bt = New System.Windows.Forms.Button()
  139. Me.Panel4 = New System.Windows.Forms.Panel()
  140. Me.更新合約_bt = New System.Windows.Forms.Button()
  141. Me.取消_bt = New System.Windows.Forms.Button()
  142. Me.合約編號_tb = New System.Windows.Forms.TextBox()
  143. Me.存檔_bt = New System.Windows.Forms.Button()
  144. Me.縮放2_bt = New System.Windows.Forms.Button()
  145. Me.編輯_bt = New System.Windows.Forms.Button()
  146. Me.Word控制項 = New Telerik.WinControls.UI.RichTextEditorRibbonBar()
  147. Me.讀取範本_bt = New System.Windows.Forms.Button()
  148. Me.自動存檔 = New System.Windows.Forms.Timer(Me.components)
  149. Me.自動存檔_ch = New System.Windows.Forms.CheckBox()
  150. CType(Me.Word文本框, System.ComponentModel.ISupportInitialize).BeginInit()
  151. CType(Me.RadRichTextEditorRuler1, System.ComponentModel.ISupportInitialize).BeginInit()
  152. Me.RadRichTextEditorRuler1.SuspendLayout()
  153. Me.Panel1.SuspendLayout()
  154. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  155. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  156. Me.視窗2_pl.SuspendLayout()
  157. Me.Panel3.SuspendLayout()
  158. CType(Me.範本清單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  159. Me.Panel4.SuspendLayout()
  160. CType(Me.Word控制項, System.ComponentModel.ISupportInitialize).BeginInit()
  161. Me.SuspendLayout()
  162. '
  163. 'Word文本框
  164. '
  165. Me.Word文本框.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  166. Or System.Windows.Forms.AnchorStyles.Left) _
  167. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  168. Me.Word文本框.BorderColor = System.Drawing.Color.FromArgb(CType(CType(204, Byte), Integer), CType(CType(204, Byte), Integer), CType(CType(204, Byte), Integer))
  169. Me.Word文本框.LayoutMode = Telerik.WinForms.Documents.Model.DocumentLayoutMode.Paged
  170. Me.Word文本框.Location = New System.Drawing.Point(29, 29)
  171. Me.Word文本框.Name = "Word文本框"
  172. Me.Word文本框.SelectionFill = System.Drawing.Color.FromArgb(CType(CType(128, Byte), Integer), CType(CType(179, Byte), Integer), CType(CType(236, Byte), Integer), CType(CType(248, Byte), Integer))
  173. Me.Word文本框.SelectionStroke = System.Drawing.Color.FromArgb(CType(CType(179, Byte), Integer), CType(CType(236, Byte), Integer), CType(CType(248, Byte), Integer))
  174. Me.Word文本框.Size = New System.Drawing.Size(1244, 515)
  175. Me.Word文本框.TabIndex = 0
  176. '
  177. '檔案路徑_tb
  178. '
  179. Me.檔案路徑_tb.Location = New System.Drawing.Point(3, 3)
  180. Me.檔案路徑_tb.Name = "檔案路徑_tb"
  181. Me.檔案路徑_tb.Size = New System.Drawing.Size(153, 23)
  182. Me.檔案路徑_tb.TabIndex = 0
  183. '
  184. 'OpenFileDialog1
  185. '
  186. Me.OpenFileDialog1.FileName = "OpenFileDialog1"
  187. '
  188. 'RadRichTextEditorRuler1
  189. '
  190. Me.RadRichTextEditorRuler1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  191. Or System.Windows.Forms.AnchorStyles.Left) _
  192. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  193. Me.RadRichTextEditorRuler1.AssociatedRichTextBox = Me.Word文本框
  194. Me.RadRichTextEditorRuler1.Controls.Add(Me.Word文本框)
  195. Me.RadRichTextEditorRuler1.Location = New System.Drawing.Point(189, 167)
  196. Me.RadRichTextEditorRuler1.Name = "RadRichTextEditorRuler1"
  197. Me.RadRichTextEditorRuler1.Size = New System.Drawing.Size(1274, 545)
  198. Me.RadRichTextEditorRuler1.TabIndex = 0
  199. '
  200. 'Panel1
  201. '
  202. Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  203. Me.Panel1.Controls.Add(Me.存檔日期_dtp)
  204. Me.Panel1.Controls.Add(Me.更新光標_bt)
  205. Me.Panel1.Controls.Add(Me.語轉扭_bt)
  206. Me.Panel1.Controls.Add(Me.合約狀態_tb)
  207. Me.Panel1.Controls.Add(Me.語言_dgv)
  208. Me.Panel1.Controls.Add(Me.檔案路徑_tb)
  209. Me.Panel1.Location = New System.Drawing.Point(223, 285)
  210. Me.Panel1.Name = "Panel1"
  211. Me.Panel1.Size = New System.Drawing.Size(411, 131)
  212. Me.Panel1.TabIndex = 0
  213. '
  214. '存檔日期_dtp
  215. '
  216. Me.存檔日期_dtp.CustomFormat = "yyyy/MM/dd"
  217. Me.存檔日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  218. Me.存檔日期_dtp.Location = New System.Drawing.Point(4, 52)
  219. Me.存檔日期_dtp.Name = "存檔日期_dtp"
  220. Me.存檔日期_dtp.Size = New System.Drawing.Size(120, 23)
  221. Me.存檔日期_dtp.TabIndex = 1836
  222. '
  223. '更新光標_bt
  224. '
  225. Me.更新光標_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Default_Programs
  226. Me.更新光標_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  227. Me.更新光標_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  228. Me.更新光標_bt.ForeColor = System.Drawing.Color.Black
  229. Me.更新光標_bt.Location = New System.Drawing.Point(3, 80)
  230. Me.更新光標_bt.Name = "更新光標_bt"
  231. Me.更新光標_bt.RightToLeft = System.Windows.Forms.RightToLeft.No
  232. Me.更新光標_bt.Size = New System.Drawing.Size(45, 45)
  233. Me.更新光標_bt.TabIndex = 1891
  234. Me.更新光標_bt.UseVisualStyleBackColor = True
  235. '
  236. '語轉扭_bt
  237. '
  238. Me.語轉扭_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  239. Me.語轉扭_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  240. Me.語轉扭_bt.ForeColor = System.Drawing.Color.Black
  241. Me.語轉扭_bt.Location = New System.Drawing.Point(131, 51)
  242. Me.語轉扭_bt.Name = "語轉扭_bt"
  243. Me.語轉扭_bt.Size = New System.Drawing.Size(25, 25)
  244. Me.語轉扭_bt.TabIndex = 1835
  245. Me.語轉扭_bt.Text = "L"
  246. Me.語轉扭_bt.UseVisualStyleBackColor = True
  247. '
  248. '合約狀態_tb
  249. '
  250. Me.合約狀態_tb.Location = New System.Drawing.Point(3, 27)
  251. Me.合約狀態_tb.Name = "合約狀態_tb"
  252. Me.合約狀態_tb.Size = New System.Drawing.Size(153, 23)
  253. Me.合約狀態_tb.TabIndex = 648
  254. '
  255. '語言_dgv
  256. '
  257. Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  258. Me.語言_dgv.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.Column1, Me.Column2})
  259. Me.語言_dgv.Location = New System.Drawing.Point(162, 6)
  260. Me.語言_dgv.Name = "語言_dgv"
  261. Me.語言_dgv.RowHeadersWidth = 5
  262. Me.語言_dgv.RowTemplate.Height = 24
  263. Me.語言_dgv.Size = New System.Drawing.Size(237, 114)
  264. Me.語言_dgv.TabIndex = 647
  265. Me.語言_dgv.Visible = False
  266. '
  267. 'Column1
  268. '
  269. Me.Column1.HeaderText = "Column1"
  270. Me.Column1.Name = "Column1"
  271. '
  272. 'Column2
  273. '
  274. Me.Column2.HeaderText = "Column2"
  275. Me.Column2.Name = "Column2"
  276. '
  277. '合約_dgv
  278. '
  279. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  280. Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  281. Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  282. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  283. Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  284. Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
  285. Me.合約_dgv.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  286. Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  287. Me.合約_dgv.Location = New System.Drawing.Point(3, 94)
  288. Me.合約_dgv.Name = "合約_dgv"
  289. Me.合約_dgv.RowHeadersWidth = 5
  290. Me.合約_dgv.RowTemplate.Height = 24
  291. Me.合約_dgv.Size = New System.Drawing.Size(183, 617)
  292. Me.合約_dgv.TabIndex = 1781
  293. '
  294. '合約編號1_cb
  295. '
  296. Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  297. Me.合約編號1_cb.ForeColor = System.Drawing.Color.Blue
  298. Me.合約編號1_cb.FormattingEnabled = True
  299. Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
  300. Me.合約編號1_cb.Location = New System.Drawing.Point(3, 69)
  301. Me.合約編號1_cb.Name = "合約編號1_cb"
  302. Me.合約編號1_cb.Size = New System.Drawing.Size(91, 24)
  303. Me.合約編號1_cb.TabIndex = 1787
  304. '
  305. 'Label11
  306. '
  307. Me.Label11.AutoSize = True
  308. Me.Label11.BackColor = System.Drawing.Color.Transparent
  309. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  310. Me.Label11.Location = New System.Drawing.Point(13, 51)
  311. Me.Label11.Name = "Label11"
  312. Me.Label11.Size = New System.Drawing.Size(31, 16)
  313. Me.Label11.TabIndex = 1788
  314. Me.Label11.Text = "甲方"
  315. Me.Label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  316. '
  317. '計算分流
  318. '
  319. '
  320. 'ToolTip1
  321. '
  322. Me.ToolTip1.AutoPopDelay = 5000
  323. Me.ToolTip1.InitialDelay = 500
  324. Me.ToolTip1.IsBalloon = True
  325. Me.ToolTip1.ReshowDelay = 100
  326. Me.ToolTip1.ToolTipTitle = "illustrate"
  327. '
  328. '視窗2_pl
  329. '
  330. Me.視窗2_pl.BackColor = System.Drawing.Color.White
  331. Me.視窗2_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  332. Me.視窗2_pl.Controls.Add(Me.Panel3)
  333. Me.視窗2_pl.Controls.Add(Me.高級編輯_lb)
  334. Me.視窗2_pl.Controls.Add(Me.CanceL2_bt)
  335. Me.視窗2_pl.Location = New System.Drawing.Point(500, 69)
  336. Me.視窗2_pl.Name = "視窗2_pl"
  337. Me.視窗2_pl.Size = New System.Drawing.Size(851, 583)
  338. Me.視窗2_pl.TabIndex = 1891
  339. '
  340. 'Panel3
  341. '
  342. Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  343. Or System.Windows.Forms.AnchorStyles.Left) _
  344. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  345. Me.Panel3.BackColor = System.Drawing.SystemColors.Control
  346. Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  347. Me.Panel3.Controls.Add(Me.Label56)
  348. Me.Panel3.Controls.Add(Me.Label55)
  349. Me.Panel3.Controls.Add(Me.Label54)
  350. Me.Panel3.Controls.Add(Me.Label53)
  351. Me.Panel3.Controls.Add(Me.Label52)
  352. Me.Panel3.Controls.Add(Me.GA26)
  353. Me.Panel3.Controls.Add(Me.GA25)
  354. Me.Panel3.Controls.Add(Me.GA24)
  355. Me.Panel3.Controls.Add(Me.GA23)
  356. Me.Panel3.Controls.Add(Me.GA22)
  357. Me.Panel3.Controls.Add(Me.Label44)
  358. Me.Panel3.Controls.Add(Me.Label45)
  359. Me.Panel3.Controls.Add(Me.Label46)
  360. Me.Panel3.Controls.Add(Me.Label47)
  361. Me.Panel3.Controls.Add(Me.Label48)
  362. Me.Panel3.Controls.Add(Me.Label49)
  363. Me.Panel3.Controls.Add(Me.Label50)
  364. Me.Panel3.Controls.Add(Me.Label51)
  365. Me.Panel3.Controls.Add(Me.Label43)
  366. Me.Panel3.Controls.Add(Me.Label42)
  367. Me.Panel3.Controls.Add(Me.Label41)
  368. Me.Panel3.Controls.Add(Me.Label40)
  369. Me.Panel3.Controls.Add(Me.Label39)
  370. Me.Panel3.Controls.Add(Me.Label38)
  371. Me.Panel3.Controls.Add(Me.Label37)
  372. Me.Panel3.Controls.Add(Me.Label36)
  373. Me.Panel3.Controls.Add(Me.更新光標1_bt)
  374. Me.Panel3.Controls.Add(Me.Label35)
  375. Me.Panel3.Controls.Add(Me.Label34)
  376. Me.Panel3.Controls.Add(Me.Label33)
  377. Me.Panel3.Controls.Add(Me.Label32)
  378. Me.Panel3.Controls.Add(Me.Label31)
  379. Me.Panel3.Controls.Add(Me.Label30)
  380. Me.Panel3.Controls.Add(Me.Label29)
  381. Me.Panel3.Controls.Add(Me.Label28)
  382. Me.Panel3.Controls.Add(Me.Label27)
  383. Me.Panel3.Controls.Add(Me.Label26)
  384. Me.Panel3.Controls.Add(Me.GA21)
  385. Me.Panel3.Controls.Add(Me.Label24)
  386. Me.Panel3.Controls.Add(Me.GA20)
  387. Me.Panel3.Controls.Add(Me.Label25)
  388. Me.Panel3.Controls.Add(Me.GA19)
  389. Me.Panel3.Controls.Add(Me.Label17)
  390. Me.Panel3.Controls.Add(Me.GA18)
  391. Me.Panel3.Controls.Add(Me.Label18)
  392. Me.Panel3.Controls.Add(Me.GA17)
  393. Me.Panel3.Controls.Add(Me.Label19)
  394. Me.Panel3.Controls.Add(Me.GA16)
  395. Me.Panel3.Controls.Add(Me.Label20)
  396. Me.Panel3.Controls.Add(Me.GA15)
  397. Me.Panel3.Controls.Add(Me.Label21)
  398. Me.Panel3.Controls.Add(Me.GA14)
  399. Me.Panel3.Controls.Add(Me.Label22)
  400. Me.Panel3.Controls.Add(Me.GA13)
  401. Me.Panel3.Controls.Add(Me.Label23)
  402. Me.Panel3.Controls.Add(Me.GA12)
  403. Me.Panel3.Controls.Add(Me.Label10)
  404. Me.Panel3.Controls.Add(Me.GA11)
  405. Me.Panel3.Controls.Add(Me.Label12)
  406. Me.Panel3.Controls.Add(Me.GA10)
  407. Me.Panel3.Controls.Add(Me.Label13)
  408. Me.Panel3.Controls.Add(Me.GA9)
  409. Me.Panel3.Controls.Add(Me.Label14)
  410. Me.Panel3.Controls.Add(Me.GA8)
  411. Me.Panel3.Controls.Add(Me.Label15)
  412. Me.Panel3.Controls.Add(Me.GA7)
  413. Me.Panel3.Controls.Add(Me.Label16)
  414. Me.Panel3.Controls.Add(Me.GA6)
  415. Me.Panel3.Controls.Add(Me.Label7)
  416. Me.Panel3.Controls.Add(Me.GA5)
  417. Me.Panel3.Controls.Add(Me.Label8)
  418. Me.Panel3.Controls.Add(Me.GA4)
  419. Me.Panel3.Controls.Add(Me.Label9)
  420. Me.Panel3.Controls.Add(Me.GA3)
  421. Me.Panel3.Controls.Add(Me.Label6)
  422. Me.Panel3.Controls.Add(Me.GA2)
  423. Me.Panel3.Controls.Add(Me.Label5)
  424. Me.Panel3.Controls.Add(Me.GA1)
  425. Me.Panel3.Controls.Add(Me.Label3)
  426. Me.Panel3.Controls.Add(Me.Label1)
  427. Me.Panel3.Controls.Add(Me.刪除範本_bt)
  428. Me.Panel3.Controls.Add(Me.範本清單_dgv)
  429. Me.Panel3.Controls.Add(Me.舊合約_ch)
  430. Me.Panel3.Controls.Add(Me.範本_ch)
  431. Me.Panel3.Controls.Add(Me.合約名稱_tb)
  432. Me.Panel3.Controls.Add(Me.範本名稱_lb)
  433. Me.Panel3.Controls.Add(Me.範本存檔_bt)
  434. Me.Panel3.Controls.Add(Me.輸出word_bt)
  435. Me.Panel3.Controls.Add(Me.導入word_bt)
  436. Me.Panel3.Controls.Add(Me.Label2)
  437. Me.Panel3.Controls.Add(Me.Label4)
  438. Me.Panel3.Location = New System.Drawing.Point(3, 28)
  439. Me.Panel3.Name = "Panel3"
  440. Me.Panel3.Size = New System.Drawing.Size(844, 551)
  441. Me.Panel3.TabIndex = 1367
  442. '
  443. 'Label56
  444. '
  445. Me.Label56.AutoSize = True
  446. Me.Label56.BackColor = System.Drawing.Color.Transparent
  447. Me.Label56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  448. Me.Label56.Location = New System.Drawing.Point(777, 73)
  449. Me.Label56.Name = "Label56"
  450. Me.Label56.Size = New System.Drawing.Size(59, 16)
  451. Me.Label56.TabIndex = 1973
  452. Me.Label56.Text = "GA00026"
  453. Me.Label56.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  454. '
  455. 'Label55
  456. '
  457. Me.Label55.AutoSize = True
  458. Me.Label55.BackColor = System.Drawing.Color.Transparent
  459. Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  460. Me.Label55.Location = New System.Drawing.Point(548, 530)
  461. Me.Label55.Name = "Label55"
  462. Me.Label55.Size = New System.Drawing.Size(59, 16)
  463. Me.Label55.TabIndex = 1972
  464. Me.Label55.Text = "GA00025"
  465. Me.Label55.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  466. '
  467. 'Label54
  468. '
  469. Me.Label54.AutoSize = True
  470. Me.Label54.BackColor = System.Drawing.Color.Transparent
  471. Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  472. Me.Label54.Location = New System.Drawing.Point(548, 510)
  473. Me.Label54.Name = "Label54"
  474. Me.Label54.Size = New System.Drawing.Size(59, 16)
  475. Me.Label54.TabIndex = 1971
  476. Me.Label54.Text = "GA00024"
  477. Me.Label54.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  478. '
  479. 'Label53
  480. '
  481. Me.Label53.AutoSize = True
  482. Me.Label53.BackColor = System.Drawing.Color.Transparent
  483. Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  484. Me.Label53.Location = New System.Drawing.Point(548, 491)
  485. Me.Label53.Name = "Label53"
  486. Me.Label53.Size = New System.Drawing.Size(59, 16)
  487. Me.Label53.TabIndex = 1970
  488. Me.Label53.Text = "GA00023"
  489. Me.Label53.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  490. '
  491. 'Label52
  492. '
  493. Me.Label52.AutoSize = True
  494. Me.Label52.BackColor = System.Drawing.Color.Transparent
  495. Me.Label52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  496. Me.Label52.Location = New System.Drawing.Point(548, 472)
  497. Me.Label52.Name = "Label52"
  498. Me.Label52.Size = New System.Drawing.Size(59, 16)
  499. Me.Label52.TabIndex = 1969
  500. Me.Label52.Text = "GA00022"
  501. Me.Label52.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  502. '
  503. 'GA26
  504. '
  505. Me.GA26.BorderStyle = System.Windows.Forms.BorderStyle.None
  506. Me.GA26.Location = New System.Drawing.Point(671, 73)
  507. Me.GA26.Name = "GA26"
  508. Me.GA26.Size = New System.Drawing.Size(100, 16)
  509. Me.GA26.TabIndex = 1968
  510. '
  511. 'GA25
  512. '
  513. Me.GA25.BorderStyle = System.Windows.Forms.BorderStyle.None
  514. Me.GA25.Location = New System.Drawing.Point(442, 530)
  515. Me.GA25.Name = "GA25"
  516. Me.GA25.Size = New System.Drawing.Size(100, 16)
  517. Me.GA25.TabIndex = 1967
  518. '
  519. 'GA24
  520. '
  521. Me.GA24.BorderStyle = System.Windows.Forms.BorderStyle.None
  522. Me.GA24.Location = New System.Drawing.Point(442, 510)
  523. Me.GA24.Name = "GA24"
  524. Me.GA24.Size = New System.Drawing.Size(100, 16)
  525. Me.GA24.TabIndex = 1966
  526. '
  527. 'GA23
  528. '
  529. Me.GA23.BorderStyle = System.Windows.Forms.BorderStyle.None
  530. Me.GA23.Location = New System.Drawing.Point(442, 491)
  531. Me.GA23.Name = "GA23"
  532. Me.GA23.Size = New System.Drawing.Size(100, 16)
  533. Me.GA23.TabIndex = 1965
  534. '
  535. 'GA22
  536. '
  537. Me.GA22.BorderStyle = System.Windows.Forms.BorderStyle.None
  538. Me.GA22.Location = New System.Drawing.Point(442, 472)
  539. Me.GA22.Name = "GA22"
  540. Me.GA22.Size = New System.Drawing.Size(100, 16)
  541. Me.GA22.TabIndex = 1964
  542. '
  543. 'Label44
  544. '
  545. Me.Label44.AutoSize = True
  546. Me.Label44.BackColor = System.Drawing.Color.Transparent
  547. Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  548. Me.Label44.Location = New System.Drawing.Point(613, 73)
  549. Me.Label44.Name = "Label44"
  550. Me.Label44.Size = New System.Drawing.Size(50, 16)
  551. Me.Label44.TabIndex = 1963
  552. Me.Label44.Text = "未含稅5"
  553. Me.Label44.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  554. '
  555. 'Label45
  556. '
  557. Me.Label45.AutoSize = True
  558. Me.Label45.BackColor = System.Drawing.Color.Transparent
  559. Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  560. Me.Label45.Location = New System.Drawing.Point(384, 530)
  561. Me.Label45.Name = "Label45"
  562. Me.Label45.Size = New System.Drawing.Size(57, 16)
  563. Me.Label45.TabIndex = 1962
  564. Me.Label45.Text = "未含稅10"
  565. Me.Label45.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  566. '
  567. 'Label46
  568. '
  569. Me.Label46.AutoSize = True
  570. Me.Label46.BackColor = System.Drawing.Color.Transparent
  571. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  572. Me.Label46.Location = New System.Drawing.Point(384, 510)
  573. Me.Label46.Name = "Label46"
  574. Me.Label46.Size = New System.Drawing.Size(57, 16)
  575. Me.Label46.TabIndex = 1961
  576. Me.Label46.Text = "未含稅15"
  577. Me.Label46.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  578. '
  579. 'Label47
  580. '
  581. Me.Label47.AutoSize = True
  582. Me.Label47.BackColor = System.Drawing.Color.Transparent
  583. Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  584. Me.Label47.Location = New System.Drawing.Point(384, 491)
  585. Me.Label47.Name = "Label47"
  586. Me.Label47.Size = New System.Drawing.Size(57, 16)
  587. Me.Label47.TabIndex = 1960
  588. Me.Label47.Text = "未含稅20"
  589. Me.Label47.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  590. '
  591. 'Label48
  592. '
  593. Me.Label48.AutoSize = True
  594. Me.Label48.BackColor = System.Drawing.Color.Transparent
  595. Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  596. Me.Label48.Location = New System.Drawing.Point(384, 415)
  597. Me.Label48.Name = "Label48"
  598. Me.Label48.Size = New System.Drawing.Size(57, 16)
  599. Me.Label48.TabIndex = 1959
  600. Me.Label48.Text = "未含稅40"
  601. Me.Label48.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  602. '
  603. 'Label49
  604. '
  605. Me.Label49.AutoSize = True
  606. Me.Label49.BackColor = System.Drawing.Color.Transparent
  607. Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  608. Me.Label49.Location = New System.Drawing.Point(384, 472)
  609. Me.Label49.Name = "Label49"
  610. Me.Label49.Size = New System.Drawing.Size(57, 16)
  611. Me.Label49.TabIndex = 1958
  612. Me.Label49.Text = "未含稅25"
  613. Me.Label49.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  614. '
  615. 'Label50
  616. '
  617. Me.Label50.AutoSize = True
  618. Me.Label50.BackColor = System.Drawing.Color.Transparent
  619. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  620. Me.Label50.Location = New System.Drawing.Point(384, 453)
  621. Me.Label50.Name = "Label50"
  622. Me.Label50.Size = New System.Drawing.Size(57, 16)
  623. Me.Label50.TabIndex = 1957
  624. Me.Label50.Text = "未含稅30"
  625. Me.Label50.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  626. '
  627. 'Label51
  628. '
  629. Me.Label51.AutoSize = True
  630. Me.Label51.BackColor = System.Drawing.Color.Transparent
  631. Me.Label51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  632. Me.Label51.Location = New System.Drawing.Point(384, 434)
  633. Me.Label51.Name = "Label51"
  634. Me.Label51.Size = New System.Drawing.Size(57, 16)
  635. Me.Label51.TabIndex = 1956
  636. Me.Label51.Text = "未含稅35"
  637. Me.Label51.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  638. '
  639. 'Label43
  640. '
  641. Me.Label43.AutoSize = True
  642. Me.Label43.BackColor = System.Drawing.Color.Transparent
  643. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  644. Me.Label43.Location = New System.Drawing.Point(384, 396)
  645. Me.Label43.Name = "Label43"
  646. Me.Label43.Size = New System.Drawing.Size(38, 16)
  647. Me.Label43.TabIndex = 1955
  648. Me.Label43.Text = "含稅5"
  649. Me.Label43.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  650. '
  651. 'Label42
  652. '
  653. Me.Label42.AutoSize = True
  654. Me.Label42.BackColor = System.Drawing.Color.Transparent
  655. Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  656. Me.Label42.Location = New System.Drawing.Point(384, 377)
  657. Me.Label42.Name = "Label42"
  658. Me.Label42.Size = New System.Drawing.Size(45, 16)
  659. Me.Label42.TabIndex = 1954
  660. Me.Label42.Text = "含稅10"
  661. Me.Label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  662. '
  663. 'Label41
  664. '
  665. Me.Label41.AutoSize = True
  666. Me.Label41.BackColor = System.Drawing.Color.Transparent
  667. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  668. Me.Label41.Location = New System.Drawing.Point(384, 358)
  669. Me.Label41.Name = "Label41"
  670. Me.Label41.Size = New System.Drawing.Size(45, 16)
  671. Me.Label41.TabIndex = 1953
  672. Me.Label41.Text = "含稅15"
  673. Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  674. '
  675. 'Label40
  676. '
  677. Me.Label40.AutoSize = True
  678. Me.Label40.BackColor = System.Drawing.Color.Transparent
  679. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  680. Me.Label40.Location = New System.Drawing.Point(384, 339)
  681. Me.Label40.Name = "Label40"
  682. Me.Label40.Size = New System.Drawing.Size(45, 16)
  683. Me.Label40.TabIndex = 1952
  684. Me.Label40.Text = "含稅20"
  685. Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  686. '
  687. 'Label39
  688. '
  689. Me.Label39.AutoSize = True
  690. Me.Label39.BackColor = System.Drawing.Color.Transparent
  691. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  692. Me.Label39.Location = New System.Drawing.Point(384, 263)
  693. Me.Label39.Name = "Label39"
  694. Me.Label39.Size = New System.Drawing.Size(45, 16)
  695. Me.Label39.TabIndex = 1951
  696. Me.Label39.Text = "含稅40"
  697. Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  698. '
  699. 'Label38
  700. '
  701. Me.Label38.AutoSize = True
  702. Me.Label38.BackColor = System.Drawing.Color.Transparent
  703. Me.Label38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  704. Me.Label38.Location = New System.Drawing.Point(384, 320)
  705. Me.Label38.Name = "Label38"
  706. Me.Label38.Size = New System.Drawing.Size(45, 16)
  707. Me.Label38.TabIndex = 1950
  708. Me.Label38.Text = "含稅25"
  709. Me.Label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  710. '
  711. 'Label37
  712. '
  713. Me.Label37.AutoSize = True
  714. Me.Label37.BackColor = System.Drawing.Color.Transparent
  715. Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  716. Me.Label37.Location = New System.Drawing.Point(384, 301)
  717. Me.Label37.Name = "Label37"
  718. Me.Label37.Size = New System.Drawing.Size(45, 16)
  719. Me.Label37.TabIndex = 1949
  720. Me.Label37.Text = "含稅30"
  721. Me.Label37.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  722. '
  723. 'Label36
  724. '
  725. Me.Label36.AutoSize = True
  726. Me.Label36.BackColor = System.Drawing.Color.Transparent
  727. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  728. Me.Label36.Location = New System.Drawing.Point(384, 282)
  729. Me.Label36.Name = "Label36"
  730. Me.Label36.Size = New System.Drawing.Size(45, 16)
  731. Me.Label36.TabIndex = 1948
  732. Me.Label36.Text = "含稅35"
  733. Me.Label36.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  734. '
  735. '更新光標1_bt
  736. '
  737. Me.更新光標1_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Default_Programs
  738. Me.更新光標1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  739. Me.更新光標1_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  740. Me.更新光標1_bt.ForeColor = System.Drawing.Color.Black
  741. Me.更新光標1_bt.Location = New System.Drawing.Point(792, 4)
  742. Me.更新光標1_bt.Name = "更新光標1_bt"
  743. Me.更新光標1_bt.RightToLeft = System.Windows.Forms.RightToLeft.No
  744. Me.更新光標1_bt.Size = New System.Drawing.Size(45, 45)
  745. Me.更新光標1_bt.TabIndex = 1947
  746. Me.更新光標1_bt.UseVisualStyleBackColor = True
  747. '
  748. 'Label35
  749. '
  750. Me.Label35.AutoSize = True
  751. Me.Label35.BackColor = System.Drawing.Color.Transparent
  752. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  753. Me.Label35.Location = New System.Drawing.Point(384, 244)
  754. Me.Label35.Name = "Label35"
  755. Me.Label35.Size = New System.Drawing.Size(43, 16)
  756. Me.Label35.TabIndex = 1946
  757. Me.Label35.Text = "稅金比"
  758. Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  759. '
  760. 'Label34
  761. '
  762. Me.Label34.AutoSize = True
  763. Me.Label34.BackColor = System.Drawing.Color.Transparent
  764. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  765. Me.Label34.Location = New System.Drawing.Point(384, 225)
  766. Me.Label34.Name = "Label34"
  767. Me.Label34.Size = New System.Drawing.Size(55, 16)
  768. Me.Label34.TabIndex = 1945
  769. Me.Label34.Text = "工程總價"
  770. Me.Label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  771. '
  772. 'Label33
  773. '
  774. Me.Label33.AutoSize = True
  775. Me.Label33.BackColor = System.Drawing.Color.Transparent
  776. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  777. Me.Label33.Location = New System.Drawing.Point(384, 206)
  778. Me.Label33.Name = "Label33"
  779. Me.Label33.Size = New System.Drawing.Size(31, 16)
  780. Me.Label33.TabIndex = 1944
  781. Me.Label33.Text = "稅金"
  782. Me.Label33.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  783. '
  784. 'Label32
  785. '
  786. Me.Label32.AutoSize = True
  787. Me.Label32.BackColor = System.Drawing.Color.Transparent
  788. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  789. Me.Label32.Location = New System.Drawing.Point(384, 187)
  790. Me.Label32.Name = "Label32"
  791. Me.Label32.Size = New System.Drawing.Size(43, 16)
  792. Me.Label32.TabIndex = 1943
  793. Me.Label32.Text = "總報價"
  794. Me.Label32.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  795. '
  796. 'Label31
  797. '
  798. Me.Label31.AutoSize = True
  799. Me.Label31.BackColor = System.Drawing.Color.Transparent
  800. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  801. Me.Label31.Location = New System.Drawing.Point(384, 168)
  802. Me.Label31.Name = "Label31"
  803. Me.Label31.Size = New System.Drawing.Size(48, 16)
  804. Me.Label31.TabIndex = 1942
  805. Me.Label31.Text = "立約_日"
  806. Me.Label31.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  807. '
  808. 'Label30
  809. '
  810. Me.Label30.AutoSize = True
  811. Me.Label30.BackColor = System.Drawing.Color.Transparent
  812. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  813. Me.Label30.Location = New System.Drawing.Point(384, 149)
  814. Me.Label30.Name = "Label30"
  815. Me.Label30.Size = New System.Drawing.Size(48, 16)
  816. Me.Label30.TabIndex = 1941
  817. Me.Label30.Text = "立約_月"
  818. Me.Label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  819. '
  820. 'Label29
  821. '
  822. Me.Label29.AutoSize = True
  823. Me.Label29.BackColor = System.Drawing.Color.Transparent
  824. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  825. Me.Label29.Location = New System.Drawing.Point(384, 130)
  826. Me.Label29.Name = "Label29"
  827. Me.Label29.Size = New System.Drawing.Size(48, 16)
  828. Me.Label29.TabIndex = 1940
  829. Me.Label29.Text = "立約_年"
  830. Me.Label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  831. '
  832. 'Label28
  833. '
  834. Me.Label28.AutoSize = True
  835. Me.Label28.BackColor = System.Drawing.Color.Transparent
  836. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  837. Me.Label28.Location = New System.Drawing.Point(384, 111)
  838. Me.Label28.Name = "Label28"
  839. Me.Label28.Size = New System.Drawing.Size(55, 16)
  840. Me.Label28.TabIndex = 1939
  841. Me.Label28.Text = "合約編號"
  842. Me.Label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  843. '
  844. 'Label27
  845. '
  846. Me.Label27.AutoSize = True
  847. Me.Label27.BackColor = System.Drawing.Color.Transparent
  848. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  849. Me.Label27.Location = New System.Drawing.Point(384, 92)
  850. Me.Label27.Name = "Label27"
  851. Me.Label27.Size = New System.Drawing.Size(48, 16)
  852. Me.Label27.TabIndex = 1938
  853. Me.Label27.Text = "名稱_英"
  854. Me.Label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  855. '
  856. 'Label26
  857. '
  858. Me.Label26.AutoSize = True
  859. Me.Label26.BackColor = System.Drawing.Color.Transparent
  860. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  861. Me.Label26.Location = New System.Drawing.Point(384, 73)
  862. Me.Label26.Name = "Label26"
  863. Me.Label26.Size = New System.Drawing.Size(48, 16)
  864. Me.Label26.TabIndex = 1937
  865. Me.Label26.Text = "名稱_中"
  866. Me.Label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  867. '
  868. 'GA21
  869. '
  870. Me.GA21.BorderStyle = System.Windows.Forms.BorderStyle.None
  871. Me.GA21.Location = New System.Drawing.Point(442, 453)
  872. Me.GA21.Name = "GA21"
  873. Me.GA21.Size = New System.Drawing.Size(100, 16)
  874. Me.GA21.TabIndex = 1936
  875. '
  876. 'Label24
  877. '
  878. Me.Label24.AutoSize = True
  879. Me.Label24.BackColor = System.Drawing.Color.Transparent
  880. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  881. Me.Label24.Location = New System.Drawing.Point(548, 454)
  882. Me.Label24.Name = "Label24"
  883. Me.Label24.Size = New System.Drawing.Size(59, 16)
  884. Me.Label24.TabIndex = 1935
  885. Me.Label24.Text = "GA00021"
  886. Me.Label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  887. '
  888. 'GA20
  889. '
  890. Me.GA20.BorderStyle = System.Windows.Forms.BorderStyle.None
  891. Me.GA20.Location = New System.Drawing.Point(442, 434)
  892. Me.GA20.Name = "GA20"
  893. Me.GA20.Size = New System.Drawing.Size(100, 16)
  894. Me.GA20.TabIndex = 1934
  895. '
  896. 'Label25
  897. '
  898. Me.Label25.AutoSize = True
  899. Me.Label25.BackColor = System.Drawing.Color.Transparent
  900. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  901. Me.Label25.Location = New System.Drawing.Point(548, 435)
  902. Me.Label25.Name = "Label25"
  903. Me.Label25.Size = New System.Drawing.Size(59, 16)
  904. Me.Label25.TabIndex = 1933
  905. Me.Label25.Text = "GA00020"
  906. Me.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  907. '
  908. 'GA19
  909. '
  910. Me.GA19.BorderStyle = System.Windows.Forms.BorderStyle.None
  911. Me.GA19.Location = New System.Drawing.Point(442, 415)
  912. Me.GA19.Name = "GA19"
  913. Me.GA19.Size = New System.Drawing.Size(100, 16)
  914. Me.GA19.TabIndex = 1932
  915. '
  916. 'Label17
  917. '
  918. Me.Label17.AutoSize = True
  919. Me.Label17.BackColor = System.Drawing.Color.Transparent
  920. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  921. Me.Label17.Location = New System.Drawing.Point(548, 415)
  922. Me.Label17.Name = "Label17"
  923. Me.Label17.Size = New System.Drawing.Size(59, 16)
  924. Me.Label17.TabIndex = 1931
  925. Me.Label17.Text = "GA00019"
  926. Me.Label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  927. '
  928. 'GA18
  929. '
  930. Me.GA18.BorderStyle = System.Windows.Forms.BorderStyle.None
  931. Me.GA18.Location = New System.Drawing.Point(442, 396)
  932. Me.GA18.Name = "GA18"
  933. Me.GA18.Size = New System.Drawing.Size(100, 16)
  934. Me.GA18.TabIndex = 1930
  935. '
  936. 'Label18
  937. '
  938. Me.Label18.AutoSize = True
  939. Me.Label18.BackColor = System.Drawing.Color.Transparent
  940. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  941. Me.Label18.Location = New System.Drawing.Point(548, 396)
  942. Me.Label18.Name = "Label18"
  943. Me.Label18.Size = New System.Drawing.Size(59, 16)
  944. Me.Label18.TabIndex = 1929
  945. Me.Label18.Text = "GA00018"
  946. Me.Label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  947. '
  948. 'GA17
  949. '
  950. Me.GA17.BorderStyle = System.Windows.Forms.BorderStyle.None
  951. Me.GA17.Location = New System.Drawing.Point(442, 377)
  952. Me.GA17.Name = "GA17"
  953. Me.GA17.Size = New System.Drawing.Size(100, 16)
  954. Me.GA17.TabIndex = 1928
  955. '
  956. 'Label19
  957. '
  958. Me.Label19.AutoSize = True
  959. Me.Label19.BackColor = System.Drawing.Color.Transparent
  960. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  961. Me.Label19.Location = New System.Drawing.Point(548, 377)
  962. Me.Label19.Name = "Label19"
  963. Me.Label19.Size = New System.Drawing.Size(59, 16)
  964. Me.Label19.TabIndex = 1927
  965. Me.Label19.Text = "GA00017"
  966. Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  967. '
  968. 'GA16
  969. '
  970. Me.GA16.BorderStyle = System.Windows.Forms.BorderStyle.None
  971. Me.GA16.Location = New System.Drawing.Point(442, 358)
  972. Me.GA16.Name = "GA16"
  973. Me.GA16.Size = New System.Drawing.Size(100, 16)
  974. Me.GA16.TabIndex = 1926
  975. '
  976. 'Label20
  977. '
  978. Me.Label20.AutoSize = True
  979. Me.Label20.BackColor = System.Drawing.Color.Transparent
  980. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  981. Me.Label20.Location = New System.Drawing.Point(548, 358)
  982. Me.Label20.Name = "Label20"
  983. Me.Label20.Size = New System.Drawing.Size(59, 16)
  984. Me.Label20.TabIndex = 1925
  985. Me.Label20.Text = "GA00016"
  986. Me.Label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  987. '
  988. 'GA15
  989. '
  990. Me.GA15.BorderStyle = System.Windows.Forms.BorderStyle.None
  991. Me.GA15.Location = New System.Drawing.Point(442, 339)
  992. Me.GA15.Name = "GA15"
  993. Me.GA15.Size = New System.Drawing.Size(100, 16)
  994. Me.GA15.TabIndex = 1924
  995. '
  996. 'Label21
  997. '
  998. Me.Label21.AutoSize = True
  999. Me.Label21.BackColor = System.Drawing.Color.Transparent
  1000. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1001. Me.Label21.Location = New System.Drawing.Point(548, 339)
  1002. Me.Label21.Name = "Label21"
  1003. Me.Label21.Size = New System.Drawing.Size(59, 16)
  1004. Me.Label21.TabIndex = 1923
  1005. Me.Label21.Text = "GA00015"
  1006. Me.Label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1007. '
  1008. 'GA14
  1009. '
  1010. Me.GA14.BorderStyle = System.Windows.Forms.BorderStyle.None
  1011. Me.GA14.Location = New System.Drawing.Point(442, 320)
  1012. Me.GA14.Name = "GA14"
  1013. Me.GA14.Size = New System.Drawing.Size(100, 16)
  1014. Me.GA14.TabIndex = 1922
  1015. '
  1016. 'Label22
  1017. '
  1018. Me.Label22.AutoSize = True
  1019. Me.Label22.BackColor = System.Drawing.Color.Transparent
  1020. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1021. Me.Label22.Location = New System.Drawing.Point(548, 320)
  1022. Me.Label22.Name = "Label22"
  1023. Me.Label22.Size = New System.Drawing.Size(59, 16)
  1024. Me.Label22.TabIndex = 1921
  1025. Me.Label22.Text = "GA00014"
  1026. Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1027. '
  1028. 'GA13
  1029. '
  1030. Me.GA13.BorderStyle = System.Windows.Forms.BorderStyle.None
  1031. Me.GA13.Location = New System.Drawing.Point(442, 301)
  1032. Me.GA13.Name = "GA13"
  1033. Me.GA13.Size = New System.Drawing.Size(100, 16)
  1034. Me.GA13.TabIndex = 1920
  1035. '
  1036. 'Label23
  1037. '
  1038. Me.Label23.AutoSize = True
  1039. Me.Label23.BackColor = System.Drawing.Color.Transparent
  1040. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1041. Me.Label23.Location = New System.Drawing.Point(548, 301)
  1042. Me.Label23.Name = "Label23"
  1043. Me.Label23.Size = New System.Drawing.Size(59, 16)
  1044. Me.Label23.TabIndex = 1919
  1045. Me.Label23.Text = "GA00013"
  1046. Me.Label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1047. '
  1048. 'GA12
  1049. '
  1050. Me.GA12.BorderStyle = System.Windows.Forms.BorderStyle.None
  1051. Me.GA12.Location = New System.Drawing.Point(442, 282)
  1052. Me.GA12.Name = "GA12"
  1053. Me.GA12.Size = New System.Drawing.Size(100, 16)
  1054. Me.GA12.TabIndex = 1918
  1055. '
  1056. 'Label10
  1057. '
  1058. Me.Label10.AutoSize = True
  1059. Me.Label10.BackColor = System.Drawing.Color.Transparent
  1060. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1061. Me.Label10.Location = New System.Drawing.Point(548, 282)
  1062. Me.Label10.Name = "Label10"
  1063. Me.Label10.Size = New System.Drawing.Size(59, 16)
  1064. Me.Label10.TabIndex = 1917
  1065. Me.Label10.Text = "GA00012"
  1066. Me.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1067. '
  1068. 'GA11
  1069. '
  1070. Me.GA11.BorderStyle = System.Windows.Forms.BorderStyle.None
  1071. Me.GA11.Location = New System.Drawing.Point(442, 263)
  1072. Me.GA11.Name = "GA11"
  1073. Me.GA11.Size = New System.Drawing.Size(100, 16)
  1074. Me.GA11.TabIndex = 1916
  1075. '
  1076. 'Label12
  1077. '
  1078. Me.Label12.AutoSize = True
  1079. Me.Label12.BackColor = System.Drawing.Color.Transparent
  1080. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1081. Me.Label12.Location = New System.Drawing.Point(548, 263)
  1082. Me.Label12.Name = "Label12"
  1083. Me.Label12.Size = New System.Drawing.Size(59, 16)
  1084. Me.Label12.TabIndex = 1915
  1085. Me.Label12.Text = "GA00011"
  1086. Me.Label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1087. '
  1088. 'GA10
  1089. '
  1090. Me.GA10.BorderStyle = System.Windows.Forms.BorderStyle.None
  1091. Me.GA10.Location = New System.Drawing.Point(442, 244)
  1092. Me.GA10.Name = "GA10"
  1093. Me.GA10.Size = New System.Drawing.Size(100, 16)
  1094. Me.GA10.TabIndex = 1914
  1095. '
  1096. 'Label13
  1097. '
  1098. Me.Label13.AutoSize = True
  1099. Me.Label13.BackColor = System.Drawing.Color.Transparent
  1100. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1101. Me.Label13.Location = New System.Drawing.Point(548, 244)
  1102. Me.Label13.Name = "Label13"
  1103. Me.Label13.Size = New System.Drawing.Size(59, 16)
  1104. Me.Label13.TabIndex = 1913
  1105. Me.Label13.Text = "GA00010"
  1106. Me.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1107. '
  1108. 'GA9
  1109. '
  1110. Me.GA9.BorderStyle = System.Windows.Forms.BorderStyle.None
  1111. Me.GA9.Location = New System.Drawing.Point(442, 225)
  1112. Me.GA9.Name = "GA9"
  1113. Me.GA9.Size = New System.Drawing.Size(100, 16)
  1114. Me.GA9.TabIndex = 1912
  1115. '
  1116. 'Label14
  1117. '
  1118. Me.Label14.AutoSize = True
  1119. Me.Label14.BackColor = System.Drawing.Color.Transparent
  1120. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1121. Me.Label14.Location = New System.Drawing.Point(548, 225)
  1122. Me.Label14.Name = "Label14"
  1123. Me.Label14.Size = New System.Drawing.Size(59, 16)
  1124. Me.Label14.TabIndex = 1911
  1125. Me.Label14.Text = "GA00009"
  1126. Me.Label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1127. '
  1128. 'GA8
  1129. '
  1130. Me.GA8.BorderStyle = System.Windows.Forms.BorderStyle.None
  1131. Me.GA8.Location = New System.Drawing.Point(442, 206)
  1132. Me.GA8.Name = "GA8"
  1133. Me.GA8.Size = New System.Drawing.Size(100, 16)
  1134. Me.GA8.TabIndex = 1910
  1135. '
  1136. 'Label15
  1137. '
  1138. Me.Label15.AutoSize = True
  1139. Me.Label15.BackColor = System.Drawing.Color.Transparent
  1140. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1141. Me.Label15.Location = New System.Drawing.Point(548, 206)
  1142. Me.Label15.Name = "Label15"
  1143. Me.Label15.Size = New System.Drawing.Size(59, 16)
  1144. Me.Label15.TabIndex = 1909
  1145. Me.Label15.Text = "GA00008"
  1146. Me.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1147. '
  1148. 'GA7
  1149. '
  1150. Me.GA7.BorderStyle = System.Windows.Forms.BorderStyle.None
  1151. Me.GA7.Location = New System.Drawing.Point(442, 187)
  1152. Me.GA7.Name = "GA7"
  1153. Me.GA7.Size = New System.Drawing.Size(100, 16)
  1154. Me.GA7.TabIndex = 1908
  1155. '
  1156. 'Label16
  1157. '
  1158. Me.Label16.AutoSize = True
  1159. Me.Label16.BackColor = System.Drawing.Color.Transparent
  1160. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1161. Me.Label16.Location = New System.Drawing.Point(548, 187)
  1162. Me.Label16.Name = "Label16"
  1163. Me.Label16.Size = New System.Drawing.Size(59, 16)
  1164. Me.Label16.TabIndex = 1907
  1165. Me.Label16.Text = "GA00007"
  1166. Me.Label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1167. '
  1168. 'GA6
  1169. '
  1170. Me.GA6.BorderStyle = System.Windows.Forms.BorderStyle.None
  1171. Me.GA6.Location = New System.Drawing.Point(442, 168)
  1172. Me.GA6.Name = "GA6"
  1173. Me.GA6.Size = New System.Drawing.Size(100, 16)
  1174. Me.GA6.TabIndex = 1906
  1175. '
  1176. 'Label7
  1177. '
  1178. Me.Label7.AutoSize = True
  1179. Me.Label7.BackColor = System.Drawing.Color.Transparent
  1180. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1181. Me.Label7.Location = New System.Drawing.Point(548, 168)
  1182. Me.Label7.Name = "Label7"
  1183. Me.Label7.Size = New System.Drawing.Size(59, 16)
  1184. Me.Label7.TabIndex = 1905
  1185. Me.Label7.Text = "GA00006"
  1186. Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1187. '
  1188. 'GA5
  1189. '
  1190. Me.GA5.BorderStyle = System.Windows.Forms.BorderStyle.None
  1191. Me.GA5.Location = New System.Drawing.Point(442, 149)
  1192. Me.GA5.Name = "GA5"
  1193. Me.GA5.Size = New System.Drawing.Size(100, 16)
  1194. Me.GA5.TabIndex = 1904
  1195. '
  1196. 'Label8
  1197. '
  1198. Me.Label8.AutoSize = True
  1199. Me.Label8.BackColor = System.Drawing.Color.Transparent
  1200. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1201. Me.Label8.Location = New System.Drawing.Point(548, 149)
  1202. Me.Label8.Name = "Label8"
  1203. Me.Label8.Size = New System.Drawing.Size(59, 16)
  1204. Me.Label8.TabIndex = 1903
  1205. Me.Label8.Text = "GA00005"
  1206. Me.Label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1207. '
  1208. 'GA4
  1209. '
  1210. Me.GA4.BorderStyle = System.Windows.Forms.BorderStyle.None
  1211. Me.GA4.Location = New System.Drawing.Point(442, 130)
  1212. Me.GA4.Name = "GA4"
  1213. Me.GA4.Size = New System.Drawing.Size(100, 16)
  1214. Me.GA4.TabIndex = 1902
  1215. '
  1216. 'Label9
  1217. '
  1218. Me.Label9.AutoSize = True
  1219. Me.Label9.BackColor = System.Drawing.Color.Transparent
  1220. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1221. Me.Label9.Location = New System.Drawing.Point(548, 130)
  1222. Me.Label9.Name = "Label9"
  1223. Me.Label9.Size = New System.Drawing.Size(59, 16)
  1224. Me.Label9.TabIndex = 1901
  1225. Me.Label9.Text = "GA00004"
  1226. Me.Label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1227. '
  1228. 'GA3
  1229. '
  1230. Me.GA3.BorderStyle = System.Windows.Forms.BorderStyle.None
  1231. Me.GA3.Location = New System.Drawing.Point(442, 111)
  1232. Me.GA3.Name = "GA3"
  1233. Me.GA3.Size = New System.Drawing.Size(100, 16)
  1234. Me.GA3.TabIndex = 1900
  1235. '
  1236. 'Label6
  1237. '
  1238. Me.Label6.AutoSize = True
  1239. Me.Label6.BackColor = System.Drawing.Color.Transparent
  1240. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1241. Me.Label6.Location = New System.Drawing.Point(548, 111)
  1242. Me.Label6.Name = "Label6"
  1243. Me.Label6.Size = New System.Drawing.Size(59, 16)
  1244. Me.Label6.TabIndex = 1899
  1245. Me.Label6.Text = "GA00003"
  1246. Me.Label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1247. '
  1248. 'GA2
  1249. '
  1250. Me.GA2.BorderStyle = System.Windows.Forms.BorderStyle.None
  1251. Me.GA2.Location = New System.Drawing.Point(442, 92)
  1252. Me.GA2.Name = "GA2"
  1253. Me.GA2.Size = New System.Drawing.Size(100, 16)
  1254. Me.GA2.TabIndex = 1898
  1255. '
  1256. 'Label5
  1257. '
  1258. Me.Label5.AutoSize = True
  1259. Me.Label5.BackColor = System.Drawing.Color.Transparent
  1260. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1261. Me.Label5.Location = New System.Drawing.Point(548, 92)
  1262. Me.Label5.Name = "Label5"
  1263. Me.Label5.Size = New System.Drawing.Size(59, 16)
  1264. Me.Label5.TabIndex = 1897
  1265. Me.Label5.Text = "GA00002"
  1266. Me.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1267. '
  1268. 'GA1
  1269. '
  1270. Me.GA1.BorderStyle = System.Windows.Forms.BorderStyle.None
  1271. Me.GA1.Location = New System.Drawing.Point(442, 73)
  1272. Me.GA1.Name = "GA1"
  1273. Me.GA1.Size = New System.Drawing.Size(100, 16)
  1274. Me.GA1.TabIndex = 1896
  1275. '
  1276. 'Label3
  1277. '
  1278. Me.Label3.BackColor = System.Drawing.Color.Transparent
  1279. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1280. Me.Label3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1281. Me.Label3.Location = New System.Drawing.Point(391, 5)
  1282. Me.Label3.Name = "Label3"
  1283. Me.Label3.Size = New System.Drawing.Size(445, 64)
  1284. Me.Label3.TabIndex = 1894
  1285. Me.Label3.Text = "1、GA00001z大小z字體的布林函數(粗體/斜體/下畫線)z顏色" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "例如 : GA00001z19z100zred z是分隔自符" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "2、檔案開頭與結尾" &
  1286. "一定要有空白換行,才不會出問題" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "3、注意合約內容排序,每一頁最尾端,不要有替換的內容,不然很容易出錯誤。"
  1287. '
  1288. 'Label1
  1289. '
  1290. Me.Label1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1291. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1292. Me.Label1.BackColor = System.Drawing.Color.Transparent
  1293. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1294. Me.Label1.ForeColor = System.Drawing.Color.ForestGreen
  1295. Me.Label1.Location = New System.Drawing.Point(316, 44)
  1296. Me.Label1.Name = "Label1"
  1297. Me.Label1.Size = New System.Drawing.Size(62, 426)
  1298. Me.Label1.TabIndex = 1892
  1299. Me.Label1.Text = resources.GetString("Label1.Text")
  1300. Me.Label1.TextAlign = System.Drawing.ContentAlignment.TopCenter
  1301. '
  1302. '刪除範本_bt
  1303. '
  1304. Me.刪除範本_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.GarbageEmpty
  1305. Me.刪除範本_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1306. Me.刪除範本_bt.Location = New System.Drawing.Point(178, 5)
  1307. Me.刪除範本_bt.Name = "刪除範本_bt"
  1308. Me.刪除範本_bt.Size = New System.Drawing.Size(65, 65)
  1309. Me.刪除範本_bt.TabIndex = 1853
  1310. Me.刪除範本_bt.UseVisualStyleBackColor = True
  1311. '
  1312. '範本清單_dgv
  1313. '
  1314. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1315. Me.範本清單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  1316. Me.範本清單_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1317. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1318. Me.範本清單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1319. Me.範本清單_dgv.BackgroundColor = System.Drawing.Color.White
  1320. Me.範本清單_dgv.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  1321. Me.範本清單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1322. Me.範本清單_dgv.Location = New System.Drawing.Point(3, 118)
  1323. Me.範本清單_dgv.Name = "範本清單_dgv"
  1324. Me.範本清單_dgv.RowHeadersWidth = 5
  1325. Me.範本清單_dgv.RowTemplate.Height = 24
  1326. Me.範本清單_dgv.Size = New System.Drawing.Size(307, 426)
  1327. Me.範本清單_dgv.TabIndex = 1852
  1328. '
  1329. '舊合約_ch
  1330. '
  1331. Me.舊合約_ch.AutoSize = True
  1332. Me.舊合約_ch.Location = New System.Drawing.Point(138, 71)
  1333. Me.舊合約_ch.Name = "舊合約_ch"
  1334. Me.舊合約_ch.Size = New System.Drawing.Size(62, 20)
  1335. Me.舊合約_ch.TabIndex = 1851
  1336. Me.舊合約_ch.Text = "舊合約"
  1337. Me.舊合約_ch.UseVisualStyleBackColor = True
  1338. '
  1339. '範本_ch
  1340. '
  1341. Me.範本_ch.AutoSize = True
  1342. Me.範本_ch.Location = New System.Drawing.Point(3, 71)
  1343. Me.範本_ch.Name = "範本_ch"
  1344. Me.範本_ch.Size = New System.Drawing.Size(50, 20)
  1345. Me.範本_ch.TabIndex = 1850
  1346. Me.範本_ch.Text = "範本"
  1347. Me.範本_ch.UseVisualStyleBackColor = True
  1348. '
  1349. '合約名稱_tb
  1350. '
  1351. Me.合約名稱_tb.Location = New System.Drawing.Point(108, 93)
  1352. Me.合約名稱_tb.Name = "合約名稱_tb"
  1353. Me.合約名稱_tb.Size = New System.Drawing.Size(202, 23)
  1354. Me.合約名稱_tb.TabIndex = 1849
  1355. '
  1356. '範本名稱_lb
  1357. '
  1358. Me.範本名稱_lb.BackColor = System.Drawing.Color.Transparent
  1359. Me.範本名稱_lb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1360. Me.範本名稱_lb.Location = New System.Drawing.Point(6, 95)
  1361. Me.範本名稱_lb.Name = "範本名稱_lb"
  1362. Me.範本名稱_lb.Size = New System.Drawing.Size(99, 20)
  1363. Me.範本名稱_lb.TabIndex = 1848
  1364. Me.範本名稱_lb.Text = "Template Name"
  1365. Me.範本名稱_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1366. '
  1367. '範本存檔_bt
  1368. '
  1369. Me.範本存檔_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER
  1370. Me.範本存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1371. Me.範本存檔_bt.Location = New System.Drawing.Point(70, 4)
  1372. Me.範本存檔_bt.Name = "範本存檔_bt"
  1373. Me.範本存檔_bt.Size = New System.Drawing.Size(65, 65)
  1374. Me.範本存檔_bt.TabIndex = 1847
  1375. Me.範本存檔_bt.UseVisualStyleBackColor = True
  1376. '
  1377. '輸出word_bt
  1378. '
  1379. Me.輸出word_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.word2
  1380. Me.輸出word_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1381. Me.輸出word_bt.Location = New System.Drawing.Point(245, 5)
  1382. Me.輸出word_bt.Name = "輸出word_bt"
  1383. Me.輸出word_bt.Size = New System.Drawing.Size(65, 65)
  1384. Me.輸出word_bt.TabIndex = 3
  1385. Me.輸出word_bt.UseVisualStyleBackColor = True
  1386. '
  1387. '導入word_bt
  1388. '
  1389. Me.導入word_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.word1
  1390. Me.導入word_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1391. Me.導入word_bt.Location = New System.Drawing.Point(3, 4)
  1392. Me.導入word_bt.Name = "導入word_bt"
  1393. Me.導入word_bt.Size = New System.Drawing.Size(65, 65)
  1394. Me.導入word_bt.TabIndex = 0
  1395. Me.導入word_bt.UseVisualStyleBackColor = True
  1396. '
  1397. 'Label2
  1398. '
  1399. Me.Label2.BackColor = System.Drawing.Color.Transparent
  1400. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1401. Me.Label2.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1402. Me.Label2.Location = New System.Drawing.Point(321, 3)
  1403. Me.Label2.Name = "Label2"
  1404. Me.Label2.Size = New System.Drawing.Size(53, 40)
  1405. Me.Label2.TabIndex = 1893
  1406. Me.Label2.Text = "字體設定對照"
  1407. Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1408. '
  1409. 'Label4
  1410. '
  1411. Me.Label4.AutoSize = True
  1412. Me.Label4.BackColor = System.Drawing.Color.Transparent
  1413. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1414. Me.Label4.Location = New System.Drawing.Point(548, 73)
  1415. Me.Label4.Name = "Label4"
  1416. Me.Label4.Size = New System.Drawing.Size(59, 16)
  1417. Me.Label4.TabIndex = 1895
  1418. Me.Label4.Text = "GA00001"
  1419. Me.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight
  1420. '
  1421. '高級編輯_lb
  1422. '
  1423. Me.高級編輯_lb.AutoSize = True
  1424. Me.高級編輯_lb.Location = New System.Drawing.Point(5, 7)
  1425. Me.高級編輯_lb.Name = "高級編輯_lb"
  1426. Me.高級編輯_lb.Size = New System.Drawing.Size(67, 16)
  1427. Me.高級編輯_lb.TabIndex = 1375
  1428. Me.高級編輯_lb.Text = "日報表編輯"
  1429. '
  1430. 'CanceL2_bt
  1431. '
  1432. Me.CanceL2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1433. Me.CanceL2_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
  1434. Me.CanceL2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1435. Me.CanceL2_bt.ForeColor = System.Drawing.Color.Black
  1436. Me.CanceL2_bt.Location = New System.Drawing.Point(819, 2)
  1437. Me.CanceL2_bt.Name = "CanceL2_bt"
  1438. Me.CanceL2_bt.Size = New System.Drawing.Size(26, 26)
  1439. Me.CanceL2_bt.TabIndex = 1374
  1440. Me.CanceL2_bt.Text = "X"
  1441. Me.CanceL2_bt.UseVisualStyleBackColor = False
  1442. '
  1443. 'Panel4
  1444. '
  1445. Me.Panel4.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1446. Or System.Windows.Forms.AnchorStyles.Left) _
  1447. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1448. Me.Panel4.Controls.Add(Me.視窗2_pl)
  1449. Me.Panel4.Controls.Add(Me.更新合約_bt)
  1450. Me.Panel4.Controls.Add(Me.取消_bt)
  1451. Me.Panel4.Controls.Add(Me.合約編號_tb)
  1452. Me.Panel4.Controls.Add(Me.存檔_bt)
  1453. Me.Panel4.Controls.Add(Me.Panel1)
  1454. Me.Panel4.Controls.Add(Me.縮放2_bt)
  1455. Me.Panel4.Controls.Add(Me.編輯_bt)
  1456. Me.Panel4.Controls.Add(Me.合約_dgv)
  1457. Me.Panel4.Controls.Add(Me.合約編號1_cb)
  1458. Me.Panel4.Controls.Add(Me.Word控制項)
  1459. Me.Panel4.Controls.Add(Me.Label11)
  1460. Me.Panel4.Controls.Add(Me.讀取範本_bt)
  1461. Me.Panel4.Controls.Add(Me.RadRichTextEditorRuler1)
  1462. Me.Panel4.Location = New System.Drawing.Point(-1, -1)
  1463. Me.Panel4.Name = "Panel4"
  1464. Me.Panel4.Size = New System.Drawing.Size(1463, 715)
  1465. Me.Panel4.TabIndex = 1892
  1466. '
  1467. '更新合約_bt
  1468. '
  1469. Me.更新合約_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Default_Programs
  1470. Me.更新合約_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1471. Me.更新合約_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1472. Me.更新合約_bt.ForeColor = System.Drawing.Color.Black
  1473. Me.更新合約_bt.Location = New System.Drawing.Point(95, 48)
  1474. Me.更新合約_bt.Name = "更新合約_bt"
  1475. Me.更新合約_bt.RightToLeft = System.Windows.Forms.RightToLeft.No
  1476. Me.更新合約_bt.Size = New System.Drawing.Size(45, 45)
  1477. Me.更新合約_bt.TabIndex = 1895
  1478. Me.更新合約_bt.UseVisualStyleBackColor = True
  1479. '
  1480. '取消_bt
  1481. '
  1482. Me.取消_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.Close
  1483. Me.取消_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1484. Me.取消_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1485. Me.取消_bt.ForeColor = System.Drawing.Color.Black
  1486. Me.取消_bt.Location = New System.Drawing.Point(141, 48)
  1487. Me.取消_bt.Name = "取消_bt"
  1488. Me.取消_bt.RightToLeft = System.Windows.Forms.RightToLeft.No
  1489. Me.取消_bt.Size = New System.Drawing.Size(45, 45)
  1490. Me.取消_bt.TabIndex = 1894
  1491. Me.取消_bt.UseVisualStyleBackColor = True
  1492. '
  1493. '合約編號_tb
  1494. '
  1495. Me.合約編號_tb.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1496. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1497. Me.合約編號_tb.BackColor = System.Drawing.SystemColors.ControlLight
  1498. Me.合約編號_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
  1499. Me.合約編號_tb.Location = New System.Drawing.Point(342, 3)
  1500. Me.合約編號_tb.Multiline = True
  1501. Me.合約編號_tb.Name = "合約編號_tb"
  1502. Me.合約編號_tb.Size = New System.Drawing.Size(1118, 28)
  1503. Me.合約編號_tb.TabIndex = 1893
  1504. Me.合約編號_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1505. '
  1506. '存檔_bt
  1507. '
  1508. Me.存檔_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.SAVER
  1509. Me.存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1510. Me.存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1511. Me.存檔_bt.ForeColor = System.Drawing.Color.Black
  1512. Me.存檔_bt.Location = New System.Drawing.Point(141, 3)
  1513. Me.存檔_bt.Name = "存檔_bt"
  1514. Me.存檔_bt.RightToLeft = System.Windows.Forms.RightToLeft.No
  1515. Me.存檔_bt.Size = New System.Drawing.Size(45, 45)
  1516. Me.存檔_bt.TabIndex = 1892
  1517. Me.存檔_bt.UseVisualStyleBackColor = True
  1518. '
  1519. '縮放2_bt
  1520. '
  1521. Me.縮放2_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.ZOOM01
  1522. Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1523. Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1524. Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
  1525. Me.縮放2_bt.Location = New System.Drawing.Point(3, 3)
  1526. Me.縮放2_bt.Name = "縮放2_bt"
  1527. Me.縮放2_bt.Size = New System.Drawing.Size(45, 45)
  1528. Me.縮放2_bt.TabIndex = 1789
  1529. Me.縮放2_bt.UseVisualStyleBackColor = True
  1530. '
  1531. '編輯_bt
  1532. '
  1533. Me.編輯_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.setup
  1534. Me.編輯_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1535. Me.編輯_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1536. Me.編輯_bt.ForeColor = System.Drawing.Color.Black
  1537. Me.編輯_bt.Location = New System.Drawing.Point(95, 3)
  1538. Me.編輯_bt.Name = "編輯_bt"
  1539. Me.編輯_bt.RightToLeft = System.Windows.Forms.RightToLeft.No
  1540. Me.編輯_bt.Size = New System.Drawing.Size(45, 45)
  1541. Me.編輯_bt.TabIndex = 1890
  1542. Me.編輯_bt.UseVisualStyleBackColor = True
  1543. '
  1544. 'Word控制項
  1545. '
  1546. Me.Word控制項.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  1547. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1548. Me.Word控制項.ApplicationMenuStyle = Telerik.WinControls.UI.ApplicationMenuStyle.BackstageView
  1549. Me.Word控制項.AssociatedRichTextEditor = Me.Word文本框
  1550. Me.Word控制項.BuiltInStylesVersion = Telerik.WinForms.Documents.Model.Styles.BuiltInStylesVersion.Office2013
  1551. Me.Word控制項.Dock = System.Windows.Forms.DockStyle.None
  1552. Me.Word控制項.EnableKeyMap = False
  1553. Me.Word控制項.Location = New System.Drawing.Point(190, 3)
  1554. Me.Word控制項.Name = "Word控制項"
  1555. Me.Word控制項.ShowLayoutModeButton = True
  1556. Me.Word控制項.Size = New System.Drawing.Size(1272, 166)
  1557. Me.Word控制項.TabIndex = 1
  1558. Me.Word控制項.TabStop = False
  1559. Me.Word控制項.Text = "合約文本_Word"
  1560. CType(Me.Word控制項.GetChildAt(0), Telerik.WinControls.UI.RadRibbonBarElement).Text = "合約文本_Word"
  1561. CType(Me.Word控制項.GetChildAt(0).GetChildAt(6).GetChildAt(2), Telerik.WinControls.UI.RadToggleButtonElement).Alignment = System.Drawing.ContentAlignment.BottomCenter
  1562. '
  1563. '讀取範本_bt
  1564. '
  1565. Me.讀取範本_bt.BackgroundImage = Global.HX_PGS_ERP_SYS.My.Resources.Resources.folder_templates
  1566. Me.讀取範本_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
  1567. Me.讀取範本_bt.Location = New System.Drawing.Point(49, 3)
  1568. Me.讀取範本_bt.Name = "讀取範本_bt"
  1569. Me.讀取範本_bt.Size = New System.Drawing.Size(45, 45)
  1570. Me.讀取範本_bt.TabIndex = 4
  1571. Me.讀取範本_bt.UseVisualStyleBackColor = True
  1572. '
  1573. '自動存檔
  1574. '
  1575. Me.自動存檔.Interval = 600000
  1576. '
  1577. '自動存檔_ch
  1578. '
  1579. Me.自動存檔_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1580. Me.自動存檔_ch.AutoSize = True
  1581. Me.自動存檔_ch.BackColor = System.Drawing.SystemColors.ControlLight
  1582. Me.自動存檔_ch.Location = New System.Drawing.Point(1298, 5)
  1583. Me.自動存檔_ch.Name = "自動存檔_ch"
  1584. Me.自動存檔_ch.Size = New System.Drawing.Size(158, 20)
  1585. Me.自動存檔_ch.TabIndex = 1893
  1586. Me.自動存檔_ch.Text = "Penyimpanan Otomatis"
  1587. Me.自動存檔_ch.UseVisualStyleBackColor = False
  1588. '
  1589. '合約文本_Word
  1590. '
  1591. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  1592. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  1593. Me.ClientSize = New System.Drawing.Size(1461, 712)
  1594. Me.Controls.Add(Me.自動存檔_ch)
  1595. Me.Controls.Add(Me.Panel4)
  1596. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1597. Me.Margin = New System.Windows.Forms.Padding(4)
  1598. Me.MaximizeBox = False
  1599. Me.MinimizeBox = False
  1600. Me.Name = "合約文本_Word"
  1601. Me.Text = "合約文本_Word"
  1602. CType(Me.Word文本框, System.ComponentModel.ISupportInitialize).EndInit()
  1603. CType(Me.RadRichTextEditorRuler1, System.ComponentModel.ISupportInitialize).EndInit()
  1604. Me.RadRichTextEditorRuler1.ResumeLayout(False)
  1605. Me.Panel1.ResumeLayout(False)
  1606. Me.Panel1.PerformLayout()
  1607. CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1608. CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1609. Me.視窗2_pl.ResumeLayout(False)
  1610. Me.視窗2_pl.PerformLayout()
  1611. Me.Panel3.ResumeLayout(False)
  1612. Me.Panel3.PerformLayout()
  1613. CType(Me.範本清單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  1614. Me.Panel4.ResumeLayout(False)
  1615. Me.Panel4.PerformLayout()
  1616. CType(Me.Word控制項, System.ComponentModel.ISupportInitialize).EndInit()
  1617. Me.ResumeLayout(False)
  1618. Me.PerformLayout()
  1619. End Sub
  1620. Friend WithEvents Word文本框 As Telerik.WinControls.UI.RadRichTextEditor
  1621. Friend WithEvents Word控制項 As Telerik.WinControls.UI.RichTextEditorRibbonBar
  1622. Friend WithEvents 導入word_bt As Button
  1623. Friend WithEvents 檔案路徑_tb As TextBox
  1624. Friend WithEvents 輸出word_bt As Button
  1625. Friend WithEvents OpenFileDialog1 As OpenFileDialog
  1626. Friend WithEvents RadThemeManager1 As Telerik.WinControls.RadThemeManager
  1627. Friend WithEvents RadRichTextEditorRuler1 As Telerik.WinControls.UI.RadRichTextEditorRuler
  1628. Friend WithEvents Panel1 As Panel
  1629. Friend WithEvents 讀取範本_bt As Button
  1630. Friend WithEvents 合約_dgv As DataGridView
  1631. Friend WithEvents 合約編號1_cb As ComboBox
  1632. Friend WithEvents Label11 As Label
  1633. Friend WithEvents 縮放2_bt As Button
  1634. Friend WithEvents 計算分流 As Timer
  1635. Friend WithEvents 語言_dgv As DataGridView
  1636. Friend WithEvents Column1 As DataGridViewTextBoxColumn
  1637. Friend WithEvents Column2 As DataGridViewTextBoxColumn
  1638. Friend WithEvents 語轉扭_bt As Button
  1639. Friend WithEvents ToolTip1 As ToolTip
  1640. Friend WithEvents 編輯_bt As Button
  1641. Friend WithEvents 視窗2_pl As Panel
  1642. Friend WithEvents Panel3 As Panel
  1643. Friend WithEvents 高級編輯_lb As Label
  1644. Friend WithEvents CanceL2_bt As Button
  1645. Friend WithEvents 範本存檔_bt As Button
  1646. Friend WithEvents Panel4 As Panel
  1647. Friend WithEvents 合約狀態_tb As TextBox
  1648. Friend WithEvents 舊合約_ch As CheckBox
  1649. Friend WithEvents 範本_ch As CheckBox
  1650. Friend WithEvents 合約名稱_tb As TextBox
  1651. Friend WithEvents 範本名稱_lb As Label
  1652. Friend WithEvents 存檔日期_dtp As DateTimePicker
  1653. Friend WithEvents 範本清單_dgv As DataGridView
  1654. Friend WithEvents 刪除範本_bt As Button
  1655. Friend WithEvents 存檔_bt As Button
  1656. Friend WithEvents 合約編號_tb As TextBox
  1657. Friend WithEvents 自動存檔 As Timer
  1658. Friend WithEvents 自動存檔_ch As CheckBox
  1659. Friend WithEvents 更新光標_bt As Button
  1660. Friend WithEvents Label1 As Label
  1661. Friend WithEvents Label2 As Label
  1662. Friend WithEvents Label3 As Label
  1663. Friend WithEvents Label4 As Label
  1664. Friend WithEvents GA21 As TextBox
  1665. Friend WithEvents Label24 As Label
  1666. Friend WithEvents GA20 As TextBox
  1667. Friend WithEvents Label25 As Label
  1668. Friend WithEvents GA19 As TextBox
  1669. Friend WithEvents Label17 As Label
  1670. Friend WithEvents GA18 As TextBox
  1671. Friend WithEvents Label18 As Label
  1672. Friend WithEvents GA17 As TextBox
  1673. Friend WithEvents Label19 As Label
  1674. Friend WithEvents GA16 As TextBox
  1675. Friend WithEvents Label20 As Label
  1676. Friend WithEvents GA15 As TextBox
  1677. Friend WithEvents Label21 As Label
  1678. Friend WithEvents GA14 As TextBox
  1679. Friend WithEvents Label22 As Label
  1680. Friend WithEvents GA13 As TextBox
  1681. Friend WithEvents Label23 As Label
  1682. Friend WithEvents GA12 As TextBox
  1683. Friend WithEvents Label10 As Label
  1684. Friend WithEvents GA11 As TextBox
  1685. Friend WithEvents Label12 As Label
  1686. Friend WithEvents GA10 As TextBox
  1687. Friend WithEvents Label13 As Label
  1688. Friend WithEvents GA9 As TextBox
  1689. Friend WithEvents Label14 As Label
  1690. Friend WithEvents GA8 As TextBox
  1691. Friend WithEvents Label15 As Label
  1692. Friend WithEvents GA7 As TextBox
  1693. Friend WithEvents Label16 As Label
  1694. Friend WithEvents GA6 As TextBox
  1695. Friend WithEvents Label7 As Label
  1696. Friend WithEvents GA5 As TextBox
  1697. Friend WithEvents Label8 As Label
  1698. Friend WithEvents GA4 As TextBox
  1699. Friend WithEvents Label9 As Label
  1700. Friend WithEvents GA3 As TextBox
  1701. Friend WithEvents Label6 As Label
  1702. Friend WithEvents GA2 As TextBox
  1703. Friend WithEvents Label5 As Label
  1704. Friend WithEvents GA1 As TextBox
  1705. Friend WithEvents Label26 As Label
  1706. Friend WithEvents Label35 As Label
  1707. Friend WithEvents Label34 As Label
  1708. Friend WithEvents Label33 As Label
  1709. Friend WithEvents Label32 As Label
  1710. Friend WithEvents Label31 As Label
  1711. Friend WithEvents Label30 As Label
  1712. Friend WithEvents Label29 As Label
  1713. Friend WithEvents Label28 As Label
  1714. Friend WithEvents Label27 As Label
  1715. Friend WithEvents 更新光標1_bt As Button
  1716. Friend WithEvents 取消_bt As Button
  1717. Friend WithEvents 更新合約_bt As Button
  1718. Friend WithEvents Label44 As Label
  1719. Friend WithEvents Label45 As Label
  1720. Friend WithEvents Label46 As Label
  1721. Friend WithEvents Label47 As Label
  1722. Friend WithEvents Label48 As Label
  1723. Friend WithEvents Label49 As Label
  1724. Friend WithEvents Label50 As Label
  1725. Friend WithEvents Label51 As Label
  1726. Friend WithEvents Label43 As Label
  1727. Friend WithEvents Label42 As Label
  1728. Friend WithEvents Label41 As Label
  1729. Friend WithEvents Label40 As Label
  1730. Friend WithEvents Label39 As Label
  1731. Friend WithEvents Label38 As Label
  1732. Friend WithEvents Label37 As Label
  1733. Friend WithEvents Label36 As Label
  1734. Friend WithEvents Label56 As Label
  1735. Friend WithEvents Label55 As Label
  1736. Friend WithEvents Label54 As Label
  1737. Friend WithEvents Label53 As Label
  1738. Friend WithEvents Label52 As Label
  1739. Friend WithEvents GA26 As TextBox
  1740. Friend WithEvents GA25 As TextBox
  1741. Friend WithEvents GA24 As TextBox
  1742. Friend WithEvents GA23 As TextBox
  1743. Friend WithEvents GA22 As TextBox
  1744. End Class