Subject Re: [IBO] component qryCancelDialog already exists
Author Ed Dressel
>
> This situation comes out of the login dialog. You can't have
interactive
> stuff in an isapi at all, so you need to make LoginPrompt false.
>

Thanks! Appreciate your help. LoginPrompt was false, and I even added
an explicit assignment:

constructor TdmRegSvc.Create(AOwner: TComponent);
begin
inherited;
LoadSettings;
try
iboConn.LoginPrompt := false;
iboConn.Connect;
...

and still get the exception when the number of thread > 2 (i.e. 3 or
more, 2 work fine--which if LoginPrompt wasn't set correctly, from my
understanding, even 1 thread would not work).

Suggestions?

Ed Dressel