虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

cpp

  • DSPack is a set of Components and class to write Multimedia Applications using MS Direct Show and Di

    DSPack is a set of Components and class to write Multimedia Applications using MS Direct Show and DirectX technologies. DSPack is designed to work with DirectX 9 on Win9X, ME, 2000, and Windows XP operating systems. Now VMR (Video Mixing Renderer) is available on all Windows Operating Systems. DSPack 2 is designed to work with Delphi 5,6,7 and cpp

    标签: Applications Components Multimedia and

    上传时间: 2015-07-20

    上传用户:hanli8870

  • 法:1:将类文件加入到你的项目中 2:在你的对话框中加入一个按纽(button)

    法:1:将类文件加入到你的项目中 2:在你的对话框中加入一个按纽(button),设置其文本和大小。 3:利用classwizard为按纽设置一个CButten类的值m_3dtext,然后编缉对话框的头文件,将CButten m_3dtext 改为CMyTextButton m_3dtex 在 对话框的.cpp文件中加入#include "CMyTextButton.h"

    标签: button 项目 对话框

    上传时间: 2013-12-03

    上传用户:yyq123456789

  • 员工培训系统,首先确认您的机器上已经安装了VC6.0以上版本

    员工培训系统,首先确认您的机器上已经安装了VC6.0以上版本,要编译生成可执行文件,需打开后缀名为dsw的文件,系统会默认用VC打开,然后选择Build菜单下的Set Active Configuration选项,选择Project Configuration为Win32 Release,然后编译项目,得到可执行文件。连接数据库请参照第2章的方法,在ODBC数据源内添加Microsoft Access数据库train.mdb,并将数据源名设定为train即可实现数据库和应用程序的正常连接,程序才能正常实现数据库的访问。另外,如果用户自己编写了.chm的帮助文档只要和可执行文件放在同一个目录下就可以了。 用户要修改程序源码可以选择相应的.h和.cpp文件,本实例使用的命名规则基本是:DIALOG_***** 为管理对话框资源, *****Info为数据输入窗口资源, *****Set为结果集对应的类

    标签: 6.0 VC 机器

    上传时间: 2015-08-26

    上传用户:wmwai1314

  • 王小平《遗传算法——理论、应用与软件实现》随书光盘

    王小平《遗传算法——理论、应用与软件实现》随书光盘,内容有: \GA 本书中所附源程序C或C++代码文件及其可执行文件 Scs.cpp 基本分类算法源程序,输入数据文件cfile.txt,efile.txt,gfile.txt,pfile.txt,rfile.txt,tfile.txt Sga.c 基本遗传算法源程序, 输入数据文件input,输出文件output A_life.c 基于遗传算法的人工生命模拟源程序, 输入数据文件world GA_nn.c 基于遗传算法优化神经网络结构源程序,输入数据文件sample Patmat.c 基于遗传算法提取基元图形源程序 \Sources 遗传算法相关自由软件及代码

    标签: 算法 光盘 软件实现

    上传时间: 2013-12-14

    上传用户:sz_hjbf

  • Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search ma

    Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm. Then there is an integer h indicate the number of heuristic. The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist.

    标签: Implemented following compile command

    上传时间: 2014-01-01

    上传用户:lhc9102

  • 程序功能: 1 管理员开设课程; 2 学生可以选择课程; 3 学生注册; 4 教师注册; 5 教师给选自己课程的学生给成绩; 6 管理员对学生成绩进行管理; 7 学生能够查询通过密码自己

    程序功能: 1 管理员开设课程; 2 学生可以选择课程; 3 学生注册; 4 教师注册; 5 教师给选自己课程的学生给成绩; 6 管理员对学生成绩进行管理; 7 学生能够查询通过密码自己的成绩; cpp9.cpp 主函数控制程序运行 teacher.cpp 教师类 course.cpp 课程类 Administrator.cpp 管理员类 delete_record.cpp 删除记录 save_lord.cpp 文件存取操作 short_record.cpp 生成简明文件 bad.cpp 生成均不及格的学生文件 find.cpp 查找学生信息 input_disp.cpp 输入、显示信息 Graph1.cpp 图形显示 学生成绩管理系统简介.doc 程序说明

    标签: 程序 查询 密码

    上传时间: 2014-11-07

    上传用户:shanml

  • 该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern "C"表示按传统C命名习惯.函数save将程序指针保存在

    该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern "C"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,却在判断之前将程序指针保存在sp中了. else语句中的resume(&sp),该函数很狡猾将堆栈中的返回地址改变了,改到了sp所指出,即将程序指针改到了执行条件判断前.resume返回1,条件满足,执行if语句. save函数堆栈: eip ebp+8 s ebp+4 ebp ebp+0 resume函数堆栈与save的相同. 新建一个win32的工程,将unixc.cpp和unix.obj加入过程即可. unix.obj是用masm6.11生成的:ml /c /coff unix.asm,生成coff格式的obj而不是omf格式.

    标签: save resume extern 函数

    上传时间: 2015-09-10

    上传用户:变形金刚

  • Predefined Style options define the style by setting several other options. If other options are als

    Predefined Style options define the style by setting several other options. If other options are also used, the placement of the predefined style option in the command line is important. If the predefined style option is placed first, the other options may override the predefined style. If placed last, the predefined style will override the other options. For example the style --style=ansi sets the option --brackets=break . If the command line specifies "--style=ansi --brackets=attach", the brackets will be attached and the style will not be ansi style. If the order on the command line is reversed to "--brackets=attach --style=ansi ", the brackets will be broken (ansi style) and the attach option will be ignored. For the options set by each style check the parseOption function in astyle_main.cpp

    标签: options other Predefined setting

    上传时间: 2014-12-21

    上传用户:zhangliming420

  • 基于"trace transform"的识别2D图像的C++源程序

    基于"trace transform"的识别2D图像的C++源程序, 主文件是tt.cpp, 在LINUX下可以用 g++ tt.cpp -o tt -O3进行编绎, 而且最后的结果也可以在MATLAB下显示出来, This package presents C++ tools to the trace transform of a 2D image, and related objects, i.e. circuses and triple features, matlab tools to visualise these entities, and tools to check newly coded functionals. This version is released with a small number of functionals only.

    标签: transform trace 识别 图像

    上传时间: 2013-12-23

    上传用户:redmoons

  • 本文件概要介绍组成 Example 应用程序的每个文件的内容。 Example.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。 它包含生成该文件的 Visual C

    本文件概要介绍组成 Example 应用程序的每个文件的内容。 Example.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。 它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的 平台、配置和项目功能的信息。 Example.cpp 这是主应用程序源文件。 包含用于显示窗体的代码。 Form1.h 包含窗体类的实现和 InitializeComponent() 函数。 AssemblyInfo.cpp 包含用于修改程序集元数据的自定义属性。

    标签: Example vcproj Visual 应用程序

    上传时间: 2013-12-17

    上传用户:上善若水