Enumerating Clipboard formats! Windows API Add comments Jun 222007 Here is how we do it… UINT uFormat = EnumClipboardFormats( 0 ); while( uFormat ) { // Do something with this format ... // Get next format uFormat = EnumClipboardFormats( uFormat ); }// End while Related Leave a Reply Cancel reply This site uses Akismet to reduce spam. Learn how your comment data is processed.