登录
首页 » 其他 » VB卸载程序示例源码

VB卸载程序示例源码

于 2022-02-21 发布 文件大小:18.56 kB
0 248
下载积分: 2 下载次数: 1

代码说明:

VB卸载程序示例源码,类似Windows控件面板中的程序卸载面板的功能,删除掉一些不用的程序,演示删除程序清除注册信息的过程,在你写成品软件的时候,为你程序写一个卸载程序是必不可少的,本程序示例可为您提供一份参考。

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

发表评论

0 个回复

  • pb FALSH combined with the landscaping for the interface PowerBuilder programmin...
    pb与FALSH结合的用于美化界面powerbuilder编程环境。-pb FALSH combined with the landscaping for the interface PowerBuilder programming environment.
    2023-04-11 04:45:03下载
    积分:1
  • CxxTester是一个用于C++代码的通用测试框。它支持测试库系统、有一套方法的对象文件、甚至单行C++源(即所有用C++接口的东西)。解释程序的前端使你能够
    CxxTester是一个用于C++代码的通用测试框。它支持测试库系统、有一套方法的对象文件、甚至单行C++源(即所有用C++接口的东西)。解释程序的前端使你能够在不需要重新编译代码的情况下修改和扩大测试。测试可以通过脚本成批执行或者在图表输出的支持下交互式执行。该工具使不同主机间的远距离测试成为可能。-CxxTester is one for C++ code universal test frame. It supports testing Library System, a set of object files, or even single C++ source (that is, all the C++ interface.) To explain the procedures front so that you do not need to recompile the code under revision and expansion of testing. Test scripts can bulk or in the implementation of the graphics output support interactive implementation. The tool is so different between the mainframe remote testing possible.
    2022-08-17 19:16:31下载
    积分:1
  • Java如何在多个EJB之间相互调用的例子
    Java如何在多个EJB之间相互调用的例子,也就是各种EJB之间的调用例子,向初学者演示如何实现调用的具体代码及步骤,涉及以下相关方法:用远程接口的引用访问EJB、函数将被FirstEJB调用,同时它将调用secondEJB。。
    2022-08-10 18:52:00下载
    积分:1
  • csv格式将数据转换为excel的函数 c sv格式将数据转换为excel的函数...
    csv格式将数据转换为excel的函数 c sv格式将数据转换为excel的函数-csv format data into a excel format of the function c sv data is converted to excel function
    2023-07-11 04:05:03下载
    积分:1
  • 告诉你如何构建更强劲的应用而不用乏味的手写代码;回答多数开发者甚至不会问的问题;演示如何使用JSF和Tiles自动构建一致的用户界面;提供提示及“如何...”信...
    告诉你如何构建更强劲的应用而不用乏味的手写代码;回答多数开发者甚至不会问的问题;演示如何使用JSF和Tiles自动构建一致的用户界面;提供提示及“如何...”信息,使你很快上手;解释如何集成JSF和数据库,使用目录服务,无线应用以及Web 服务;传授最好的经验和好习惯如使用样式表和消息绑定;覆盖全部JSF标记和如何创建新的标记库,英文,原名称:Core JavaServer Faces-tell you how to build a more robust application instead of the dull handwritten code; Answered most developers do not even ask the question; Demonstrate how to use the JSF and Tiles automatically build a consistent user interface; For the presentation and "How to ..." message and you will soon get started; As explained He JSF and database integration, the use of directory services, wireless applications and Web services; the best teaching experience and good habits such as the use of style sheets and news binding; coverage for all JSF tags and how to create a new library markings, English, the original name : Core JavaServer Faces
    2022-04-14 11:45:10下载
    积分:1
  • PSCAD/EMTC
    PSCAD4.5 搭建IEEE13节点仿真系统,可测各种暂态仿真数据,值得学习~ 包括导线相角变化、电压、功率、负荷等
    2022-07-24 14:33:49下载
    积分:1
  • 学生成绩管理,可以管理员、学生、老师三方登录,并各自拥有不同的权限....
    学生成绩管理,可以管理员、学生、老师三方登录,并各自拥有不同的权限.-StudentScore么Management
    2022-05-06 16:32:37下载
    积分:1
  • mpeg 2 system 1,2,3 all user need to check it out
    mpeg 2 system 1,2,3 all user need to check it out-mpeg 2 system 1,2, 3 all user need to check it out
    2023-04-24 19:05:03下载
    积分:1
  • is prepared to use the c source code of the game is playing the game of rabbits,...
    这是个用c编写的游戏源代码,是打兔子的游戏,请查收-is prepared to use the c source code of the game is playing the game of rabbits, please find
    2022-04-21 16:20:31下载
    积分:1
  • 本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小...
    本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小于n/2属于左边的点集PL,取下标大于n/2属于右边的点集PR,即用O(1)时间就可以将规模为n的问题分解为两个规模为n/2的、同类型的子问题。分割完毕之后就可以采用分治法,分别求出PL和PR中的最近点对,最终通过递归实现。-This algorithm uses divide and conquer to solve the problem closest point. Prior to use O (nlogn) time to sort the x coordinate so that all points are based on x coordinates from small to large sorted (x coordinates with the same y coordinates of the small, the top), and then remove the standard is less than n/2 the set of points belonging to the left PL, remove the standard is greater than n/2 set of points belonging to the right of PR, that is to use O (1) time can be the problem size n divided into two size n/2, the same type The sub-problems. Segmentation can be used after completion of sub-rule method, respectively, find the PL and PR in the last points and eventually through the recursion.
    2022-01-25 16:01:13下载
    积分:1
  • 696516资源总数
  • 106409会员总数
  • 8今日下载