On 3/27/06 3:02 PM, "Michael" <[EMAIL PROTECTED]> wrote: > Hi Group, > Can one read in non-binary (text) data using the clipboard object, > line by line as one does with the textInputStream object? If so, how > is this done. (The data has been pasted to the clipboard) > Thank you
You could read the clipboard text into an array to get it broken down into lines. Dim s() As String Dim c As New Clipboard s = Split(c.text, EndOfLine) -Seth _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
