The populateDialog method of the Win32SystemResourceDecoder Class contains the following signatures:
populateDialog(UIDialog dlg, int dlgId, int language)
populateDialog(UIDialog dlg, String dlgname, int language)
Fills an existing dialog box, in the current locale with the specified identifier, with the data and/or controls as specified in the resource. This is useful for classes that are derived from com.ms.ui.UIDialog.
public void populateDialog(UIDialog dlg, int dlgId, int language);
dlg | The dialog object to populate. |
dlgId | The identifier of the dialog resource containing the components. |
language | The language of the resources. |
Currently, this method is not implemented.
Fills an existing dialog box, in the current locale with the specified name, with the data and/or controls as specified in the resource. This is useful for classes which are derived from com.ms.ui.UIDialog.
public void populateDialog(UIDialog dlg, String dlgname, int language);
dlg | The dialog object to populate. |
dlgname | The name of the dialog resource containing the components. |
language | The language of the resources. |
Currently, this method is not implemented.