
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, wrote: I have all this working well with the Demo FR.NET (see sample below), but please could you clarify/expand the first (1) statement made above? I meant the following: you can't use one global Report object to prepare several…
-
Hello, I do the following in the WebReport.StartReport event handler and it works: Â Â Â Â Â Â Â Â protected void WebReport1_StartReport(object sender, EventArgs e) Â Â Â Â Â Â Â Â { Â Â Â Â Â Â Â Â Â Â Â Â Report report = new Report(); Â Â Â Â…
-
Hello, wrote: When I do this, the Email button in the Preview pane changes to act just like the export function (but has the email icon). Yes, this is by design. In order to send a report by email, you need to export is first. wrote: …
-
Hello, It is in our todo list for the version 1.3. We plan to implement this in September.
-
Hello, 1) I will fix this behavior in the monday's daily build. 2) Load the report and set its FileName property: Â Â Â Â private void DesignReport() Â Â Â Â { Â Â Â Â Â Â using (Report report = new Report()) Â Â Â Â Â Â { Â Â Â Â Â Â Â Â repo…
-
Hello, This dll should be placed either in the GAC or in Bin folder together with FastReport.dll.
-
Hello, DrawText is good for UI text rendering and it is used in FastReport.Net to draw some UI text. However, the report text is rendered using GDI+ DrawString. DrawText can't be used here because it does not support printing. "The text render…
-
That's true if you save the newly created report (untitled.frx). Once you saved it, the next "Save" command (either File|Save or Save button in the toolbar) will silently save the report. Look at the Demos\C#\CustomOpenSaveDialogs demo.
-
Hello, The difference is that when you save an existing report, the Save dialog is not displayed. When you save a new (untitled) report, or do Save As, you will see the dialog.
-
FastReport uses standard Graphics.DrawString method to draw a text in the Text object. Probably this font is not compatible with GDI+ mode. Try to set Text object's Clip property to false, or use another font.
-
You can send an attachment to my email: tz@fast-report.com
-
Thank you very much, but where is an attachment?
-
Hello, 1) The report designer is run-time royalty free. You don't need to buy additional licenses for end-users. You need to buy one license per developer. 2) Site license can be used within one company.
-
Try to increase the Padding.Top property value of the Text object.
-
Hello, TextObject does not have such property.
-
FastReport.Net does not touch the SQL text in any way. The SQL is passed directly to OleDbDataAdapter. You can check this with simple code that uses standard OleDbConnection/OleDbDataAdapter:   Dim table As New DataTable   Dim connectionString…
-
So the problem is probably with SQL syntax. Don't you miss % symbol here? fld_stichworte like 'elbe%'
-
Hello, Please look at the C#\Demos\CustomOpenSaveDialogs demo. It does exactly what you need (in fact, this demo was written for you
-
Hello, It's standard behavior of Graphics.DrawString method which is used to draw a text. You may use CellularTextObject instead (turn off its border, set WordWrap to false and set necessary cell size in CellWidth, CellHeight properties).
-
Hello, Arial font does not contain Chinese symbols. When you use it in Windows application to draw some text, Windows does the thing called "font substitution". It searches for another font that contains Chinese chars and uses it instead of Arial…
-
Hello, What if you set the SQL select * from db_hamapict where fld_ablagetyp = 4 and fld_stichworte like 'elbe' directly in the report designer? Will this work?
-
Use ratio instead of hardcoded sizes: float ratio = 0.3f; // you can even make ratio dynamic, depending on original image size if (bmp.Width < 1000) Â Â ratio = 0.5f; if (bmp.Width < 500) Â Â ratio = 0.7f; Picture1.Image = bmp.GetThumbnailIm…
-
Hello, I'm not sure about 64 bits, there is no such PC here to test it now. The standard SqlDataSource works well on my PC.
-
That means your ObjectDataSource is not properly connected to data. You can connect ObjectDataSource to only one table in a DataSet. In this case, you will see all columns of this table. Do a simple task: configure the ObjectDataSource and connect i…
-
Yes, once you bought a license you will get an access to the control panel where you can download latest registered versions.
-
Hello, You have to put third-party assembly to the same folder where your .exe file, or install it to GAC.
-
Are you registered user? (did you bought FastReport.Net?)
-
No, it can be done visually, without writing any code. Once you create a ObjectDataSource component, you can use it in a report, as described in the programmer's manual, "Working with ASP.NET/Using the WebReport component" chapter. 1,2 - I can't …
-
Hello, It's table grid lines. You can turn it on/off in the Word's "Table" menu.
-
You can download it in your user's panel on our website (if you are registered user).