Hi Francois,Thank You for reply. I have modified the form and the control work.I submit to You another question.In my form the javabean control must be a database field.If I use it in a datablock, when I run the form:1) the control display always the value set in the statement Set_Custom_Property('BL.BEAN',ALL_ROWS,'SELECT_VALUE','myValue');instead of the proper value in each record .2) If I modify the value in the combobox and I try to save the change, the message 'Impossible to save the record, because no modification' is displayed.Can You help me ?Greetings....Gaetano
Hi Francois,I have try to use this pjc in a form. Is it possible use the combo box in a datagrid with scrollbar?In my form i see the combo only in the first row.Thank YouGaetano
This is the usecase of the second parameter on the Set_Custom_Property() built-in.Set_Custom_Property( 'bl.bean' , 1 ,...);This second parameter is related to the visible record you want.If you want to use the bean on every record, there is the ALL_ROWS keywordSet_Custom_Property( 'bl.bean' , ALL_ROWS ,...);