尝试在C++Builder中打开.dpk文件时没有任何反应,没有消息,什么都没有?

huangapple go评论71阅读模式
英文:

Trying to open .dpk file in C++Builder does nothing, no message, no nothing?

问题

我有一个组件,其中包含一个名为 D11.dpk 的文件,我正在尝试通过 C++Builder 11.3 中的 "打开项目" 打开它;我选择它,但什么都没有发生。没有消息,欢迎屏幕仍然在那里,项目菜单仍然禁用,就像没有打开任何项目一样。

我怎样才能知道发生了什么?从我所了解的情况来看,这应该可以工作,对吗?

英文:

I have a component that has a D11.dpk file that I'm trying to open it via open project in C++Builder 11.3; I select it, and nothing happens. No message, the welcome screen still sitting there, the project menu still disabled like no project is open.

How can I tell what is going on? Is this supposed to work or not, from what I read it should work.

答案1

得分: 1

A .dpk file is a Delphi package project. A C++Builder package project is a .bpk file instead. C++Builder cannot open Delphi projects, it can only compile Delphi unit source files that are added to C++ projects. To compile a .dpk project, you must use Delphi instead of C++Builder. However, most editions of C++Builder include a command-line Delphi compiler, which can compile .dpk projects.

英文:

A .dpk file is a Delphi package project. A C++Builder package project is a .bpk file instead. C++Builder cannot open Delphi projects, it can only compile Delphi unit source files that are added to C++ projects. To compile a .dpk project, you must use Delphi instead of C++Builder. However, most editions of C++Builder include a command-line Delphi compiler, which can compile .dpk projects.

huangapple
  • 本文由 发表于 2023年5月14日 06:26:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/76245116.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定