473,385 Members | 1,834 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

how can I use two txtbox to enter aphanumeric value and change it

how can I use two txtbox to enter aphanumeric value and taking the first value of the textbox and placing it in the second txtbox with the numbers value being change to the actual wording (1,2 changes to one, two).
Nov 11 '06 #1
18 1494
willakawill
1,646 1GB
how can I use two txtbox to enter aphanumeric value and taking the first value of the textbox and placing it in the second txtbox with the numbers value being change to the actual wording (1,2 changes to one, two).
Hi. What limits did you have in mind for these numbers?
For instance, do you want to have "one million five hundred thousand and forty two"
Nov 11 '06 #2
Hi. What limits did you have in mind for these numbers?
For instance, do you want to have "one million five hundred thousand and forty two"
up to 10 is fine
Nov 11 '06 #3
up to 10 is fine

can someone please help me I having such a hard time.
Nov 11 '06 #4
willakawill
1,646 1GB
can someone please help me I having such a hard time.
You can do it this way using an array and the Split() function

This works though there are no checks on the user input
Expand|Select|Wrap|Line Numbers
  1.     Dim stAr(10) As String
  2.     Dim arInput As Variant
  3.     Dim stOutput As String
  4.     Dim intLoop As Integer
  5.  
  6.     stAr(0) = "zero"
  7.     stAr(1) = "one"
  8.     stAr(2) = "two"
  9.     stAr(3) = "three"
  10.     stAr(4) = "four"
  11.     stAr(5) = "five"
  12.     stAr(6) = "six"
  13.     stAr(7) = "seven"
  14.     stAr(8) = "eight"
  15.     stAr(9) = "nine"
  16.     stAr(10) = "ten"
  17.  
  18.     arInput = Split(Me.txtInput.Text, ",")
  19.     For intLoop = 0 To UBound(arInput) - 1
  20.         stOutput = stOutput & stAr(CInt(arInput(intLoop))) & ", "
  21.     Next intLoop
  22.     stOutput = stOutput & stAr(CInt(arInput(intLoop)))
  23.     Me.txtOutput.Text = stOutput
  24.  
Nov 11 '06 #5
You can do it this way using an array and the Split() function

This works though there are no checks on the user input
Expand|Select|Wrap|Line Numbers
  1.     Dim stAr(10) As String
  2.     Dim arInput As Variant
  3.     Dim stOutput As String
  4.     Dim intLoop As Integer
  5.  
  6.     stAr(0) = "zero"
  7.     stAr(1) = "one"
  8.     stAr(2) = "two"
  9.     stAr(3) = "three"
  10.     stAr(4) = "four"
  11.     stAr(5) = "five"
  12.     stAr(6) = "six"
  13.     stAr(7) = "seven"
  14.     stAr(8) = "eight"
  15.     stAr(9) = "nine"
  16.     stAr(10) = "ten"
  17.  
  18.     arInput = Split(Me.txtInput.Text, ",")
  19.     For intLoop = 0 To UBound(arInput) - 1
  20.         stOutput = stOutput & stAr(CInt(arInput(intLoop))) & ", "
  21.     Next intLoop
  22.     stOutput = stOutput & stAr(CInt(arInput(intLoop)))
  23.     Me.txtOutput.Text = stOutput
  24.  
Thanks but can I actually use this with vb
I am actually trying to run it in VB 2005 express edition
Nov 11 '06 #6
Thanks but can I actually use this with vb
I am actually trying to run it in VB 2005 express edition
I really appreciate your help

Thanks again
Nov 11 '06 #7
willakawill
1,646 1GB
Thanks but can I actually use this with vb
I am actually trying to run it in VB 2005 express edition
I have no idea if this runs on .NET or not. Why not test it and see.
Put a couple of textboxes on a form with a button and paste this code into the button_click event. I tested the code with VB6

