-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplace.frm
More file actions
75 lines (71 loc) · 1.9 KB
/
place.frm
File metadata and controls
75 lines (71 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
VERSION 5.00
Begin VB.Form place
Caption = "λÖõ÷½Ú"
ClientHeight = 3030
ClientLeft = 17970
ClientTop = 4500
ClientWidth = 3390
LinkTopic = "Form3"
ScaleHeight = 3030
ScaleWidth = 3390
Begin VB.CommandButton Command5
Caption = "È·ÈÏ"
Height = 855
Left = 1200
TabIndex = 4
Top = 1080
Width = 975
End
Begin VB.CommandButton Command4
Caption = "¡ý"
Height = 855
Left = 1200
TabIndex = 3
Top = 2040
Width = 975
End
Begin VB.CommandButton Command3
Caption = "¡ú"
Height = 855
Left = 2280
TabIndex = 2
Top = 1080
Width = 975
End
Begin VB.CommandButton Command2
Caption = "¡û"
Height = 855
Left = 120
TabIndex = 1
Top = 1080
Width = 975
End
Begin VB.CommandButton Command1
Caption = "¡ü"
Height = 855
Left = 1200
TabIndex = 0
Top = 120
Width = 975
End
End
Attribute VB_Name = "place"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form1.top = Form1.top - 200
End Sub
Private Sub Command2_Click()
Form1.left = Form1.left - 200
End Sub
Private Sub Command3_Click()
Form1.left = Form1.left + 200
End Sub
Private Sub Command4_Click()
Form1.top = Form1.top + 200
End Sub
Private Sub Command5_Click()
Unload place
End Sub