I downloaded win32 for python 2.6 from this site .
This is the code to get / set the clipboard.
def test ():
Openclipboard ()
d = GetClipboardData (win32con.CF_TEXT) # get clipboard data
SetClipboardData (win32con.CF_TEXT, "Hello") # set clipboard data
CloseClipboard ()
if __name__ == '__main__':
if sys.platform == 'win32':
from win32clipboard import *
import win32gui, win32con
test ()
It works well with GetClipboarData, but SetClipboardData does not seem to work, because when I run test (), I expect to get "hello" using ^ V, but what I copied before.
What could be wrong?
source
share