quote:
Originally posted by raceprouk
Does Patchou use DialogBoxParam (like me), or CreateWindow(Ex)/CreateDialog?
DialogBoxParam() is used to create modal dialogs...
CreateDialogParam() is used to create modeless dialogs...
In other words, Patchou uses both
(DialogBoxParam() for the modal dialogs and CreateDialogParam() for the modeless dialogs).
PS: You probably know this already too, but seeing as you said
quote:
"DialogBoxParam" or "CreateWindowEx aka CreateDialog"
both the
functions are actually nothing more than kind of "stubs" (for the lack of a better word) for the CreateWindowEx() function. Thus not only CreateDialogParam(), but DialogBoxParam() also.