04-09-2010 02:48 PM
Solved! Go to Solution.
04-10-2010 01:18 AM
1) The first thing to do is to include error checking. All functions you use provide a return value, but you prefer to ignore it. It's better, i.e. safer to check each function for proper operation. Instead of AnimateCtrl... use
status = AnimateCtrl...
if (status < 0 )...
2) The error returned 'Panel, pop-up, or menu bar handle is invalid' indicates that either panel is not a panel handle or 'PNL_SPLASH_ANIMATION' is not a valid picture ring control. Are these the constant names as defined in the include file of your UIR file?