VisualBasic6.0录音机源代码-2024-7-21QZQ

Option Explicit

'Download by http://www.codefans.net
Private Declare Function mciSendString Lib “winmm.dll” Alias “mciSendStringA” (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, ByVal uReturnLength As Long, ByVal hwndCallback As Long) As Long
Private Declare Function mciGetErrorString Lib “winmm.dll” Alias “mciGetErrorStringA” (ByVal dwError As Long, ByVal lpstrBuffer As String, ByVal uLength As Long) As Long

Dim ReturnString As String * 256
Dim RetValue As Long
Dim errorstring As String * 1024

Private Sub cmdPlay_Click()
Dim CommandString As String
If Dir(App.Path & “\Test.Wav”) <> “” Then
RetValue = mciSendString(“open Test.Wav alias sounds1”, ReturnString, 256, 0)
mciSendString “play sounds1”, ReturnString, 256, 0
Else
MsgBox “没有声音文件 Test.Wav”, vbOKOnly, “提示”
End If
End Sub

Private Sub cmdRecord_Click()
Dim uniqueFilename As String
uniqueFilename = “Record” & Format(Now, “yyyymmddhhnnss”) & “.wav” '生成唯一的文件名,包含当前时间
RetValue = mciSendString(“open new type waveaudio alias sounds1”, ReturnString, 256, 0)
If RetValue = 0 Then
'开始录音…
RetValue = mciSendString(“record sounds1”, ReturnString, 256, 0)
cmdStop.Enabled = True
Else
mciGetErrorString RetValue, errorstring, 1024
MsgBox errorstring
End If
End Sub

Private Sub cmdStop_Click()
RetValue = mciSendString(“stop sounds1”, ReturnString, 256, 0)
Dim uniqueFilename As String
uniqueFilename = “Record” & Format(Now, “yyyymmddhhnnss”) & “.wav” '生成唯一的文件名,包含当前时间
RetValue = mciSendString("save sounds1 " & uniqueFilename, ReturnString, 256, 0)
If RetValue = 0 Then
Else
mciGetErrorString RetValue, errorstring, 1024
MsgBox errorstring
End If
RetValue = mciSendString(“close sounds1”, ReturnString, 256, 0)
cmdStop.Enabled = False
End Sub

Private Sub Form_Unload(Cancel As Integer)
mciSendString “close all”, ReturnString, 256, 0
End Sub




vb6.0录音机

🎉精彩不容错过!新文章震撼登场,却因代码不全让人意犹未尽?别担心!我们为你准备了软件截图,让你先睹为快,感受其强大魅力。

✨如果你渴望解锁全部精彩内容,那么强烈建议你下载完整源代码。它将为你打开一扇通往编程新世界的大门,让你深入探索其中的奥秘,挖掘无限潜力。

🔗源代码下载网址:[https://download.csdn.net/download/qq_32257509/89562942]。赶紧行动起来,下载完整源代码,开启你的编程之旅吧!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

EasySoft易软

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值