Let us know if it works.
Good luck
Nov 11 '06 #8
I have no idea if this runs on .NET or not. Why not test it and see.
Put a couple of textboxes on a form with a button and paste this code into the button_click event. I tested the code with VB6

Let us know if it works.
Good luck
Thanks for your reply,

everything seems to be fine however, I get an error "variable 'stOutput' is used before it has been assigned a value. A null refference exception could result at runtime" and is this vb coding? I think it is.
Nov 13 '06 #9
willakawill
1,646 1GB
Thanks for your reply,

everything seems to be fine however, I get an error "variable 'stOutput' is used before it has been assigned a value. A null refference exception could result at runtime" and is this vb coding? I think it is.
Try this just after the last Dim statement
stOutput = ""
Nov 13 '06 #10
Try this just after the last Dim statement
stOutput = ""
Now I get A different error for this line stOutput = stOutput & stAr(CInt(arInput(intLoop)))

error: Conversion from string "jkhkjh" to type 'Integer' is not valid.

sorry about the stupid question. Yeah it is vb
Nov 13 '06 #11
Try this just after the last Dim statement
stOutput = ""

Now I get a different error for this line stOutput = stOutput & stAr(CInt(arInput(intLoop)))

error: Conversion from string "juji67" to type 'Integer' is not valid.
Nov 13 '06 #12
Now I get a different error for this line stOutput = stOutput & stAr(CInt(arInput(intLoop)))

error: Conversion from string "juji67" to type 'Integer' is not valid.
oh this is page two I was looking for the last post I thought it was on page 1
Nov 13 '06 #13
willakawill
1,646 1GB
oh this is page two I was looking for the last post I thought it was on page 1
Did you copy and paste this code or did you type it in.
There is no error when run under vb6
What is being typed into the first textbox. this should be numbers separated by a comma.
Nov 13 '06 #14
willakawill
1,646 1GB
Now I get A different error for this line stOutput = stOutput & stAr(CInt(arInput(intLoop)))

error: Conversion from string "jkhkjh" to type 'Integer' is not valid.

