资源简介
本人海搜了很多的表格控件
只要是不开源的,或多或少都有限制
还是开源的用起来安心
这是本人测试的demo例程,仅供参考。
代码片段和文件信息
// demo.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “demo.h“
#include “demoDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDemoApp
BEGIN_MESSAGE_MAP(CDemoApp CWinApp)
//{{AFX_MSG_MAP(CDemoApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDemoApp construction
CDemoApp::CDemoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDemoApp object
CDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDemoApp initialization
BOOL CDemoApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CDemoDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35708 2011-09-16 16:19 demo\demo.aps
文件 1269 2011-09-19 15:04 demo\demo.clw
文件 2035 2011-09-24 11:21 demo\demo.cpp
文件 5994 2011-09-24 17:12 demo\demo.dsp
文件 533 2011-09-14 16:14 demo\demo.dsw
文件 1298 2011-09-24 11:20 demo\demo.h
文件 254976 2011-09-24 17:13 demo\demo.ncb
文件 49664 2011-09-24 17:13 demo\demo.opt
文件 2689 2011-09-24 17:13 demo\demo.plg
文件 5517 2011-09-16 16:19 demo\demo.rc
文件 11189 2011-09-24 12:05 demo\demoDlg.cpp
文件 1906 2011-09-24 11:35 demo\demoDlg.h
文件 4720 2002-07-14 17:26 demo\GridCtrl\CellRange.h
文件 7078 2004-03-13 16:04 demo\GridCtrl\GridCell.cpp
文件 6243 2002-07-14 17:26 demo\GridCtrl\GridCell.h
文件 26728 2004-03-13 15:32 demo\GridCtrl\GridCellba
文件 7765 2002-07-14 17:26 demo\GridCtrl\GridCellba
文件 225110 2011-09-18 21:41 demo\GridCtrl\GridCtrl.cpp
文件 39890 2007-10-31 10:16 demo\GridCtrl\GridCtrl.h
文件 4598 2002-07-14 17:26 demo\GridCtrl\GridDropTarget.cpp
文件 2670 2002-07-14 17:26 demo\GridCtrl\GridDropTarget.h
文件 8509 2002-07-14 17:26 demo\GridCtrl\InPlaceEdit.cpp
文件 2550 2002-07-14 17:26 demo\GridCtrl\InPlaceEdit.h
文件 3507 2002-01-10 08:55 demo\GridCtrl\MemDC.h
文件 9722 2002-07-14 17:26 demo\GridCtrl\ti
文件 2777 2001-07-22 15:42 demo\GridCtrl\ti
文件 5180 2011-09-18 21:14 demo\NewCellTypes\GridCellCheck.cpp
文件 2108 2011-09-18 21:06 demo\NewCellTypes\GridCellCheck.h
文件 13822 2011-09-18 23:01 demo\NewCellTypes\GridCellCombo.cpp
文件 4896 2011-09-18 21:16 demo\NewCellTypes\GridCellCombo.h
............此处省略21个文件信息
- 上一篇:NI公司官方专用卸载工具
- 下一篇:操作系统+首次适应算法实现内存的分配与回收
评论
共有 条评论