LeeRisq wrote:
Hi all,

Newbie question. I've written a script that outputs to a text file.

Now, I just want to copy the content to win32clipboard for access to
other applications. Here's the mess I've come up with so far:)

[snip]

def copy_text():
    ifile = open(r"C:\Query\DQL.txt", "r")
    text = ifile.read()
    ifile.close()

    win32clipboard.OpenClipboard()
    win32clipboard.EmptyClipboard()
    win32clipboard.SetClipboardText(text)
    win32clipboard.CloseClipboard()

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to