-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm1.frm
43 lines (42 loc) · 1.15 KB
/
Form1.frm
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
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "Play Midi"
ClientHeight = 1305
ClientLeft = 45
ClientTop = 435
ClientWidth = 1665
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1305
ScaleWidth = 1665
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command2
Caption = "Stop"
Height = 495
Left = 120
TabIndex = 1
Top = 720
Width = 1455
End
Begin VB.CommandButton Command1
Caption = "Play"
Height = 495
Left = 120
TabIndex = 0
Top = 120
Width = 1455
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Call PlayMidi
End Sub
Private Sub Command2_Click()
Midi "close all"
End Sub