Hi all,
I am developing an applicaton, and i want to include PopUp messages in my application
is someone help me to do so
Thank's
Vikrant
Loading
Hi all,
I am developing an applicaton, and i want to include PopUp messages in my application
is someone help me to do so
Thank's
Vikrant
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
nARCIS NARCISPosted Dec 21, 2005, 5:55 PM
more speciffic:
MessageBox.Show("Hellow", "This is a Window title", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); // this is a simple messbox but maybe you want buttons?
try these...>>
DialogResult result ;
result = MessageBox
.Show("Hellow", "This is a Window title", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation);if(result==DialogResult.OK){
// does your code
}else{
// the other code
}
AnttiPosted Dec 21, 2005, 4:21 PM