登录
首页 » Windows开发 » 直接修改注册表,改变环境变量,JDK安装的时候可以用这个

直接修改注册表,改变环境变量,JDK安装的时候可以用这个

于 2022-07-12 发布 文件大小:171.26 kB
0 73
下载积分: 2 下载次数: 1

代码说明:

直接修改注册表,改变环境变量,JDK安装的时候可以用这个-Directly modify the registry to change the environment variables, JDK installation time can use this

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

发表评论

0 个回复

  • 频率选择性信道的仿真,对通信系统进行…
    关于频率选择性信道的仿真,对做通信系统仿真的朋友很有帮助,已经经过调试.-of frequency selective access to the simulation, done on the communications system simulation helpful friends, after debugging.
    2022-05-15 02:09:18下载
    积分:1
  • 提取文本中不同的英文字符和汉字功能
    应用背景一些单片机开发的人员,需要用LCD显示文字,文字点阵从字库中提取。这时真正要提取的是不同的英文和汉字。本软件就是实现这样的功能:提取文本中不同的英文字符和汉字功能,用于单片机汉字和英文处理. 开发工具为VC6.0.关键技术 功能:提取文本中不同的英文字符和汉字,适用范围:用于单片机汉字和英文处理. 开发工具:VC6.0. 软件界面为对话框,将输入的一串文字,提取不同的字符。为开发人员辅助工具。
    2023-08-03 14:45:03下载
    积分:1
  • 求算24点是一个极为有趣的大众智力游戏,深得许多人的喜欢。但你有没有遇到过求不出解的情况呢?是自己没有想出来还是确实无解?很难判断吧!有没有想过用电脑来求解呢。...
    求算24点是一个极为有趣的大众智力游戏,深得许多人的喜欢。但你有没有遇到过求不出解的情况呢?是自己没有想出来还是确实无解?很难判断吧!有没有想过用电脑来求解呢。如果你有一点点VB的基础,那就让我们一起来看看该怎样用VB来求算24点吧。-calculating 24 is a very interesting public intellectual games, won many people like it. But you have never met before seeking solutions not happen is they did not come up with no solution or indeed is very difficult to judge! Have you ever thought of using computers to solve it. If you have a little bit of VB foundation, then let us look at how to use VB to calculate 24 spot.
    2022-07-08 20:58:44下载
    积分:1
  • SqlHelp is a type of database operations, all the methods are all static, can be...
    SqlHelp是一个数据库操作类,所有方法全为静态,直接使用即可。减少了程序员重复写与数据库操作相关的一些工作量。是一个不错的帮助工具。-SqlHelp is a type of database operations, all the methods are all static, can be directly used. Reduced duplication of programmers and database operations related to write some of the workload. Is a good tool to help.
    2023-01-10 08:10:03下载
    积分:1
  • WINSOCKET LAN
    基于WINSOCKET局域网聊天程序,使用Visual C++编写,帮助大家熟悉了解套接字。-WINSOCKET LAN-based chat program, using Visual C++ development, to help everyone to become familiar with socket.
    2022-03-25 20:39:30下载
    积分:1
  • 经典串口代码
    简洁才的VC++实现的串口编程代码,多线程的实现,能满足基本的收发,可以进行串口测试,或者在项目中直接修改后使用。
    2023-03-01 17:15:04下载
    积分:1
  • 面板显示图像(位图)的各种影响和
    A panel to display a image (Bitmap) with various effects and moveable capacity.
    2023-04-18 07:25:03下载
    积分:1
  • the book is Microsoft Press MicrosoftVisualStudio authorized by the Chinese edit...
    本书是美国微软出版社授权的MicrosoftVisualStudio中文版系列中的一本。全书按字母顺序列出了VisualBasic6.0的函数、语句、方法、属性及事件,附录部分提供了ANSI字符集、数据类型、运算符等等的数学函数及转换函数。本书不但是从事VisualBasic6.0应用和开发人员的工具书,也可作为大专院校相关专业的师生、科研院所的科技人员自学和教学的重要参考书。本书还提供配套的电子书,以方便读者携带、学习和长久保存。-the book is Microsoft Press MicrosoftVisualStudio authorized by the Chinese edition of the series, one. The book listed in alphabetical order by VB6.0 functions, the statement, methods, properties and events, appendix portion of the ANSI character set, data types, etc. Operators of mathematical functions and conversion functions. This book is not only engaged in the development of Visual Basic 6.0 applications and the tools that can be as professional institutions related to the teachers and students, research institutes and technological personnel in learning and teaching as an important reference book. The book also provides matching e-books, for the convenience of the reader to carry, learning and the long-term preservation.
    2022-04-26 23:53:51下载
    积分:1
  • 一个用mfc来编的秒表小程序,挺好玩的,我话了很多时间的
    一个用mfc来编的秒表小程序,挺好玩的,我话了很多时间的-mfc to use a series of small programs stopwatch, the play is very good, so I had a lot of time
    2022-02-07 02:02:04下载
    积分:1
  • QT编写的C++贪吃蛇小游戏
    游戏通过按键控制 部分代码: #include "gamewidget.h" #define ROW 13 #define COL 16 #define UP 0 #define DOWN 1 #define LEFT 2 #define RIGHT 3 GameWidget::GameWidget(QWidget *parent) :QWidget(parent) { this->setAutoFillBackground(true);//覆盖 this->resize(480,270); this->setWindowIcon(QIcon("img/icon.jpg")); this->setWindowTitle("贪吃蛇"); QPalette palette; palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png")); this->setPalette(palette); //按扭区 leftbtn=new QPushButton(this); leftbtn->setIcon((QIcon)"img/zuo.png"); leftbtn->setIconSize(QSize(40,40)); leftbtn->setGeometry(QRect(340,180,40,40)); leftbtn->setFlat(true); rightbtn=new QPushButton(this); rightbtn->setIcon((QIcon)"img/you.png"); rightbtn->setIconSize(QSize(40,40)); rightbtn->setGeometry(QRect(430,180,40,40)); rightbtn->setFlat(true
    2022-03-21 19:09:00下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载