I'm using Delphi 4 and want to write a program which uses clipboard data produced by another application.
The data seems to be some kind of custom clipboard format.
I don't know how the data is formatted or how large the data is, so I would like to just get a binary copy of the data to analyse it.
I can say that running this code:
for I := 0 to Clipboard.FormatCount-1 do
ListBox1.Items.Add(IntToStr(Clipboard.Formats));
produces this list:
49161
49683
1
49171
16
7
13
How do you obtain a complete binary data copy of everything on the clipboard ?
The data seems to be some kind of custom clipboard format.
I don't know how the data is formatted or how large the data is, so I would like to just get a binary copy of the data to analyse it.
I can say that running this code:
for I := 0 to Clipboard.FormatCount-1 do
ListBox1.Items.Add(IntToStr(Clipboard.Formats));
produces this list:
49161
49683
1
49171
16
7
13
How do you obtain a complete binary data copy of everything on the clipboard ?