T,
I see where you can write a message and get YES, NO , etc. back, but not
give in progress text as things
happen. Am I missing something?
Nope, you're missing anything. But I'm afraid that Windows does not offer
such an updatable dialog. Most (if not all) of those user32.dll dialogs are
modal and will not return until you press one of their buttons, meaning that
program which creates them has no idea where to send such "progress text"
to.
If you would want to have such an updatable dialog I'm afraid you would need
to create it yourself - most likely in a seperate thread, as you need to
respond to all of its events (including responding to creating, destroying,
drawing, moving, etc of the window !) using something called a "message
pump". In short, not something I imagine would be easy to do in plain
Raku.
Regards,
Rudy Wieser