
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Sorry, I don't understand what do you mean. Could you send me a screenshot?
-
I've updated FRNetConnections.zip to work with MySQL 6.0.
-
11Kb is ok, I think. My 24Kb version is built with debug info.
-
- No, calculated columns will stay untouched. - I've added Restrictions.HideAllProperties member - you can use it in your code right now. - To display master data row regardless of its details, set the master data band's PrintIfDetailEmpty pro…
-
Hello, please check your email
-
Hello, 1) FR-MySQL connector was created using version 5.2 of MySQL. You may use MySQL version 6.0 - it may require some work (like deleting old reference to MySql.Data.dll v5.2 and replacing it with MySql.Data.dll v6.0) 2) FastReport.MySQL.dll …
-
Hello, I will make visible the table.RefreshTable method in the next build.
-
Hello, In the print dialog, select "Page Range" = "Pages" and indicate the page numbers you want to print: 1,2,2,2,2,3,4,4,4,4,5
-
Hello, Put the following expression in the Text object's Hyperlink.Expression property: [Row#] also set the Hyperlink.Kind to "Custom". In the "Click" event handler, obtain the value: Â Â Â Â private void Text1_Click(object sender, EventArgs…
-
In my example, Table1 is the name of your data table (you can see it if you select the table in the "Data" window).
-
Yes, the step is equal to grid size. It was done specially - I don't recommend to place objects between the grid, you will have problems when exporting your report. See user's manual, "Preview, print, export/Exporting the report/Report design recomm…
-
I'll log this to our buglist.
-
Hello, It's in our todo list. I can't tell you when it will be implemented.
-
Hello, Please read the programmer's manual (can be downloaded here: http://www.fast-report.com/en/download/fas...-download.html) "Working with Windows.Forms" "Working with ASP.NET" If you have any questions please ask.
-
Hello, You can't supply several values using one sql parameter. You may try to build sql clause dynamically, in the report script. For example, write the following code in your report's StartReport event handler: Â Â Â Â private void _StartRepo…
-
Hello, Chinese PDF font should work well now.
-
Hello, Will be fixed in the next build.
-
I've fixed the date, thanks. wrote: I would suggest holding the top and bottom or left and right controls at their current position and spacing any in between controls equally between them. That's exactly what they did. If you select thre…
-
Hello, Thanks, we will try to find a workaround for this. I will let you know when we finish.
-
Hello, Check that parameter's expression returns a value of correct data type. For example, your parameter may be of String type, but its Expression returns 0. In this case you will get such error.
-
I've fixed the connection, thanks.
-
wrote: Had a quick look and it seems to be just what I need apart from the restrictions can be changed in the designer itself. Any chance this can be disabled aswell? This is just a simple way to restrict the "dumb" user from doing somethin…
-
Hello, To do this, use either band columns or page columns: - band columns can be set in the "Properties" window, the Columns.Count property - page columns can be set in the "Page setup" dialog, "Columns" tab. This dialog can be called from Fil…
-
- The problem is in FastReport - it needs a common way to obtain the table schema, but it is not possible with OleDbConnection. You can use this connection type to connect to Access or SQL server, and they are using different SQL dialects. That's wh…
-
Now I see the problem. When you create a new connection and view its tables in the "Data Wizard" window, FR sends select command to the connection, to get the columns of a table. The command is simple: select * from tablename The problem is t…
-
wrote: ConnectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=Workplace Suite;Data Source=code-server" Does this connection string work if you create a new datasource with this connection…
-
Hello, It seems a bug in MS Chart, I will try to find a workaround.
-
Hello, wrote: Have noticed that the DatabaseLogin event is firing more than once for each connection. It fires every time when connection is about to open. If you have 5 tables in a connection, the connection will be opened 5 times, bec…
-
Hello, You can use "?" statement in the column's Expression: [Table1.Column1] == "A" ? "Alpha" : "Beta" Do you need to sort a band on custom condition? Just open the databand editor and put this condition in the "Sort by" textbox, for examp…
-
Hello, Which FR.Net version do you use? I've tried to export the "Subreport" demo report which has two lines and it works well for me.