-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathForm2.frm
More file actions
90 lines (88 loc) · 2.8 KB
/
Form2.frm
File metadata and controls
90 lines (88 loc) · 2.8 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 6780
ClientLeft = 60
ClientTop = 450
ClientWidth = 10470
LinkTopic = "Form1"
ScaleHeight = 6780
ScaleWidth = 10470
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
Caption = "Frame1"
Height = 11640
Left = 0
TabIndex = 0
Top = -4920
Width = 10455
Begin VB.TextBox Text1
Height = 2175
Index = 4
Left = 120
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 5
Text = "Form2.frx":0000
Top = 9360
Width = 10095
End
Begin VB.TextBox Text1
Height = 2175
Index = 3
Left = 120
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 4
Text = "Form2.frx":0006
Top = 7080
Width = 10095
End
Begin VB.TextBox Text1
Height = 2175
Index = 2
Left = 120
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 3
Text = "Form2.frx":000C
Top = 4800
Width = 10095
End
Begin VB.TextBox Text1
Height = 2175
Index = 1
Left = 120
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 2
Text = "Form2.frx":0012
Top = 2520
Width = 10095
End
Begin VB.TextBox Text1
Height = 2175
Index = 5
Left = 120
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 1
Text = "Form2.frx":0018
Top = 240
Width = 10095
End
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim CX!
Private Sub Frame1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
CX = Y
End Sub
Private Sub Frame1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button <> 1 Then Exit Sub
Frame1.Move 8, (Frame1.Top + Y) - CX
End Sub