Insert Text Into Text Box By Voice?
May 24, 2009i need vb.net code for insert text into text box by voice ,for examele when i speek "computer" it write in to textbox computer
View 1 Repliesi need vb.net code for insert text into text box by voice ,for examele when i speek "computer" it write in to textbox computer
View 1 RepliesI would like to cause SpeechLib-Voice to read a textbox-text in german. If it is possible, how can I do that.Can s.o. give me a hint?Jochen45
View 4 RepliesI have an SQL database, and 50 text files, and Visual Basic 2010 Premimum,I need to find a specific line of text in the text files and then take the next 37 lines of text and save them in my database. I need advice as to point me in the right direction
View 2 RepliesI have a question, how would i have a button, then when you click it, it puts the text at the text cursor in the RTF?
View 5 RepliesI am having trouble with a project I'm currently working on.. I've searched everywhere, and haven't been able to get anything to work. How can I make a program convert voice (for example, if someone were slowly talking over a mic, and the sound was coming through the computer the program is on) to text, and put that text into a text box? This has stumped me for some time now,
View 3 RepliesBasically I'm aware that using the code shown below you can get the default 'microsoft Sam' voice to work and read a textbox for example.
[Code]...
I want to use text to speech to say what is in my textbox. I have added the reference into the solution (MS speech object libarary) and inserted the "imports speechlib but i am getting an error when building.
error BC30451: Name 'voice' is not declared.
according to turtorials i have everything right, but i am still gettiing this error. here is my code;
Imports SpeechLib
[CODE]...
The very last "voice.speak" is the problem child.
I have written this voice synthesiser code in vb.net that converts text to speech using an application. I need to include emotions using rules I dont know if anyone can help with what to do..
View 2 Repliesi'm trying to insert the text inside a set of text boxes, into a table, the table has these columns
TicketID ("Autonumber")| StaffName | PCNumber | ZoneNumber | Description | TechnicianAssigned | JobComplete ("Yes/No")
Whats wrong with my SQL statement?
conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:\Uni (Year 3)\EJ315020S - Windows Application Devlopment\Assignment Database\Details.mdb"
strSQL = "INSERT INTO SupportTickets VALUES " & txtStaffName & "," & txtPCN & "," & txtZoneNumber & "," & rtbDescription & "," &
[code]....
For where it says integer, I just wanted to know what the 'integer' exactly is. If I want to insert text at the end of the user's text, what should I put?
View 8 Replieshow to take text read from a listbox and insert it into a richtextbox.
I thought this would work:
Dim insertText As String = ListBox1.SelectedItem.ToString
myPos = RichTextBox1.SelectionStart
RichTextBox1.Text.Insert(myPos, insertText)
I'm trying to create a Speech Recognition support for my program. I want to make it so that if I say something in my microphone, the program just writes what I said in Label1. I looked for Speech Recognition codes in MSDN and Google, but I didn't find anything useful. I found a code, but it was for VB.net, I tried but it didn't work in VB 2010.
View 1 RepliesI have a voice program that can compare voices to stored voice files and identify people based on that. It's not the most accurate thing, since being sick or other weird things can make it fail, but it does work for the most part. I was wondering if there was a way to keep the voice recognition running during an unlock and wait for the person who locked it to come back. Upon giving the command and voice verification, if it passes, the computer is unlocked by my program. Is there anyway to do this in VB.NET?Summary: Can a program unlock a computer after it's locked?
View 4 RepliesHow would i broadcast/specific(one person) a live voice over a tcp connection for my voice chat room im making.
View 1 Replies[code]I must read the line which not contain (T value). I must take the value in [] and serch whether the same value exist in the line that contain (T value) if exist i must remove the line which not contain (TValue) and insert in another file called "Top". If value doesnot exist than i must delete the line.
View 2 Replieswith vb and iam just trying to learn this one by reading tutorials online. After months o trying, i have created one db which i would like to use at our office. Its a counter Ticketing system. Its fun actually i must say, but its also giving me the headache with the trial and error am doing. Attached is the print screen of my project.I was able to make it work. Yes, it prints the number it needs to print. The problem is, i just dont know how to insert or where to insert the following text.Counter 17 (or whichever counter they have to go)Your number is
View 12 RepliesHow do I get back to where I can insert text? I can only typeover, even in a new VB project.
View 2 RepliesI have a spreadsheet saved as an .xml file. I see that as worksheets are added, the new xml text is simply inserted just before the final line of the file, which is "</workbook>". I have no problem creating the xml text for each added worksheet, but I don't know what I'm sure is a really simple way to insert the new text where it needs to go - or append the new text (including </workbook> at the end) at the correct location.
View 9 RepliesI have a text box that I need to be filled from another form (a search window). I would like to call a function and pass the text box to that function. What is the best way to do this? I think I can just pass the text box as an object. Or I could use an API. I may even be able to pass some kind of handle to the text box. Let me know what would be easiest (I would prefer to avoid API).
View 7 RepliesIm trying to put text into a RTB using buttons. These then auto fill in notes etc in the RTB to say a user did X at X time and date. This was working fine when i did it for a plain text RTB. But when using RTB i have had to change my origional code from:
Private Sub Button20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button20.Click
NotesBox.Rtf = Me.NotesBox.Text & vbNewLine & Date.Now.Day & "." & Date.Now.Month & "." &
[code].....
How can I insert a text in RichTextBox at current cursor position. The AppendText method adds to the end of the existing text. Any similar method that inserts text at the current cursor position?
Similarly, can it be done for our simple TextBox?
I just wondered if it's possible to run a exe and at a trigged event place text and send it in another exe?
View 1 RepliesI am trying to make a program that inserts text into another application. I want the user to be allowed to choose which application they want to put the text into Word, Notepad, WordPad, Firefox, IE, Anything. How do I do this? The user is obviously going to have to input something about the application but what do I need?
View 2 RepliesI am trying to make a program that the user fills out a field then it inserts it between this
<marquee>IN HERE</marquee>
I am usin Visual Basic Ultimate 2010 I need a text box that they fill out then they click another button then it inserts the text that that person filled in the texbox between the >INHERE<
sql="SELECT PartNo, Model, Manufacturer, Description, NumberinStock FROM Stock WHERE Description LIKE '%" + "my String Here" + "%' ORDER BY Manufacturer ASC"
View 8 Repliesi have the following code
Private Sub btn_AddRecord_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_AddRecord.Click
database_connection.Open()
[Code].....
I have a lines of text that need to be enter in different file after the specific line. This is the file that I need to insert the particular lines.
------------------------------------------------------------------------------
AGILENT 3070 FIXTURE WIRING REPORT Sat Mar 07, 2009 06:43:05 PM
/var/hp3070/boards/Celestica/wbf303/fixture/wires
------------------------------------------------------------------------------
Fixture Type : Agilent SimPlate Express
Fixture Size : Bank 2
Fixture Part Number : 44200S
Top Probes Allowed : Enabled
Autofile : 28
Units : English
Wiring Method : Automatic
[Code] .....
This code insert the new lines but at the beginning of the file, not at the place that I want?
I am trying to insert data in a text file. I need that each time a enter a windows form, a new line is created and i can insert data to the text file.The data must be like that:
Name, Message, Time
bob, test, 12.00
When the data is inserted 1st time, the 1st row would be created. Then each time new entry would be added.
I want to connect datagrid to ms access, how and insert text box data into datagrid.
View 1 RepliesI built a game that has three forms (the game, player info, and scoreboard). When you die the Player form shows and has a text box for the user to into their name and then they click submit. After they click submit the Scoreboard form shows and their name and score is showed in disabled text boxes. Also in the Scoreboard form are two List boxes (one for their name, and one for their score). The list boxes are connected to the database through a databinding by dragging them over from DataSources into the form.
I would like for the information in the Name text box and Score text box to automatically be inserted into the database when the Scoreboard form is loaded.How do you insert text from a textbox into a database?the Name is the first column in the database and the Score is the second column in the database.