The getDialog method of the Win32SystemResourceDecoder Class contains the following signatures:
getDialog(int dlgId)
getDialog(String dlgname)
Retrieves a UIDialog object with the specified dialog identifier from native resources.
public UIDialog getDialog(int dlgId);
Returns a com.ms.ui.UIDialog object, or null if one could not be created.
dlgId | The dialog identifier. |
Retrieves a com.ms.ui.UIDialog object with the specified name from native resources.
public UIDialog getDialog(String dlgname);
Returns a com.ms.ui.UIDialog object, or null if one could not be created.
dlgname | The dialog name. |