Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Delphi tells me there is no cooresponding component

edited March 2005 in General
I have a real simple report and am using the principle blow to initialize
the fields. Often all is okay then Delphi starts whinning that their is no
form componenent for all the report components. What is going on. Also, I
get a Access violation at address ~~~ in modulae rtl70.bpl. Read of address
FFFFFFFFFFA

What is going on?
Larry

procedure TForm1.btnReportsClick(Sender: TObject);
var
ConvDouble : Double;
begin
ConvDouble := StrToFloat(ConvFactor);

ppSelectedTestWt.Caption := Format('%9.2f', [ConvDouble *
StrToFloat(SelectedTestWt)]) + SelectedUnits;
ppSelectedShackel.Caption := SelectedShackel;
ppSelectedDate.Caption := SelectedDate;


pplblLine1Score.Caption := lblLine1Score.Caption;
pplblLine2Score.Caption := lblLine2Score.Caption;

Comments

  • edited March 2005
    Hi Larry,

    Where is the application stopping when the AV occurs?

    --
    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited March 2005
    >>>Where is the application stopping when the AV occurs?
    Nico, this is in design mode! And it is not consistant.
    Larry



  • edited March 2005
    Hi Larry,

    Sorry, I assumed this was occuring at runtime because you included some
    event code at the bottom of your last post. This is not a known issue with
    ReportBuilder at design time. Which version of RB/Delphi are you using.
    Are there any other aspects of your app that will help me recreat this issue
    on my machine?

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.