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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 南国之恋

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