
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Please read my previous post. wrote: Another way is to use ObjectDataSource, bind it to your DataSet and then register in a report. This can be done in a visual manner.
-
Hello, You probably misunderstood something. How to use some datasource in a report? 1. You may use application-defined datasource. In your case, you put a datasource on your web form (something like standard SqlDataSource, i think there is…
-
Hello, Most probably, you pass wrong fileName (file not exist, or bad-formed path) to the Bitmap constructor. The correct code that checks for file existence: private void Picture1_BeforePrint(object sender, EventArgs e) { Â Â string fileName …
-
Hello, There is only one .sln file in this folder. It's FastReport.MySQL.sln
-
Hello, If you don't need full-size images, you may use thumbnails. To do this, clear the ImageLocation property of the Picture object and create the BeforePrint event handler: private void Picture1_BeforePrint(object sender, EventArgs e) { Â Â …
-
Hello, I was not able to reproduce this bug even after 15minutes of pressing Enter/Esc keys. Hovewer I have some idea why it may happen. When you run some time consuming operations (such as prepare, export, print), FastReport displays the progre…
-
RichObject incapsulates the Windows RichTextBox and has many limitations. One of them is that you should dispose the report when you no longer need it: report.Dispose(); Do not rely on the Garbage Collector - it disposes the report in its own …
-
Thank you for your assistance
-
Just fine. The fixed version will be available in 6 hours.
-
Please try the same, but wit 1033 parameter: Font font = new Font("SimSun", 10); MessageBox.Show(font.FontFamily.GetName(1033));
-
Please run the following code in your WindowsForms button.Click event and tell me which name do you see? Font font = new Font("SimSun", 10); MessageBox.Show(font.FontFamily.GetName(0)); I don't have chinese Windows and can't check that.
-
Hello, Do you use RichObject object inside of your reports?
-
Hello, Please tell me exact version (including build number) of FastReport.Net which you use.
-
Both files (Correct.pdf, Ucorrect.pdf) were produced by FastReport.Net. How do you get two different results?
-
This solution works well for me, I've checked it on a simple project before posting here. Another way is to use ObjectDataSource, bind it to your DataSet and then register in a report. This can be done in a visual manner. I've tested stored pr…
-
One possible solution is to run a designer at run-time to create a report. To do this: - place Button on your aspx page; - create the following event handler for it: Â Â Â Â Â Â Â Â protected void Button1_Click(object sender, EventArgs e) Â Â Â …
-
Hello, 1) see programmer's manual, "Working with Windows.Forms/Using the Report component in Visual Studio" chapter (if you work with Windows Forms project). If you want to register a DataSet in ASP.NET project, read the "Working with ASP.NET/Reg…
-
Hello, Do you use latest FR.Net version? We have fixed this issue some time ago.
-
Hello, I've answered via email.
-
I was not able to reproduce this bug in the Demo program on my PC (WinXP).
-
Hello, Problem fixed. The new version will be available in 12 hours.
-
It will be available in the next build (in 12 hours).
-
You have to indicate all buttons which you want to use in the Buttons property. There is no way to hide/show particular button. I will fix Ctrl+P bug.
-
When you type =, you should get an intellisense hint. Config.PreviewSettings.Buttons = PreviewButtons.Open | PreviewButtons.Save | PreviewButtons.Find | PreviewButtons.Zoom | PreviewButtons.Outline | PreviewButtons.PageSetup | PreviewButtons.Edit…
-
Hello, Set the Config.PreviewSettings.Buttons = ... (set of needed buttons)
-
Hello, Please send me the report file (.frx) and prepared report (.fpx, save from preview) to tz@fast-report.com.
-
You can move all necessary logic to separate dll, which references only FastReport.Bars.dll. Your main exe will use DevComponents dll and this separate dll, so there will be no conflicts.
-
The reason is simple: you've changed the datasource for the band, but didn't change the Text objects - Text2, Text4, Text6. They are still bound to old datasource - [ObjectDataSource1.Databound Col0]. You have to replace the text with something like…
-
Hello, It's 7.9.0.3 with many custom changes.
-
Hello, When you register a business object this way, FastReport actually does nothing. You should go the designer, "Data|Choose Report Data" menu and check the necessary datasources/fileds. Try to replace WebReport1.Report.RegisterData(Product…