ISQLToolBar.cpp
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:1k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // ISQLToolBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "interactivesql.h"
  5. #include "ISQLToolBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CISQLToolBar
  13. CISQLToolBar::CISQLToolBar()
  14. {
  15. m_pApp = AfxGetApp();
  16. }
  17. CISQLToolBar::~CISQLToolBar()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CISQLToolBar, CToolBar)
  21. //{{AFX_MSG_MAP(CISQLToolBar)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CISQLToolBar message handlers
  27. BOOL CISQLToolBar::Pump()
  28. {
  29. MSG msg;
  30.     while(::PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE))
  31. {
  32.         if(!m_pApp->PumpMessage())
  33. {
  34.             ::PostQuitMessage (0);
  35.             return FALSE;
  36.         }
  37.     }
  38.     LONG lIdle = 0;
  39. while(m_pApp->OnIdle(lIdle++));
  40. return TRUE;
  41. }