|
-
Sep 3rd, 2011, 06:19 AM
#1
Thread Starter
PowerPoster
[VB6] - seting volume micro with mciSendString()
can i control the micro volume with mciSendString() API function?
(i need these because i have 1 problem on system micro volume and maybe i can resolve it with an hidden program on startup )
-
Sep 4th, 2011, 01:27 PM
#2
Thread Starter
PowerPoster
Re: [VB6] - seting volume micro with mciSendString()
i build these code:
Code:
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
Dim blnActivate As Boolean
Private Sub Command1_Click()
Dim nReturn As Long
blnActivate = True
Do While blnActivate = True
nReturn = mciSendString("input volume to " & 255, "", 0, 0)
Debug.Print nReturn
DoEvents
Loop
End Sub
but seems not working
-
Sep 21st, 2011, 06:15 AM
#3
Re: [VB6] - seting volume micro with mciSendString()
I'm not sure if this would help?
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Sep 21st, 2011, 05:38 PM
#4
Thread Starter
PowerPoster
Re: [VB6] - seting volume micro with mciSendString()
 Originally Posted by Nightwalker83
I'm not sure if this would help?
sorry but don't helps but thanks
-
Sep 22nd, 2011, 02:17 PM
#5
Thread Starter
PowerPoster
Re: [VB6] - seting volume micro with mciSendString()
i found these code:http://translate.google.pt/translate...%2Fkb%2F178456
but the microphone code isn't right, i have tested
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|