Click here to Skip to main content
15,885,869 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
i need to display 'Acknowledgment Message' in windows application nice.how i can display any control is there tel me i will use that control.
Thanks,
Naresh.G
Posted

If this is related to Windows Forms than I'd suggest.

C#
const string message =
       "Are you sure that you would like to do that";
   const string caption = "Acknowledgment Message";
   var result = MessageBox.Show(message, caption,
                                MessageBoxButtons.YesNo,
                                MessageBoxIcon.Question);
 
Share this answer
 
Hi Dean Oliver,

i am using this 'MessageBox.Show' i need to display different why,if you know any control(like Memba control in asp.net) please letme know.
Thanks,
Naresh.G
 
Share this answer
 
v2
Comments
Dean Oliver 1-Feb-12 1:18am    
Hi can you just please rephrase your question. Do you want the control styled a certain way? Or do you want a specific framework that does those controls in asp.net.
nareshgundapaneni 1-Feb-12 1:21am    
Hi i want to display 'Acknowledgment Message' in windows application by using any control(like Memba control it's for web application).

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900