Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: q0987
  • Order by date
  1. q0987

    How to remove duplicate WM_MOUSEMOVE?

    Dear Marcel, Your solution looks very interesting to me. I will give you a try:). In fact, the major problem is that the user feels the mouse movement is not that smooth due to this heavy calculation. Your solution addresses the problem in the another way. Thank you -Daniel
  2. q0987

    How to remove duplicate WM_MOUSEMOVE?

    Hello Marcel, So you think my code works in the way such that it only processed the last message for WM_MOUSEMOVE if more than one exists in the message queue? Thank you -Daniel
  3. q0987

    How to remove duplicate WM_MOUSEMOVE?

    if (PeekMessage(&msg,NULL,0,0,PM_REMOVE)) // Is There A Message Waiting? { if (msg.message==WM_QUIT) // Have We Received A Quit Message? { done=TRUE; // If So done=TRUE } else // If Not, Deal With Window Messages { if...
  4. q0987

    How to remove duplicate WM_MOUSEMOVE?

    Hello all, I need to do an expensive calculation in WM_MOUSEMOVE event. I would like to know if I could remove extra WM_MOUSEMOVE and only process the most lastest WM_MOUSEMOVE? Use PeekMessage?? Thank you
  5. q0987

    How to insert multiple pictures into a textbox with captions?

    Hello all, I need to insert more than one pictures into one page of MS word 2003 document. Here is what I did 1> Create a blank Word document 2> Insert a textbox 3> Select the inside of the created textbox and insert a picture 4> Insert->Reference->Caption->Figure MS Word2003 will addd Figure...

Part and Inventory Search

Back
Top