|
Question: In the BDE I have to appoint a session when I need more instances of a form on which tables are stored. But how can I accomplish this with FIBPlus?
Answer: You can place databases, datasets and queries on datamodules for that. To make it work for independent forms, you should set the name of the datamodule to an empty string in OnCreate:
procedure TdmMultiInstance.DataModuleCreate(Sender: TObject);
begin
Name := '' ;
end;