Facundo Nunes - IBISOFT
|
| Posted: 07/18/2005, 11:51 PM |
|
Hi!
I need to fill a field in a Editable Grid, before insert it into the
database.
I tried using:
Contacts.CustomerType.value=1
into Before Build Insert and Before Execute Insert, but doesn't
works.
Any ideas?
Thanks!
Facundo Nunes
f.nunes@ibisoft.it
IBISOFT srl
Parma - Italia
|
|
|
 |
Nicole
Posts: 586
|
| Posted: 07/19/2005, 5:15 AM |
|
Hello,
You can modify a value before inserting in Before Build Insert event, it is fired for every insert row. The sample code is
form_name.DataSource.field_name.Value = new_value
_________________
Regards,
Nicole |
 |
 |
Nicole
Posts: 586
|
| Posted: 07/19/2005, 5:15 AM |
|
Hello,
You can modify a value before inserting in Before Build Insert event, it is fired for every insert row. The sample code is
form_name.DataSource.field_name.Value = new_value
_________________
Regards,
Nicole |
 |
 |
Facundo Nunes - IBISOFT
|
| Posted: 07/21/2005, 6:22 AM |
|
Thanks!
It works!
Regards,
Facundo Nunes
"Nicole" <Nicole@forum.codecharge> ha scritto nel messaggio
news:642dceefc2d983@news.codecharge.com...
> Hello,
> You can modify a value before inserting in Before Build Insert event, it
> is
> fired for every insert row. The sample code is
> form_name.DataSource.field_name.Value = new_value
>
> _________________
> Regards,
> Nicole
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|