本原代码集合了树形控件
源代码在线查看: input.cpp
// input.cpp : implementation file
//
#include "stdafx.h"
#include "hellor14.h"
#include "input.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// input dialog
input::input(CWnd* pParent /*=NULL*/)
: CDialog(input::IDD, pParent)
{
//{{AFX_DATA_INIT(input)
m_dimension1 = _T("");
//}}AFX_DATA_INIT
}
void input::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(input)
DDX_Text(pDX, IDC_EDIT1, m_dimension1);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(input, CDialog)
//{{AFX_MSG_MAP(input)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// input message handlers
void input::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
|
相关资源 |
|
-
本原代码集合了树形控件
-
此代码使用了M97DatePicker控件
-
一个简单的图书借阅管理系统,相信对做课程设计的同学会有所帮助,程序中提供了教详细的代码设计-,Delphi,Delphi控件源码/Delphi VCL
-
本代码用VC++6开发,包含了利用控件和API开发的串口通信,其中API通信部分用多线程写,并且在USB转串口的情况下也经过测试,用控件写的在USB转串口情况下不适用,但是串口转串口可以适用 另外传送
-
delphi 7 下的树形控件,扩展了原有功能
-
通常情况下, 用Delphi开发的程序, dfm是作为资源嵌入可执行文件的, 这就或多或少地带来了一些安全方面的问题.
比如, 通过分析资源, 就能大致了解Form上用了哪些控件 甚至, 通过修改
-
一个不错的树形控件
-
VC的COM口驱动程序,使用了ACTIVEX控件
|