Hello everybody,
I created a report & I really want this report display with various language.
How can I do that?
When I print this report, a dialog will appear with a lot of language.
public Object dialog(Object _dialog)
{
Object ret;
DialogRunBase dialog;
;
super(_dialog);
dialog = _dialog;
languageDialogField = dialog.addFieldValue(typeid(LanguageId),languageIdValue);
return dialog;
}
public boolean getFromDialog()
{
;
languageIdValue= languageDialogField.value();
return true;
}
with languagedValue
I really want to display this report according to this language, I think that I have to read file *.ald with chosen language.
So, How can I read this *.ald file to get the right label with chosen language?
Appreciate your help.
Thanks & Regards,
Phuong Tran.