I am trying to configure a combo box so that it shows a default value and does not show empty.
The structure is as follows:
`ccmbDynamic: cmbcombo
-List Initialization
*Message Action
*On PAM_Create
-Set nMyObjectID = 1
-Call clsDynamicListPopulateFull('Table_name', 'code_id', 'Description', 'Condition Where',
'code_id', 1, CMD_Description, DT_Number, CMD_ForceFetch)
-Call SalsendMsg(cmbcombo, SAM_Click, 0, 0)
*On PAM_SAM_Click
-Call IntSqlInmediately ('SELECT code_id FROM Table_name WHERE Condition')`
Does anyone know what process I am doing incorrectly? The queries return the correct information, but the selection is not reflected in the combo (The selected default), only when I click is that the information is seen, I need it to be seen before the click, some help on this?