sorry about the stupid question. Yeah it is vb
This includes a check for numeric entries
Expand|Select|Wrap|Line Numbers
  1.     Dim stAr(10) As String
  2.     Dim arInput As Variant
  3.     Dim stOutput As String
  4.     Dim intLoop As Integer
  5.  
  6.     stOutput = ""
  7.  
  8.     stAr(0) = "zero"
  9.     stAr(1) = "one"
  10.     stAr(2) = "two"
  11.     stAr(3) = "three"
  12.     stAr(4) = "four"
  13.     stAr(5) = "five"
  14.     stAr(6) = "six"
  15.     stAr(7) = "seven"
  16.     stAr(8) = "eight"
  17.     stAr(9) = "nine"
  18.     stAr(10) = "ten"
  19.  
  20.     arInput = Split(Me.txtInput.Text, ",")
  21.     For intLoop = 0 To UBound(arInput) - 1
  22.         If IsNumeric(arInput(intLoop) Then
  23.             stOutput = stOutput & stAr(CInt(arInput(intLoop))) & ", "
  24.         Else
  25.             MsgBox "Please enter single numbers separated by a comma"
  26.             Me.txtInput.Text = ""
  27.             Me.txtInput.SetFocus
  28.             Exit Sub
  29.         End If
  30.     Next intLoop
  31.     stOutput = stOutput & stAr(CInt(arInput(intLoop)))
  32.     Me.txtOutput.Text = stOutput
  33.  
Nov 13 '06 #15
This includes a check for numeric entries
Expand|Select|Wrap|Line Numbers
  1.     Dim stAr(10) As String
  2.     Dim arInput As Variant
  3.     Dim stOutput As String
  4.     Dim intLoop As Integer
  5.  
  6.     stOutput = ""
  7.  
  8.     stAr(0) = "zero"
  9.     stAr(1) = "one"
  10.     stAr(2) = "two"
  11.     stAr(3) = "three"
  12.     stAr(4) = "four"
  13.     stAr(5) = "five"
  14.     stAr(6) = "six"
  15.     stAr(7) = "seven"
  16.     stAr(8) = "eight"
  17.     stAr(9) = "nine"
  18.     stAr(10) = "ten"
  19.  
  20.     arInput = Split(Me.txtInput.Text, ",")
  21.     For intLoop = 0 To UBound(arInput) - 1
  22.         If IsNumeric(arInput(intLoop) Then
  23.             stOutput = stOutput & stAr(CInt(arInput(intLoop))) & ", "
  24.         Else
  25.             MsgBox "Please enter single numbers separated by a comma"
  26.             Me.txtInput.Text = ""
  27.             Me.txtInput.SetFocus
  28.             Exit Sub
  29.         End If
  30.     Next intLoop
  31.     stOutput = stOutput & stAr(CInt(arInput(intLoop)))
  32.     Me.txtOutput.Text = stOutput
  33.  
ok it does work however I was hoping to enter a words/letters and numbers without commans and convert the numbers from numeric to the actual world.

ex.

txtInput: hello123

click button

txtOutput: helloonetwothree

and if you don't mind can you then try and reverse it

txtInput: OneTwoThreehello
Nov 13 '06 #16
ok it does work however I was hoping to enter a words/letters and numbers without commans and convert the numbers from numeric to the actual world.

ex.

txtInput: hello123

click button

txtOutput: helloonetwothree

and if you don't mind can you then try and reverse it

txtInput: OneTwoThreehello

sorry I mean txtOutput: OneTwoThreehello
Nov 13 '06 #17
willakawill
1,646 1GB
ok it does work however I was hoping to enter a words/letters and numbers without commans and convert the numbers from numeric to the actual world.

ex.

txtInput: hello123

click button

txtOutput: helloonetwothree

and if you don't mind can you then try and reverse it

txtInput: OneTwoThreehello
Great so you now have a working model that you can improve upon and learn from. Happy hunting :)
Nov 13 '06 #18
Great so you now have a working model that you can improve upon and learn from. Happy hunting :)
Thanks for all your help. I appriciated
Nov 13 '06 #19

Sign in to post your reply or Sign up for a free account.

Similar topics

15
by: M Smith | last post by:
I have a form I want to submit to itself. I want to be able to type in a list of numbers and submit the form and have that list show up on the same form under the text box I typed them into and...
1
by: Koen | last post by:
Hi, I have three objects in my form: a listbox (lstform) a subform (fsub) a txtbox (txt) The listbox lists form names that will be displayed in the subform. To do this I use the...
2
by: DD | last post by:
I have a subform on a form In the subform i have a chkBox= and a txtbox= The idea is you Chk and the price $40.00 is automaticly entered into The chkBox has code Private Sub...
13
by: Rich | last post by:
Hello, So I would like to disable a textbox on a vb.net form without the text getting grayed out. In vb6 I could place a textbox control on a frame control and disable the frame leaving the...
2
by: Boki | last post by:
Hi All, // code start alert("document.all.txtbox"+valueA+".value") // end code could you please advice, can it show the value of txtbox ?
8
by: Jeff | last post by:
A client wants a press of the Enter key in a field on a continuous form to grab the value of that field from the previous record. But if they have typed a value and then hit Enter it shouldn't. ...
2
by: ebasshead | last post by:
Hi Everybody, I have a txtbox that populates itself when the start of the form is filled out. But sometimes I have to change the info in that specific txtbox. At the moment it wont allow me to. Is...
2
by: HHAAPPYY | last post by:
Hi I am trying to pass value of the textbox along with another value to the query string. when i am retriving the txtbox value it always shows me null, my senario is like this On my...
1
by: mailbox73 | last post by:
Hi, c# 2008 express edition. Can anyone please help me figure out why I cannot get any value from one form to another when the controls are databound. (the formY.txtbox lands up empty) in...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.