OlegK
OlegK
About
- Username
- OlegK
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
wrote: how to add a custom function in report using vb6 code? See a demo in "Program Files\FastReports\FastReport Studio\Examples\VisualBasic\VB6_Demo\Events".
-
Dear keturpatel, see attached report.
-
Dear keturpatel, attach the report file (*.fr3), please.
-
Use following code Dim WithEvents report As TfrxReport Dim Page As IfrxReportPage Dim line1 As IfrxLineView ... ... Public Sub SetLine(component As IfrxComponent, left As Integer, top As Integer, width As Integer) component.left = left component.t…
-
Use following code:             // Create PageFooter             IfrxPageFooter footer = report.CreateReportObject(page as TfrxDispatchableComponent,                 typeof(IfrxPageFooter).GUID, "PageFooter1")…
-
Use this code:             // Create GroupHeader             IfrxGroupHeader header = report.CreateReportObject(page as TfrxDispatchableComponent,                 typeof(IfrxGroupHeader).GUID, "GroupHeader1") …
-
wrote: How to save a report FR4 into a firebird blob field? At Fr2.5 was a function 'savetoblobfield' a it was very easy to save the report in a blob field in the firebird database. At Fr4 I have not found a function to do this . At Fr4 y…
-
Use following code: // C# code report.LoadReportFromFile("report file name"); TfrxADODatabase database = report.FindDatabase("ADODatabase1"); database.Connected = false; database.ConnectionString = "new connection string"; database.Connected = true;
-
Hi, you can't abort the printing. It is not possible.
-
Hi, this bug fixed. Use the last version of FastReport Studio.
-
I can't reproduce this problem. Try last version of FR.
-
wrote: 1. / I have recently downloaded the FastReport Studio Trial version to see if it would be suitable for my project. My project is written in VB6 with an ODBC connection to a SQLite3 databse. It appears that FastReport Studio has everything…
-
No, It is not possible.
-
Add new Total as: Year([customer.EntryDate])
-
Use following code: frxReport1.Pages[1].Visible := CheckBox1.Checked; frxReport1.Pages[2].Visible := CheckBox2.Checked; frxReport1.Pages[3].Visible := CheckBox3.Checked;