登录
首页 » Windows开发 » 有关Evc的 MyCEActiveX及其使用方法! 很常用的!

有关Evc的 MyCEActiveX及其使用方法! 很常用的!

于 2022-01-23 发布 文件大小:145.28 kB
0 187
下载积分: 2 下载次数: 1

代码说明:

有关Evc的 MyCEActiveX及其使用方法! 很常用的! -Related to the MyCEActiveX EVC and its use! Very commonly used!

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

发表评论

0 个回复

  • 实现方法: 用MFC的程序向导生成一个常规DLL,在常规DLL内有一派生自CWinApp的实例,再用MFC的程序向导生成一个MFC EXE应用程序,把M...
    实现方法: 用MFC的程序向导生成一个常规DLL,在常规DLL内有一派生自CWinApp的实例,再用MFC的程序向导生成一个MFC EXE应用程序,把MFC EXE应用程序中 CAppView,CMainFrame,CAppDocument的文挡和RES目录下的资源拷贝到常规DLL项目中,添加到项目中,编译生成一DLL,在另外一个WIN32应用程序中,启动一线程,在线程函数中显式装载该DLL,取的该DLL内的当前线程, CWinThread *pThread=GetCurrentThread() pThread->Run() 就可装载启动常规DLL内应用程序框架.-Realize Methods: The MFC AppWizard to generate a conventional DLL, in the conventional DLL there is one derived from CWinApp instance, reuse of the MFC AppWizard to generate a MFCEXE applications, the MFC EXE application CAppView, CMainFrame, CAppDocument block of text RES directory and copy resources to the conventional DLL project, add to the project, the compiler generates a DLL, in another WIN32 application, start a thread in the thread function explicitly loading the DLL, check inside the DLL the current thread, CWinThread* pThread = GetCurrentThread () pThread-
    2022-01-22 01:31:41下载
    积分:1
  • 在安卓上实现计算器应用
    安卓应用程序,实现一个计算器,可以进行基本的算术运算,加,减,乘,除。
    2022-10-14 10:25:03下载
    积分:1
  • ADO DataReport操作师范.好东西。
    ADO DataReport操作师范.好东西。-ADO DataReport Normal operation. Good thing.
    2022-03-16 10:21:10下载
    积分:1
  • 详细介绍了 WInce 平台上UI定制方法, 以及UI的思路.
    详细介绍了 WInce 平台上UI定制方法, 以及UI开发的思路.-Described in detail WInce platform UI customization methods, as well as UI development way of thinking.
    2022-03-13 17:02:50下载
    积分:1
  • 99 of the Vista Aero Form VB source code, the use of GDI+ Technology. All images...
    99%的Vista Aero窗体VB源码,使用GDI+技术。所有图片均提取自vista sp1内置资源。 Aurora效果在我nnnn次的试验之下,终于研究出了vista的算法。像素误差应该在个位数,懒得再去调节了。 文字阴影、按钮光晕、色彩调节。 最大化“不大”的问题我还没搞,还有失去焦点时的阴影减弱,关闭按扭透明我也没弄。其他都全了。 本人感觉占用资源比较厉害,呵呵!-99 of the Vista Aero Form VB source code, the use of GDI+ Technology. All images are extracted from the vista sp1 built resources. Aurora effect in my tests under nnnn times, and finally come up with a vista of the algorithm. Pixel error in the single digits, not bother to go the regulation. Text shadow, buttons, halo, color adjustment. Maximize the
    2022-04-24 20:10:17下载
    积分:1
  • tftp src code use visual studio 2008
    tftp src code use visual studio 2008
    2022-12-04 23:50:03下载
    积分:1
  • This program computes the electric field and potential distributions of a dipole...
    用来计算电偶极子的电场和电势分布,当然也可以根据需要计算更高阶的电场,只要保留到相应的阶次就OK了。-This program computes the electric field and potential distributions of a dipole. You can also compute higher order electric field with it by preserving the series to corresponding order.
    2023-01-19 06:55:03下载
    积分:1
  • 直线Bresenham 算法
    直线的中点 Bresenham 算法的原理:每次在主位移方向上走一步,另一个方向上走不走步取决于中点偏差判别式的值。 理想直线将平面划分为三个区域:对于直线上的点,F(x, y) = 0; 对于直线上方的点 F(x, y)>0; 对于直线下方的点F(x, y)
    2023-06-04 13:50:03下载
    积分:1
  • java异常处理
    3.8 异常处理  什么是异常  知道Java异常分类  处理异常的两种方式  throw和throws区别  如何创建自定义异常 概念: 在程序中,可能产生程序员没有预料到的各种错误情况,比如打开一个不存在的文件等,在Java中,这种在程序运行时可能出现的错误称为异常。  异常可以把“描述在正常执行过程中做什么事”的代码和“出了问题怎么办”的代码相分离 例子:demo05.ExceptionDemo.java Java异常分类A:  java.lang.Error,java.lang.Exception  Error(错误):jvm系统内部错误、资源耗尽等严重问题,发生Error时,编程人员无能 为力,只能终止程序,例如内存溢出等。  Exception(异常):因编程错误或偶然的外在因素导致的一般性问题,例如:对负数  开平方根、空指针访问等,当发生Exception 时,编程人员可以做出处理,并做出人性 化响应,比如弹出窗口,显示“请不要输入负数!”。 异常分类B:  检查性异常:编译器必须处理的异常,该类异常通常是Exception类型或其子类(RuntimeException类除外)//运行时异常   SQLException、IOException、ClassNotFoundException 例子:/DemoProject/src/com/hyg/demo08/FileInputStreamDemo.java  非检查性异常:编译器不要求强制处理的异常,RuntimeException类及其所有子类都是非检查性异常。   NullPointerException、ClassCastException 例子:equa
    2022-02-14 14:02:16下载
    积分:1
  • 画曲线图
    应用背景CChart is a powerful plotting tool for 2D data visulization in C++ interface, with interaction for mouse and keyboard. Please read the file "DocumentUserguide.chm" for detailed infomation. 关键技术This is fully redistrubution version, with many demonstration projects, including Win32API, MFC and WTL samples. If any problems, please contact author by email: baita00@yahoo.com.cn The author assumes no responsibility for the use or reliability of his software.
    2023-07-17 09:40:07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载