但是,每当我打开包含其中一个组件的表单时,我都会收到类找不到错误,并且dfm将无法打开.该项目编译正常,我可以查看所有的pas文件,但表单将不会显示在设计器中.
我在这做错了什么?如何在表单设计器中正确显示组件?
这是我的组件注册码:
RegisterComponents('QuoteSystem',[ TFnpLabelNumericEdit,TPBxCheckBox,TPBxCheckBoxSub,TPBxComboBoxSub,TPBxListBoxSub,TPBxRadioItemSub,TFnpNumericEdit,TQGlobals,TPBItem,TPBxCheckListBox,TPBxComboBox,TPBxDateEdit,TPBxDescList,TPBxEdit,TpbxInteger,TPBxLabel,TPBxLabeledEdit,TPBxLabelNumericEdit,TPBxListBox,TPBxMemo,TPBxnumericEdit,TPBxQuoteElement,TPBxRadioGroup,TPBxRadioItem,TPBxRichEdit,TPBxSpinEdit,TpbxSummaryGlobals,TAlignEdit]);解决方法 发生这种情况的典型错误是在接口部分或实现部分中以小写或除正确的情况之外的任何其他情况写入Register.
错误:
procedure register;implementationprocedure register;
正确:
procedure Register;implementationprocedure Register;总结
以上是内存溢出为你收集整理的Delphi 2009:使用组件包时“找不到类”全部内容,希望文章能够帮你解决Delphi 2009:使用组件包时“找不到类”所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)