Symbian Developer Library

SYMBIAN OS V6.1 EDITION FOR C++

[Index] [Glossary] [Previous] [Next]



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

To display a single line message:

The following code fragments demonstrate this:

{

_LIT(KTxtMsg,"A message");
...
RNotifier notifier;
...
notifier.Connect();
...
notifier.InfoPrint(KTxtMsg);
notifier.Close();
...
}

The static function User::InfoPrint() is implemented using the notify server.