質問編集履歴

1

nasi

2017/03/02 08:33

投稿

k_mail
k_mail

スコア90

test CHANGED
File without changes
test CHANGED
@@ -18,9 +18,7 @@
18
18
 
19
19
  Public Class Form1
20
20
 
21
- Private Sub Button1_Click(sender As System.Object, e As System.EventArgs)
21
+ Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
22
-
23
- Handles Button1.Click
24
22
 
25
23
  BackgroundWorker1.RunWorkerAsync()
26
24
 
@@ -28,11 +26,9 @@
28
26
 
29
27
 
30
28
 
31
- Private Sub BackgroundWorker1_DoWork(sender As System.Object,
29
+ Private Sub BackgroundWorker1_DoWork(sender As System.Object, e As System.ComponentModel.DoWorkEventArgs)
32
30
 
33
- e As System.ComponentModel.DoWorkEventArgs)
34
-
35
- Handles BackgroundWorker1.DoWork
31
+ Handles BackgroundWorker1.DoWork
36
32
 
37
33
  Do
38
34