-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmIcon.frm
67 lines (66 loc) · 1.97 KB
/
frmIcon.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
VERSION 5.00
Object = "{6BF52A50-394A-11D3-B153-00C04F79FAA6}#1.0#0"; "wmp.dll"
Begin VB.Form frmIcon
BorderStyle = 3 'Fixed Dialog
Caption = "Icon"
ClientHeight = 465
ClientLeft = 45
ClientTop = 390
ClientWidth = 1485
Icon = "frmIcon.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 465
ScaleWidth = 1485
ShowInTaskbar = 0 'False
StartUpPosition = 3 '´°¿Úȱʡ
Visible = 0 'False
Begin WMPLibCtl.WindowsMediaPlayer Wmp
Height = 375
Left = 0
TabIndex = 0
Top = 0
Width = 375
URL = ""
rate = 1
balance = 0
currentPosition = 0
defaultFrame = ""
playCount = 1
autoStart = -1 'True
currentMarker = 0
invokeURLs = -1 'True
baseURL = ""
volume = 50
mute = 0 'False
uiMode = "full"
stretchToFit = 0 'False
windowlessVideo = 0 'False
enabled = -1 'True
enableContextMenu= -1 'True
fullScreen = 0 'False
SAMIStyle = ""
SAMILang = ""
SAMIFilename = ""
captioningID = ""
enableErrorDialogs= 0 'False
_cx = 661
_cy = 661
End
End
Attribute VB_Name = "frmIcon"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Sub PlayPoint()
Dim sPath As String
sPath = SfxPath & "sfx_point.wav"
If Dir(sPath) = "" Then Exit Sub
With Wmp
.URL = sPath
.Controls.play
End With
End Sub