本书从应用的角度出发,分三个阶段循序渐进地向读者介绍了使用Visual C++6.0进行应用开发中常用的设计方法和技巧,每条技巧分别讲述了其应用背景、目的、方法,并给出了实例代码,最后进行了相应的分析和扩展。 前言 第1部分 基础篇 第1章 Visual C++开发环境 第2章 在应用程序中使用控件 第3章 鼠标和键盘事件 第4章 使用计时器 第5章 在应用程序中添加对话框 第6章 为应用程序创建菜单 第7章 使用文本和字体 第1部分复习 第2部分 提高篇 第8章 引入图形、绘图和位图 第9章 给应用程序添加ActiveX控件 第10章 创建单文档界面应用程序 第11章 创建多文档界面应用程序 第12章 添加工具栏和状态栏 第13章 文件的存取 第14章 在ODBC数据中检索数据 第2部分复习 第3部分 高级篇 第15章 通过ADO更新和添加数据库记录 第16章 创建自己的类和模块 第17章 创建DLL动态链接库
2022-11-18 21:33:30 14MB VisualC++6.0 教程 界面 数据库
1
本书从应用的角度出发,分三个阶段循序渐进地向读者介绍了使用Visual C++6.0进行应用开发中常用的设计方法和技巧,每条技巧分别讲述了其应用背景、目的、方法,并给出了实例代码,最后进行了相应的分析和扩展。 前言 第1部分 基础篇 第1章 Visual C++开发环境 第2章 在应用程序中使用控件 第3章 鼠标和键盘事件 第4章 使用计时器 第5章 在应用程序中添加对话框 第6章 为应用程序创建菜单 第7章 使用文本和字体 第1部分复习 第2部分 提高篇 第8章 引入图形、绘图和位图 第9章 给应用程序添加ActiveX控件 第10章 创建单文档界面应用程序 第11章 创建多文档界面应用程序 第12章 添加工具栏和状态栏 第13章 文件的存取 第14章 在ODBC数据中检索数据 第2部分复习 第3部分 高级篇 第15章 通过ADO更新和添加数据库记录 第16章 创建自己的类和模块 第17章 创建DLL动态链接库
2022-11-18 21:32:04 11.28MB VisualC++6.0 教程 数据库 界面
1
toolxp.net玩玩小游戏 .net2.0版 build 090706.zip
2022-11-18 19:28:15 86KB 游戏代码
toolxp.net玩玩小游戏 .net2.0版 build.zip
2022-11-18 19:28:10 98KB 游戏代码
南京科远DCS软件 NT6000 V4.2.014 Release Build 2021.1018 Setup
2022-11-17 21:20:38 348.41MB dcs
1
PxCook_v3.7.9_build_201808161159 – 图形标记工具 –
2022-11-17 10:18:16 3.9MB PxCook_v3.7.9_bu
1
使用mingw编译的libQRencode库
2022-11-17 09:03:59 68KB gcc
EhLib 6.3 Build 6.3.184 D7-XE7
2022-11-15 21:09:22 11.04MB Ehlib delphi xe7
1
单页应用会随着项目越大,导致首屏加载速度很慢!!!以下给出在下知道的几种优化方案 使用CDN资源,减小服务器带宽压力 路由懒加载 将一些静态js css放到其他地方(如OSS),减小服务器压力 按需加载三方资源,如iview,建议按需引入iview中的组件 使用nginx开启gzip减小网络传输的流量大小 webpack开启gzip压缩 若首屏为登录页,可以做成多入口,登录页单独分离为一个入口 使用CDN资源,减小服务器带宽压力 在index.html中引入cdn资源 ... <body>
<!-- bui
2022-11-14 08:45:39 85KB app build gzip
1
# OpenCV-MinGW-Build MinGW version of OpenCV compiled on Windows. ## [OpenCV 3.4.1](https://github.com/huihut/OpenCV-MinGW-Build/tree/OpenCV-3.4.1) ``` git clone -b OpenCV-3.4.1 git@github.com:huihut/OpenCV-MinGW-Build.git ``` ## [OpenCV 3.3.1](https://github.com/huihut/OpenCV-MinGW-Build/tree/OpenCV-3.3.1) ``` git clone -b OpenCV-3.3.1 git@github.com:huihut/OpenCV-MinGW-Build.git ``` ## Compiling Environment * Windows-10-64bit * MinGW-5.3.0-32bit * CMake-3.9.2 ## How to compile OpenCV * [wiki.qt . How to setup Qt and openCV on Windows](https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windows) * [blog.huihut . OpenCV使用CMake和MinGW的编译安装及其在Qt配置运行](https://blog.huihut.com/2017/12/03/CompiledOpenCVRunInQt/) ## Using OpenCV in Qt Add OpenCV library file and include path to Qt `.pro` file. * My version of OpenCV : `OpenCV 3.3.1` * My OpenCV path : `E:\OpenCV_3.3.1\OpenCV-MinGW-Build` So the configuration is as follows (**You need to modify it according to your OpenCV.**) : ``` win32 { INCLUDEPATH += E:\OpenCV_3.3.1\OpenCV-MinGW-Build\include LIBS += E:\OpenCV_3.3.1\OpenCV-MinGW-Build\bin\libopencv_*.dll } ``` or ``` win32 { INCLUDEPATH += E:\OpenCV_3.3.1\OpenCV-MinGW-Build\include LIBS += -LE:\OpenCV_3.3.1\OpenCV-MinGW-Build\bin \ -llibopencv_calib3d331 \ -llibopencv_core331 \ -llibopencv_dnn331 \ -llibopencv_features2d331 \ -llibopencv_flann331 \ -llibopencv_highgui331 \ -llibopencv_imgcodecs331 \ -llibopencv_imgproc331 \ -llibopencv_ml331 \ -llibopencv_objdetect331 \ -llibopencv_photo331 \ -llibopencv_shape331 \ -llibopencv_stitching331 \ -llibopencv_superres331 \ -llibopencv_video331 \ -llibopencv_videoio331 \ -llibopencv_videostab331 } ```
2022-11-10 10:16:38 10.48MB opencv3.3.1 opencv mingw
1