Archived:Show error message using QErrorMessage
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
This code snippet shows how to display error messages in application using QErrorMessage class. This type of error message has a checkbox to allow the message to be dismissed permanently (should the error occur again).
Article Metadata
Code Example
Source file: Media:QtErrorMessage.zip
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Platform Security
Signing Required: Self-Signed
Capabilities: None
Article
Keywords: QErrorMessage::showMessage()
Created: savaj
(18 Jun 2009)
Last edited: hamishwillee
(11 Oct 2012)
Contents |
Headers required
#include <QErrorMessage>Source Code
QErrorMessage errorMessage;
errorMessage.showMessage("Testing Error message");
errorMessage.exec();
Postconditions
The code snippet is expected to show error message dialog on screen.
External Links
- QErrorMessage reference
Code Example
- The Code Example will show error message dialog on screen and is tested on Nokia 5800 XpressMusic.


19 Sep
2009
22 Sep
2009