Hi Gena:
I am not sure, but you could try something like this custom code in the
BeforeInsert or AfterInsert event of the form, depending of your needs.
global $Record1;
global $test_variable;
$test_variable = $Record1->ListBox1->GetValue();
What we are doing here is retrieving the value (GetValue()) of the ListBox1
which is inside the form Record1 into the variable $test_variable.
I hope this helps you.
Best regards,
Alvaro.
"Gena" <
Gena@forum.codecharge> escribió en el mensaje
news:54356461baf1ae@news.codecharge.com...
> I have a Record page, on that page there is a record Product. One filed is
> populated using Listbox. I want to retrieve the value of the bound column
of
> this listbox. What event I can use to get the value after user have
selected
> value from this drop list?
>
> Client - OnChange event seems does nothing....