numeric oscilloscope

  1. /*--------------------------------------------------------------------------------
  2. 'Nom du projet : Oscilloscope
  3. 'Outil : Visual C++ 6
  4. 'Nom du fichier: About.cpp
  5. 'Realisation:Mathieu Texier et Emmanuel Traineau
  6. 'Date: Juin 2003
  7. 'Responsable: Eric Meleiro
  8. '--------------------------------------------------------------------------------
  9.  
  10.  
  11.  
  12. Explications : Ce fichier contient les informations générales du logiciel
  13.  
  14. Fichier lié à la ressource IDD_ABOUTBOX
  15. */
  16.  
  17. #include "stdafx.h"
  18. #include "mmsystem.h"
  19. #include "about.h"
  20.  
  21. #ifdef _DEBUG
  22. #define new DEBUG_NEW
  23. #undef THIS_FILE
  24. static char THIS_FILE[] = __FILE__;
  25. #endif
  26.  
  27. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  28. {
  29.         //{{AFX_DATA_INIT(CAboutDlg)
  30.         //}}AFX_DATA_INIT
  31. }
  32.  
  33. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  34. {
  35.         CDialog::DoDataExchange(pDX);
  36.         //{{AFX_DATA_MAP(CAboutDlg)
  37.         //}}AFX_DATA_MAP
  38. }
  39.  
  40. // AboutDialog mit linker MausTaste schliessen
  41. void CAboutDlg::OnLButtonDown(UINT nFlags, CPoint point)
  42. {
  43.         SendMessage (WM_CLOSE);
  44.         CDialog::OnLButtonDown(nFlags, point);
  45. }
  46.  
  47.  
  48. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  49.         //{{AFX_MSG_MAP(CAboutDlg)
  50.         ON_WM_LBUTTONDOWN()
  51.         //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53.  
  54.  
  55.  

contact - link to this site