Click here to Skip to main content
16,006,001 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to insert values in text box at run time in c# and assign it to int Pin
OriginalGriff11-Feb-11 20:23
mveOriginalGriff11-Feb-11 20:23 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
aeman11-Feb-11 21:08
aeman11-Feb-11 21:08 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
Anubhava Dimri11-Feb-11 21:19
Anubhava Dimri11-Feb-11 21:19 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
aeman11-Feb-11 21:36
aeman11-Feb-11 21:36 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
Anubhava Dimri11-Feb-11 21:44
Anubhava Dimri11-Feb-11 21:44 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
OriginalGriff11-Feb-11 21:26
mveOriginalGriff11-Feb-11 21:26 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
aeman11-Feb-11 21:33
aeman11-Feb-11 21:33 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
OriginalGriff11-Feb-11 21:45
mveOriginalGriff11-Feb-11 21:45 
Ah! I think you mean:
"I want to let the user type a value into the text box, and then convert it to a number in a variable in my program"

You can convert the TextBox content to a number at any time:
int i = int.Parse(textBox1.Text);
Will convert the content to an integer and store it in the variable i.

Why is this causing a problem? What do I still not understand about your problem?
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.

Digital man: "You are, in short, an idiot with the IQ of an ant and the intellectual capacity of a hose pipe."

GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
DaveyM6911-Feb-11 22:15
professionalDaveyM6911-Feb-11 22:15 
GeneralRe: how to insert values in text box at run time in c# and assign it to int Pin
aeman11-Feb-11 22:39
aeman11-Feb-11 22:39 
QuestionHow to Detect Music Device Pin
Pranit Kothari11-Feb-11 19:14
Pranit Kothari11-Feb-11 19:14 
QuestionSend Mail From Localhost Pin
Anubhava Dimri11-Feb-11 18:58
Anubhava Dimri11-Feb-11 18:58 
AnswerRe: Send Mail From Localhost Pin
Richard MacCutchan11-Feb-11 21:12
mveRichard MacCutchan11-Feb-11 21:12 
GeneralRe: Send Mail From Localhost Pin
Anubhava Dimri11-Feb-11 21:16
Anubhava Dimri11-Feb-11 21:16 
GeneralRe: Send Mail From Localhost Pin
Richard MacCutchan11-Feb-11 21:20
mveRichard MacCutchan11-Feb-11 21:20 
GeneralRe: Send Mail From Localhost Pin
Anubhava Dimri11-Feb-11 21:27
Anubhava Dimri11-Feb-11 21:27 
GeneralRe: Send Mail From Localhost Pin
phil.o11-Feb-11 22:39
professionalphil.o11-Feb-11 22:39 
GeneralRe: Send Mail From Localhost Pin
Anubhava Dimri11-Feb-11 22:44
Anubhava Dimri11-Feb-11 22:44 
QuestionC# ConnectionString Update - Read Only? Pin
gmhanna11-Feb-11 16:42
gmhanna11-Feb-11 16:42 
AnswerRe: C# ConnectionString Update - Read Only? Pin
Dave Kreskowiak11-Feb-11 18:36
mveDave Kreskowiak11-Feb-11 18:36 
AnswerRe: C# ConnectionString Update - Read Only? Pin
PIEBALDconsult12-Feb-11 3:54
mvePIEBALDconsult12-Feb-11 3:54 
QuestionHow to get printer true status? Pin
NTSteven11-Feb-11 14:19
NTSteven11-Feb-11 14:19 
AnswerRe: How to get printer true status? Pin
Dave Kreskowiak12-Feb-11 3:58
mveDave Kreskowiak12-Feb-11 3:58 
QuestionReset Network adapter Statics Pin
I Believe In GOD11-Feb-11 8:06
I Believe In GOD11-Feb-11 8:06 
AnswerRe: Reset Network adapter Statics Pin
OriginalGriff11-Feb-11 8:57
mveOriginalGriff11-Feb-11 8:57 

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.