Click here to Skip to main content
15,914,382 members
Home / Discussions / C#
   

C#

 
AnswerRe: is it possible to debug my C# program (for Windows-Mobile) Pin
Dave Kreskowiak8-Nov-11 3:08
mveDave Kreskowiak8-Nov-11 3:08 
QuestionRecording my internet browsing on file Pin
Member 83534877-Nov-11 23:46
Member 83534877-Nov-11 23:46 
AnswerRe: Recording my internet browsing on file Pin
Bernhard Hiller8-Nov-11 0:08
Bernhard Hiller8-Nov-11 0:08 
GeneralRe: Recording my internet browsing on file Pin
Member 83534878-Nov-11 0:26
Member 83534878-Nov-11 0:26 
GeneralRe: Recording my internet browsing on file Pin
BhuvanRamIconcept8-Nov-11 1:13
BhuvanRamIconcept8-Nov-11 1:13 
GeneralRe: Recording my internet browsing on file Pin
Member 83534878-Nov-11 2:13
Member 83534878-Nov-11 2:13 
AnswerRe: Recording my internet browsing on file Pin
BobJanova8-Nov-11 1:19
BobJanova8-Nov-11 1:19 
GeneralRe: Recording my internet browsing on file Pin
Member 83534878-Nov-11 3:55
Member 83534878-Nov-11 3:55 
GeneralRe: Recording my internet browsing on file Pin
BobJanova8-Nov-11 4:16
BobJanova8-Nov-11 4:16 
GeneralRe: Recording my internet browsing on file Pin
Member 83534878-Nov-11 5:04
Member 83534878-Nov-11 5:04 
GeneralRe: Recording my internet browsing on file Pin
BobJanova8-Nov-11 5:19
BobJanova8-Nov-11 5:19 
QuestionWM_NCPAINT and Massive Amount of Flicker Pin
Matt U.7-Nov-11 14:39
Matt U.7-Nov-11 14:39 
AnswerRe: WM_NCPAINT and Massive Amount of Flicker Pin
Luc Pattyn7-Nov-11 15:35
sitebuilderLuc Pattyn7-Nov-11 15:35 
GeneralRe: WM_NCPAINT and Massive Amount of Flicker Pin
Matt U.7-Nov-11 15:43
Matt U.7-Nov-11 15:43 
AnswerRe: WM_NCPAINT and Massive Amount of Flicker Pin
Luc Pattyn7-Nov-11 16:06
sitebuilderLuc Pattyn7-Nov-11 16:06 
GeneralRe: WM_NCPAINT and Massive Amount of Flicker Pin
Matt U.7-Nov-11 16:25
Matt U.7-Nov-11 16:25 
AnswerRe: WM_NCPAINT and Massive Amount of Flicker Pin
Luc Pattyn8-Nov-11 1:38
sitebuilderLuc Pattyn8-Nov-11 1:38 
AnswerRe: WM_NCPAINT and Massive Amount of Flicker Pin
J a a n s7-Nov-11 21:52
professionalJ a a n s7-Nov-11 21:52 
QuestionI want to use switch statement in windows form application how to use switch statement through buttons and textboxes ? Pin
zahra19917-Nov-11 7:28
zahra19917-Nov-11 7:28 
I want to use switch statement in windows form application how to use switch statement through buttons and textboxes ?
am stuck in this code please somebody help me and correct it namespace a
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void textBox1_TextChanged(object sender, EventArgs e)
{
string s;
s = textBox1(textBox1.Text);

}

private void button1_Click(object sender, EventArgs e)
{
string s;
textBox1("1","2");
switch(s)
{
case "1":
{ Form2 f = new Form2();
f.Show();


}
}
}
}
}
AnswerMessage Removed Pin
7-Nov-11 7:34
professionalN_tro_P7-Nov-11 7:34 
GeneralRe: I want to use switch statement in windows form application how to use switch statement through buttons and textboxes ? Pin
zahra19917-Nov-11 7:37
zahra19917-Nov-11 7:37 
GeneralMessage Removed Pin
7-Nov-11 8:04
professionalN_tro_P7-Nov-11 8:04 
GeneralRe: I want to use switch statement in windows form application how to use switch statement through buttons and textboxes ? Pin
zahra19917-Nov-11 8:14
zahra19917-Nov-11 8:14 
GeneralMessage Removed Pin
7-Nov-11 8:41
professionalN_tro_P7-Nov-11 8:41 
GeneralRe: I want to use switch statement in windows form application how to use switch statement through buttons and textboxes ? Pin
zahra19917-Nov-11 8:44
zahra19917-Nov-11 8:44 

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.