登录
首页 » Visual C++ » PlayFlash

PlayFlash

于 2011-11-22 发布 文件大小:7439KB
0 220
下载积分: 1 下载次数: 24

代码说明:

  Flash与VC的交互,主要介绍VC中插入Flash,并交互(Flash and VC interaction, focuses on the VC into Flash, and interactive)

文件列表:

PlayFlash
.........\Debug
.........\.....\Debug
.........\.....\PlayFlash.exe,131157,2010-08-10
.........\.....\PlayFlash.ilk,301684,2010-08-10
.........\.....\PlayFlash.obj,15141,2010-08-08
.........\.....\PlayFlash.pch,5514316,2010-08-08
.........\.....\PlayFlash.res,3540,2010-08-08
.........\.....\PlayFlashDlg.obj,45260,2010-08-08
.........\.....\shockwaveflash.obj,84296,2010-08-08
.........\.....\StdAfx.obj,105721,2010-08-08
.........\.....\vc60.idb,197632,2010-08-08
.........\.....\vc60.pdb,364544,2010-08-08
.........\.....\仪表.swf,584389,2010-08-08
.........\flash.txt,21394,2010-07-20
.........\Flash与VC接口变量定义.bmp
.........\Flash与VC的方式.doc,58880,2010-08-07
.........\PlayFlash.aps,37304,2010-08-07
.........\PlayFlash.clw,1741,2010-08-10
.........\PlayFlash.cpp,2795,2004-07-31
.........\PlayFlash.dsp,4781,2010-08-07
.........\PlayFlash.dsw,587,2004-07-30
.........\PlayFlash.h,1357,2004-07-30
.........\PlayFlash.ilk,229180,2010-07-20
.........\PlayFlash.ncb,99328,2010-08-10
.........\PlayFlash.opt,55808,2010-08-10
.........\PlayFlash.pdb,320512,2010-08-08
.........\PlayFlash.plg,1786,2010-08-08
.........\PlayFlash.rc,7696,2010-08-07
.........\PlayFlashDlg.cpp,8412,2010-08-08
.........\PlayFlashDlg.h,1803,2010-08-06
.........\ReadMe.txt,3633,2004-07-30
.........\Release
.........\res

