In VBA I need to export images (InlineShape) from MS Word (2002) to .gif files. I start to do this with clipboard, copy image to clipboard and

Dim Hnd As Long
Hnd = GetClipboardData(CF_BITMAP)

now i have handle, what then, how to save data to file (better to .gif)

Thanks in advance.