Hi,
I have a dropdownl list that items returns from the database. There are five items. But I want to have one time not showing in the list.
I have this:
FrmLocationMethod.LOOKUPMODE(TRUE);
IF FrmLocationMethod.RUNMODAL = ACTION::LookupOK THEN BEGIN
FrmLocationMethod.GETRECORD(LocLocationtMethod);
RecSalesHeader.“Location Code” := LocLocationtMethod.Code;
END;
CurrForm.UPDATE;
Thank you.