Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]


How to use a notifier to display a single line message, synchronously

To display a single line message synchronously, use the static function User::InfoPrint(). The following code fragment shows how:

{
...
_LIT(KTxtMsg,"A message");
...
User::InfoPrint(KTxtMsg);
...
}

User::InfoPrint() uses an RNotifier object in its implementation, but you do not need to use the object to display the message.