> 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);
Jeepers, have a cigar, and I get the dummy of the week award.
Make it:
  with TfrmCapture.Create(Application) do
  try
    ShowModal;
  finally
    frmcapture.Free;
  end;

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

Reply via email to