Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help with DataToClip Method
Message
 
 
To
01/06/2001 16:46:30
Richard Williams
State of Ohio, Dept. of Development
Columbus, Ohio, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00513234
Message ID:
00514202
Views:
13
>Hi You guys, Thanks so much for you help with my label pasting attemp. I am able to use SELECT command but there doesn't appear to be anyway to capture the data in the fields and send only the field contence without the field names to the clipboard. Any other ideas? Thanks for your help

Here you go:
use SomeTable
_vfp.DataToClip()
create cursor crsTemp (mData M)
append blank
replace mData with _cliptext
cString = ""
for i = 2 to memlines(mData)
    cString = cString + mline(mData, i) + chr(13)
endfor
_cliptext = alltrim(cString)
use in crsTemp
use in SomeTable
return
Mark McCasland
Midlothian, TX USA
Previous
Reply
Map
View

Click here to load this message in the networking platform