Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fields to Clipboard 1

Status
Not open for further replies.

TinLegs

Programmer
Jan 14, 2003
100
NZ
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
 
Place <13,10> between your fields.

SETCLIPBOARD(DateField & '<13,10>' & NameField '<13,10>' AddressField '<13,10>')

<13,10> is Carriage Return, Line Feed.

Bye
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top