-
2009102816302101
详细讲解了VC++使用ADO对SQL SERVER的操作(Explained in detail the use of ADO in VC++ the operation of SQL SERVER)
- 2009-11-02 17:39:39下载
- 积分:1
-
shrinkpdf
说明: CKVVVVVYUFVLY CUUUU
- 2019-02-22 05:54:35下载
- 积分:1
-
biaoding
相机标定经典教程,可以适合初学标定算法者使用(Tutorial classic camera calibration can be suitable for beginners to use the calibration algorithm)
- 2008-12-11 21:50:43下载
- 积分:1
-
Boost
C++标准库内容。在C++社区中影响甚大,是不折不扣的“准”标准库。Boost由于其对跨平台的强调,对标准C++的强调,与编写平台无关。(The content of the C++ standard library. A great influence in the C++ community, is hundred-percent quasi standard library. Boost because of its emphasis on cross platform, the emphasis on the standard of C++, and write platform independent.)
- 2014-11-21 14:01:07下载
- 积分:1
-
Read_STL
STL是三维模型常用的文件格式。对STL文件进行读取和显示,是对模型进行后续操作的前提。在对STL文件格式进行详细分析的基础上,以VC+-I-作为开发平台;利用C++标准lO库的ifstream类型定义对象并绑定STL文件;再用标准库string类型中的getline逐行读取绑定的STL文件;最后,应用OpenGL中绘制三角面片编程技术实现对STL文件格式的直观显示。通过试验验证了读取和显示效果。(STL is a commonly used file format for 3D models. Reading and displaying the STL file is a prerequisite for the subsequent operation of the model. In the STL file format on the basis of a detailed analysis to VC+-I- as a development platform use C++ standard lO library ifstream type definition object and bind STL file and then the standard library string type getline line by line read Bound STL file Finally, the use of OpenGL in the drawing of triangulation programming technology to achieve STL file format intuitive display. Experiments verify the read and display results.)
- 2017-04-13 16:01:37下载
- 积分:1
-
Queue
关于队列的实现,按照算法导论书上得来,简单易用。(On the implementation of the queue, according to the book Introduction to Algorithms, come on, easy to use.)
- 2010-12-15 20:52:52下载
- 积分:1
-
FindFunc
说明: 可查找C++源代码文件中定义的函数及每个函数实现代码的行数。帮助开发人员随时掌握代码中函数的粒度控制。(To find C++ source code files and functions defined in the implementation code for each function, the number of lines.)
- 2011-03-11 19:18:46下载
- 积分:1
-
VC++
- 2022-01-28 21:41:13下载
- 积分:1
-
VC++ 编程获取硬盘SMART信息
VC++ 编程获取硬盘驱动器的SMART信息,SMART信息能对硬盘的磁头单元、硬盘温度、盘片表面介质材料、马达及其驱动系统、硬盘内部电路等进行监测,及时分析并预报硬盘可能发生的问题。运行本源码测试前,请先打开Biso中的SMART信息监测开关。
本源码中的信息是英文的,使用时需要对照翻译过来,测试图如下所示。
- 2022-06-03 05:08:07下载
- 积分:1
-
VC++ 限定框架窗口的大小和位置
VC++ 限定框架窗口的大小和位置,无法移动且固定大小的SDI,用VC++编写实现这种固定窗口大小,且无法用鼠标拖动的窗口。窗口是不能改变大小的,窗口标题也不能被拖动,运行程序后,窗口的位置就已经固定,并不能移动和调整大小的操作。相关的代码:
CMenu* pTopMenu = GetSystemMenu(FALSE); //获取系统菜单
pTopMenu -> RemoveMenu(4,MF_BYPOSITION); //去除最大、最小化功能
pTopMenu -> RemoveMenu(2,MF_BYPOSITION); //去除改变尺寸功能
pTopMenu -> RemoveMenu(1,MF_BYPOSITION); //去除移动功能
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
//设置框架窗口的初始大小和位置
cs.cy = ::GetSystemMetrics(SM_CYSCREEN) / 4;
cs.cx = ::GetSystemMetrics(SM_CXSCREEN) / 3;
cs.y = cs.cy / 4;
cs.x = cs.cx / 2;
return TRUE;
- 2022-06-14 00:02:23下载
- 积分:1