home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4609
/
wavplus
/
wdevice.frm
< prev
Wrap
Text File
|
1994-06-28
|
5KB
|
176 lines
VERSION 2.00
Begin Form Wdevice
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
Caption = "WAV Device Info"
ClientHeight = 2490
ClientLeft = 2220
ClientTop = 1545
ClientWidth = 3975
ControlBox = 0 'False
Height = 2895
Left = 2160
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2490
ScaleWidth = 3975
Top = 1200
Width = 4095
Begin CommandButton CmdOkay
BackColor = &H00C0C0C0&
Cancel = -1 'True
Caption = "O &K A Y"
Default = -1 'True
Height = 375
Left = 240
TabIndex = 0
Top = 1920
Width = 3495
End
Begin Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Label2"
Height = 195
Index = 4
Left = 2400
TabIndex = 6
Top = 1440
Width = 1335
End
Begin Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Label2"
Height = 195
Index = 3
Left = 2400
TabIndex = 7
Top = 1200
Width = 1335
End
Begin Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Label2"
Height = 195
Index = 2
Left = 2400
TabIndex = 10
Top = 960
Width = 1335
End
Begin Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Label2"
Height = 195
Index = 1
Left = 2400
TabIndex = 9
Top = 480
Width = 1335
End
Begin Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Label2"
Height = 200
Index = 0
Left = 2400
TabIndex = 8
Top = 240
Width = 1335
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "Maximum Sample Rate:"
Height = 195
Index = 4
Left = 240
TabIndex = 5
Top = 1440
Width = 2055
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "Maximum Channels:"
Height = 195
Index = 3
Left = 240
TabIndex = 4
Top = 1200
Width = 2055
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "Maximum Bit Size:"
Height = 195
Index = 2
Left = 240
TabIndex = 3
Top = 960
Width = 2055
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "Can Record WAVs:"
Height = 195
Index = 1
Left = 240
TabIndex = 2
Top = 480
Width = 2055
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "Can Play WAVs:"
Height = 195
Index = 0
Left = 240
TabIndex = 1
Top = 240
Width = 2055
End
End
Sub CmdOkay_Click ()
Unload Me
End Sub
Sub Form_Load ()
FormCenterForm Me, DemoMain
If HowManyWavPlayDevices() = 0 Then
CanPlay$ = "False"
CanRecord$ = "False"
Channels$ = "0"
SampleBitSize$ = "0"
SampleRate$ = "0"
Else
CanPlay$ = Space$(255)
WavCanPlay CanPlay$
CanRecord$ = Space$(255)
WavCanRecord CanRecord$
SampleBitSize$ = Space$(255)
WavMaxBitSize SampleBitSize$
Channels$ = Space$(255)
WavMaxChannels Channels$
SampleRate$ = Space$(255)
WavMaxSampleRate SampleRate$
End If
Label2(0).Caption = CanPlay$
Label2(1).Caption = CanRecord$
Label2(2).Caption = SampleBitSize$
Label2(3).Caption = Channels$
Label2(4).Caption = SampleRate$
Screen.MousePointer = 0
End Sub
Sub Form_Paint ()
DoForm3D Me, sunken, 3, 0
DoForm3D Me, raised, 1, 3
End Sub