-
OpenSPARCT1_Micro_Arch
Sun Opensparc
- 2010-03-23 15:28:28下载
- 积分:1
-
yanshitu
数模题目代码,一个简易的matlabUI动画演示程序(Modulus subject code, a simple animation demo program matlabUI)
- 2013-09-13 08:36:54下载
- 积分:1
-
设计模式23种设计模式
说明: 设计模式 面向对象的数据结构 详解 23种设计模式带源码 C++(Design Patterns Object-Oriented Data Structure Details 23 Design Patterns with Source C++.)
- 2020-06-21 22:20:02下载
- 积分:1
-
基于MFC 对话框 的数据库 正删改查简单操作 简单易懂
_variant_t var; //通过_variant_t和_bstr_t这两个类,就可以方便的把C 类型变量转换成COM中的变量 CString strName,strAge; // 清空列表框 m_AccessList.ResetContent(); strName=strAge=""; // 在ADO操作中建议语句中要常用try...catch()来捕获错误信息, // 因为它有时会经常出现一些想不到的错误。 try { if(!m_pRecordset->BOF)//BOF测试当前表文件或指定文件的记录指针是否指向文件首,若是返回真值(.T.),否则返回逻辑假值(.F.) m_pRecordset->MoveFirst(); else { AfxMessageBox(_T("表内数据为空")); return; } // 读入库中各字段并加入列表框中 while(!m_pRecordset->adoEOF) { var = m_pRecordset->GetCollect("Name"); if(var.vt != VT_NULL) strName = (LPCSTR)_bstr_t(var); var = m_pRecordset->GetCollect("Age"); if(var.vt != VT_NULL) strAge = (LPCSTR)_bstr_t(var); m_AccessList.AddString( strName " --> " strAge ); m_pRecordset->MoveNext(); } // 默认列表指向第一项,同时移动记录指针并显示 m_AccessList.SetCurSel(0); OnLbnSelchangeListaccess(); } catch(_com_error& e) { dump_com_error(e); }
- 2020-05-29下载
- 积分:1
-
quicksort
说明: Quick Sort an implementation in c++language. may it help others in their projects
- 2019-12-14 19:12:38下载
- 积分:1
-
Delphi 7_0常用函数速查手册
Delphi 7_0常用函数速查手册-Delphi 7_0 commonly used functions Check manual
- 2022-03-07 20:30:24下载
- 积分:1
-
别人的一个代码,看着还行。给大家看看。基本就是 看看设计的手法...
别人的一个代码,看着还行。给大家看看。基本就是 看看设计的手法-C#
- 2022-07-10 04:06:41下载
- 积分:1
-
MY-Project
俄罗斯方块游戏的c++简单实现,参考学习很有价值(Tetris game c++ simple realization, learning valuable reference)
- 2013-09-09 09:51:59下载
- 积分:1
-
etor
The upsampling, Dct the upper sampling of the video of video in dct domain
- 2018-11-25 20:33:09下载
- 积分:1
-
Convexhull
凸包
凸包问题的实现 有无数点,求能包含这些点的图形的最小面积(Convex hull Convex hull problem of realization there are numerous points, seek to include these points, the graphics, the minimum size)
- 2009-12-20 20:39:52下载
- 积分:1