Hallo Programmer Joe,
versuche mal, die Client - Bibliothek direkt anzugeben.
geänderter Ausschnitt meiner
DPR:
Delphi-Quellcode:
uses
Forms,
// wegen IB_GetClientLibNameFunc
IB_Session,
...
function GetFBClientLibName:
string;
begin
// DLL - Dateiname mit kompl. Path
Result := '
lw:\path\fbembed.dll';
end;
{$R *.res}
begin
IB_GetClientLibNameFunc := GetFBClientLibName;
Application.Initialize;
if not LoginDialog
then
begin
// Achtung, sonst Exception, wird nicht ganz fertig
Application.ProcessMessages;
Exit;
end;
Application.CreateForm(TFRMMain, FRMMain);
Application.Run;
Vielleicht hilft es ja,
Frank