3
I have an application that was developed in Delphi7 and I need to make a change in a given form, but when trying to open this form to make these changes the following error window is displayed to me:
Due to being an old application (which I didn’t develop) and the fact that I don’t have much domain of the language, I can’t imagine how I can solve such error, it would be a library that I need to add?
makes it look like you don’t have the component installed
– Tmc
@Tmc, do you know how I can install such a component to validate whether this is the fault?
– R.Santos
try to install this http://www.micrel.cz/RxLib/dfiles.htm
– Tmc
@Tmc I looked there but couldn’t find the site to download the library
– R.Santos
I already edited the link
– Tmc
@Tmc, would you tell me which file to install?
– R.Santos
Let’s go continue this discussion in chat.
– Tmc
Which version of Delphi is running this legacy code? There have been changes in some methods between versions, I believe that this happening there, could pass the code of the line where this error occurs?
– Paz
The version is Delphi7, can give me your email @Paz?
– R.Santos
[email protected]
– Paz
This component is from Rxlib, already discontinued. If the dfm format is text, you can try (doing the proper backups) to change the class to Tdblookupcombo (both in dfm and pas). Possibly, it will cause errors with properties that eventually do not exist in Edblookupcombo; so just remove in dfm the line that generates the error.
– Ricardo Alves Carvalho