Click here to Skip to main content
15,890,557 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Right Click / Options Menu Pin
Mycroft Holmes5-Sep-09 22:30
professionalMycroft Holmes5-Sep-09 22:30 
GeneralRe: Right Click / Options Menu Pin
Member 43745426-Sep-09 9:07
Member 43745426-Sep-09 9:07 
GeneralRe: Right Click / Options Menu Pin
Mycroft Holmes6-Sep-09 12:52
professionalMycroft Holmes6-Sep-09 12:52 
QuestionUpdate Image In DataBase Pin
Viper20105-Sep-09 11:53
Viper20105-Sep-09 11:53 
AnswerRe: Update Image In DataBase Pin
Mycroft Holmes5-Sep-09 12:56
professionalMycroft Holmes5-Sep-09 12:56 
Questiontelephone number word generator Pin
rbjanaki5-Sep-09 9:35
rbjanaki5-Sep-09 9:35 
AnswerRe: telephone number word generator Pin
Christian Graus5-Sep-09 10:47
protectorChristian Graus5-Sep-09 10:47 
AnswerRe: telephone number word generator Pin
Henry Minute5-Sep-09 10:58
Henry Minute5-Sep-09 10:58 
I'll give you a clue, to get you started.

Dim numberToWord As New Dictionary(Of Integer, string)

numberToWord.Add(0, "Zero")
numberToWord.Add(1, "One")
numberToWord.Add(2, "Two")
numberToWord.Add(3, "Three")
numberToWord.Add(4, "Four")
........
........


or since the user enters the number as text you could do it as:
Dim numberToWord As New Dictionary(Of Char, string)

numberToWord.Add("0"C, "Zero")
numberToWord.Add("1"C, "One")
numberToWord.Add("2"C, "Two")
numberToWord.Add("3"C, "Three")
numberToWord.Add("4"C, "Four")
........
........


Look up anything you don't understand on MSDN or Google it.

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

AnswerRe: telephone number word generator Pin
rbjanaki6-Sep-09 11:01
rbjanaki6-Sep-09 11:01 
QuestionData report printing on second page Pin
n.tamilselvan5-Sep-09 4:23
n.tamilselvan5-Sep-09 4:23 
Questionusercontrol, panel, and labels access at runtime in vb.net Pin
adiquez4-Sep-09 23:19
adiquez4-Sep-09 23:19 
AnswerRe: usercontrol, panel, and labels access at runtime in vb.net Pin
Luc Pattyn5-Sep-09 0:50
sitebuilderLuc Pattyn5-Sep-09 0:50 
QuestionModem call and AT commands Pin
helelark1234-Sep-09 22:51
helelark1234-Sep-09 22:51 
AnswerRe: Modem call and AT commands Pin
Dave Kreskowiak5-Sep-09 1:58
mveDave Kreskowiak5-Sep-09 1:58 
GeneralRe: Modem call and AT commands Pin
helelark1235-Sep-09 2:34
helelark1235-Sep-09 2:34 
GeneralRe: Modem call and AT commands Pin
Dave Kreskowiak5-Sep-09 9:01
mveDave Kreskowiak5-Sep-09 9:01 
QuestionDelete Command - By Parameter - Problem() Pin
Paramu19734-Sep-09 22:48
Paramu19734-Sep-09 22:48 
AnswerRe: Delete Command - By Parameter - Problem() Pin
Rupesh Kumar Swami5-Sep-09 0:46
Rupesh Kumar Swami5-Sep-09 0:46 
GeneralRe: Delete Command - By Parameter - Problem() Pin
Paramu19735-Sep-09 0:55
Paramu19735-Sep-09 0:55 
GeneralRe: Delete Command - By Parameter - Problem() Pin
Rupesh Kumar Swami5-Sep-09 1:24
Rupesh Kumar Swami5-Sep-09 1:24 
Questionincrease the display rate from web cam Pin
kjsl2k94-Sep-09 18:50
kjsl2k94-Sep-09 18:50 
AnswerRe: increase the display rate from web cam Pin
Dave Kreskowiak5-Sep-09 1:54
mveDave Kreskowiak5-Sep-09 1:54 
QuestionWhy are my status and progress bars not updating Pin
Sonhospa4-Sep-09 13:26
Sonhospa4-Sep-09 13:26 
AnswerRe: Why are my status and progress bars not updating Pin
Luc Pattyn4-Sep-09 13:45
sitebuilderLuc Pattyn4-Sep-09 13:45 
GeneralRe: Why are my status and progress bars not updating Pin
Sonhospa4-Sep-09 13:56
Sonhospa4-Sep-09 13:56 

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.