Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Mark area for copying to clipboard
Message
 
To
24/01/1999 11:57:34
Bernd Mesterom
Com Plus Ultra Edv-Beratung
Mönchengladbach, Germany
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00179585
Message ID:
00179649
Views:
20
Hi Bernd,

>one of my clients wish, to mark an area of an active window for copying the contents of the controls (textboxes etc.) (wich are inside of the selected area) to the clipboard.

There's no native function that will do this. But you can let the user define an area (you can use a container to simulate the rubber band) and the add the Value property to _CLIPTEXT, eg:
_CLIPTEXT = ""
FOR EACH oControl IN THISFORM
  IF position inside selected area
     _CLIPTEXT = _CLIPTEXT + TRANSFORM(oControl.Value,"") + CHR(13)+CHR(10)
  ENDIF
ENDFOR
Christof
--
Christof
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform