登录
首页 » Windows开发 » Updated version of Windows, VC programs applet!

Updated version of Windows, VC programs applet!

于 2022-04-10 发布 文件大小:120.28 kB
0 180
下载积分: 2 下载次数: 1

代码说明:

Windows下VC程序版本更新小程序!-Updated version of Windows, VC programs applet!

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

发表评论

0 个回复

  • 浙江大学,硕士学位论文自由
    浙江大学硕士学位论文自由曲面接触式测量方法研究与原型系统研制-Zhejiang University, a master s degree thesis of free-form surface-contact measurement methods research and development of the prototype system
    2022-01-21 19:58:09下载
    积分:1
  • utf8toGBK编码互相转换
    在不同的使用环境下使用的编码可能不一样,以及在通信过程中采用不同方式编码,该源码主要是UTF8和GBK编码互相转换,具体实现请看代码中的注释
    2022-05-29 14:45:45下载
    积分:1
  • vb雷赛单多轴运动
    雷赛运动控制卡的二次开发,调用内部函数,功能强大,易用。有单轴,多轴,通用IO,回原点,直线差补,圆弧差补,连续差补,手轮运动,真的很强大。
    2022-05-24 02:09:30下载
    积分:1
  • 用C写的表达式计算器,不但可以完成四则运算,还可以处理一些函数运算,可以配合graphviz画出表达式树和计算过程。...
    用C写的表达式计算器,不但可以完成四则运算,还可以处理一些函数运算,可以配合graphviz画出表达式树和计算过程。-Written using C expression calculator, not only can complete the four operations, but also can deal with a number of functions computing, you can tie in with graphviz to draw the expression tree and calculation process.
    2022-07-20 10:31:12下载
    积分:1
  • 用Visual Basic 6.0生成雪花的小程序
    用Visual Basic 6.0生成雪花的小程序-a Procedure generating snowflake
    2023-02-22 18:40:03下载
    积分:1
  • 网络协议规范大全 在网络的各层中存在着许多协议,它是定义通过网络进行通信的规则,接收方的送方同层的协议必须一致,否则一方将无法识别另一方出的信息,以这种...
    网络协议规范大全 在网络的各层中存在着许多协议,它是定义通过网络进行通信的规则,接收方的发送方同层的协议必须一致,否则一方将无法识别另一方发出的信息,以这种规则规定双方完成信息在计算机之间的传送过程。下面就对网络协议规范作个概述。 -Network protocol specification Daquan, the network, there are many layers in the protocol, which is to define the rules of communication through the network, the receiver of the sender on the same floor of the agreement must be consistent, otherwise the party will not recognize the other party" s message based on this two kinds of rules to complete information in the process of transmission between computers. Here" s right to give an overview of the network protocol specification.
    2022-02-14 18:05:44下载
    积分:1
  • 是很好的学习vb6.0的资料呦!
    是很好的学习vb6.0的资料呦!-It is very good materials for the VB6.0 learner.
    2022-01-23 10:49:39下载
    积分:1
  • 这是一个C++的简单银行存取系统,包含有MFC界面,以及数据库的数据...
    单片机课程设计。用C语言编程实现单片机秒表。-SCM curriculum design. Microcontroller using C language programming stopwatch.
    2022-06-27 13:47:47下载
    积分:1
  • 10. 编写程序对八皇后问题进行求解:在8行8列的棋盘上放置8个皇后,使任一个皇后都不能吃掉其他的7个皇后(注:皇后可吃掉与她处于同行或同列或同一对角线上的其他...
    10. 编写程序对八皇后问题进行求解:在8行8列的棋盘上放置8个皇后,使任一个皇后都不能吃掉其他的7个皇后(注:皇后可吃掉与她处于同行或同列或同一对角线上的其他棋子),并将结果以某种方式显示出来。-10. Write a program to solve the eight queens problem: In the line 8 8 of 8 placed on board the Queen, so that either a queen can not eat the other seven Queen (Note: The Queen can eat with her peers or the same column in the or the same diagonal and other pieces), and the results displayed in some way.
    2023-08-14 11:50:03下载
    积分:1
  • C语言实现贪吃蛇
    //: Snake.c /* * * * * * * * * * * * * * * * * * * * * * * // Project: RedSnake(贪吃蛇) // Author: Problue // Version: 1.0 // Date: 19:55 2012-10-29 * * * * * * * * * * * * * * * * * * * * * * */ #include #include #include #include "pcc32.h" // 定义地图的尺寸及坐标 #define MAP_WIDTH 32 // 地图宽度 #define MAP_HEIGHT 32 // 地图高度 #define OFFSET_X 1 // 地图左右的边距 #define OFFSET_Y 1 // 地图上下的边距 #define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度 #define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度 #define GotoMap(x, y) gotoTextPos((x) * 2, (y)) // 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物 #define BS_SPACE 0 #define BS_SHEAD 1 #define BS_SBODY 2 #define BS_STAIL 3 #define BS_FOOD 4 // 蛇默认长度 #define SNAKE_MIN_LEN 5 // 定义蛇运动方向: 上、下、左、右 #define DIR_UP 1 #define DIR_DOWN 2 #define DIR_LEFT 3
    2022-05-15 19:59:34下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载