You can get the HWND of a dialog by calling the DG_DLL_EXPORT void*
CCALL DGGetDialogWindow (short dialId) function. The return value should
be casted to HWND. This function returns an NSWindow* on macintosh.
I think there is no general usable solution for such a listbox, so you
need to implement it for yourself. You need a data structure that
describes the groups and the items in the group, and then build up a
listbox with the data. The group items accep...
You use a C-style dialog if I am correct.In C-style dialogs the
DG_MSG_CLOSEREQUEST is not used. When you click the Ok or Cancel button
or pess Esc/Enter, a DG_MSG_CLICK message is sent. If you return a 0
value in response of this message then the di...