
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
I've tried to reproduce this, but see no problems. Can you post a screenshot?
-
Hello, Set WebReport.Width and Height properties to "100%".
-
Hello, You have to run this code inside the WebReport.StartReport event, not in the button_click: Dim dt As New DataTable dt = MajorDBMajor_DataTable("11", "major", "CSIE_096_005") WebReport1.Report.RegisterData(dt, "dt")
-
Hello, wrote: You can't not drag page's data table. Sorry, I don't understand what you mean.
-
Yes, it is possible with the script. See the attached report example. How it works: - you have to make your report two-pass (menu Report|Options..., "Double pass" checkbox); - on the first pass, we calculate the last page's height. It is done w…
-
No, I have understood you correctly. This code demonstrates how to show a report in a separate window with PreviewControl on it.
-
Hello, There is no such option. AFAIK, there is no support for termal printers in the .Net DocumentPrinter class (which is used in FR to print).
-
Hello, You may use HtmlTags property of the Text object: http://fast-report.com/documentation/UserM...en/htmltags.htm
-
Hello, I have tried to reproduce it in the demo.exe project. I've changed the code a little:     Private Sub DesignReport()         Dim form As Form = New Form         Dim preview As PreviewControl = New PreviewControl   …
-
Hello, 1) There are two ways to add a backgound picture to a report page: - use the Page.Watermark. It can be a picture, text or both. - use the overlay band with a picture inside it. 2) Can you make a simple project that demonstrates this…
-
I don't have VS Express. The project was created using VS 2005 Professional. To add an overlay band to the existing report: FastReport.Report report = new FastReport.Report(); report.Load(@"E:\fx1.frx"); FastReport.ReportPage page1 = report.Pa…
-
Hello, Oh, I'm not so familiar with VB.Net. Try the following code: Imports DevComponents.DotNetBar Dim customButton As ButtonItem = New ButtonItem customButton.Text = "my button" AddHandler customButton.Click, AddressOf customButton_Clic…
-
Hello, You can look at the sample project in the Demos\C#\ReportFromCode folder. To create an Overlay band, use the following code: page.Overlay = new OverlayBand(); page.Overlay.Height = ...; page.Overlay.CreateUniqueName();
-
The changes will be available in the next week. I will let you know when you can download the new version.
-
Hello, Sorry, it's impossible now. I need to rewrite the data UI to get only table names (without schema) and get the schema when the user clicks a table.
-
Hello, Add new query and call the stored proc using SQL: exec MyProc
-
Hello, You may use the conversion tool: http://www.fast-report.com/pbc_download/files/fr3tofrx.exe You don't need to use any other software in this case.
-
Hello, See how it's done in the demo.exe: Â Â Â Â Â Â Config.ReportSettings.StartProgress += new EventHandler(ReportSettings_StartProgress); Â Â Â Â Â Â Config.ReportSettings.Progress += new ProgressEventHandler(ReportSettings_Progress); Â Â Â …
-
Hello, Please show me the full code of your WebReport_StartReport event.
-
Hello, I see no "Server" property in the FbConnectionStringBuilder class.
-
Hello, Where do you set the page visibility? It works well for me.
-
Hello, Check if your project contains a reference to FastReport.dll. Remove it and try again.
-
Yes, it was fixed yesterday.
-
Your report has a lot of overlapped elements. Please remove the overlapping because such report cannot be viewed correctly in the web mode. http://fast-report.com/documentation/UserM...ormedreport.htm
-
Hello, We did not tried VS2010 yet. However I must say that the client profile is not supported by FastReport.
-
Hello, Do you have an example of report which text is missing? I need the prepared report file (.fpx). wrote: And also this print dialog is not open while i access the website in remote machine. Are you trying to do this in ASP.NET? Th…
-
Hello, This "printing support" is not good: - it prints using the bitmap, so 1-page-job would be > 100Mb in the spooler (http://forums.silverlight.net/forums/t/146306.aspx); - no control over paper size, orientation, tray.
-
Hello, You have to pass the selected combobox value to a report parameter, before you run a report: report1.SetParameterValue("selectedItem", the_selected_item) and use this paramater in the databand's filter, something like this: [MyTab…
-
Hello, Select the master data band and set its "PrintIfDetailEmpty" property to true.
-
Hello, I will fix this in the next daily build.