CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Ixiterra

Search: Search took 0.04 seconds.

  1. Re: Problem with rapidly pasting from the clipboard under Windows 7

    98% of my testing is done at home, using notepad. If it doesn't work in notepad, it sure isn't going to work in the clunky work app. I should mention that I have a running version that I use at work,...
  2. Re: Problem with rapidly pasting from the clipboard under Windows 7

    I assumed it was something like that, but I know far too little about the internals of this type of stuff to be able to pinpoint the problem. I'm willing to have the program wait until the paste has...
  3. Re: Problem with rapidly pasting from the clipboard under Windows 7

    As I said I'm a novice, I discovered I need to actually paste to the specific control, and managed to google my way into working code:


    HWND hwnd = ::GetForegroundWindow();
    DWORD...
  4. Re: Problem with rapidly pasting from the clipboard under Windows 7

    Well, by your suggestion I tried this:


    HWND hwnd = ::GetForegroundWindow();
    LRESULT x = ::SendMessage(hwnd, WM_PASTE, 0, 0);


    hwnd is correct, x is 0, nothing pasted. At least in...
  5. Re: Problem with rapidly pasting from the clipboard under Windows 7

    Thanks for not reading my post, you have been so helpful.
  6. Problem with rapidly pasting from the clipboard under Windows 7

    Ok, I'm a relatively novice programmer, but I designed an app for work that lets you enter data in a much more efficient way, then it needs to paste this data into the very curmudgeonly interface we...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured