Default Avatar

AlexTZ

AlexTZ

About

Username
AlexTZ
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • Actually, it's not a FR.Net problem. It just executes SQL that you provide. The problem is that System.Data.SqlClient.SqlDataAdapter cannot execute the GetSchema method if your stored proc uses temp table. This method is used in FR to obtain a list …
  • Sorry, I cannot reproduce this. It works well in my test database. Maybe it is related to your stored proc? Please try this: Q: Stored proc with temp table does not work in FR (get error message "invalid objectname...") A: Please read about simi…
  • Hello, I have a test database with stored proc MiProc2 which takes nvarchar(50) parameter. I can succesfully call it using the following SQL statement: exec MiProc2 "test" I'm using MS SQL Express.
  • Hello, You need to set object's Parent first: obj.Parent = band; obj.CreateUniqueName(); In case you working with Table, you need to call its CreateUniqueNames() method which creates names for rows, columns and cells.
  • Column.Tag cannot be used in your code, because it is used in FastReport to store some internal info. Consider using the Report.ReportInfo.Description property.
  • What kind of metadata do you want to save? Report.Description may be a good idea.
  • Tag property of a column is not stored in the report file. It's not a problem to save it using .ToString(); it's a problem to restore original object (it will become a string after restore). That's why I don't store this property at all.
  • It's not supported now, we will add interactive features later.
  • Hello, Here is a simple example of how to create chart in code. You need to add references to FastReport.MSChart.dll and System.Windows.Forms.DataVisualization.dll. using FastReport.MSChart; using System.Windows.Forms.DataVisualization.Charting…
    in Chart? Comment by AlexTZ March 2009
  • It does for both VS2005 & 2008. It will be compatible because the report automatically recognizes the format (utf8 or base64).
  • Hello, Chart control is ready to use. See "Chart" category in the demo.
    in Chart? Comment by AlexTZ March 2009
  • I've found the bug in VS2005. I've fixed ReportResourceString, so it works now in both VS2005 and 2008. Open your project, run the designer, correct the SQL and close the designer. Now ReportResourceString is saved in Base64 format and should be ok …
  • Well, I've found a lot of differences: My VS2008: ... ReportResourceString="...<?xml version="1.0" encoding="utf-8"?> ... Your file: ... ReportResourceString="...<?xml version="1.0" encoding="utf-8"?> ... As you can see, VS2008 h…
  • I've tried to reproduce these steps in Visual Studio 2008 (unfortunately I don't have Web in my Visual Studio 2005). I've used another db, of course, and the select statement was select * from DVDs where ID >= '2' The result is ok. I can't chec…
  • I've downloaded the video, thanks. You may delete it now.
  • Bryan, Try the latest available FR.Net, I've changed something related to datasources.
  • I've forwarded your question to developer who is responsible for ASP.Net part. He will answer you soon.
  • I've tried to test it in both WinForms and WebForms, but it works for me, nothing truncated. How can I reproduce this bug?
  • See programmer's manual, Working with ASP.NET/Working in the "Medium Trust" mode
  • Are you using medium trust level in your web application?
  • Sorry, I will not be able to fix this. Docking is performed by third-party library which is not supported by its author now...
  • Hello, Report page inheritance is not supported.
  • We will start to update this file when FR.Net will be released. I'll post here when charts will be finished.
    in Chart? Comment by AlexTZ March 2009
  • Turn on the "Print on Parent" option of subreport. Also turn on "Grow to Bottom" for your text objects.
  • Here are two screenshots of this object. It's almost ready, I need 1-2 days to polish the work.
    in Chart? Comment by AlexTZ March 2009
  • Hello, See user's manual (Report creation/Table-type reports/Inserting objects in cells): "In the cells, you can insert other objects, for example, the picture. The following objects can never be added into the cells: ?· "Table"; ?· "Matri…
  • No TeeChart now (maybe, we'll add it later...) Yes, you can use MS Chart in VS 2005. I'm using it now.
    in Chart? Comment by AlexTZ February 2009
  • Hello, I'm finishing the MS Chart wrapper. I guess it will be ready in this weekend.
    in Chart? Comment by AlexTZ February 2009
  • Hello, You can use FR.Net in WPF: using (Report report = new Report()) { report.Load(...); report.RegisterData(your_dataset); report.Show(); }
  • Hello, We working on this now. Three options will be available: - native charts (set of common chart types, simple) - wrapper for Microsoft Charts - wrapper for Dundas Charts I can't say when it will be finished.
    in Chart? Comment by AlexTZ February 2009