Fields to Clipboard
Fields to Clipboard
(OP)
With the click of a button I would like to be able to send Date, Name and Address fields to the Windows clipboard (ie SETCLIPBOARD) from my Contacts file (tps) in a line by line format which a user can paste into their word processor when writing letters. I can get a result using a Memo field but can not find a way to split the fields into separate lines just as one can using the '|' in a Message. It can be done in Delphi and wondered if anyone knows how to do this in Clarion 5b - Thanks
RE: Fields to Clipboard
SETCLIPBOARD(DateField & '<13,10>' & NameField '<13,10>' AddressField '<13,10>')
<13,10> is Carriage Return, Line Feed.
Bye