Input Any Words In Textbox - The Program Will Reply By Sound Of What Input In The Textbox
Jul 7, 2009
i use visual basic 6 i already try making a button to play sounds. by clicking the button and the sound will out. so that i want to know were could i start, when you input words in textbox the program will speak what you have type in the textbox.
_
View 5 Replies
ADVERTISEMENT
Feb 19, 2012
If my Category and Forum selection is incorrect I am sorry and feel free to move it. I'd like to have the users input in the message box that will show. For example: There is a textbox and the user puts in their name as Bob. Then the message box would be: What my main goal is, is being able to include the users input they type inside the textbox inside the message box.
View 6 Replies
Sep 25, 2010
I have a problem with the code, I have input the valid username and password in the form textbox to input the strings in php, but it keep displaying the messagebox that says login failed.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MessageBox.Show("Please enter your username")
ElseIf Textbox2.Text = Nothing Then
MessageBox.Show("Please enter your password")
Else
[CODE]...
I don't really know why it keep displaying the messagebox that says it failed when I have input the valid strings in the first place.
View 1 Replies
Sep 28, 2011
My objective is to, instead of entering in the data manually into the text boxes, I want to read in a textfile. The Calculate button will contain the code to read in the file and assign it to the appropriate textboxes. Save the separate file in the \bin\Debug folder.
The text file just needs to have 3 integers on 3 separate lines.The code I posted works without and errors, but.I am having some trouble integrating the Stream Reader.
[Code]...
View 14 Replies
Aug 31, 2011
I've been working on a program that takes input from a textbox, removes the punctuation, puts the words into an array (using the split method), and compares the array against a reversed copy of itself to determine if it is a word palindrome or not. I understand the logic, but I'm getting kind of caught up as far as what code to us. This is what I have so far, but no matter what I enter into the text box, nothing happens. I'm completely lost as to what I'm doing wrong.
[Code]...
View 4 Replies
Sep 10, 2009
I'am creating a program that will input a number in a textbox for example 5 and display 5 textboxes in form...I have no idea how to do this but here is the code i've done..
textbox1.text = val(textbox1.text)
'i don't know what to do next..
View 1 Replies
Mar 25, 2011
I have 3 TextBox control, 2 is for keyin data and 1 is for Display data,
[Code]...
What I want is to display combine input data from TextBox1.Text and TextBox2.Text to TextBox3.Text I mean keep any previous data input in same TextBox and saperate it using a comma (,) or (;) for combination I am using (@)
Example: In TextBox1.Text I put 200 and TextBox2.Text 2000... Click button Save and I want it to be display in TextBox3.Text as 200@2000 and again I Enter 500 in TextBox1.Text and 5000 in TextBox2.Text Click save button and I want it be display in TextBox3.Text as 200@2000;500@5000 which is 200@2000 is the first input data... and it continue as many as it can.
View 2 Replies
Jul 14, 2010
I have two textbox controls and I want to accept input for textbox 1 and textbox 2. However, when user enters text into textbox 1 I would like textbox 2 to mirror the same text as it is typed.
I am sure this is a very simple procedure however it is new to me and I am having trouble finding an answer with search engines. Most result are coming back as text that one can read backwards in a mirror which is not what I am looking for.
View 1 Replies
Aug 11, 2009
I've got 2 RTB one is for input of text and one is output.The output one needs to read the words from the input and display it alphabetically and with their line numbers.I have partly done it and it currently reads it but here is my problem When the words are outputted let say for example there are 2 words the same on the same line e.g the word 'you' appears twice on line one,at the moment its coming up like this
[Code]...
View 18 Replies
Oct 12, 2010
A requirement my thesis panelists ask of me is that I should be able to control the text input in a textbox. For example, in a textbox that's for inputting student numbers, it should only accept numbers and the dash character (-
View 4 Replies
May 11, 2010
I'm using VB Express 2008 and I want tto write a simple code.
[Code]...
View 1 Replies
Apr 1, 2011
i have this code:
If TextBox1.Text = "" Then
Label2.Text = " feild empty "
Elseif TextBox1.Text <> "1234" or "7463" or "3625" or "7642" Then
[Code].....
it works when its only only content "1234" but i need to place more than one possible valid input.
View 2 Replies
Feb 16, 2006
I have some textboxes that I only want numbers in and only want a range of numbers to be valid. Also I do not want to use NUDs. I already have the textboxes connected to functons and subs so I do not really want to change them.How would I do this?
View 8 Replies
Aug 7, 2011
How can I get my app. to remember the text that was enterd into a TextBox by a user?
View 3 Replies
Sep 4, 2009
I want to know how could I use the input in the textbox as my filename. I intend to use the input in textbox (the input is obtained using a barcode scanner) as a filename for a text file.
View 15 Replies
May 4, 2012
how one would go about validating input into a textbox for example:
Lets say the first letter the user enters has to be 'A' and the third letter the user enters has to be any number ranging from 0-9 and the length of their input cannot exceed lets say 10.
This is what I have so far:
If txtOperatorID.TextLength > 10 Then
bErrorOccured = True
sErrorMessage = sErrorMessage & "-No more than 10 chars" & vbCrLf
[Code]....
The coding for the length works(is there a better way to do this)? The coding for the first letter to be A works but then I have no idea how to set validation for any proceeding characters entered. Am i right in thinking I have to find their position somehow in the string if so how?
View 8 Replies
Jan 18, 2012
im trying to create an instant messenger i have textbox where user can type anything like url etc..how do i get the url string that entered in textbox when i press button.i just want to change the string url using replace function.
View 4 Replies
Aug 16, 2011
I want to allow the user to enter symbols using the keyboard. I'm checking the textbox onkeydown event for the pressed key and then change it to a symbol, for example if I would press 'a' then the textbox would show '☺'. But the problem is that the textbox shows both 'a' and '☺'. Is there a better event to check this, or better way to do this?[code]...
View 2 Replies
Apr 15, 2011
I'm doing some homework for my VB class where I have to write a program that creates an invoice for a customer. I'm having an issue with converting the name input from the format of (Last, First) within the same textbox to (First Last) in a listbox via a function. I have done everything but dealing with the strings and I'm at a loss. I'm also having to create an invoice number with the first two letters of the last name and also the last four numbers of the zip code in an address line such as City, State, Zip. Manipulating these strings is killing me.Below is the code that I have written, manipulation of the strings must be in one function for each the invoice and the and the name issue....
=Dim custinvoicenum As String
Private Sub btnProcess_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnProcess.Click
Dim custname As String 'Name of customer[code]......
View 7 Replies
Oct 31, 2011
i have a textbox and i want to find all of the words begin with the letter in textbox(for example a)
i know i should use "select * from tbl_search where Name like a% "
but it doesnt work for values in textbox.for example i wrote like this:
cmd = New SqlCommand("select * from tbl_search where Name like @value%") 'it gives the runtime error :"Incorrect syntax near '%'."
cmd.Parameters.AddWithValue("@value", TextBox1.Text)
View 2 Replies
Feb 20, 2012
I am new to VB and am having a little trouble with my class assignment. Basically it is supposed to take an invoice subtotal - find the discount percent and give the real total. I cant seem to get my class to access the textbox for user input and it just keeps returning 0's. This is a homework assignment as well... im not asking for the answer just some tips because i am truly at a loss and cannot figure this out
This is my code from the button click event:
[Code]...
View 1 Replies
Feb 28, 2009
i am creating an app that when a button is pressed a batch file is executed and hidden from view.I have managed to get the output of the batch file to be displayed in a text box.
View 6 Replies
Feb 19, 2012
How do i change the display member of a ComboBox after i have entered a code in a textbox that it represent the combobox value?[code]...
View 2 Replies
Oct 12, 2009
for example if i have 5 textbox, when i press the button the textbox6 will get all the inputs in textbox1-5.
example.
textbox1
textbox1=1
[code].....
View 3 Replies
Mar 14, 2012
I'm using VB 2010. What is the best way to convert a textbox to an integer?
View 11 Replies
Jan 21, 2012
He wants to create a new table in the database (his using vb.net, mysql). The tricky thing is that he wants to name the new table from the the input being encoded into a textbox.
To create and name a new table from the input in the textbox.
View 2 Replies
Feb 17, 2011
I am able to add an existing MDF database to my project and apply it to a form with the appropriate binders and navigators and such and it works fine. I can hard code queries that are very successful. My question is this: Is there a way to add a textbox to the form, where I could enter a valid query that would execute on a button click event? It seems like I should be able to do so with SqlCommand, but I am just stumped.
[Code]...
View 3 Replies
Apr 4, 2011
I am trying to filter a dataset using input from a textbox. I would like this to happen on a button's click event. I am familiar with connecting to a database using an adapter but I have never tried to have VS make the connection for me and display results in a datagrid view. I have tried google'ing this numerous ways and tried numerous attempts to code this to no avail.
View 1 Replies
Jun 2, 2009
How do I suppress all data except numeric?
This is not working on KeyDown():
If e.KeyData < Keys.D0 Or e.KeyData > Keys.D9 Then
e.Handled = True
End If
View 4 Replies
Aug 18, 2009
Is there a easy way to input a string or integer into another exe's textbox for example, if i wanted to write into the textbox on the windows calculator '3'.
View 1 Replies