Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

HX-PGS-UPDATE.vb 58KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. Imports System.IO
  2. Imports System.Net
  3. Imports System.Text
  4. Imports System.Net.NetworkInformation
  5. Public Class HX_PGS_UPDATE
  6. ReadOnly ds2 As New DataSet
  7. ReadOnly computerProperties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
  8. ReadOnly IPEndPoint() As EndPoint = computerProperties.GetActiveTcpListeners()
  9. Dim myIPEndPoint As IPEndPoint
  10. Dim 內網線路, 開發線路, 刪除完成, OK1, OK2, OK3, OK4, OK5, OK6, OK7, OK8, OK9, OK10 As Boolean
  11. Dim Str As String = Application.StartupPath
  12. Dim TF, FS1 As String : Dim 標 As String = "SYS-UPDATE........"
  13. Private Sub HX_PGS_UPDATE_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  14. Dim strDirName As String : Dim Strs As String = Application.StartupPath
  15. If File.Exists(Strs & "\OPUPDATE.txt") Then : File.Delete(Strs & "\OPUPDATE.txt") : End If
  16. strDirName = Strs & "\OPUPDATE.txt"
  17. Try
  18. Using fs As IO.FileStream = New IO.FileStream(strDirName, FileMode.Append)
  19. Using sw As StreamWriter = New StreamWriter(fs, Encoding.Default)
  20. Dim str1 As String = "..."
  21. sw.WriteLine(str1) '插入一整行
  22. sw.Flush()
  23. End Using
  24. End Using
  25. Catch ex As Exception
  26. End Try
  27. '----------判斷是否有更新指定檔案-------------------------------------------------------------------------------------
  28. If File.Exists(Strs & "\HXUPDATE.txt") Then : Else
  29. strDirName = Strs & "\HXUPDATE.txt"
  30. Try
  31. Using fs As IO.FileStream = New IO.FileStream(strDirName, FileMode.Append)
  32. Using sw As StreamWriter = New StreamWriter(fs, Encoding.Default)
  33. Dim strk As String = "3"
  34. sw.WriteLine(strk) '插入一整行
  35. sw.Flush()
  36. End Using
  37. End Using
  38. Catch ex As Exception
  39. End Try
  40. End If
  41. 登入人IP = "36.64.59.26,2433" : Target = "https://gcm-smart.com/ERP/HX-PGS/"
  42. '----------讀取更新指定檔案-------------------------------------------------------------------------------------
  43. Dim Str As String = Application.StartupPath
  44. If File.Exists(Str + "\HXUPDATE.txt") Then
  45. Dim filereader = My.Computer.FileSystem.OpenTextFileReader(Str + "\HXUPDATE.txt", System.Text.Encoding.Default)
  46. Dim Text As String = "" : Dim line As String = filereader.ReadLine()
  47. While Not (line Is Nothing) : Text = Text & line & vbCrLf : line = filereader.ReadLine() : End While : filereader.Close()
  48. If Strings.Left(Text, 1) = "1" Then
  49. 小更新_ch.Checked = True : 中更新_ch.Checked = False : 大更新_ch.Checked = False : 資料數 = 4
  50. ElseIf Strings.Left(Text, 1) = "2" Then
  51. 小更新_ch.Checked = False : 中更新_ch.Checked = True : 大更新_ch.Checked = False : 資料數 = 70
  52. ElseIf Strings.Left(Text, 1) = "3" Then
  53. 小更新_ch.Checked = False : 中更新_ch.Checked = False : 大更新_ch.Checked = True : 資料數 = 226
  54. End If
  55. End If
  56. End Sub
  57. Private Sub HX_PGS_UPDATE_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
  58. If 小更新_ch.Checked = True Then
  59. 刪除完成 = True : 小更新.Enabled = True
  60. ElseIf 中更新_ch.Checked = True Then
  61. 刪除完成 = True : 中更新.Enabled = True
  62. ElseIf 大更新_ch.Checked = True Then
  63. 刪除所有檔案.Enabled = True : 大更新.Enabled = True
  64. End If
  65. '--- 開啟專案---------------------------------------------------------------------------------------------------------------------------
  66. OK.Enabled = True
  67. End Sub
  68. Private Sub 小更新_Tick(sender As Object, e As EventArgs) Handles 小更新.Tick
  69. If 刪除完成 = True Then
  70. 小更新.Enabled = False
  71. 主程式更新.Enabled = True : OK2 = True : OK3 = True : OK4 = True : OK5 = True : OK6 = True : OK7 = True : OK8 = True : OK9 = True : OK10 = True
  72. End If
  73. End Sub
  74. Private Sub 中更新_Tick(sender As Object, e As EventArgs) Handles 中更新.Tick
  75. If 刪除完成 = True Then
  76. 中更新.Enabled = False
  77. '--- 刪除在下載---------------------------------------------------------------------------------------------------------------------------
  78. 主程式更新.Enabled = True : 刪除在下載.Enabled = True
  79. '--- 比對下載---------------------------------------------------------------------------------------------------------------------------
  80. 驗證存在1.Enabled = True : 驗證存在2.Enabled = True : 驗證存在3.Enabled = True : 驗證存在4.Enabled = True : 驗證存在5.Enabled = True
  81. 驗證存在6.Enabled = True : 驗證存在7.Enabled = True : OK10 = True
  82. End If
  83. End Sub
  84. Private Sub 大更新_Tick(sender As Object, e As EventArgs) Handles 大更新.Tick
  85. If 刪除完成 = True Then
  86. 大更新.Enabled = False
  87. '--- 刪除在下載---------------------------------------------------------------------------------------------------------------------------
  88. 主程式更新.Enabled = True : 刪除在下載.Enabled = True
  89. '--- 比對下載---------------------------------------------------------------------------------------------------------------------------
  90. 驗證存在1.Enabled = True : 驗證存在2.Enabled = True : 驗證存在3.Enabled = True : 驗證存在4.Enabled = True : 驗證存在5.Enabled = True
  91. 驗證存在6.Enabled = True : 驗證存在7.Enabled = True
  92. End If
  93. End Sub
  94. Public Sub Delay(ByRef Interval As Double) 'Interval单位为毫秒
  95. Dim time As DateTime = DateTime.Now
  96. Dim Span As Double = Interval * 1234
  97. While ((DateTime.Now.Ticks - time.Ticks) < Span)
  98. Application.DoEvents()
  99. End While
  100. End Sub
  101. Private Sub OK_Tick(sender As Object, e As EventArgs) Handles OK.Tick
  102. If OK1 = True And OK2 = True And OK3 = True And OK4 = True And OK5 = True And OK6 = True And OK7 = True And OK8 = True And OK9 = True And OK10 = True Then
  103. OK.Enabled = False : CheckBox11.Checked = True : Dim FS1 As String
  104. FS1 = "HXUPDATE.txt" : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If
  105. Shell(Str + "\HX-PGS-ERP-SYS.exe", vbNormalFocus) : Me.Close()
  106. End If
  107. End Sub
  108. Private Sub 更新路徑01()
  109. Me.Text = 標 & TF & FS1 : My.Computer.Network.DownloadFile(Target & FS1, Str & "\" & FS1)
  110. End Sub
  111. Private Sub 更新路徑02()
  112. Me.Text = 標 & TF & FS1 : My.Computer.Network.DownloadFile(Target & "de/" & FS1, Str & "\de\" & FS1)
  113. End Sub
  114. Private Sub 更新路徑03()
  115. Me.Text = 標 & TF & FS1 : My.Computer.Network.DownloadFile(Target & "DawnCache/" & FS1, Str & "\DawnCache\" & FS1)
  116. End Sub
  117. Private Sub 更新路徑04()
  118. Me.Text = 標 & TF & FS1 : My.Computer.Network.DownloadFile(Target & "GPUCache/" & FS1, Str & "\GPUCache\" & FS1)
  119. End Sub
  120. Private Sub 更新路徑05()
  121. Me.Text = 標 & TF & FS1 : My.Computer.Network.DownloadFile(Target & "locales/" & FS1, Str & "\locales\" & FS1)
  122. End Sub
  123. Private Sub 主程式更新_Tick(sender As Object, e As EventArgs) Handles 主程式更新.Tick
  124. Dim 已開啟 As Boolean = False : Dim Strs As String = Application.StartupPath
  125. '-------------------刪除重新下載-------------------------------------------------------------------------------------------
  126. MyModule1.進度條() : FS1 = "LANGUAGE_FILE.csv" : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If : 更新路徑01()
  127. '-------------------沒找到就下載-------------------------------------------------------------------------------------------
  128. FS1 = "TOKEN.pdf" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  129. FS1 = "HXBWLOG.png" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  130. FS1 = "PGSBWLOG.PNG" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  131. FS1 = "CefSharp.BrowserSubprocess.Core.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  132. FS1 = "CefSharp.BrowserSubprocess.Core.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  133. FS1 = "CefSharp.BrowserSubprocess.exe" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  134. FS1 = "CefSharp.BrowserSubprocess.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  135. FS1 = "CefSharp.Core.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  136. FS1 = "CefSharp.Core.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  137. FS1 = "CefSharp.Core.Runtime.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  138. FS1 = "CefSharp.Core.Runtime.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  139. FS1 = "CefSharp.Core.Runtime.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  140. FS1 = "CefSharp.Core.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  141. FS1 = "CefSharp.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  142. FS1 = "CefSharp.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  143. FS1 = "CefSharp.WinForms.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  144. FS1 = "CefSharp.WinForms.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  145. FS1 = "CefSharp.WinForms.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  146. FS1 = "CefSharp.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  147. FS1 = "chrome_100_percent.pak" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  148. FS1 = "chrome_200_percent.pak" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  149. FS1 = "chrome_elf.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  150. FS1 = "d3dcompiler_47.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  151. FS1 = "DocumentFormat.OpenXml.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  152. FS1 = "DocumentFormat.OpenXml.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  153. FS1 = "icudtl.dat" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  154. FS1 = "libcef.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  155. FS1 = "libEGL.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  156. FS1 = "libGLESv2.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  157. FS1 = "LICENSE.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  158. FS1 = "README.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  159. FS1 = "resources.pak" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  160. FS1 = "snapshot_blob.bin" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  161. FS1 = "v8_context_snapshot.bin" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  162. FS1 = "vk_swiftshader.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  163. FS1 = "vk_swiftshader_icd.json" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  164. FS1 = "vulkan-1.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  165. FS1 = "PdfSharp.Charting.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  166. FS1 = "PdfSharp.Charting.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  167. FS1 = "PdfSharp.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  168. FS1 = "PdfSharp.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  169. MyModule1.進度條() : If Dir(Str + "\de", vbDirectory) <> "" Then : Else : MkDir(Str + "\de") : End If
  170. FS1 = "PdfSharp.Charting.resources.dll" : MyModule1.進度條() : If File.Exists(Str & "\de\" & FS1) Then : Else : 更新路徑02() : End If
  171. FS1 = "PdfSharp.resources.dll" : MyModule1.進度條() : If File.Exists(Str & "\de\" & FS1) Then : Else : 更新路徑02() : End If
  172. MyModule1.進度條() : If Dir(Str + "\DawnCache", vbDirectory) <> "" Then : Else : MkDir(Str + "\DawnCache") : End If
  173. FS1 = "data_0" : MyModule1.進度條() : If File.Exists(Str & "\DawnCache\" & FS1) Then : Else : 更新路徑03() : End If
  174. FS1 = "data_1" : MyModule1.進度條() : If File.Exists(Str & "\DawnCache\" & FS1) Then : Else : 更新路徑03() : End If
  175. FS1 = "data_2" : MyModule1.進度條() : If File.Exists(Str & "\DawnCache\" & FS1) Then : Else : 更新路徑03() : End If
  176. FS1 = "data_3" : MyModule1.進度條() : If File.Exists(Str & "\DawnCache\" & FS1) Then : Else : 更新路徑03() : End If
  177. FS1 = "index" : MyModule1.進度條() : If File.Exists(Str & "\DawnCache\" & FS1) Then : Else : 更新路徑03() : End If
  178. MyModule1.進度條() : If Dir(Str + "\GPUCache", vbDirectory) <> "" Then : Else : MkDir(Str + "\GPUCache") : End If
  179. FS1 = "data_0" : MyModule1.進度條() : If File.Exists(Str & "\GPUCache\" & FS1) Then : Else : 更新路徑04() : End If
  180. FS1 = "data_1" : MyModule1.進度條() : If File.Exists(Str & "\GPUCache\" & FS1) Then : Else : 更新路徑04() : End If
  181. FS1 = "data_2" : MyModule1.進度條() : If File.Exists(Str & "\GPUCache\" & FS1) Then : Else : 更新路徑04() : End If
  182. FS1 = "data_3" : MyModule1.進度條() : If File.Exists(Str & "\GPUCache\" & FS1) Then : Else : 更新路徑04() : End If
  183. FS1 = "index" : MyModule1.進度條() : If File.Exists(Str & "\GPUCache\" & FS1) Then : Else : 更新路徑04() : End If
  184. MyModule1.進度條() : If Dir(Str + "\locales", vbDirectory) <> "" Then : Else : MkDir(Str + "\locales") : End If
  185. FS1 = "af.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  186. FS1 = "am.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  187. FS1 = "ar.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  188. FS1 = "bg.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  189. FS1 = "bn.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  190. FS1 = "ca.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  191. FS1 = "cs.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  192. FS1 = "da.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  193. FS1 = "de.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  194. FS1 = "el.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  195. FS1 = "en-GB.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  196. FS1 = "en-US.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  197. FS1 = "es-419.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  198. FS1 = "es.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  199. FS1 = "et.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  200. FS1 = "fa.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  201. FS1 = "fi.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  202. FS1 = "fil.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  203. FS1 = "fr.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  204. FS1 = "gu.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  205. FS1 = "he.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  206. FS1 = "hi.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  207. FS1 = "hr.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  208. FS1 = "hu.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  209. FS1 = "id.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  210. FS1 = "it.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  211. FS1 = "ja.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  212. FS1 = "kn.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  213. FS1 = "ko.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  214. FS1 = "lt.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  215. FS1 = "lv.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  216. FS1 = "ml.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  217. FS1 = "mr.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  218. FS1 = "ms.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  219. FS1 = "nb.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  220. FS1 = "nl.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  221. FS1 = "pl.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  222. FS1 = "pt-BR.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  223. FS1 = "pt-PT.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  224. FS1 = "ro.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  225. FS1 = "ru.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  226. FS1 = "sk.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  227. FS1 = "sl.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  228. FS1 = "sr.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  229. FS1 = "sv.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  230. FS1 = "sw.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  231. FS1 = "ta.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  232. FS1 = "te.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  233. FS1 = "th.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  234. FS1 = "tr.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  235. FS1 = "uk.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  236. FS1 = "ur.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  237. FS1 = "vi.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  238. FS1 = "zh-CN.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  239. FS1 = "zh-TW.pak" : MyModule1.進度條() : If File.Exists(Str & "\locales\" & FS1) Then : Else : 更新路徑05() : End If
  240. FS1 = "HX-PGS-ERP-SYS.exe"
  241. If File.Exists(My.Computer.FileSystem.SpecialDirectories.Desktop & "\" & FS1) Then
  242. Dim pro() As Process = System.Diagnostics.Process.GetProcesses()
  243. ' 判斷是否有符合的Process
  244. For Each process As Process In pro : If ("HX-PGS-ERP-SYS").Equals(process.ProcessName) Then : 已開啟 = True : End If : Next
  245. If 已開啟 = False Then
  246. 主程式更新.Enabled = False
  247. MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If
  248. 更新路徑01()
  249. OK1 = True : CheckBox1.Checked = True
  250. End If
  251. ElseIf File.Exists(Strs & "\" & FS1) Then
  252. Dim pro() As Process = System.Diagnostics.Process.GetProcesses()
  253. ' 判斷是否有符合的Process
  254. For Each process As Process In pro : If ("HX-PGS-ERP-SYS").Equals(process.ProcessName) Then : 已開啟 = True : End If : Next
  255. If 已開啟 = False Then
  256. 主程式更新.Enabled = False
  257. MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If
  258. 更新路徑01()
  259. OK1 = True : CheckBox1.Checked = True
  260. End If
  261. End If
  262. End Sub
  263. Private Sub 刪除在下載_Tick(sender As Object, e As EventArgs) Handles 刪除在下載.Tick
  264. 刪除在下載.Enabled = False
  265. FS1 = "Interop.SHDocVw.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If : 更新路徑01()
  266. FS1 = "AxInterop.SHDocVw.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If : 更新路徑01()
  267. FS1 = "AxInterop.MSHTML.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If : 更新路徑01()
  268. OK2 = True : CheckBox2.Checked = True
  269. End Sub
  270. Private Sub 更新路徑06()
  271. Me.Text = 標 & TF & FS1 : My.Computer.Network.DownloadFile(Target & FS1, Str & "\Theme\" & FS1)
  272. End Sub
  273. Private Sub Timer3_Tick(sender As Object, e As EventArgs) Handles 驗證存在1.Tick '10
  274. 驗證存在1.Enabled = False
  275. MyModule1.進度條() : If Dir(Str + "\Theme", vbDirectory) <> "" Then : Else : MkDir(Str + "\Theme") : End If
  276. FS1 = "excel_chinese.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS1) Then : Else : 更新路徑06() : End If
  277. FS1 = "excel_english.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS1) Then : Else : 更新路徑06() : End If
  278. FS1 = "TelerikMetro_Chinese.tssp" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS1) Then : Else : 更新路徑06() : End If
  279. FS1 = "word_chinese.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS1) Then : Else : 更新路徑06() : End If
  280. FS1 = "word_english.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS1) Then : Else : 更新路徑06() : End If
  281. FS1 = "Telerik.WinControls.PdfViewer.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  282. FS1 = "Telerik.WinControls.PdfViewer.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  283. FS1 = "Telerik.Windows.Documents.Core.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  284. FS1 = "Telerik.Windows.Documents.Core.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  285. OK3 = True : CheckBox3.Checked = True
  286. End Sub
  287. Private Sub Timer4_Tick(sender As Object, e As EventArgs) Handles 驗證存在2.Tick '10
  288. 驗證存在2.Enabled = False
  289. FS1 = "HX-PGS-Message.exe" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  290. FS1 = "Tran.exe" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  291. FS1 = "HX-PGS-ERP-SYS.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  292. FS1 = "HX-PGS-ERP-SYS.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  293. FS1 = "HX-PGS-ERP-SYS.exe.config" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  294. FS1 = "A.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  295. FS1 = "C.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  296. FS1 = "ch.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  297. FS1 = "py-tran-log.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  298. FS1 = "System.Buffers.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  299. OK4 = True : CheckBox4.Checked = True
  300. End Sub
  301. Private Sub Timer5_Tick(sender As Object, e As EventArgs) Handles 驗證存在3.Tick '10
  302. 驗證存在3.Enabled = False
  303. FS1 = "DotNetBarcode.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  304. FS1 = "en.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  305. FS1 = "IdentityModel.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  306. FS1 = "IdentityModel.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  307. FS1 = "IdentityModel.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  308. FS1 = "in.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  309. FS1 = "Newtonsoft.Json.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  310. FS1 = "Newtonsoft.Json.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  311. FS1 = "PInvoke.Windows.Core.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  312. FS1 = "PInvoke.Windows.Core.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  313. OK5 = True : CheckBox5.Checked = True
  314. End Sub
  315. Private Sub Timer6_Tick(sender As Object, e As EventArgs) Handles 驗證存在4.Tick '10
  316. 驗證存在4.Enabled = False
  317. FS1 = "System.Buffers.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  318. FS1 = "System.Memory.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  319. FS1 = "System.Memory.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  320. FS1 = "System.Numerics.Vectors.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  321. FS1 = "System.Numerics.Vectors.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  322. FS1 = "System.Runtime.CompilerServices.Unsafe.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  323. FS1 = "System.Runtime.CompilerServices.Unsafe.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  324. FS1 = "System.Text.Encodings.Web.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  325. FS1 = "System.Text.Encodings.Web.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  326. FS1 = "Telerik.WinControls.SyntaxEditor.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  327. OK6 = True : CheckBox6.Checked = True
  328. End Sub
  329. Private Sub Timer7_Tick(sender As Object, e As EventArgs) Handles 驗證存在5.Tick '10
  330. 驗證存在5.Enabled = False
  331. FS1 = "Telerik.WinControls.SyntaxEditor.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  332. FS1 = "Telerik.WinControls.UI.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  333. FS1 = "Telerik.WinControls.UI.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  334. FS1 = "Telerik.WinControls.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  335. FS1 = "Telerik.Windows.Documents.Fixed.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  336. FS1 = "Telerik.Windows.Documents.Fixed.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  337. FS1 = "Telerik.Windows.Zip.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  338. FS1 = "Telerik.Windows.Zip.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  339. FS1 = "TelerikCommon.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  340. FS1 = "SuperDataGrid.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  341. OK7 = True : CheckBox7.Checked = True
  342. End Sub
  343. Private Sub Timer8_Tick(sender As Object, e As EventArgs) Handles 驗證存在6.Tick '10
  344. 驗證存在6.Enabled = False
  345. FS1 = "Telerik.WinControls.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  346. FS1 = "LIN HSING HAO.txt" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  347. FS1 = "HX01.docx" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  348. FS1 = "PGS01.docx" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  349. FS1 = "Microsoft.mshtml.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  350. FS1 = "Telerik.WinControls.RadDiagram.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  351. FS1 = "Telerik.WinControls.RadDiagram.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  352. FS1 = "Telerik.WinControls.RadDock.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  353. FS1 = "Telerik.WinControls.RadDock.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  354. FS1 = "Telerik.WinControls.RadMarkupEditor.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  355. OK8 = True : CheckBox8.Checked = True
  356. End Sub
  357. Private Sub Timer9_Tick(sender As Object, e As EventArgs) Handles 驗證存在7.Tick '3
  358. 驗證存在7.Enabled = False
  359. FS1 = "Telerik.WinControls.RadMarkupEditor.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  360. FS1 = "Telerik.WinControls.RichTextEditor.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  361. FS1 = "Telerik.WinControls.RichTextEditor.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : Else : 更新路徑01() : End If
  362. OK9 = True : CheckBox9.Checked = True
  363. End Sub
  364. Private Sub 刪除所有檔案_Tick(sender As Object, e As EventArgs) Handles 刪除所有檔案.Tick
  365. 刪除所有檔案.Enabled = False : Dim FS10 As String
  366. MyModule1.進度條() : FS10 = "excel_chinese.xml" : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
  367. MyModule1.進度條() : FS10 = "excel_english.xml" : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
  368. MyModule1.進度條() : FS10 = "TelerikMetro_Chinese.tssp" : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
  369. MyModule1.進度條() : FS10 = "word_chinese.xml" : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
  370. MyModule1.進度條() : FS10 = "word_english.xml" : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
  371. MyModule1.進度條() : FS10 = "HX-PGS-ERP-SYS.pdb" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  372. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadDiagram.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  373. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadDiagram.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  374. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadDock.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  375. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadDock.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  376. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadMarkupEditor.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  377. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadMarkupEditor.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  378. MyModule1.進度條() : FS10 = "HX-PGS-ERP-SYS.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  379. MyModule1.進度條() : FS10 = "HX-PGS-ERP-SYS.exe.config" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  380. MyModule1.進度條() : FS10 = "DotNetBarcode.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  381. MyModule1.進度條() : FS10 = "IdentityModel.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  382. MyModule1.進度條() : FS10 = "IdentityModel.pdb" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  383. MyModule1.進度條() : FS10 = "IdentityModel.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  384. MyModule1.進度條() : FS10 = "Newtonsoft.Json.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  385. MyModule1.進度條() : FS10 = "Newtonsoft.Json.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  386. MyModule1.進度條() : FS10 = "PInvoke.Windows.Core.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  387. MyModule1.進度條() : FS10 = "PInvoke.Windows.Core.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  388. MyModule1.進度條() : FS10 = "System.Buffers.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  389. MyModule1.進度條() : FS10 = "System.Buffers.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  390. MyModule1.進度條() : FS10 = "System.Memory.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  391. MyModule1.進度條() : FS10 = "System.Memory.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  392. MyModule1.進度條() : FS10 = "System.Numerics.Vectors.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  393. MyModule1.進度條() : FS10 = "System.Numerics.Vectors.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  394. MyModule1.進度條() : FS10 = "System.Runtime.CompilerServices.Unsafe.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  395. MyModule1.進度條() : FS10 = "System.Runtime.CompilerServices.Unsafe.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  396. MyModule1.進度條() : FS10 = "System.Text.Encodings.Web.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  397. MyModule1.進度條() : FS10 = "System.Text.Encodings.Web.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  398. MyModule1.進度條() : FS10 = "Telerik.WinControls.SyntaxEditor.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  399. MyModule1.進度條() : FS10 = "Telerik.WinControls.SyntaxEditor.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  400. MyModule1.進度條() : FS10 = "Telerik.WinControls.UI.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  401. MyModule1.進度條() : FS10 = "Telerik.WinControls.UI.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  402. MyModule1.進度條() : FS10 = "Telerik.WinControls.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  403. MyModule1.進度條() : FS10 = "Telerik.Windows.Documents.Fixed.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  404. MyModule1.進度條() : FS10 = "Telerik.Windows.Documents.Fixed.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  405. MyModule1.進度條() : FS10 = "Telerik.Windows.Zip.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  406. MyModule1.進度條() : FS10 = "Telerik.Windows.Zip.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  407. MyModule1.進度條() : FS10 = "Telerik.WinControls.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  408. MyModule1.進度條() : FS10 = "TelerikCommon.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  409. MyModule1.進度條() : FS10 = "SuperDataGrid.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  410. MyModule1.進度條() : FS10 = "Telerik.WinControls.PdfViewer.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  411. MyModule1.進度條() : FS10 = "Telerik.WinControls.PdfViewer.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  412. MyModule1.進度條() : FS10 = "Telerik.WinControls.RichTextEditor.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  413. MyModule1.進度條() : FS10 = "Telerik.WinControls.RichTextEditor.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  414. MyModule1.進度條() : FS10 = "Telerik.Windows.Documents.Core.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  415. MyModule1.進度條() : FS10 = "Telerik.Windows.Documents.Core.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  416. MyModule1.進度條() : FS10 = "MediaFoundation.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  417. MyModule1.進度條() : FS10 = "Microsoft.Toolkit.Uwp.Notifications.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  418. MyModule1.進度條() : FS10 = "Telerik.WinControls.ChartView.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  419. MyModule1.進度條() : FS10 = "Telerik.WinControls.ChartView.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  420. MyModule1.進度條() : FS10 = "Telerik.WinControls.GridView.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  421. MyModule1.進度條() : FS10 = "Telerik.WinControls.GridView.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  422. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadMap.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  423. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadMap.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  424. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadToastNotification.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  425. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadToastNotification.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  426. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadWebCam.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  427. MyModule1.進度條() : FS10 = "Telerik.WinControls.RadWebCam.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  428. MyModule1.進度條() : FS10 = "Telerik.Windows.MediaFoundation.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  429. MyModule1.進度條() : FS10 = "System.Linq.Queryable.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  430. MyModule1.進度條() : FS10 = "System.Linq.Parallel.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  431. MyModule1.進度條() : FS10 = "System.Linq.Expressions.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  432. MyModule1.進度條() : FS10 = "System.Linq.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  433. MyModule1.進度條() : FS10 = "System.IO.UnmanagedMemoryStream.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  434. MyModule1.進度條() : FS10 = "System.IO.Pipes.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  435. MyModule1.進度條() : FS10 = "System.IO.MemoryMappedFiles.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  436. MyModule1.進度條() : FS10 = "System.IO.IsolatedStorage.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  437. MyModule1.進度條() : FS10 = "System.IO.FileSystem.Watcher.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  438. MyModule1.進度條() : FS10 = "System.IO.FileSystem.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  439. MyModule1.進度條() : FS10 = "System.IO.FileSystem.DriveInfo.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  440. MyModule1.進度條() : FS10 = "System.IO.FileSystem.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  441. MyModule1.進度條() : FS10 = "System.IO.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  442. MyModule1.進度條() : FS10 = "System.IO.Compression.ZipFile.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  443. MyModule1.進度條() : FS10 = "System.IO.Compression.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  444. MyModule1.進度條() : FS10 = "System.Globalization.Extensions.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  445. MyModule1.進度條() : FS10 = "System.Globalization.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  446. MyModule1.進度條() : FS10 = "System.Globalization.Calendars.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  447. MyModule1.進度條() : FS10 = "System.Dynamic.Runtime.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  448. MyModule1.進度條() : FS10 = "System.Drawing.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  449. MyModule1.進度條() : FS10 = "System.Diagnostics.Tracing.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  450. MyModule1.進度條() : FS10 = "System.Diagnostics.TraceSource.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  451. MyModule1.進度條() : FS10 = "System.Diagnostics.Tools.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  452. MyModule1.進度條() : FS10 = "System.Diagnostics.TextWriterTraceListener.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  453. MyModule1.進度條() : FS10 = "Microsoft.Win32.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  454. MyModule1.進度條() : FS10 = "netstandard.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  455. MyModule1.進度條() : FS10 = "System.AppContext.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  456. MyModule1.進度條() : FS10 = "System.Collections.Concurrent.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  457. MyModule1.進度條() : FS10 = "System.Collections.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  458. MyModule1.進度條() : FS10 = "System.Collections.NonGeneric.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  459. MyModule1.進度條() : FS10 = "System.Collections.Specialized.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  460. MyModule1.進度條() : FS10 = "System.ComponentModel.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  461. MyModule1.進度條() : FS10 = "System.ComponentModel.EventBasedAsync.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  462. MyModule1.進度條() : FS10 = "System.ComponentModel.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  463. MyModule1.進度條() : FS10 = "System.ComponentModel.TypeConverter.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  464. MyModule1.進度條() : FS10 = "System.Console.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  465. MyModule1.進度條() : FS10 = "System.Data.Common.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  466. MyModule1.進度條() : FS10 = "System.Diagnostics.Contracts.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  467. MyModule1.進度條() : FS10 = "System.Diagnostics.Debug.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  468. MyModule1.進度條() : FS10 = "System.Diagnostics.FileVersionInfo.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  469. MyModule1.進度條() : FS10 = "System.Diagnostics.Process.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  470. MyModule1.進度條() : FS10 = "System.Diagnostics.StackTrace.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  471. MyModule1.進度條() : FS10 = "System.Net.Http.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  472. MyModule1.進度條() : FS10 = "System.Net.NameResolution.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  473. MyModule1.進度條() : FS10 = "System.Net.NetworkInformation.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  474. MyModule1.進度條() : FS10 = "System.Net.Ping.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  475. MyModule1.進度條() : FS10 = "System.Net.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  476. MyModule1.進度條() : FS10 = "System.Net.Requests.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  477. MyModule1.進度條() : FS10 = "System.Net.Security.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  478. MyModule1.進度條() : FS10 = "System.Net.Sockets.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  479. MyModule1.進度條() : FS10 = "System.Net.WebHeaderCollection.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  480. MyModule1.進度條() : FS10 = "System.Net.WebSockets.Client.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  481. MyModule1.進度條() : FS10 = "System.Net.WebSockets.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  482. MyModule1.進度條() : FS10 = "System.ObjectModel.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  483. MyModule1.進度條() : FS10 = "System.Reflection.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  484. MyModule1.進度條() : FS10 = "System.Reflection.Extensions.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  485. MyModule1.進度條() : FS10 = "System.Reflection.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  486. MyModule1.進度條() : FS10 = "System.Resources.Reader.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  487. MyModule1.進度條() : FS10 = "System.Resources.ResourceManager.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  488. MyModule1.進度條() : FS10 = "System.Resources.Writer.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  489. MyModule1.進度條() : FS10 = "System.Xml.XPath.XDocument.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  490. MyModule1.進度條() : FS10 = "System.Xml.XPath.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  491. MyModule1.進度條() : FS10 = "System.Xml.XmlSerializer.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  492. MyModule1.進度條() : FS10 = "System.Xml.XmlDocument.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  493. MyModule1.進度條() : FS10 = "System.Xml.XDocument.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  494. MyModule1.進度條() : FS10 = "System.Xml.ReaderWriter.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  495. MyModule1.進度條() : FS10 = "System.ValueTuple.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  496. MyModule1.進度條() : FS10 = "System.Threading.Timer.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  497. MyModule1.進度條() : FS10 = "System.Threading.ThreadPool.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  498. MyModule1.進度條() : FS10 = "System.Threading.Thread.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  499. MyModule1.進度條() : FS10 = "System.Threading.Tasks.Parallel.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  500. MyModule1.進度條() : FS10 = "System.Threading.Tasks.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  501. MyModule1.進度條() : FS10 = "System.Threading.Overlapped.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  502. MyModule1.進度條() : FS10 = "System.Threading.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  503. MyModule1.進度條() : FS10 = "System.Text.RegularExpressions.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  504. MyModule1.進度條() : FS10 = "System.Text.Encodings.Web.xml" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  505. MyModule1.進度條() : FS10 = "System.Text.Encodings.Web.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  506. MyModule1.進度條() : FS10 = "System.Text.Encoding.Extensions.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  507. MyModule1.進度條() : FS10 = "System.Text.Encoding.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  508. MyModule1.進度條() : FS10 = "System.Security.SecureString.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  509. MyModule1.進度條() : FS10 = "System.Security.Principal.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  510. MyModule1.進度條() : FS10 = "System.Security.Cryptography.X509Certificates.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  511. MyModule1.進度條() : FS10 = "System.Security.Cryptography.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  512. MyModule1.進度條() : FS10 = "System.Security.Cryptography.Encoding.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  513. MyModule1.進度條() : FS10 = "System.Security.Cryptography.Csp.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  514. MyModule1.進度條() : FS10 = "System.Security.Cryptography.Algorithms.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  515. MyModule1.進度條() : FS10 = "System.Security.Claims.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  516. MyModule1.進度條() : FS10 = "System.Runtime.Serialization.Xml.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  517. MyModule1.進度條() : FS10 = "System.Runtime.Serialization.Primitives.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  518. MyModule1.進度條() : FS10 = "System.Runtime.Serialization.Json.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  519. MyModule1.進度條() : FS10 = "System.Runtime.Serialization.Formatters.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  520. MyModule1.進度條() : FS10 = "System.Runtime.Numerics.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  521. MyModule1.進度條() : FS10 = "System.Runtime.InteropServices.RuntimeInformation.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  522. MyModule1.進度條() : FS10 = "System.Runtime.InteropServices.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  523. MyModule1.進度條() : FS10 = "ystem.Runtime.Handles.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  524. MyModule1.進度條() : FS10 = "System.Runtime.Extensions.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  525. MyModule1.進度條() : FS10 = "System.Runtime.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  526. MyModule1.進度條() : FS10 = "System.Runtime.CompilerServices.VisualC.dll" : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
  527. OK10 = True : CheckBox10.Checked = True : 刪除完成 = True
  528. End Sub
  529. End Class