*!* This is where the magic happens.
*!* This is an unabashed hack to allow us to get the full functionality
*!* of the Taskbar Notification Area ("System Tray") without having to
*!* use an external C++ library.
*!* To communicate with the systray, we tell it to send us messages via
*!* the MouseWheel event. (This is the only VFP event that doesn't alter
*!* or discard event data before firing the corresponding internal event.)
*!* The second trick is that only the main VFP window will accept the events
*!* without checking to see if the event coordinates are invalid. (The screen
*!* doesn't even need to be visible, so you can have SCREEN=OFF in your
*!* config.fpw file.) So we use VFP8's BINDEVENT() function to bind to the
*!* _SCREEN.MouseWheel event.
*!* This method sets up that communication path.
*!* Returns 1 if successful.