
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
It is possible to choose any column, but only top-level columns may be displayed in a grid control.
-
Hello, You need to choose the formatting for the Text object in a report. If it is set to General (by default), cells in Excel will be formatted as string.
-
Hello, No, it's by design. Events will fire independent of PrintOn property setting.
-
Hello, Run the report designer, select "File|Select language..." menu, then select your localization.
-
Pass the parameter value from your app: report.SetParameterValue("VSCheckboxChecked", checkBox1.Checked); and use the following expression in the report checkbox: [VSCheckboxChecked]
-
Use the Expression property of the CheckBoxObject: Expression = [myParam]
-
It's a limitation of the DataGridView wincontrol. It does not support binding to nested properties.
-
There is no way to hide some report parameters from the user.
-
Hello, If you use ConnectionStringExpression property, you should pass the string with quotes and @ symbol: ConnectionStringExpression = @Data Source=192.168.1.51......
-
Sorry, there is no option to get one continuos html table. You may set the paper height in the designer to, say, 10meters - you'll get one page in the preview, and one table in the export.
-
Hello, Sorry, I don't understand the problem. When you register the datatable, FastReport uses DataColumn.ColumnName property to form the name, and DataColumn.Caption property to form the alias.
-
When register the data, set maxNestingLevel param to 2 or more: report.RegisterData(myData, "MyData", 2); report.GetDataSource("MyData").Enabled = true; report.GetDataSource("MyData.NestedData").Enabled = true;
-
Hello, Use "Single page" option.
-
There is no support for scripting (no "Code" tab) in basic edition. You still may call the report from your C# code.
-
Hello, It's a limitation of trial version.
-
Hello, There may be the problem if you display data from nested BO. You need to manually adjust the "DataColumn" property of each grid column (in the grid columns editor). Use full name of the data column, including its parent BO name, for exampl…
-
Hello, There is no such property in the report parameter. Maybe you mean query parameter? In this case leave DefaultValue property empty, and set Expression property to "null" (without quotes).
-
You can do this in code, but this is not recommended for BO with very complicated structure. report.RegisterData(myData, "MyData"); report.GetDataSource("MyData").Enabled = true;
-
Hello, The next major release is planned in the March.
-
In this case you don't need outer brackets: IIf([newpage_groepveld]=="1" , [Table.afroepregels_refentie] , [Table.afroepregels_plantnaam]) (they are needed if you print this in the Text object).
-
Ok, I will add this request to our todo list.
-
Hello, It is almost finished, we need some time to fix small bugs. It will be included in one of the next minor builds.
-
Hello, This is normal behavior, you should select the data source(s) in the "Data|Choose Report Data..." menu.
-
Hello, Could you send me a simple project that demonstrates the error? I've tried to use the Grid control in the "Business Objects" demo report, it works well.
-
Storing and loading a report to/from a DB is completely up to you [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> You may find the following demo useful (Demos\C#\CustomOpen…
-
To create a report, use the following code: // fill the data table SqlConnection con = new SqlConnection(ConnectionString()); con.Open(); SqlDataAdapter da = new SqlDataAdapter("MyQuery()", con); da.SelectCommand.ExecuteNonQuery(); da.Fill(ds, "Te…
-
Since it's quite complex task, I cannot tell the estimate date. I hope it will be ready in 3 months.
-
If you want to create a datasource in code:   Report report = new Report();   // load an existing report from a file   report.Load("myreport.frx");   // create the connection object   MsAccessDataConnection conn = new MsAccessDataConnec…
-
Hello, Be sure that: 1) FastReport.Oracle.dll was compiled with correct version of FastReport.dll. 2) FastReport.Oracle.dll is copied to the folder with Designer.exe file.
-
Hello, It's the name of the report (Report.ReportInfo.Name if it is not empty, you can set it in the report options dialog), or the file name (Report.FileName).