
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, Please look at the "Demos\C#\CustomOpenSaveDialogs" demo.
-
Hello, The fix will be available in the next daily build (in monday).
-
Hello, Please change your RegisterData method: ... //report1.RegisterData(bsStockCard, "bsStockCard", BOConverterFlags.AllowFields, 5); report1.RegisterData(dsRptStockCard.Tables[0], "qryStockCard"); ... The last line will replace the buil…
-
Hello, Both master and detail datasources must be filled before you run a report. There is no event to fill the detail datasource when the master current row changes.
-
Hello, Please clarify: your report contains embedded data (you have added it in the FastReport designer, via "Data|Add Data Source..." menu), and now you want to replace this data with the new one (the Datatable from your application)?
-
Hello, Use the following code at the application start: Config.Root.FindItem("Language").SetProp("Folder", new_path); In the next daily build, you will be able to do it simpler: Res.LocaleFolder = new_path;
-
Hello, In order to create a well-formed report, you must know how many columns will be in a report. You also may fix the width of existing object when you know the exact number of columns. wrote: I also want to display the report in the tab…
-
Hello, Sorry, factories are not supported. And, I don't see a way how to implement this. Different providers use different data types, different SQL dialects etc.
-
Hello, You may use use the "Start New Page" flag (of Data band or GroupHeader band) to tell FastReport to start each data row on a new page. You can look at the example report "Features/Start New Page, Reset Page Numbers".
-
Hello, There is no control in FR.Net that can display HTML file.
-
I will include such topic in the next revision of the programmer's manual.
-
Thanks Sascha
-
Hello, [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> The outer pair of brackets is needed only in the Text object; it is not needed for an expression.[/img]
-
Hello, No, we don't have a mapping method, you should implement your own one. It is essential for SQL query parameters only.
-
Hello, You need to use the ApplicationConnection property as discussed here: http://www.fast-report.com/en/forum/?p=/discussion/5966
-
To do this, you don't need WebReport component. You may write the following code in the button.Click handler: using (Report report = new Report()) { Â Â report.Load(filename); Â Â report.RegisterData(...); Â Â report.Prepare(); Â Â EmailExport em…
-
Of course you can add only some report items, and keep other existing items. This code will add the Title band to the existing report:       ReportPage page = report.Pages[0] as ReportPage;             // create title band   …
-
Yes, the demo is for WinForms; but you can use the same technique to create the report items in ASP.Net. Also look at the programmer's manual, "Working with Windows.Forms/Creating a report by using code".
-
Hello, You have to build your report in code. Please look at the Demos\C#\ReportFromCode project.
-
Hello, I meant daily build. The problem is fixed already.
-
Hello, It's not easy to fix; probably we will add this feature in the next major version.
-
Hello, Try to change the VistaDBDataConnection.cs file: Â Â Â Â public override DbDataAdapter GetAdapter(string selectCommand, DbConnection connection, Â Â Â Â Â Â CommandParameterCollection parameters) Â Â Â Â { Â Â Â Â Â Â VistaDBDataAdapter …
-
Set the PictureObject.ImageLocation property to either URL or file path.
-
Hello, Just put the PictureObject on your report page, invoke its editor and load the image in it. The email functionality is working in Windows.Forms now. I need to fix something to make it working in ASP.Net.
-
Hello, Sorry, I have no idea what it may be. In FastReport, the CreateAllTables() call is inside try..catch block. Try to do the same.
-
Hello, It was fixed long time ago - sorry I didn't notify you about this.
-
Hello, wrote: Can FastReport ,Add Columns at page header , and Add rows at DataBand , Automatically depending on my DataSet ? Look at the demo report, "Table/Print DataTable". You can print any table using this technique. wrote: H…
-
Hello, Just call the report.SetParameterValue(paramname, paramvalue) method. If there is no parameter with such name, it will be created.
-
Hello, There is no vertical bands in FastReport.Net like it was in FR VCL. Use the "Table" object instead. You can find some example reports in the Demo.exe, and read the details in the user's manual.
-
You have to replace the connection object with another one. It can be done in your app code before running a report.