John86a
asked on
Delphi 7 + source of a program + VCL TEimage?
Alright, here's the deal, my family bought this software source with zero support for how to compile it. Had tons of VCLs to install - which I did, but there's one particular class that I can't quite grasp.
I'm using Delphi 7, and when I open the source it shows it's missing TEImage, TElabel and a few other TExxxx. I find it odd since the standard components are called Timage, Tlabel, etc.
How can I fix this problem, is there such VCL that uses these names?
Thanks.
P.S.: I can post more specific information upon request.
I'm using Delphi 7, and when I open the source it shows it's missing TEImage, TElabel and a few other TExxxx. I find it odd since the standard components are called Timage, Tlabel, etc.
How can I fix this problem, is there such VCL that uses these names?
Thanks.
P.S.: I can post more specific information upon request.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Your best choice is to replace those types with the common types and see what might be missing. If at compile time there are a few properties or events missing, you can post them there and we could try to find out what are they for.
better yet, instead of find/replace in all your code, declare alias types :
Type
TEImage=TImage;
TELabel=TLabel;
etc...
better yet, instead of find/replace in all your code, declare alias types :
Type
TEImage=TImage;
TELabel=TLabel;
etc...
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I have contacted the vendor and he gave me the missing custom VCL, now I'm having some trouble installing it, but that's in another post. Thanks.
This is an example of how others can customize components:
TImage:
http://delphi.about.com/od/vclwriteenhance/a/tpictureclip.htm
You can check this one also for how events / properties could be added to standard components:
https://www.experts-exchange.com/questions/20541583/How-to-add-events-properties-to-a-TImage-control.html