View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
RG III RG III is offline
external usenet poster
 
Posts: 65
Default Determine clipboard data type?

I'm using the following code to get the clipboard contents:

obj.GetFromClipboard
txt = obj.GetText(1)

But how do I determine if the clipboard contains data other than plain text? Like what if it contains a screen snapshot in bitmap format or something else?

-Robert