![]() | Products |
| Home » Technical Support » DBISAM Technical Support » Incident Reports » Incident Reports Addressed for Version 2.04 » View Incident Report |
| Reported By: Fred Schetterer Reported On: 7/17/2000 For: Version 2.03 Build 1 |
procedure TForm1.quClientsAfterPost(DataSet: TDataSet);
var
Param : TDBISAMParam;
begin
with quUpdate do
begin
Close;
Param := ParamByName('LAST_NAME');
Param.AssignField(quClients.FieldByName('LAST_NAME'));
Param := ParamByName('FIRST_NAME');
Param.AssignField(quClients.FieldByName('FIRST_NAME'));
Param := ParamByName('OLD_LAST_NAME');
Param.AssignField(quClients.FieldByName('LAST_NAME'));
Param.name := 'OLD_LAST_NAME';
Param := ParamByName('OLD_FIRST_NAME');
Param.AssignField(quClients.FieldByName('FIRST_NAME'));
Param.name := 'OLD_FIRST_NAME';
Param := ParamByName('IMAGE');
Param.AssignField(quClients.FieldByName('IMAGE'));
ExecSQL;
end;
end;
This web page was last updated on Thursday, September 10, 2026 at 04:33 PM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

