There is a really weirdo thing happening on myapp that I have been buggering
around with for the last 3 hours. What happens is that the mainform calls a
modal form. Now if the mainform is visible, then all works ok, reentering
the modal call, but if it isnt (it can optionally live on the Tray), then
the following in the modal call works properly only once. This is my modal
call:
  with TfrmCapture.Create(Application) do
  try
    ShowModal;
  finally
    Free;
  end;


Is it because you haven't explicitly set the FrmCapture variable, and you
are using it in your showmodal procedure?
ie) FrmCapture := TFrmCapture.Create(Application);

Michelle Blyde
Delphi Devloper
ManTrack
[EMAIL PROTECTED]


---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to