}
}
}
private void addrecord() {
JDBDataIDs u = new JDBDataIDs(Common.selectedHostID, Common.sessionID);
lmattype = JOptionPane.showInputDialog(Common.mainForm, lang.get("dlg_Data_ID_Add"));
if (lmattype != null)
{
if (lmattype.equals("") == false)
{
lmattype = lmattype.toUpperCase();
if (u.create(lmattype) == false)
{
JUtility.errorBeep();
JOptionPane.showMessageDialog(Common.mainForm, u.getErrorMessage(), lang.get("dlg_Error"), JOptionPane.ERROR_MESSAGE,Common.icon_confirm);
}
else
{
JLaunchMenu.runForm("FRM_ADMIN_DATA_IDS_EDIT", lmattype);
}