Default Avatar

AlexTZ

AlexTZ

About

Username
AlexTZ
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • Of course. Select the row/column and right-click it. From the context menu, you may do insert/delete. http://fast-report.com/documentation/UserM...ctsetuprows.htm
  • The Class Reference is available for download here (in the "Documentation" section): http://www.fast-report.com/en/download/fas...t-download.html
  • Hello, tableObject[x,y] returns a cell with x,y coordinates.
  • All expressions must be defined at the report start. You are trying to define a new expression ("x + 1") which cannot be evaluated because the report class (along with all known expressions) is already compiled.
  • If you want to print "[x + 1]" text you need to disable expressions in this cell: Cell12.AllowExpressions = false;
  • You may set the cell.Hyperlink.Value property in a script.
  • Ok, I was able to reproduce this in a simple app.       DataSourceBase parentDs = report.GetDataSource("Categories");       DataSourceBase childDs = report.GetDataSource("Products");       // enable both datasources       p…
  • First you need to establish a relation between two DataTable's, then register the DataSet in a report. In this case FastReport will create the relation automatically. So you need to do this: // first create the relation parentColumn = ds.Tables["A…
  • Could you make a simple test project for me and send it to tz@fast-report.com?
  • Hello, wrote: using [B.COLUMNAME] in the report yields "B unknown in this context" Check that COLUMNAME exists in the B table. If you make a typo in the table/column name, you will get the compiler error. I recommend another (easier) w…
  • Ok, I will think about implementation.
  • Ok, use the following code: Dim Cmd1 As SqlDataAdapter = New SqlDataAdapter("Select * from rest where (g2a =" & 2 & ")or (g2a=" & 0 & ") and (lname=N'" & txtlname.Text.Trim & "')", cnn) Cmd1.Fill(ds, "rest_tbl") ' "existing…
    in datasource Comment by AlexTZ March 2010
  • In FR4, I used the OnGetVarValue event. I am looking for a similar system in FR.Net. There is no way to do that. All report parameters must be declared. Undeclared items will throw compiler errors.
  • When you design a report, which datasource do you use? Is it the typed dataset, or something else?
    in datasource Comment by AlexTZ March 2010
  • Hello, Direct printing (like in windows forms) is not allowed in the web mode. When you press the Print button, FastReport exports the report to pdf and opens it in Acrobat Reader. Then you may print a report.
    in Printing Comment by AlexTZ March 2010
  • Hello, The problem is fixed, you may check the current build.
  • Hello, 1) Call the designer to create the report, then save the report to a file: Dim Cmd1 As SqlDataAdapter = New SqlDataAdapter("Select * from rest where (g2a =" & 2 & ")or (g2a=" & 0 & ") and (lname=N'" & txtlname.Text.Tr…
    in datasource Comment by AlexTZ March 2010
  • Hello, You may declare private variables inside the "ReportScript" class in the script. For example:   public class ReportScript   {     private int myIntParam;   } Usage in the text object: [myIntParam] Usage in the expressi…
  • Hello, I have tried to reproduce the problem, it works well in my testcase. Could you make a simple project for me that demonstrates this behavior?
  • Sorry, there is no way to show the "Save" dialog to the user of your web application using FastReport. You only may save the export result to the response stream, then it will be handled by the browser.
    in PDF Export Comment by AlexTZ March 2010
  • Hello, FastReport can export only report file. There is no option to attach anything else to the email generated by FastReport. You may use option to send email via MAPI, in this case you'll get editable email in the Outlook.
  • Hello, Use Report component when exporting to pdf.       // create report instance       Report report = new Report();       // load the existing report       report.Load("report.frx");       // register the data…
    in PDF Export Comment by AlexTZ March 2010
  • Hello, You should install into the GAC under administrator account (you also may need to run windows explorer as administrator). Sorry I have no win7 machine near me and can't check this out.
  • Hello, Probably your data band is not connected to any datasource. In this case it will display one row only. Doubleclick the databand and select a datasource for it.
  • Hello, Are you trying to load xml in the "Data/Add Data Source..." menu via the "XML database" connection? If so, there is no way to use specific locale while loading xml. You can change the current thread locale before running a report designer,…
  • Hello, FastReport.Net uses own xml reader, so this bug is not essential. Anyway I will fix it in the next daily build.
  • I meant daily build, but not today's one. I will let you know when I fix it.
  • Hello, wrote: It appears that the version number gets stored in the webconfig file and the controls are specific to the version. So when a new version is installed it looks like I have to delete the controls from the pages and rebuild the site…
  • We have no plans to support Telerik / Devexpress grids, but you may do it by yourself. Dialog controls architecture is extendable. If you interested I will prepare a short guide for you. Grid will work with DataSet, just like the standard winforms …
  • Yes, FastReport is free for end-users, so you have to buy developer licenses only.