
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Looks like VB "Handles" keyword is not working correctly with EnvironmentSettings, the event is not fired. Use AddHandler keyword to wire events manually.
-
In fact, the WebReport component uses HTML export to view the prepared report.
-
wrote: Would be nice if there was a method that would define all the columns though? Use InitSchema method to init all columns: Â Â Â Â Â Â MsAccessDataConnection conn = new MsAccessDataConnection(); Â Â Â Â Â Â conn.Name = "MyConnection"…
-
If you export in html, rtf, xls - try to avoid overlapped report elements. These expors are table-style, so they cannot handle overlapping and we should do that using a special algorithm. It may not work correctly under some circumstances.
-
I will add this in todo list and let you know when this will be ready.
-
Hello, The simpler way to add a connection along with all its tables: Â Â Â Â Â Â MsAccessDataConnection conn = new MsAccessDataConnection(); Â Â Â Â Â Â conn.Name = "MyConnection"; Â Â Â Â Â Â conn.DataSource = @"c:\test.mdb"; Â Â Â Â Â Â repo…
-
Hello, Unfortunately our PDF export does not support PNG images, only JPG (which has no transparency support). We plan to improve it soon.
-
Yes - try the latest version, it should work now.
-
... this code will work if your [DataTable.Data] is of String type. If it is numeric, use the following: [[DataTable.Data] == 1 ? "FOO" : "BAR"]
-
Hello, Text1.AfterPrint is not a good place for this - the object is printed already, all changes in its state will be ignored. Better to use the band.AfterLayout - all objects are filled with data and ready to print. The correct code would be…
-
Hello, The easier way is to put the line on a band in the designer and use the BeforePrint event to show/hide it: private void Data1_BeforePrint(object sender, EventArgs e) { int lien = ((Int32)Report.GetVariableValue("Row#")); Line1.Visibl…
-
Hello, I've downloaded and installed this font. It appears in my font list as "DFKai-SB". I can use it in the Text object, and export to PDF with no problems.
-
For asp.net, the method is little different: "To use this method in ASP.NET, you need to create the event handler for the StartReport event of the WebReport component. The report can be accessed through the WebReport.Report property: webReport…
-
I've found the bug, FR cannot locate the datasource and throws null reference exception. I will try to fix it in the tomoroow's daily build.
-
Hello, This is in the programmer's manual: wrote: The report may have parameters. Read more about this in the User's Manual. To pass a value to the parameter, use the SetParameterValue method of the Report object: report1.Load("report.fr…
-
Hello, You have two options - 1) set this flag for the band that is printed right after your band; 2) use band's AfterPrint event handler to start a new page: Engine.StartNewPage();
-
I've tried to reproduce the bug with my markup: Â Â Â Â Â Â Â ÂÂ Â Â Â Â Â Â Â Â Â Â ÂÂ Â Â Â " Â Â Â Â Â Â Â Â SelectCommand="SELECT * FROM [DVDs]"> Â Â Â Â Original markup works well. The error happens if I delete runa…
-
1) Thanks for the info, we will try to find the solution asap. 2) Your data band is not connected to data source: there should be the DataSource="SqlDataSource1" attribute. To correct this, go the designer, double-click the databand and sele…
-
Regarding the "Object reference" error - do you have a stack trace? Regarding your last post - please check that "Data" band in the report is connected to data source.
-
Please try latest FR.Net version. The 1.1.1 version that you use has a problem with VB.Net language.
-
Hello, The next build will contain "Functions" node in the "Data" window. It will be available in this midnight.
-
If you pass a date to sql, you should use the date format that your server understands. FastReport does not convert it in any way.
-
Hello, How do you pass the format to FastReport?
-
2) will be available in the next daily build.
-
1) I did a simple test with "Order by" - FR respects it. Note the following: - in a simple list report, check that databand's sort is set to none; - in a group report, check that both groupheader's sort and databand's sort set to none. 2) I wil…
-
Hello, Here is what I did and it works: - add SqlDataSource on a web page, configure it; - add WebReport component - click smart tag and select our data source; - click "Design Report"; - create simple list report; - close the designer; - …
-
I will add the Anchor support in the next build, so you will able to do what you need without using a script.