OK, I've figured out a way that I can do this properly.
1. it seems that the clipboard isn't accessible directly as a property of the FORM.
2. it is fully implimented in TBitMap, TEdit, and at least one other class object.
So I've taken a TEdit item and placed it on my form, and turned it invisible. I can use the PasteFromClipBoard procedure to obtain the text clipboard contents into the TEXT property of the TEdit control.
From there I can use it as a string. And later on, when I need to place my results back into the clipboard, I can use the CopyToClipBoard procedure to handle that functionality.
Thanks for the help.
-MarkV
Regards,