/winshoes/Winshoes/Demos/CBuilder/POP3Client/AboutForm.cpp

https://code.google.com/p/moops-client/ · C++ · 20 lines · 12 code · 3 blank · 5 comment · 0 complexity · 10e693b282c7782e16803495eb6abf9a MD5 · raw file

  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "AboutForm.h"
  5. //---------------------------------------------------------------------
  6. #pragma resource "*.dfm"
  7. //---------------------------------------------------------------------
  8. __fastcall TAboutBox::TAboutBox(TComponent* AOwner)
  9. : TForm(AOwner)
  10. {
  11. }
  12. //---------------------------------------------------------------------
  13. void __fastcall TAboutBox::AuthorNameClick(TObject *Sender)
  14. {
  15. ShellExecute(NULL,"open","mailto:tsumbush@hotmail.com",NULL,NULL,SW_NORMAL);
  16. }
  17. //---------------------------------------------------------------------------