Re: [2005] Copy to Clipboard
If you were going to access an external application directly you wouldn't use the Clipboard. You'd use the Windows API. Specifically you'd call FindWindow to get the desired top-level window, FindWindowEx to get the desired child control, then SendMessage to get the text from the control.
Re: [2005] Copy to Clipboard
Quote:
Originally Posted by jmcilhinney
If you were going to access an external application directly you wouldn't use the Clipboard. You'd use the Windows API. Specifically you'd call FindWindow to get the desired top-level window, FindWindowEx to get the desired child control, then SendMessage to get the text from the control.
Thanks jmcilhinney... I am learning VB.NET! I opened for my first time VB.NET 4 months ago... it's to hard for me to understand all this things... but i still try to search one small sample about this...
Thanks for your big help!