Skip to content

Commit 92258a8

Browse files
committed
readme: fixup
1 parent c7ddadf commit 92258a8

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ The current example imports a report layout from the `Order.repx` file.
3737

3838
**Delphi:**
3939
```pas
40-
// Step 1: Create a report instance and load the report layout
4140
AReport := TdxReport.Create(nil); // AReport: TdxReport;
4241
try
4342
// Set an internal report name (does not affect the exported content)
@@ -57,7 +56,6 @@ A VCL Report requires a data source implemented as a database connection compone
5756
This example project creates a SQL connection component with a built-in SQLite engine to load the Northwind sample database stored in `nwind.db`.
5857

5958
```pas
60-
// Step 2: Create a database connection
6159
// AConnection: TdxBackendDatabaseSQLConnection;
6260
AConnection := TdxBackendDatabaseSQLConnection.Create(nil);
6361
try
@@ -84,7 +82,6 @@ To modify parameters, load them using the `LoadParametersFromReport` method and
8482

8583
**Delphi:**
8684
```pas
87-
// Step 3: Define Report Parameter Values
8885
AReport.LoadParametersFromReport;
8986
// Set the "OrderIdParameter" value in the report layout
9087
// AReportParameter: TdxReportParameter;
@@ -103,7 +100,6 @@ The current example exports a PDF report and saves it to a file:
103100

104101
**Delphi:**
105102
```pas
106-
// Step 4: Export a report to PDF
107103
AStream := TMemoryStream.Create; // AStream: TMemoryStream;
108104
try
109105
// Export a report to PDF format and save it to a memory stream

0 commit comments

Comments
 (0)