|
@@ -0,0 +1,392 @@
|
|
1
|
+Imports System.IO
|
|
2
|
+Imports System.Net
|
|
3
|
+Imports System.Text
|
|
4
|
+Imports System.Net.NetworkInformation
|
|
5
|
+Public Class OW_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 As String
|
|
13
|
+ Private Sub OW_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
|
|
16
|
+ File.Delete(Strs & "\OPUPDATE.txt") : End If
|
|
17
|
+ strDirName = Strs & "\OPUPDATE.txt"
|
|
18
|
+ Try
|
|
19
|
+ Using fs As IO.FileStream = New IO.FileStream(strDirName, FileMode.Append)
|
|
20
|
+ Using sw As StreamWriter = New StreamWriter(fs, Encoding.Default)
|
|
21
|
+ Dim str1 As String = "..."
|
|
22
|
+ sw.WriteLine(str1) '插入一整行
|
|
23
|
+ sw.Flush()
|
|
24
|
+ End Using
|
|
25
|
+ End Using
|
|
26
|
+ Catch ex As Exception
|
|
27
|
+ End Try
|
|
28
|
+ '----------判斷是否有更新指定檔案-------------------------------------------------------------------------------------
|
|
29
|
+ If File.Exists(Strs & "\OWUPDATE.txt") Then : Else
|
|
30
|
+ strDirName = Strs & "\OWUPDATE.txt"
|
|
31
|
+ Try
|
|
32
|
+ Using fs As IO.FileStream = New IO.FileStream(strDirName, FileMode.Append)
|
|
33
|
+ Using sw As StreamWriter = New StreamWriter(fs, Encoding.Default)
|
|
34
|
+ Dim strk As String = "1"
|
|
35
|
+ sw.WriteLine(strk) '插入一整行
|
|
36
|
+ sw.Flush()
|
|
37
|
+ End Using
|
|
38
|
+ End Using
|
|
39
|
+ Catch ex As Exception
|
|
40
|
+ End Try
|
|
41
|
+ End If
|
|
42
|
+
|
|
43
|
+ Target = "https://gcm-smart.com/ERP/OW-ERP/"
|
|
44
|
+ Me.Text = "UPDATE " & TF
|
|
45
|
+
|
|
46
|
+ '----------讀取更新指定檔案-------------------------------------------------------------------------------------
|
|
47
|
+ Dim Str As String = Application.StartupPath
|
|
48
|
+ If File.Exists(Str + "\OWUPDATE.txt") Then
|
|
49
|
+ Dim filereader = My.Computer.FileSystem.OpenTextFileReader(Str + "\OWUPDATE.txt", System.Text.Encoding.Default)
|
|
50
|
+ Dim Text As String = "" : Dim line As String = filereader.ReadLine()
|
|
51
|
+ While Not (line Is Nothing) : Text = Text & line & vbCrLf : line = filereader.ReadLine() : End While : filereader.Close()
|
|
52
|
+ If Strings.Left(Text, 1) = "1" Then
|
|
53
|
+ 小更新_ch.Checked = True : 中更新_ch.Checked = False : 大更新_ch.Checked = False : 資料數 = 4
|
|
54
|
+ ElseIf Strings.Left(Text, 1) = "2" Then
|
|
55
|
+ 小更新_ch.Checked = False : 中更新_ch.Checked = True : 大更新_ch.Checked = False : 資料數 = 70
|
|
56
|
+ ElseIf Strings.Left(Text, 1) = "3" Then
|
|
57
|
+ 小更新_ch.Checked = False : 中更新_ch.Checked = False : 大更新_ch.Checked = True : 資料數 = 226
|
|
58
|
+ End If
|
|
59
|
+ End If
|
|
60
|
+ End Sub
|
|
61
|
+ Private Sub OW_UPDATE_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
|
|
62
|
+ If 小更新_ch.Checked = True Then
|
|
63
|
+ 刪除完成 = True : 小更新.Enabled = True
|
|
64
|
+ ElseIf 中更新_ch.Checked = True Then
|
|
65
|
+ 刪除完成 = True : 中更新.Enabled = True
|
|
66
|
+ ElseIf 大更新_ch.Checked = True Then
|
|
67
|
+ 刪除所有檔案.Enabled = True : 大更新.Enabled = True
|
|
68
|
+ End If
|
|
69
|
+ '--- 開啟專案---------------------------------------------------------------------------------------------------------------------------
|
|
70
|
+ OK.Enabled = True
|
|
71
|
+ End Sub
|
|
72
|
+ Private Sub 小更新_Tick(sender As Object, e As EventArgs) Handles 小更新.Tick
|
|
73
|
+ If 刪除完成 = True Then
|
|
74
|
+ 小更新.Enabled = False
|
|
75
|
+ 主程式更新.Enabled = True : OK2 = True : OK3 = True : OK4 = True : OK5 = True : OK6 = True : OK7 = True : OK8 = True : OK9 = True : OK10 = True
|
|
76
|
+ End If
|
|
77
|
+ End Sub
|
|
78
|
+ Private Sub 中更新_Tick(sender As Object, e As EventArgs) Handles 中更新.Tick
|
|
79
|
+ If 刪除完成 = True Then
|
|
80
|
+ 中更新.Enabled = False
|
|
81
|
+ '--- 刪除在下載---------------------------------------------------------------------------------------------------------------------------
|
|
82
|
+ 主程式更新.Enabled = True : 刪除在下載.Enabled = True
|
|
83
|
+ '--- 比對下載---------------------------------------------------------------------------------------------------------------------------
|
|
84
|
+ 驗證存在1.Enabled = True : 驗證存在2.Enabled = True : 驗證存在3.Enabled = True : 驗證存在4.Enabled = True : 驗證存在5.Enabled = True
|
|
85
|
+ 驗證存在6.Enabled = True : 驗證存在7.Enabled = True : OK10 = True
|
|
86
|
+ End If
|
|
87
|
+ End Sub
|
|
88
|
+ Private Sub 大更新_Tick(sender As Object, e As EventArgs) Handles 大更新.Tick
|
|
89
|
+ If 刪除完成 = True Then
|
|
90
|
+ 大更新.Enabled = False
|
|
91
|
+ '--- 刪除在下載---------------------------------------------------------------------------------------------------------------------------
|
|
92
|
+ 主程式更新.Enabled = True : 刪除在下載.Enabled = True
|
|
93
|
+ '--- 比對下載---------------------------------------------------------------------------------------------------------------------------
|
|
94
|
+ 驗證存在1.Enabled = True : 驗證存在2.Enabled = True : 驗證存在3.Enabled = True : 驗證存在4.Enabled = True : 驗證存在5.Enabled = True
|
|
95
|
+ 驗證存在6.Enabled = True : 驗證存在7.Enabled = True
|
|
96
|
+ End If
|
|
97
|
+ End Sub
|
|
98
|
+
|
|
99
|
+ Private Sub HX_CL_Tick(sender As Object, e As EventArgs) Handles HX_CL.Tick
|
|
100
|
+ End Sub
|
|
101
|
+
|
|
102
|
+ Public Sub Delay(ByRef Interval As Double) 'Interval单位为毫秒
|
|
103
|
+ Dim time As DateTime = DateTime.Now
|
|
104
|
+ Dim Span As Double = Interval * 1234
|
|
105
|
+ While ((DateTime.Now.Ticks - time.Ticks) < Span)
|
|
106
|
+ Application.DoEvents()
|
|
107
|
+ End While
|
|
108
|
+ End Sub
|
|
109
|
+ Private Sub OK_Tick(sender As Object, e As EventArgs) Handles OK.Tick
|
|
110
|
+ 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
|
|
111
|
+ OK.Enabled = False : CheckBox11.Checked = True : Dim FS1 As String
|
|
112
|
+ FS1 = "OWUPDATE.txt" : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If
|
|
113
|
+ Shell(Str + "\OW-ERP-SYS.exe", vbNormalFocus) : Me.Close()
|
|
114
|
+ End If
|
|
115
|
+ End Sub
|
|
116
|
+ Private Sub 主程式更新_Tick(sender As Object, e As EventArgs) Handles 主程式更新.Tick
|
|
117
|
+ Dim 已開啟 As Boolean = False : Dim FS1 As String
|
|
118
|
+ Dim Strs As String = Application.StartupPath
|
|
119
|
+
|
|
120
|
+ MyModule1.進度條()
|
|
121
|
+ FS1 = "LANGUAGE_FILE.csv"
|
|
122
|
+ If File.Exists(Str & "\" & FS1) Then
|
|
123
|
+ File.Delete(Str & "\" & FS1)
|
|
124
|
+ End If
|
|
125
|
+ My.Computer.Network.DownloadFile(Target & FS1, Str & "\" & FS1)
|
|
126
|
+ Me.Text = "UPDATE " & TF & FS1
|
|
127
|
+
|
|
128
|
+ FS1 = "OW-ERP-SYS.exe"
|
|
129
|
+ If File.Exists(My.Computer.FileSystem.SpecialDirectories.Desktop & "\" & FS1) Then
|
|
130
|
+ Dim pro() As Process = System.Diagnostics.Process.GetProcesses()
|
|
131
|
+ ' 判斷是否有符合的Process
|
|
132
|
+ For Each process As Process In pro
|
|
133
|
+ If ("OW-ERP-SYS").Equals(process.ProcessName) Then
|
|
134
|
+ 已開啟 = True
|
|
135
|
+ End If
|
|
136
|
+ Next
|
|
137
|
+ If 已開啟 = False Then
|
|
138
|
+ 主程式更新.Enabled = False
|
|
139
|
+ MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If
|
|
140
|
+ My.Computer.Network.DownloadFile(Target & FS1, Str & "\" & FS1)
|
|
141
|
+ OK1 = True : CheckBox1.Checked = True
|
|
142
|
+ End If
|
|
143
|
+ ElseIf File.Exists(Strs & "\" & FS1) Then
|
|
144
|
+ Dim pro() As Process = System.Diagnostics.Process.GetProcesses()
|
|
145
|
+ ' 判斷是否有符合的Process
|
|
146
|
+ For Each process As Process In pro
|
|
147
|
+ If ("OW-ERP-SYS").Equals(process.ProcessName) Then
|
|
148
|
+ 已開啟 = True
|
|
149
|
+ End If
|
|
150
|
+ Next
|
|
151
|
+ If 已開啟 = False Then
|
|
152
|
+ 主程式更新.Enabled = False
|
|
153
|
+ MyModule1.進度條() : If File.Exists(Str & "\" & FS1) Then : File.Delete(Str & "\" & FS1) : End If
|
|
154
|
+ My.Computer.Network.DownloadFile(Target & FS1, Str & "\" & FS1)
|
|
155
|
+ OK1 = True : CheckBox1.Checked = True
|
|
156
|
+ End If
|
|
157
|
+ End If
|
|
158
|
+ End Sub
|
|
159
|
+ Private Sub 刪除在下載_Tick(sender As Object, e As EventArgs) Handles 刪除在下載.Tick
|
|
160
|
+ 刪除在下載.Enabled = False : Dim FS2 As String
|
|
161
|
+ OK2 = True : CheckBox2.Checked = True
|
|
162
|
+ End Sub
|
|
163
|
+ Private Sub Timer3_Tick(sender As Object, e As EventArgs) Handles 驗證存在1.Tick '10
|
|
164
|
+ 驗證存在1.Enabled = False
|
|
165
|
+ Dim FS3 As String
|
|
166
|
+ MyModule1.進度條() : If Dir(Str + "\Theme", vbDirectory) <> "" Then : Else : MkDir(Str + "\Theme") : End If
|
|
167
|
+ OK3 = True : CheckBox3.Checked = True
|
|
168
|
+ End Sub
|
|
169
|
+ Private Sub Timer4_Tick(sender As Object, e As EventArgs) Handles 驗證存在2.Tick '10
|
|
170
|
+ 驗證存在2.Enabled = False
|
|
171
|
+ Dim FS4 As String
|
|
172
|
+ FS4 = "OW-ERP-SYS.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS4) Then : Else
|
|
173
|
+ Me.Text = "UPDATE " & TF & FS4 : My.Computer.Network.DownloadFile(Target & FS4, Str & "\" & FS4) : End If
|
|
174
|
+ FS4 = "OW-ERP-SYS.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS4) Then : Else
|
|
175
|
+ Me.Text = "UPDATE " & TF & FS4 : My.Computer.Network.DownloadFile(Target & FS4, Str & "\" & FS4) : End If
|
|
176
|
+ FS4 = "OW-ERP-SYS.exe.config" : MyModule1.進度條() : If File.Exists(Str & "\" & FS4) Then : Else
|
|
177
|
+ Me.Text = "UPDATE " & TF & FS4 : My.Computer.Network.DownloadFile(Target & FS4, Str & "\" & FS4) : End If
|
|
178
|
+ OK4 = True : CheckBox4.Checked = True
|
|
179
|
+ End Sub
|
|
180
|
+ Private Sub Timer5_Tick(sender As Object, e As EventArgs) Handles 驗證存在3.Tick '10
|
|
181
|
+ 驗證存在3.Enabled = False
|
|
182
|
+ Dim FS5 As String
|
|
183
|
+ FS5 = "DotNetBarcode.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS5) Then : Else
|
|
184
|
+ Me.Text = "UPDATE " & TF & FS5 : My.Computer.Network.DownloadFile(Target & FS5, Str & "\" & FS5) : End If
|
|
185
|
+ OK5 = True : CheckBox5.Checked = True
|
|
186
|
+ End Sub
|
|
187
|
+ Private Sub Timer6_Tick(sender As Object, e As EventArgs) Handles 驗證存在4.Tick '10
|
|
188
|
+ 驗證存在4.Enabled = False
|
|
189
|
+
|
|
190
|
+ OK6 = True : CheckBox6.Checked = True
|
|
191
|
+ End Sub
|
|
192
|
+ Private Sub Timer7_Tick(sender As Object, e As EventArgs) Handles 驗證存在5.Tick '10
|
|
193
|
+ 驗證存在5.Enabled = False
|
|
194
|
+
|
|
195
|
+ OK7 = True : CheckBox7.Checked = True
|
|
196
|
+ End Sub
|
|
197
|
+ Private Sub Timer8_Tick(sender As Object, e As EventArgs) Handles 驗證存在6.Tick '10
|
|
198
|
+ 驗證存在6.Enabled = False
|
|
199
|
+ OK8 = True : CheckBox8.Checked = True
|
|
200
|
+ End Sub
|
|
201
|
+ Private Sub Timer9_Tick(sender As Object, e As EventArgs) Handles 驗證存在7.Tick '3
|
|
202
|
+ 驗證存在7.Enabled = False
|
|
203
|
+ OK9 = True : CheckBox9.Checked = True
|
|
204
|
+ End Sub
|
|
205
|
+ Private Sub 刪除所有檔案_Tick(sender As Object, e As EventArgs) Handles 刪除所有檔案.Tick
|
|
206
|
+ 刪除所有檔案.Enabled = False : Dim FS10 As String
|
|
207
|
+ FS10 = "excel_chinese.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
|
|
208
|
+ FS10 = "excel_english.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
|
|
209
|
+ FS10 = "word_chinese.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
|
|
210
|
+ FS10 = "word_english.xml" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
|
|
211
|
+
|
|
212
|
+ FS10 = "OW-ERP-SYS.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
213
|
+ FS10 = "OW-ERP-SYS.exe.config" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
214
|
+ FS10 = "OW-ERP-SYS.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
215
|
+
|
|
216
|
+ FS10 = "Telerik.Documents.SpreadsheetStreaming.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
217
|
+ FS10 = "Telerik.Documents.SpreadsheetStreaming.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
218
|
+ FS10 = "Telerik.WinControls.RadSpreadsheet.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
219
|
+ FS10 = "Telerik.WinControls.RadSpreadsheet.dll.config" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
220
|
+ FS10 = "Telerik.WinControls.RadSpreadsheet.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
221
|
+ FS10 = "Telerik.WinControls.RadDiagram.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
222
|
+ FS10 = "Telerik.WinControls.RadDiagram.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
223
|
+ FS10 = "Telerik.WinControls.RadDock.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
224
|
+ FS10 = "Telerik.WinControls.RadDock.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
225
|
+ FS10 = "Telerik.WinControls.RadMarkupEditor.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
226
|
+ FS10 = "Telerik.WinControls.RadMarkupEditor.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
227
|
+ FS10 = "Telerik.WinControls.SyntaxEditor.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
228
|
+ FS10 = "Telerik.WinControls.SyntaxEditor.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
229
|
+ FS10 = "Telerik.WinControls.UI.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
230
|
+ FS10 = "Telerik.WinControls.UI.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
231
|
+ FS10 = "Telerik.WinControls.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
232
|
+ FS10 = "Telerik.WinControls.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
233
|
+ FS10 = "Telerik.WinControls.PdfViewer.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
234
|
+ FS10 = "Telerik.WinControls.PdfViewer.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
235
|
+ FS10 = "Telerik.WinControls.RichTextEditor.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
236
|
+ FS10 = "Telerik.WinControls.RichTextEditor.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
237
|
+ FS10 = "Telerik.WinControls.ChartView.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
238
|
+ FS10 = "Telerik.WinControls.ChartView.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
239
|
+ FS10 = "Telerik.WinControls.GridView.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
240
|
+ FS10 = "Telerik.WinControls.GridView.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
241
|
+ FS10 = "Telerik.WinControls.RadMap.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
242
|
+ FS10 = "Telerik.WinControls.RadMap.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
243
|
+ FS10 = "Telerik.WinControls.RadToastNotification.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
244
|
+ FS10 = "Telerik.WinControls.RadToastNotification.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
245
|
+ FS10 = "Telerik.WinControls.RadWebCam.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
246
|
+ FS10 = "Telerik.WinControls.RadWebCam.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
247
|
+ FS10 = "Telerik.Windows.Documents.Core.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
248
|
+ FS10 = "Telerik.Windows.Documents.Core.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
249
|
+ FS10 = "Telerik.Windows.Documents.Fixed.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
250
|
+ FS10 = "Telerik.Windows.Documents.Fixed.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
251
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
252
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
253
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
254
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
255
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
256
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.FormatProviders.Xls.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
257
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.FormatProviders.Xls.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
258
|
+ FS10 = "Telerik.Windows.Documents.Spreadsheet.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
259
|
+ FS10 = "Telerik.Windows.MediaFoundation.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
260
|
+ FS10 = "Telerik.Windows.Zip.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
261
|
+ FS10 = "Telerik.Windows.Zip.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
262
|
+ FS10 = "TelerikCommon.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
263
|
+ FS10 = "TelerikData.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
264
|
+ FS10 = "TelerikData.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
265
|
+ FS10 = "TelerikExport.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
266
|
+ FS10 = "TelerikExport.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
267
|
+ FS10 = "TelerikMetro_Chinese.tssp" : MyModule1.進度條() : If File.Exists(Str & "\Theme\" & FS10) Then : File.Delete(Str & "\Theme\" & FS10) : End If
|
|
268
|
+
|
|
269
|
+ FS10 = "DotNetBarcode.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
270
|
+ FS10 = "IdentityModel.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
271
|
+ FS10 = "IdentityModel.pdb" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
272
|
+ FS10 = "IdentityModel.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
273
|
+ FS10 = "MediaFoundation.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
274
|
+ FS10 = "Microsoft.Toolkit.Uwp.Notifications.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
275
|
+ FS10 = "Newtonsoft.Json.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
276
|
+ FS10 = "Newtonsoft.Json.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
277
|
+ FS10 = "PInvoke.Windows.Core.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
278
|
+ FS10 = "PInvoke.Windows.Core.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
279
|
+ FS10 = "SuperDataGrid.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
280
|
+
|
|
281
|
+ FS10 = "System.Buffers.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
282
|
+ FS10 = "System.Buffers.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
283
|
+ FS10 = "System.Memory.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
284
|
+ FS10 = "System.Memory.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
285
|
+ FS10 = "System.Numerics.Vectors.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
286
|
+ FS10 = "System.Numerics.Vectors.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
287
|
+ FS10 = "System.Runtime.CompilerServices.Unsafe.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
288
|
+ FS10 = "System.Runtime.CompilerServices.Unsafe.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
289
|
+ FS10 = "System.Text.Encodings.Web.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
290
|
+ FS10 = "System.Text.Encodings.Web.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
291
|
+ FS10 = "System.Linq.Queryable.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
292
|
+ FS10 = "System.Linq.Parallel.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
293
|
+ FS10 = "System.Linq.Expressions.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
294
|
+ FS10 = "System.Linq.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
295
|
+ FS10 = "System.IO.UnmanagedMemoryStream.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
296
|
+ FS10 = "System.IO.Pipes.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
297
|
+ FS10 = "System.IO.MemoryMappedFiles.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
298
|
+ FS10 = "System.IO.IsolatedStorage.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
299
|
+ FS10 = "System.IO.FileSystem.Watcher.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
300
|
+ FS10 = "System.IO.FileSystem.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
301
|
+ FS10 = "System.IO.FileSystem.DriveInfo.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
302
|
+ FS10 = "System.IO.FileSystem.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
303
|
+ FS10 = "System.IO.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
304
|
+ FS10 = "System.IO.Compression.ZipFile.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
305
|
+ FS10 = "System.IO.Compression.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
306
|
+ FS10 = "System.Globalization.Extensions.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
307
|
+ FS10 = "System.Globalization.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
308
|
+ FS10 = "System.Globalization.Calendars.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
309
|
+ FS10 = "System.Dynamic.Runtime.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
310
|
+ FS10 = "System.Drawing.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
311
|
+ FS10 = "System.Diagnostics.Tracing.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
312
|
+ FS10 = "System.Diagnostics.TraceSource.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
313
|
+ FS10 = "System.Diagnostics.Tools.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
314
|
+ FS10 = "System.Diagnostics.TextWriterTraceListener.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
315
|
+ FS10 = "Microsoft.Win32.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
316
|
+ FS10 = "netstandard.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
317
|
+ FS10 = "System.AppContext.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
318
|
+ FS10 = "System.Collections.Concurrent.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
319
|
+ FS10 = "System.Collections.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
320
|
+ FS10 = "System.Collections.NonGeneric.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
321
|
+ FS10 = "System.Collections.Specialized.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
322
|
+ FS10 = "System.ComponentModel.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
323
|
+ FS10 = "System.ComponentModel.EventBasedAsync.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
324
|
+ FS10 = "System.ComponentModel.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
325
|
+ FS10 = "System.ComponentModel.TypeConverter.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
326
|
+ FS10 = "System.Console.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
327
|
+ FS10 = "System.Data.Common.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
328
|
+ FS10 = "System.Diagnostics.Contracts.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
329
|
+ FS10 = "System.Diagnostics.Debug.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
330
|
+ FS10 = "System.Diagnostics.FileVersionInfo.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
331
|
+ FS10 = "System.Diagnostics.Process.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
332
|
+ FS10 = "System.Diagnostics.StackTrace.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
333
|
+ FS10 = "System.Net.Http.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
334
|
+ FS10 = "System.Net.NameResolution.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
335
|
+ FS10 = "System.Net.NetworkInformation.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
336
|
+ FS10 = "System.Net.Ping.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
337
|
+ FS10 = "System.Net.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
338
|
+ FS10 = "System.Net.Requests.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
339
|
+ FS10 = "System.Net.Security.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
340
|
+ FS10 = "System.Net.Sockets.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
341
|
+ FS10 = "System.Net.WebHeaderCollection.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
342
|
+ FS10 = "System.Net.WebSockets.Client.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
343
|
+ FS10 = "System.Net.WebSockets.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
344
|
+ FS10 = "System.ObjectModel.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
345
|
+ FS10 = "System.Reflection.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
346
|
+ FS10 = "System.Reflection.Extensions.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
347
|
+ FS10 = "System.Reflection.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
348
|
+ FS10 = "System.Resources.Reader.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
349
|
+ FS10 = "System.Resources.ResourceManager.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
350
|
+ FS10 = "System.Resources.Writer.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
351
|
+ FS10 = "System.Xml.XPath.XDocument.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
352
|
+ FS10 = "System.Xml.XPath.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
353
|
+ FS10 = "System.Xml.XmlSerializer.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
354
|
+ FS10 = "System.Xml.XmlDocument.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
355
|
+ FS10 = "System.Xml.XDocument.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
356
|
+ FS10 = "System.Xml.ReaderWriter.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
357
|
+ FS10 = "System.ValueTuple.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
358
|
+ FS10 = "System.Threading.Timer.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
359
|
+ FS10 = "System.Threading.ThreadPool.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
360
|
+ FS10 = "System.Threading.Thread.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
361
|
+ FS10 = "System.Threading.Tasks.Parallel.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
362
|
+ FS10 = "System.Threading.Tasks.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
363
|
+ FS10 = "System.Threading.Overlapped.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
364
|
+ FS10 = "System.Threading.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
365
|
+ FS10 = "System.Text.RegularExpressions.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
366
|
+ FS10 = "System.Text.Encodings.Web.xml" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
367
|
+ FS10 = "System.Text.Encodings.Web.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
368
|
+ FS10 = "System.Text.Encoding.Extensions.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
369
|
+ FS10 = "System.Text.Encoding.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
370
|
+ FS10 = "System.Security.SecureString.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
371
|
+ FS10 = "System.Security.Principal.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
372
|
+ FS10 = "System.Security.Cryptography.X509Certificates.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
373
|
+ FS10 = "System.Security.Cryptography.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
374
|
+ FS10 = "System.Security.Cryptography.Encoding.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
375
|
+ FS10 = "System.Security.Cryptography.Csp.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
376
|
+ FS10 = "System.Security.Cryptography.Algorithms.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
377
|
+ FS10 = "System.Security.Claims.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
378
|
+ FS10 = "System.Runtime.Serialization.Xml.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
379
|
+ FS10 = "System.Runtime.Serialization.Primitives.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
380
|
+ FS10 = "System.Runtime.Serialization.Json.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
381
|
+ FS10 = "System.Runtime.Serialization.Formatters.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
382
|
+ FS10 = "System.Runtime.Numerics.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
383
|
+ FS10 = "System.Runtime.InteropServices.RuntimeInformation.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
384
|
+ FS10 = "System.Runtime.InteropServices.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
385
|
+ FS10 = "ystem.Runtime.Handles.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
386
|
+ FS10 = "System.Runtime.Extensions.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
387
|
+ FS10 = "System.Runtime.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
388
|
+ FS10 = "System.Runtime.CompilerServices.VisualC.dll" : MyModule1.進度條() : If File.Exists(Str & "\" & FS10) Then : File.Delete(Str & "\" & FS10) : End If
|
|
389
|
+ OK10 = True : CheckBox10.Checked = True : 刪除完成 = True
|
|
390
|
+ End Sub
|
|
391
|
+
|
|
392
|
+End Class
|