I have a combobox linked by SQL to a table. The table has standard Primary Key (Autonumber) and text field.
There are 3 records:
I would like it to be so that, IF the document type is allready set to RMT document, that the user can view the text (RMT document) in the combobox, but I want it so that when the user clicks the dropdown, that the user can only select Review Document or Reference Document, I.e. that the RMT document is simply not presented in the dropdown list.
I know I can handle this through AfterUpdate, but I was hoping for a more elegant solution.
There are 3 records:
Code:
KEY_DocType tx_DocType 1 RMT Document 2 Review Document 3 Reference Document
I know I can handle this through AfterUpdate, but I was hoping for a more elegant solution.
Comment