Click here to Skip to main content
15,893,668 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Listbox to textboxes Pin
celso_cabaleiro17-Mar-09 21:27
celso_cabaleiro17-Mar-09 21:27 
QuestionRe: Listbox to textboxes Pin
hendrikbez17-Mar-09 22:41
hendrikbez17-Mar-09 22:41 
QuestionAutomatically open chat window Pin
Gagan.2017-Mar-09 19:04
Gagan.2017-Mar-09 19:04 
AnswerRe: Automatically open chat window Pin
Christian Graus17-Mar-09 20:04
protectorChristian Graus17-Mar-09 20:04 
GeneralRe: Automatically open chat window Pin
Gagan.2017-Mar-09 20:31
Gagan.2017-Mar-09 20:31 
GeneralRe: Automatically open chat window Pin
Christian Graus17-Mar-09 20:33
protectorChristian Graus17-Mar-09 20:33 
GeneralRe: Automatically open chat window Pin
Gagan.2018-Mar-09 4:47
Gagan.2018-Mar-09 4:47 
Questionrecording sound from mic in VB.NET Pin
shark_scott17-Mar-09 17:34
shark_scott17-Mar-09 17:34 
Hi all,
Newbie question: I've been trying to get my VB.NET application to start recording from the mic when I press a button. I'm afraid my programming is very beginner (and consists largely of cut-and-paste). I have found a few examples of code online, but they are usually written in C. The one example I could find in VB.NET (below - from MSDN) seems simple but it doesn't work - am I missing something obvious? Do I need to put another "Imports ...." at the beginning? Should I be adding a component? Any help would be really, really appreciated - I've been trying for days.

Thanks!
Mark
Here's the code:

Imports Microsoft.VisualBasic.Devices
Imports Microsoft.VisualBasic
Imports System.Runtime.InteropServices
Public Class Form1


Private Shared Function mciSendString(ByVal lpstrCommand As String, ByVal lpstrReturnString As String, ByVal uReturnLength As Integer, ByVal hwndCallback As Integer) As Integer
End Function


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

' record from microphone
mciSendString("open new Type waveaudio Alias recsound", "", 0, 0)
mciSendString("record recsound", "", 0, 0)
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
' stop and save
mciSendString("save recsound c:\record.wav", "", 0, 0)
mciSendString("close recsound ", "", 0, 0)
Dim c As New Computer()
c.Audio.[Stop]()
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

Dim computer As New Computer()
computer.Audio.Play("c:\record.wav", AudioPlayMode.Background)
End Sub
End Class
QuestionPassing hIcons to WinAPI Pin
o m n i17-Mar-09 15:25
o m n i17-Mar-09 15:25 
AnswerRe: Passing hIcons to WinAPI Pin
Dave Kreskowiak18-Mar-09 6:38
mveDave Kreskowiak18-Mar-09 6:38 
QuestionProcessing Very Large Lists Pin
Alan Burkhart17-Mar-09 12:15
Alan Burkhart17-Mar-09 12:15 
AnswerRe: Processing Very Large Lists Pin
Christian Graus17-Mar-09 12:22
protectorChristian Graus17-Mar-09 12:22 
AnswerRe: Processing Very Large Lists Pin
supercat917-Mar-09 12:56
supercat917-Mar-09 12:56 
AnswerRe: Processing Very Large Lists Pin
Alan Burkhart17-Mar-09 13:17
Alan Burkhart17-Mar-09 13:17 
AnswerRe: Processing Very Large Lists Pin
Luc Pattyn17-Mar-09 15:03
sitebuilderLuc Pattyn17-Mar-09 15:03 
GeneralRe: Processing Very Large Lists Pin
Alan Burkhart17-Mar-09 16:18
Alan Burkhart17-Mar-09 16:18 
QuestionMS Word Automation [modified] correct and/or add styles to an existing document using template ???? Pin
Amr M. K.17-Mar-09 12:08
Amr M. K.17-Mar-09 12:08 
Questionunable to get result back from unmanaged code Pin
Bjorn Tore17-Mar-09 11:32
Bjorn Tore17-Mar-09 11:32 
AnswerRe: unable to get result back from unmanaged code Pin
Christian Graus17-Mar-09 11:57
protectorChristian Graus17-Mar-09 11:57 
QuestionRestoring bac the server Pin
jishbalan17-Mar-09 6:35
jishbalan17-Mar-09 6:35 
AnswerRe: Restoring bac the server Pin
0x3c017-Mar-09 7:13
0x3c017-Mar-09 7:13 
QuestionChanging Audio Devices? Pin
SeeingBlue17-Mar-09 4:53
SeeingBlue17-Mar-09 4:53 
AnswerRe: Changing Audio Devices? Pin
dan!sh 17-Mar-09 5:14
professional dan!sh 17-Mar-09 5:14 
AnswerRe: Changing Audio Devices? Pin
Xmen Real 17-Mar-09 5:43
professional Xmen Real 17-Mar-09 5:43 
QuestionHow could you check a node in treeview whenever a child node gets checked? Pin
JUNEYT17-Mar-09 4:21
JUNEYT17-Mar-09 4:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.