Animate application icon (on taskbar and apllication window)

Place two or more Image components on application main form. If you want to make more complex animation with plenty of icons, it’s better to use ImageList component. Then load images into Image components (or ImageList).
The second component is Timer. Put it on your form, set appropriate interval (to make animation smooth) and activate it. In OnTimer event, you need to change application icon to next one from your ImageList (or icon from next Image component). Variable Icon is needed to store actual icon. Make it global and initialize it in OnCreate event of main form. Code below shows an easiest example with just two icons.