回答編集履歴

1

修正

2021/08/14 02:26

投稿

退会済みユーザー
test CHANGED
@@ -23,6 +23,20 @@
23
23
 
24
24
 
25
25
  Public Class Form1
26
+
27
+ Protected Overrides Sub OnLoad(e As EventArgs)
28
+
29
+ MyBase.OnLoad(e)
30
+
31
+
32
+
33
+ Timer1.Interval = 1000
34
+
35
+ Timer1.Start()
36
+
37
+ End Sub
38
+
39
+
26
40
 
27
41
  Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
28
42