i copy a text to clipbord with this code:
Section Push "hello" Call CopyToClipboard SectionEnd Function CopyToClipboard Exch $0 ;input string Push $1 Push $2 System::Call 'user32::OpenClipboard(i 0)' System::Call 'user32::EmptyClipboard()' StrLen $1 $0 IntOp $1 $1 + 1 System::Call 'kernel32::GlobalAlloc(i 2, i r1) i.r1' System::Call 'kernel32::GlobalLock(i r1) i.r2' System::Call 'kernel32::lstrcpyA(i r2, t r0)' System::Call 'kernel32::GlobalUnlock(i r1)' System::Call 'user32::SetClipboardData(i 1, i r1)' System::Call 'user32::CloseClipboard()' Pop $2 Pop $1 Pop $0 FunctionEnd
but i need to a code for write clipboard history "hello" to a text box sample Function CopyToClipboard....
i search in web but cant find any code to do it..
now i focus to a text box and want after open my app,windows clipboard text write to that textbot.
Thanks