Can anybody explain the difference between ProcessCommandL and HandleCommandL from CEikAppUi.
And... if exist function as PostMessage or SendMessage in Windows API.... i need to send message synchronously but at the same time continue to execute code...
Thanks
This function passes aCommand (except values EAknSoftkeyOptions, EAknCmdExit, EEikCmdCanceled) to user derived HandleCommandL.
Parameters:
aCommand A command ID.
So as you can see, ProcessCommandL handles calls of EAknSoftkeyOptions, EAknCmdExit, EEikCmdCanceled commands by itself. If other command is passed to this method it calls HandleCommandL method.
Forum posts: 49
About first part of your questions see copy-paste Info from s60 sdk
So as you can see, ProcessCommandL handles calls of EAknSoftkeyOptions, EAknCmdExit, EEikCmdCanceled commands by itself. If other command is passed to this method it calls HandleCommandL method.