ImapDemo.dpr 853 B

123456789101112131415161718192021222324252627
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 57996: ImapDemo.dpr
  11. {
  12. { Rev 1.0 13/04/2004 22:30:56 CCostelloe
  13. { Basic demo including deleting files.
  14. }
  15. program ImapDemo;
  16. uses
  17. Forms,
  18. ImapDemo1 in 'ImapDemo1.pas' {Form1};
  19. {$R *.res}
  20. begin
  21. Application.Initialize;
  22. Application.CreateForm(TForm1, Form1);
  23. Application.Run;
  24. end.