To hide certain values in a form control derived from a base enum, you can use the enter() method.
[Control("ComboBox")] class LedgerJournalTypeCB { public void enter() { super(); this.delete(enum2str(LedgerJournalACType::Vend)); this.delete(enum2str(LedgerJournalACType::Cust)); } }
To hide certain values in a form control derived from a base enum, you can use the enter() method.