.........\...\PlayFlash.rc2,401,2004-07-30
.........\resource.h,1239,2010-08-06
.........\shockwaveflash.cpp,14270,2004-07-30
.........\shockwaveflash.h,4367,2004-07-30
.........\startup.fla,147456,2004-07-31
.........\startup.swf,17167,2004-07-30
.........\StdAfx.cpp,211,2004-07-30
.........\StdAfx.h,1054,2004-07-30
.........\xiaobo
.........\......\仪表.fla,1420288,2010-08-08
.........\......\仪表.swf,584389,2010-08-08
.........\xiaobo.rar,1800765,2010-08-08
.........\~$ash与VC的方式.doc,162,2010-08-07
.........\仪表.swf,584389,2010-08-08

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 2005serial
    基于wince6.0的串口读写工程,该应用程序没用MFC中MSCOM组件,通过createfilewritefile eadfile等流驱动函数直接读写串口,其中还包括波特率、奇偶校验位以及串口通信协议的详细编程,该类经调试在VS2005环境下调试成功,对wince系统下串口通信实现具有很好的借鉴意义。(Based on the serial read and write wince6.0 engineering, the application useless in MSCOM MFC components, serial read and write directly through createfile writefile readfile and other flow-driven function, which also includes the baud rate, parity, and serial communication protocol the detailed program, the class after the successful commissioning in VS2005 debugging environment, under wince serial communication system to achieve with a good reference.)
    2015-01-29 15:01:15下载
    积分:1
  • Ex1_02
    VC 入门字符串的用法,示范了在纯C++中字符串的输出及换行的方法。(Introduction to string VC usage, demonstrated in pure C++, the output of the string and wrap method.)
    2011-08-03 00:57:26下载
    积分:1
  • 6_1
    1. 定义一个抽象学生类CStudent,它具有公有成员函数Average(),该函数用于计算学生的平均分,函数为虚函数;定义一个文科学生类CStudentLiberalArts,它是类CStudent的派生类,并以公有方式派生,它具有的成员有: 1) 保存英语、政治、数学、地理和历史、美术成绩的整形成员变量; 2) 设置上述变量的公有成员函数; 3) 输出上述变量的公有成员函数; 4) 公有的成员函数Average()用于计算学生的平均分; 定义一个理科学生类CStudentScience,它是类CStudent的派生类,并以公有方式派生,它具有的成员为: 1) 保存英语、物理、数学、化学和计算机、程序设计成绩的整形成员变量; 2) 设置上述变量的公有成员函数; 3) 输出上述变量的公有成员函数; 4) 公有的成员函数Average()用于计算学生的平均分; 编写主函数,并测试以下内容: 1) 定义一个CStudent的指针数组pStu,数组长度为4; 2) 动态创建2个文科学生的对象,地址存于pStu数组的0-1个元素内; 3) 动态创建2个理科学生的对象,地址存于pStu数组的2-3个元素内; 4) 利用while循环调用数组里每个元素的计算平均成绩操作; 释放动态分配的空间,确保必要的析构函数能被调用。 (1 define an abstract class student CStudent, it has a public member function Average (), this function is used to calculate the student s average points function as virtual function definition of a liberal arts student class CStudentLiberalArts, it is the class CStudent derived class, and public be derived, which has members are: 1) Save English, shaping member variables politics, mathematics, geography and history, art achievements 2) Set the above variables public member function 3) public member function of the output of the variable 4) public member function Average () is used to calculate the average student s points The definition of a science student class CStudentScience, it is the class CStudent derived class, and public manner derived, which has members as follows: 1) Save English, physics, mathematics, chemistry and computer programming achievement shaping member variables 2) Set the above variables public member function 3) public member function of t)
    2014-10-20 15:29:16下载
    积分:1
  • Keeloq
    此为Keeloq算法的解密C代码,keeloq最常用于无线门锁装置。(KeeLoq is a proprietary hardware-dedicated NLFSR-based block cipher. The uni-directional command transfer protocol was designed by Frederick Bruwer, PhD, CEO at Nanoteq (Pty) Ltd)
    2020-09-08 22:48:03下载
    积分:1
  • hx711
    基于STM32f103控制HX711和LCD实现的电子秤,软件已调试成功,称重比较准确(Based STM32f103 control the HX711 and LCD electronic scale implementation, the software has debugging success, weighing more accurate)
    2021-04-26 02:18:46下载
    积分:1
  • ChatClient
    基于MFC框架应用SOCKET的聊天室客户端,在VS2015上完美运行(SOCKET chat room client based on MFC framework, running perfectly on VS2015)
    2018-08-09 11:11:28下载
    积分:1
  • SkinMagic2.4和Skin++v2.0.1破解版(含使用说明)
    mfc界面美化皮肤库收藏,轻松实现多种风格的界面。欢迎收藏(MFC interface beautifies skin library collection and easily realizes a variety of styles of interface. Welcome collection)
    2020-12-29 18:19:01下载
    积分:1
  • myRpgGame
    这是我毕业设计所写的小程序,程序中的界面类似于魔塔,用vc6.0 mfc开发,个人测试没有什么问题(This is my small program written by graduation, the program s interface is similar to devil s tower, with vc6.0 mfc development, individual test without any problems)
    2011-05-23 10:51:04下载
    积分:1
  • ErrorLook
    通过系统返回的错误代码,你可以查看错误代码和系统的版本信息。帮助自己改写错误(Use the Soft you can Look Error Code and look the system Version,so you can clean to know the error you made ,to help you change you mistake.)
    2012-09-10 23:34:58下载
    积分:1
  • BMKGLED
    数字开关测试的源程序,非常适合新51单片机的新手入门的学习。(Digital switch test source program, very suitable for novice start learning new 51 single-chip microcomputer.)
    2012-08-07 13:53:47下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载