Dynamic Data Exchange and XlTable Format

http://digital.ni.com/public.nsf/ad0f282819902a1986256f79005462b1/88cfa6094f6b5030862566fa002279e0/$FILE/dde.doc

Registering Clipboard Formats
Whenever an application uses a private Clipboard format — such as XlTable, Biff5, Biff4, Biff3, Biff, Wk1, Csv, or Rich Text Format — it must register the format before using it. Microsoft Excel registers these private Clipboard formats, and your DDE application must also register any of these formats that you want to use to exchange data.
For example, to register XlTable, use the following Windows API function call.
wCBformat = RegisterClipboardFormat((LPSTR)"XlTable");
If the function call is successful, the return value is equal to the format value for the XlTable format. This format value (type WORD) is between 0xC000 and 0xFFFF, and it's equal to the format value that Windows returned to Microsoft Excel when it registered XlTable. If Windows cannot register XlTable, the function returns 0 (zero).