惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
The Last Watchdog
The Last Watchdog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
G
Google Developers Blog
博客园 - 叶小钗
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
博客园_首页
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 三生石上(FineUI控件)
Help Net Security
Help Net Security
Cloudbric
Cloudbric
AI
AI
N
News | PayPal Newsroom
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
Forbes - Security
Forbes - Security
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
SecWiki News
SecWiki News
H
Heimdal Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
S
Security @ Cisco Blogs
Google DeepMind News
Google DeepMind News
V
V2EX
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
S
Security Affairs
L
LangChain Blog
The Hacker News
The Hacker News
F
Full Disclosure
aimingoo的专栏
aimingoo的专栏
Hacker News - Newest:
Hacker News - Newest: "LLM"
腾讯CDC
Webroot Blog
Webroot Blog
A
About on SuperTechFans
H
Hacker News: Front Page
Cyberwarzone
Cyberwarzone
WordPress大学
WordPress大学
L
LINUX DO - 热门话题
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Attack and Defense Labs
Attack and Defense Labs
M
MIT News - Artificial intelligence

博客园 - 南国之恋

系统技术栈 windows服务器C盘空间清理,发现大文件,可用!AutoCleanC_DeepScan 查看分区表大小 系统表空间清理 postman调用deepseek webapi 将Nginx安装为windows服务,下载nssm 单词系列2 2025高考英语高频易错词汇分类速记 vs2019 本地源“C:\Program Files\DevExpress 22.2\Components\System\Components\Packages”不存在 - 南国之恋 mysql数据库定时事件 plsql查询oracle数据表时,将备注显示成列名 生成脚本 达梦数据库学习记录 oracle密码过期问题,用户锁定问题 Delphi 7 编译软件申请管理员权限 mysql odbc delphi连接问题 调用Exe程序并且出现界面 CreateProc(ProcessName:String) c# winform exe.config不能更新 frp(fast reverse proxy)是一款高性能的反向代理应用 GitHub上整理的一些工具 Kettle 中文名称叫水壶
解决delphi7在win10上安装后无法正常使用的问题
南国之恋 · 2026-03-18 · via 博客园 - 南国之恋

终极解决办法是:修改C:\Program Files (x86)\Borland 和 C:\Program Files (x86)\Common Files\Borland Shared 两个文件夹的Users组的访问权限为完全控制,然后卸载并重新安装delphi7即可:如下图

image

在win10上安装delphi7后,可以启动,但无法新建项目,因为新建菜单弹出的子菜单中没有Application项,很多其他新建项也没有,只有Unit和“其它”两项,打开已有的项目编译会提示错误:“'System.pas' not found”

[Fatal Error] Project1.dpr(1): Unit not found: 'System.pas' or binary equivalents (DCU,DPU)的错误,不知道什么原因,刚开始只有重装 Delphi 才解决问题,后来查看Borland 官方网站得知,其实只是环境库路径丢失造成的,
解决方法很简单,如果你 Delphi 7 安装的是默认路径,则只需要打开Delphi菜单,选择 Tools -> Environment Options 然后选择 Library 标签,在 Library Path 添加如下内容就行了:
-------------------------------------------------------------------
c:\Program Files\Borland\Delphi7\Lib;
c:\Program Files\Borland\Delphi7\Bin;
c:\Program Files\Borland\Delphi7\Imports;
c:\Program Files\Borland\Delphi7\Projects\Bpl;
c:\Program Files\Borland\Delphi7\Rave5\Lib
-------------------------------------------------------------------
如果不是默认路径,则添加你自己的那些路径就行了。

以上是网上解决编译错误的办法,但是无法解决没有新建项的问题,而且无法从代码窗口切换到窗体设计窗口。

终极解决办法是:修改C:\Program Files (x86)\Borland 和 C:\Program Files (x86)\Common Files\Borland Shared 两个文件夹的Users组的访问权限为完全控制,然后卸载并重新安装delphi7即可:如下图
————————————————
版权声明:本文为CSDN博主「pengxuan」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/pengxuan/article/details/121805987