如何在delphi中从.pas文件安装组件?
我已经下载了 embarcadereo delphi 2010 的 RealTimeMarquee 组件,它有两个文件
RealTimeMarquee.pas
简单HTML.pas
但是当我尝试使用 delphi 打开文件来编译它时,我看不到激活的绿色按钮(编译/构建)。
我的问题:如何安装这个组件。
谢谢
i've downloaded the RealTimeMarquee component for embarcadereo delphi 2010 which comes as a two files
RealTimeMarquee.pas
SimpleHTML.pas
But when i tried to open the file using delphi to compile it, i can't see the green button ( compile / build ) activated.
My question: How to install this component.
thankyou
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要安装,请按照以下步骤操作(与Remy Lebeau-answer相同的步骤)
步骤#1。
制作一个新包 -
步骤 #2 。选择新建包
步骤 #3 。
添加源文件RealTimeMarquee.pas、SimpleHTML.pas
步骤 #4 。
步骤 #5 。
A)
编译
,然后安装
步骤 # 6.
安装成功后,您将收到此消息。
步骤 #7 。
您也可以保存
.dpk
文件步骤 #8 。
使用 Tool Palatte 中的组件
To install follow the steps below (same steps as Remy Lebeau-answer )
Step #1 .
make a new package -
Step #2 . Select New package
Step #3 .
Add the source files RealTimeMarquee.pas,SimpleHTML.pas
Step #4 .
Step #5 .
A)
Compile
and theninstall
Step #6 .
On successful installation you will get this message.
Step #7 .
You can save the
.dpk
file alsoStep #8 .
Use the component from Tool Palatte
您无法自行编译这些文件。您必须首先将它们添加到项目中。如果您想将它们安装到 IDE 的组件面板中(假设其中一个或两个实现了 Register() 函数),您必须创建一个新的“Package”项目,将文件添加到该项目中,然后您可以编译项目并安装包。
You cannot compile the files by themselves. You have to add them to a project first. If you want to install them into the IDE's component palette (assuming one or both of them implements a
Register()
function), you have to create a new "Package" project, add the files to that project, then you can Compile the project and Install the package.