Delphi 错误代码 e8000067 是什么?
What is Delphi error code e8000067?
我正在使用 Delphi XE8 和 FireMonkey 构建应用程序。
我已经在 Android 上运行了,我正在尝试让它在 iPad 上运行。
iPad 是 运行ning OS X 5.1.1.
我有一个调试配置文件。
首先,当我尝试 运行 iPad 上的应用程序时,我收到错误消息 "Unable to install package. (e8000007)"。根据 Embarcadero's help page,这是因为我的目标是更高版本。于是去"Project -> Options -> Delphi Compiler -> Linking",发现最低目标OS是7.0,改成5.1.1
现在我得到了
Unable to launch process <ip address> using the parameters for the <profile name> profile.
The following error was returned: 'Unable to install package. (e8000067)'
此错误代码不在帮助页面上。我在谷歌搜索时也没有找到它。
由于所有这些错误代码都以 "e" 开头,它可能应该是一个十进制数字,前面加上 "e" 表示错误。搜索“8000067”的十六进制等效项,即“7A1243”,只会产生颜色代码。
我制作了一个 "Hello World" 应用程序,尝试在 iPad 上 运行 它,但遇到了同样的问题。
什么是 Delphi 错误 e8000067?
这似乎发生在您 compiling/linking 64 位设备时,当您的设备是 32 位时。
当我为 32 位设备选择 compile/link 时,错误消失了。
我正在使用 Delphi XE8 和 FireMonkey 构建应用程序。
我已经在 Android 上运行了,我正在尝试让它在 iPad 上运行。
iPad 是 运行ning OS X 5.1.1.
我有一个调试配置文件。
首先,当我尝试 运行 iPad 上的应用程序时,我收到错误消息 "Unable to install package. (e8000007)"。根据 Embarcadero's help page,这是因为我的目标是更高版本。于是去"Project -> Options -> Delphi Compiler -> Linking",发现最低目标OS是7.0,改成5.1.1
现在我得到了
Unable to launch process <ip address> using the parameters for the <profile name> profile.
The following error was returned: 'Unable to install package. (e8000067)'
此错误代码不在帮助页面上。我在谷歌搜索时也没有找到它。
由于所有这些错误代码都以 "e" 开头,它可能应该是一个十进制数字,前面加上 "e" 表示错误。搜索“8000067”的十六进制等效项,即“7A1243”,只会产生颜色代码。
我制作了一个 "Hello World" 应用程序,尝试在 iPad 上 运行 它,但遇到了同样的问题。
什么是 Delphi 错误 e8000067?
这似乎发生在您 compiling/linking 64 位设备时,当您的设备是 32 位时。
当我为 32 位设备选择 compile/link 时,错误消失了。