Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4615026
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:46:53+00:00 2026-05-22T01:46:53+00:00

I’ve encountered a problem while writing code in Delphi. Namely I can’t get acces

  • 0

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/90/weirddelphi1.png/

http://imageshack.us/photo/my-images/837/weirddelphi2.png/

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 😀

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T01:46:54+00:00Added an answer on May 22, 2026 at 1:46 am

    The problem is that Edit7 is a part of the TForm1 class. Edit7 is not accessible by name outside of TForm1. So either you can use the global Form1 variable, and do

    function secondFunction(x: extended): extended;
    var
      paramA, paramB: extended;
    begin
      paramA := StrToFloat(Form1.Edit7.Text);
      paramB := StrToFloat(Form1.Edit8.Text);
    
      Result := paramA + paramB * sin(x);
    end;
    

    or you can make the secondFunction part of the TForm1 class:

    function TForm1.secondFunction(x: extended): extended;
    var
      paramA, paramB: extended;
    begin
      paramA := StrToFloat(Edit7.Text);
      paramB := StrToFloat(Edit8.Text);
    
      Result := paramA + paramB * sin(x);
    end;
    

    But then you need to declare secondFunction in the declaration of the TForm1 class, like

    TForm1 = class(TForm)
    private
      { Private declarations }
    public
      { Public declarations }
      function secondFunction(x: extended): extended;
    end;
    

    in the beginning of the unit.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Does anyone know how can I replace this 2 symbol below from the string
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have just tried to save a simple *.rtf file with some websites and
Seemingly simple, but I cannot find anything relevant on the web. What is the
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
That's pretty much it. I'm using Nokogiri to scrape a web page what has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.