|
TableAppend
|
Previous Top Next |
| begin
|
| //It sets the append mode of the table
|
| TableAppend(UnaTabella);
|
|
|
| //It stores the first field value in the field Company TableSetFieldByName(UnaTabella,'Company','Recogniform Spa');
|
|
|
| // It stores the 2nd field value in the field website
|
| TableSetFieldByName(UnaTabella,'WebSite','www.recogniform.com');
|
|
|
| TablePost(UnaTabella);
|
| end;
|