News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Adventures in programming: Treeviews, directory scanning, recursion

Started by NoCforMe, April 05, 2024, 10:36:19 AM

Previous topic - Next topic

sinsi

One more point, mainly for future reference, if you send the main window a message from the thread, be aware than SendMessage waits for processing, blocking your thread, but PostMessage returns immediately.

NoCforMe

Thanks. Still unsure of all the details and differences between all those different message functions (SendMessage(), PostMessage(), PeekMessage(), etc.) I'm guessing that this has probably been covered by our friend Raymond Chen at some point.

Will make that change.
Assembly language programming should be fun. That's why I do it.

sinsi

Searching for GDI+ background thread found a few interesting things too.