Click here to Skip to main content
15,916,280 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Email Sending/Receiving--Help?!? Pin
Michael Fritzius28-Sep-07 5:16
professionalMichael Fritzius28-Sep-07 5:16 
QuestionCreating 2 or more Textbox with 1 button Pin
Can_8527-Sep-07 8:42
Can_8527-Sep-07 8:42 
AnswerRe: Creating 2 or more Textbox with 1 button Pin
Kristian Sixhøj27-Sep-07 9:02
Kristian Sixhøj27-Sep-07 9:02 
GeneralRe: Creating 2 or more Textbox with 1 button Pin
Can_8527-Sep-07 9:48
Can_8527-Sep-07 9:48 
GeneralRe: Creating 2 or more Textbox with 1 button Pin
Can_8527-Sep-07 9:50
Can_8527-Sep-07 9:50 
GeneralRe: Creating 2 or more Textbox with 1 button Pin
Christian Graus27-Sep-07 12:21
protectorChristian Graus27-Sep-07 12:21 
AnswerRe: Creating 2 or more Textbox with 1 button Pin
led mike27-Sep-07 9:02
led mike27-Sep-07 9:02 
GeneralRe: Creating 2 or more Textbox with 1 button Pin
Kristian Sixhøj27-Sep-07 9:09
Kristian Sixhøj27-Sep-07 9:09 
Maybe you should do this:
private void createTextBox(string name)
{
    // code to create a textbox
    TextBox name = new TextBox();
}

private void button1_Click(object sender, EventArgs e)
{
    createTextBox(box1);
    createTextBox(box2);
}
Otherwise they probably would cause an exception if two textboxes are created with the same names. Wink | ;)

Virtual1ty

"Any fool can learn from his own mistakes, but a wise man learns from mistakes of others"

QuestionEven Handler problem Pin
ytubis27-Sep-07 8:13
ytubis27-Sep-07 8:13 
AnswerRe: Even Handler problem Pin
Judah Gabriel Himango27-Sep-07 8:24
sponsorJudah Gabriel Himango27-Sep-07 8:24 
AnswerRe: Even Handler problem Pin
Luc Pattyn27-Sep-07 8:54
sitebuilderLuc Pattyn27-Sep-07 8:54 
QuestionHow do i configure .Net framework configuration tools Pin
steevlee@hotmail.com27-Sep-07 7:50
steevlee@hotmail.com27-Sep-07 7:50 
AnswerRe: How do i configure .Net framework configuration tools Pin
Judah Gabriel Himango27-Sep-07 7:58
sponsorJudah Gabriel Himango27-Sep-07 7:58 
GeneralRe: How do i configure .Net framework configuration tools Pin
steevlee@hotmail.com27-Sep-07 10:58
steevlee@hotmail.com27-Sep-07 10:58 
QuestionComboBox Pin
dCodeProvider27-Sep-07 7:29
dCodeProvider27-Sep-07 7:29 
AnswerRe: ComboBox Pin
Ed.Poore27-Sep-07 7:33
Ed.Poore27-Sep-07 7:33 
AnswerRe: ComboBox Pin
Dave Kreskowiak27-Sep-07 7:42
mveDave Kreskowiak27-Sep-07 7:42 
QuestionPrinting [modified] Pin
rowdykuttan27-Sep-07 7:27
rowdykuttan27-Sep-07 7:27 
AnswerRe: Printing Pin
il_masacratore27-Sep-07 21:36
il_masacratore27-Sep-07 21:36 
GeneralRe: Printing Pin
rowdykuttan28-Sep-07 2:56
rowdykuttan28-Sep-07 2:56 
QuestionVista: "myApp has stopped working..." Pin
AlexZieg7127-Sep-07 7:23
AlexZieg7127-Sep-07 7:23 
AnswerRe: Vista: "myApp has stopped working..." Pin
Ed.Poore27-Sep-07 7:35
Ed.Poore27-Sep-07 7:35 
GeneralRe: Vista: "myApp has stopped working..." Pin
AlexZieg7127-Sep-07 8:02
AlexZieg7127-Sep-07 8:02 
GeneralRe: Vista: "myApp has stopped working..." Pin
JoeRip27-Sep-07 21:55
JoeRip27-Sep-07 21:55 
GeneralRe: Vista: "myApp has stopped working..." Pin
AlexZieg7127-Sep-07 23:47
AlexZieg7127-Sep-07 23:47 

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.