[futurebasic] Printing to Clipboard

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : October 2001 : Group Archive : Group : All Groups

From: Robert Covington <artlythere@...>
Date: Mon, 22 Oct 2001 12:23:31 -0400
I need a Copy Source To Clipboard command...

How can one "print" to the Clipboard?

Printing to a file, easy enough. How can one generate the same formatted
text and place that on the Clipboard?

 I can place a texthandle onto the clipboard (FB Example for that), but
knowing how to create it in the proper size, and format it like the below
is new to me.

As an example, the original RECT code I posted recently...Any of you
Textmeisters able to help here?

RC

// Sample Output, FB 3
// Comment Line

Begin Globals
DIM rect1 as RECT
DIM rect2 as RECT
DIM rect3 as RECT
End globals

Clear Local
Local FN Init_Rects
SetRect(rect1, 0, 0, 200, 300)
SetRect(rect2, 20, 20, 230, 330)
SetRect(rect3, 4, 30, 210, 320)
End FN