登录
首页 » Windows开发 » INNO Setup5.36 source code, very good,,,

INNO Setup5.36 source code, very good,,,

于 2022-05-14 发布 文件大小:948.43 kB
0 166
下载积分: 2 下载次数: 1

代码说明:

INNO Setup5.36源码,很不错的-INNO Setup5.36 source code, very good,,,

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

发表评论

0 个回复

  • 留言板你可以通过我们这个留言板来实现留言和显示留言。可以方便在BBS中用的偶...
    留言板你可以通过我们这个留言板来实现留言和显示留言。可以方便在BBS中用的偶-it is a getbook a property .it answer
    2022-09-06 19:35:02下载
    积分:1
  • VC毛玻璃
    #define GDIPVER 0x0110 //定义高版本的GDI+(1.1) #include #include #include #include #include #pragma comment(lib,"GdiPlus.lib") using namespace Gdiplus; #include #pragma comment(lib,"dwmapi.lib") //Aero效果是否已启用 BOOL IsCompositionEnabled() { BOOL bEnabled,bResult; bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled); return bResult; } //对已分层的窗口启动玻璃效果 HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄 BOOL bEnable = TRUE, //启用或禁用 HRGN hRgn = 0, //模糊窗体中某个区域 BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用 { DWM_BLURBEHIND blurBehind = { 0 }; blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED; blurBehind.fEnable = bEnable; blurBehind.fTransitionOnMaximized = bTransitionOnMaximized; if (bEnable && hRgn != NULL) { blurBehind.dwFlags |= DWM_BB_BLURREGION; blurBehind.h
    2023-05-01 15:10:04下载
    积分:1
  • 测试一个文件上载功能 测试一个文件上载功能
    测试一个文件上载功能 测试一个文件上载功能-测试一个文件上载功能测试一个文件上载功能测试一个文件上载功能
    2023-05-24 11:45:03下载
    积分:1
  • 0-1背包问题
    给定N中物品和一个背包。物品i的重量是Wi,其价值位Vi ,背包的容量为C。问应该如何选择装入背包的物品,使得转入背包的物品的总价值为最大。 在选择物品的时候,对每种物品i只有两种选择,即装入背包或不装入背包。不能讲物品i装入多次,也不能只装入物品的一部分。因此,该问题被称为0-1背包问题。该算法中,矩阵c的大小为(m+1)×(n+1),物体的重量、价值和解向量大小都等于物体个数n,故该算法的空间复杂度为O(nm)。对物体重量、价值的初始化(算法实现略)所需时间都为n,解向量和矩阵第0行初始化时间为n,矩阵第0列初始化时间为m,对矩阵c的计算所需时间为n×m,解向量X的确定时间为n,故整个算法的时间复杂度为O(nm)。
    2022-01-25 23:07:45下载
    积分:1
  • 扫雷扫雷,自写代码扫雷,自写代码
    扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写代码扫雷,自写
    2023-09-04 20:55:04下载
    积分:1
  • http详解 This document specifies an Internet standards track protocol for the In...
    http详解 This document specifies an Internet standards track protocol for the Internet community, and requests discussion and suggestions for improvements. Please refer to the current edition of the “Internet Official Protocol Standards” (STD 1) for the standardization state and status of this protocol. Distribution of this memo is unlimited.-http Detailed This document specifies an Internet standards track protocol for the Internet community, and requests discussion andsuggestions for improvements. Please refer to the current edition of the Internet Official Protocol Standards (STD1) for the standardization state and status of this protocol. Distribution of this memo is unlimited.
    2022-01-21 19:20:17下载
    积分:1
  • icc19264液晶显示器显示程序
    icc19264液晶显示器显示程序-icc19264 LCD display program
    2022-05-18 22:44:20下载
    积分:1
  • php 网格与导出选项
    这是用于 php 网格与所有的选项,如排序、 过滤,出口到 XL 和编辑代码。下载 ApPHP DataGrid 脚本是一个简单、 创新和强大的工具,用于生成数据绑定网格控件。它被专为 web 开发人员。下载 ApPHP DataGrid 非常适合所有 PHP 数据库驱动的 web 站点和在线基于数据管理 ;它也是有用的动态内容管理和基于 PHP 的托管服务提供商。
    2022-02-05 16:21:40下载
    积分:1
  • 用基于变治法的堆排序算法对任意一组给定的数据进行排序 设计与实现堆排序算法; 2)待排序的数据可以手工输入(通常规模比较小,10个数据左右),用以检测程...
    用基于变治法的堆排序算法对任意一组给定的数据进行排序 设计与实现堆排序算法; 2)待排序的数据可以手工输入(通常规模比较小,10个数据左右),用以检测程序的正确性;也可以计算机随机生成(通常规模比较大,1500-3000个数据左右),用以检验(用计数法)堆排序算法的时间效率。-Variable-based treatment of the heap sorting algorithm to a set of arbitrary data set to sort the design and implementation of heap sort algorithm 2) to be sort of data can be entered manually (usually relatively small size of about 10 Data), to detect the correctness of the procedure also can be randomly generated computer (usually relatively large-scale data ,1500-3000 or so), to test (with counting) time sorting algorithm reactor efficiency.
    2022-07-22 21:14:31下载
    积分:1
  • 本文对数学建模有一些非常好的MATLAB源代码…
    这个文件的内容是matlab的一些很好的源程序,供数学建模者参考,希望大家多多支持-This paper is on some very good matlab source code for the mathematical modeling reference, I hope everyone can support
    2022-04-27 22:20:43下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载