Link to home
Start Free TrialLog in
Avatar of bilgehanyildirim
bilgehanyildirim

asked on

weird problem

Hi,

I am trying to use ipwHTMLMailer of IPWorks. I placed this component on a form (frmEmailToTheCustomer ). On my main form I call :

procedure TfrmMain.htmltextContactDetailsAnchorClick(Sender: TObject; Anchor: String);
begin
  frmEmailToTheCustomer := TfrmEmailToTheCustomer.Create(self);
  frmEmailToTheCustomer.ShowModal;
  frmEmailToTheCustomer.Free;
end;

it gives debugger exception notification "166: Busy performing current action" at this line

frmEmailToTheCustomer := TfrmEmailToTheCustomer.Create(self);


 When I continue to run, everything works without problem. There is nothing on form create or form show sections of the frmEmailToTheCustomer.
can anyone advice?
Avatar of wildzero
wildzero

What about if you did



procedure TfrmMain.htmltextContactDetailsAnchorClick(Sender: TObject; Anchor: String);
begin
 Application.CreateForm(TfrmEmailToTheCustomer, frmEmailToTheCustomer);
  frmEmailToTheCustomer.ShowModal;
  frmEmailToTheCustomer.Free;
end;
ASKER CERTIFIED SOLUTION
Avatar of wildzero
wildzero

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kretzschmar
>it gives debugger exception notification "166: Busy performing current action" at this line
seems to be raised of a component placed on this form,
you may check that the component(s) are not active during creation,
it could also be, if you run this within the ide, the ide itself blocks some action of a component

meikl ;-)
Avatar of bilgehanyildirim

ASKER

I haven't changed anything but when I tried to run the software at home, it didn't give any error at all. isn't it weird?
hello?
hello, too :-))

>I haven't changed anything but when I tried to run the software at home, it didn't give any error at all.
>isn't it weird?

so it seems both workstations do have differences,
if in your software any com- or activex-objects are used,
then i would guess, that one/more of these are missed on your targetmachine

meikl ;-)