B
bthumber
I have two buttons on a messaging form. A "To" (who's going to get the
message) and "Cc" (who's going to get a copy). The user choose the names from
a listbox that popup when the "To" button is clicked. When the user click the
"Ok" button the name is moved to the "To" label.
If the user now wishes to CC someone how do I get the "ok" button to know
I've click the "CC" and not the "To" and to put the name on the "CC" label?
I tried switch statement but was not working
view plaincopy to clipboardprint?
string text = btnTo.text;
switch (text.trim())
{
case "To":
Do something
break;
case "Cc":
Do something
break;
default:
Label1 += "Please choose To.";
}
string text = btnTo.text;
switch (text.trim())
{
case "To":
Do something
break;
case "Cc":
Do something
break;
default:
Label1 += "Please choose To.";
} view plaincopy to clipboardprint?
view plaincopy to clipboardprint?
Do know how to get one button to know which choice I maded To or Cc, To and
Cc
Do know how to get one button to know which choice I maded To or Cc, To and Cc
message) and "Cc" (who's going to get a copy). The user choose the names from
a listbox that popup when the "To" button is clicked. When the user click the
"Ok" button the name is moved to the "To" label.
If the user now wishes to CC someone how do I get the "ok" button to know
I've click the "CC" and not the "To" and to put the name on the "CC" label?
I tried switch statement but was not working
view plaincopy to clipboardprint?
string text = btnTo.text;
switch (text.trim())
{
case "To":
Do something
break;
case "Cc":
Do something
break;
default:
Label1 += "Please choose To.";
}
string text = btnTo.text;
switch (text.trim())
{
case "To":
Do something
break;
case "Cc":
Do something
break;
default:
Label1 += "Please choose To.";
} view plaincopy to clipboardprint?
view plaincopy to clipboardprint?
Do know how to get one button to know which choice I maded To or Cc, To and
Cc
Do know how to get one button to know which choice I maded To or Cc, To and Cc