OsqlDlg.h
上传用户:xaxinn
上传日期:2007-01-03
资源大小:39k
文件大小:2k
源码类别:

Oracle数据库

开发平台:

Visual C++

  1. // OsqlDlg.h : header file
  2. //
  3. // Release 1, Copyright (C) 1999 Ben Bryant
  4. // This is sample source code, nothing more is implied. Use it only as such.
  5. // This software is provided 'as-is', without warranty. In no event will the
  6. // author be held liable for any damages arising from the use of this software.
  7. // Permission is granted to anyone to use this software for any purpose.
  8. // The origin of this software must not be misrepresented; you must not claim
  9. // that you wrote the original software. Altered source versions must be plainly
  10. // marked as such, and must not be misrepresented as being the original software.
  11. // Ben Bryant bcbryant@firstobject.com
  12. //
  13. #if !defined(AFX_OSQLDLG_H__C7257218_0484_11D3_A0D8_00105A27C570__INCLUDED_)
  14. #define AFX_OSQLDLG_H__C7257218_0484_11D3_A0D8_00105A27C570__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. /////////////////////////////////////////////////////////////////////////////
  19. // COsqlDlg dialog
  20. #include "CommandCtrl.h"
  21. #include "Odb.h"
  22. class COsqlDlg : public CDialog
  23. {
  24. // Construction
  25. public:
  26. COsqlDlg(CWnd* pParent = NULL); // standard constructor
  27. CString m_csTitle;
  28. // Dialog Data
  29. //{{AFX_DATA(COsqlDlg)
  30. enum { IDD = IDD_OSQL_DIALOG };
  31. CCmdOutCtrl m_cmdOutput;
  32. CCmdInCtrl m_cmdInput;
  33. CButton m_buttonDo;
  34. //}}AFX_DATA
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(COsqlDlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. HICON m_hIcon;
  43. COdb m_db;
  44. CCommand m_cmd;
  45. void Output( CString csOut, int nEffect = 0 ) { m_cmdOutput.Output(csOut,nEffect); };
  46. void About();
  47. void Help();
  48. HRESULT RunCommand( CString csCommandLine );
  49. void CalcSize(int cx, int cy);
  50. // Generated message map functions
  51. //{{AFX_MSG(COsqlDlg)
  52. virtual BOOL OnInitDialog();
  53. afx_msg void OnPaint();
  54. afx_msg HCURSOR OnQueryDragIcon();
  55. afx_msg void OnButtonDo();
  56. afx_msg void OnSize(UINT nType, int cx, int cy);
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_OSQLDLG_H__C7257218_0484_11D3_A0D8_00105A27C570__INCLUDED_)