I've encountered a problem while writing code in Delphi.
Namely I can't get acces to Components, even though they're declared and I used them in code above ( previously in procedures, now I am trying to use them in functions – maybe this is the reason, I don't know, I am not good at Delphi ).
I made a few screens to make it look clearer.
Take a look.
http://imageshack.us/photo/my-images/135/weirddelphi3.png/">
As you can see on the first screen I'm getting compiler error. It says that the component doesn't exist, but on the third screen you can see that this component exists. On the second screen I can even use this component ( Code Completion can be invoked successfully, but if I try to invoke it in secondFunction's scope I get error like this :
"Unable to invoke Code Completion due to errors in source code " – but what the hell is the error?! ). If I comment these two lines, which refer to Edit7 and Edit8, I can run the program without problems. I really can't figure out what is wrong, if any of you could give me some advice, it would be greatly appreciated. I didn't wanted to post whole code here, because it would take about 300 lines, however if u need to know something else to sort this out then ask I will tell you..
I don't have enough reputation points to post more than 2 hyperlinks so you have to do "copy & paste " with the last one 😀
Best Solution
The problem is that
Edit7
is a part of theTForm1
class.Edit7
is not accessible by name outside ofTForm1
. So either you can use the globalForm1
variable, and door you can make the
secondFunction
part of theTForm1
class:But then you need to declare
secondFunction
in the declaration of theTForm1
class, likein the beginning of the unit.