Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grid copy contents to clipboard
Message
From
29/06/2005 06:35:52
 
 
To
28/06/2005 17:45:32
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
DB2
Miscellaneous
Thread ID:
01027218
Message ID:
01027319
Views:
20
thanks Sergey, i didnt know that method

Be aware that _vfp.DataToClip() only works in the default data session. If you need this functionality in a private data session, you will need to use code like this:
lcTempFileName = SYS( 2015 ) + [.txt]
COPY TO ( lcTempFileName ) TYPE DELIMITED WITH TAB
*** Now shove that into the clipboard
_CLIPTEXT = FILETOSTR( lcTempFileName )
DELETE FILE ( lcTempFileName )
Previous
Reply
Map
View

Click here to load this message in the networking platform