Inno-Setup: use own button texts on messagebox -
it common practice in gui design not use yes-no-messageboxes give buttons real names, e.g. save or discard. how can achieve in messageboxes displayed msgbox
in innosetup, @ least ones show in code section?
the msgbox
function uses internally messagebox
windows api function allows use specific set of predefined buttons or button groups. what's worse, buttons cannot localized (without hook like this). so, have custom button texts need use such hook , change texts before showing dialog, show dialog , after change them common texts (because inno setup uses dialog too).
another, easier option making custom form.
Comments
Post a Comment