-
单机斗地主源代码
单机斗地主源代码,Poker类和Player可以直接放到自己的程序中使用,非常值得借鉴-single player DouDiZhu
- 2022-02-27 05:15:18下载
- 积分:1
-
VC与Flash的交互例子
本例程是提供VC和flash之间的交互方法说明的源码,主要功能如下:
1.VC中如何调用flash的方法的;
2.在Flash中如何回调vc的方法;
- 2022-05-17 01:06:40下载
- 积分:1
-
Wince系统下的表盘代码
该程序是Wince下的表盘控件代码,已实际用于项目中 至今运行稳定 可作为工控仪表使用 非常方便灵活
- 2022-08-22 06:11:34下载
- 积分:1
-
mfcrumen
讲述Visual C+ +/MFC开发的基本知识,文档/视结构,窗体控件的使用和一些基本的网络开发知识。同时指出一些在开发中容易犯的错误和一些注意事项。本教程主要侧重于讲解MFC中各个类的使用和函数功能,同时在重要内容上都带有例程。
整个教程分为六章
(on Visual C/MFC development of the basic knowledge, documentation/visual structure, Form controls on the use and some basic knowledge of network development. Some also pointed out the development of easily made mistakes and some attention to the matter. The Guide focuses mainly on the MFC in all categories of functional use and function, while important elements are somewhat routine. Guide is divided into six chapters throughout the)
- 2007-06-13 16:06:20下载
- 积分:1
-
vc++6.0Socket
这是一本网上很流行的介绍vc++网络编程的电子书,里面的内容很详细!大家要好好学习啊 !(This is a very popular online introduction vc++ Network programming e-books, which detail the content! Everyone to study hard ah!)
- 2020-06-26 03:40:02下载
- 积分:1
-
VC++ 遍历记录集的实现方法和代码
VC++ 遍历记录集的例子,需要数据库配合,核心代码如下:
//连接数据库
OnInitADOConn();
//设置查询字符串
_bstr_t bstrSQL = "select * from employees order by 员工编号 desc";
//创建记录集指针对象实例
m_pRecordset.CreateInstance(__uuidof(Recordset));
//打开记录集
m_pRecordset->Open(bstrSQL,m_pConnection.GetInterfacePtr(),adOpenDynamic,
adLockOptimistic,adCmdText);
//遍历记录集
while(!m_pRecordset->adoEOF)
{
m_Grid.InsertItem(0,"");
m_Grid.SetItemText(0,0,(char*)(_bstr_t)m_pRecordset->GetCollect("员工编号"));
m_Grid.SetItemText(0,1,(char*)(_bstr_t)m_pRecordset->GetCollect("员工姓名"));
m_Grid.SetItemText(0,2,(char*)(_bstr_t)m_pRecordset->GetCollect("所属部门"));
m_Grid.SetItemText(0,3,(char*)(_bstr_t)m_pRecordset->GetCollect("基本工资"));
//将记录集指针移动到下一条记录
m_pRecordset->MoveNext();
}
//断开数据库连接
ExitConnect();
- 2022-09-02 14:45:03下载
- 积分:1
-
孙鑫C++教程(全20讲)PPT讲义
说明: 孙鑫C++编程教程 c++入门编程的很好的教材(sunxin C + + programming tutorial)
- 2019-12-26 16:37:28下载
- 积分:1
-
点过咯这
说明: dian guo lo zhe,cao,hello word
- 2019-05-09 20:25:10下载
- 积分:1
-
毫秒级定时器 VC范例及源码
VC++编写的毫秒级定时器实例,上一次的终止值变成新的起始值,发送消息通知对话框该更新时间了。
//更新时间
void CMilliSecondDlg::OnUpdateTime()
{
struct _timeb timebuffer;
char *timeline;
//获得毫秒级的时间
_ftime( &timebuffer );
timeline = ctime(&(timebuffer.time));
//格式化时间
m_strTime.Format("当前时间是:%.19s.%hu %s", timeline, timebuffer.millitm, &timeline[20]);
UpdateData(FALSE);
}
- 2023-05-15 18:00:02下载
- 积分:1
-
TableControl
说明: 工具条控制。编译之后,就可以直接拿来用咯(Toolbar control. After compilation, you can directly make use of them slightly)
- 2011-02-19 13:34:07下载
- 积分:1