Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Problem in creating QMessageBox in Qt??? Run time error
Posted
Comments
Sandeep Mewara 1-Mar-11 3:51am    
I have read several question from you on Qt. I don't know if you know about it or not, but surely after asking so many questions you should be able to put up your question nicely.

Share what error, such that others can see and help.
Gokulnath007 1-Mar-11 4:59am    
I have just added QMessageBox mess;
It gives run time error.
LaxmikantYadav 1-Mar-11 6:12am    
Post that error
Gokulnath007 1-Mar-11 6:17am    
It Says:
The Application has terminated in an unexpected way
LaxmikantYadav 1-Mar-11 6:43am    
Use exception handling in your code and print the error message

1 solution

Hi Gokulnath,

It is my strong recommendation, if you want to learn QT please read book first and go through all chapter it has and while reading if have any difficulty then only post your problem here.....

Anyway, here is way to create Message box in QT

<pre>
QMessageBox msgBox;
msgBox.setText("Message will go here");
msgBox.exec();
</pre>
 
Share this answer
 

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