inheritance » Page 2 » Developer.Team

FastReport VCL Enterprise 5.2.12 D4-XE10 Full Source

FastReport VCL Enterprise 5.2.12 D4-XE10 Full Source
FastReport VCL Enterprise 5.2.12 D4-XE10 Full Source | 7 Mb


FastReport VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the tools necessary for developing reports, including a visual report designer, a reporting core, and a preview window. It can be used in Embarcadero (ex Borland and CodeGear) Delphi 7-XE8 and C++Builder 2005-XE10.
Read more

FastReport VCL 5.2.3 for RAD Studio 10 Seattle

FastReport VCL 5.2.3 for RAD Studio 10 Seattle
FastReport VCL 5.2.3 for RAD Studio 10 Seattle | 11 Mb


FastReport VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the tools necessary for developing reports, including a visual report designer, a reporting core, and a preview window. It can be used in Embarcadero (ex Borland and CodeGear) Delphi 7-XE8 and C++Builder 2005-XE8.
Read more

FastReports 4.15.10 For XE-XE7

FastReports 4.15.10 For XE-XE7
FastReports 4.15.10 For XE-XE7 | 11.5 Mb


FastReport 4 VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReportВ® provides all the necessary tools to develop reports, including a visual report designer, a reporting core, and a preview window. It can be used in the Embarcadero (ex Borland and CodeGear) Delphi 4-XE6, C++Builder 6-XE7.
Read more

FastReport 4.15 Enterprise Full Source XE6

FastReport 4.15 Enterprise Full Source XE6
FastReport 4.15 Enterprise Full Source XE6 | 9 Mb


FastReport 4 VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReportВ® provides all the necessary tools to develop reports, including a visual report designer, a reporting core, and a preview window. It can be used in the Embarcadero (ex Borland and CodeGear) Delphi 4-XE6, C++Builder 6-XE6.
Read more

FastReport Enterprise 4.15.6

FastReport Enterprise 4.15.6
FastReport Enterprise 4.15.6 | 233 Mb


FastReport 4 VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReportВ® provides all the necessary tools to develop reports, including a visual report designer, a reporting core, and a preview window. It can be used in the Embarcadero (ex Borland and CodeGear) Delphi 4-XE2, C++Builder 6-XE5.
Read more

TMS Aurelius 2.20 Full Source

TMS Aurelius 2.20 Full Source
TMS Aurelius 2.20 Full Source | 4.8 Mb


ORM framework for Delphi with full support for data manipulation, complex and advanced queries, inheritance, polymorphism, and more...

    Query1.Sql.Text := 'SELECT I.ID AS INVOICE_ID, I.INVOICE_TYPE, I.INVOICE_NO, I.ISSUE_DATE, I.PRINT_DATE, ' +  
      'C.ID AS CUSTOMER_ID, C.CUSTOMER_NAME, C.SEX, C.BIRTHDAY, N.ID AS COUNTRY_ID, N.COUNTRY_NAME' +  
      'FROM INVOICE AS I INNER JOIN CUSTOMER AS C ON (C.ID = I.CUSTOMER_ID) ' +  
      'LEFT JOIN COUNTRY AS N ON (N.ID = C.COUNTRY_ID)' +  
      'WHERE I.ID = :INVOICE_ID;'  
    Query1.ParamByName('INVOICE_ID').AsInteger := 1;  
    Query1.Open;  
    ShowMessage(Format('Invoice No: %d, Customer: %s, Country: %s',  
      [Query1.FieldByName('INVOICE_NO').AsInteger,  
      Query1.FieldByName('CUSTOMER_NAME').AsString,  
      Query1.FieldByName('COUNTRY_NAME').AsString]));  
Read more