
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Do not bind the data to a checkbox. Use this code (BeforePrint event): int value = (int)Report.GetColumnValue("YourTable.Column"); switch (value) { Â Â case 0: Â Â Â Â CheckBox1.CheckedSymbol = CheckedSymbol.Check; Â Â Â Â CheckBox1.Checked = false;…
-
Hello, CheckBoxObject supports two state only. You may emulate the third state by the following properties: - Checked = true - CheckedSymbol = Fill It can be done in the CheckBoxObject.BeforePrint event handler. You also may try to use Pict…
-
Outline does not support hierarchy now. I will try to add this in the further versions.
-
Hello, 1) Pro includes source code. 2) The product is licensed per developer, not per end-user.
-
Hello, Group does not support hierarchy. You may try to make master-detail report, where the master data band will be hierarchical, and its detail band will display Items.
-
Sorry, but this is not possible.
-
Hello, WebReport does not support watermarks because it uses html table layout that does not support overlapped objects.
-
You have the following report structure: ... GroupHeader5 (empty)   GroupHeaderReferentie   ... The ready report is: GroupHeader5 (empty)   GroupHeaderReferentie ("One") GroupHeader5 (empty)   GroupHeaderReferentie ("Two") As you m…
-
FastReport does not start a new page for the first data row in a group. It is done to avoid the first empty page. You have two options: 1) Set GroupHeaderReferentie.FirstRowStartsNewPage property to true; 2) or, set GroupHeaderReferentie.StartNewP…
-
Now it works, I will investigate the problem and let you know.
-
Hello, Your report throws an error when I'm trying to preview it, so I can't check it.
-
Hello, We plan to implement this feature in the next major build. I think it will be ready in 2-3 months.
-
Hello, WebReport cannot display overlapped objects because it uses html table layout. There is no way to solve this problem now.
-
... because I'm the author of FastReport.Net
-
Hello, Select several columns and set the Width property in the Properties window.
-
In this case, the error is somewhere in your code, when you form a dynamic sql text.
-
Sorry I can't reproduce this. Try to write the following code in your OK button handler: MessageBox.Show(DateTimePicker1.Value.ToString("MM/dd/yyyy")); what do you see when clicking OK button?
-
It works well for me, all quotes are correct.
-
Something like table.SelectCommand = "select * from table where field = '" + DateTimePicker1.Value.ToString("MM/dd/yyyy") + "'";
-
You don't need to use any code with DateTimePicker. Write in your sql: select * from table where field = @param1 Set up parameter: Name = param1 DataType = DateTime Expression = DateTimePicker1.Value DefaultValue = 1/1/2000
-
Hello, Sorry, I cannot help you with this problem. It seems it's a problem with the printer driver.
-
If you need single quotes, change the following code line: selectedItems += "'" + table["firma"].ToString() + "', ";
-
You can change the report script code by yourself.
-
Hello, Excel export does not utilize the AutoSize property because it works with separate objects (table cells), ignoring rows/columns settings.
-
Hello, I will fix this in the next daily build (tomorrow).
-
Here it is.
-
In your example, using server-side filtering has no advantage because you use one table only. In any case, you have to do full select to show available variants in the selector control.
-
Of course, because "DataSelector1" expression returns the DataSelectorControl object. You can't pass the control to a parameter (it's like passing "Text1" instead of "Text1.Text"). Here is the corrected report. I'm not sure if it will work because …
-
You have attached DataSelectorControl to "Table1" datasource, but your report prints "Table" datasource. To fix it, attach DataSelectorControl to "Table.firma" column. Also you don't need SQL in the "Table" datasource; just use the table name or sim…
-
Table.SelectCommand = "select * from fason where firma in (" + P1 + ")"; (where P1 is the string-type variable)