when the user clicks view button it show the :
| EMP DEtails |
| name: xyz |
| roll no: XYZ |
along with ok button.
i tried to just display the values in popup window.
message.show("name: " + nam.text);
its working. but i want to know how to display multitext as shwn in the above table
SrikanthPosted Jul 26, 2011, 7:23 AM
i tired that..
MessageBox.Show("Mandator :" + mand.Text + "\LogIn:" + Uid.Text);
if i put "\" it is giving unrecognized escape sequence error.
MessageBox.Show("Mandator :" + mand.Text + "LogIn:" + Uid.Text); with out \ it is working corrrectly but mandator and login filed both are showing in same line..
how to bring it in next line
thanks..
Srikanth
Zoran HorvatPosted Jul 26, 2011, 5:07 AM
message.show("name: " + name.text + "\nroll no: " + roll.text);
Zoran