Default Avatar

AlexTZ

AlexTZ

About

Username
AlexTZ
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • You can use PreviewControl and turn off the toolbar/statusbar (ToolbarVisible, StatusbarVisible properties). Also call the ZoomWholePage() method to remove scrollbars.
    in Dashboard Comment by AlexTZ January 2010
  • Sorry, we don't intend to make a Mono-compatible version. Many core code still requires WinAPI (for example, RichObject, PDF export).
  • The website says: "FastReport.Net is written in C# and contains only managed code" and that's true. There is no unmanaged code parts, just API calls.
  • Do you want to print different headers for the first report page and for other pages? If so, use the technique described in the manual: http://fast-report.com/documentation/UserM...kletoddeven.htm
  • Hello, Probably we will make two versions of FastReport.dll (one with .Net 2.0, another with .Net 4.0) in the future.
  • Hello, FastReport uses many WinAPI calls (especially in the UI part - FastReport.Bars.dll), so the Mono support is not possible and is not planned.
  • Hello, Are you using the latest build? It works as expected. When the user changes the text to find, the search is started from the first page.
  • Hello, It looks like you have endless loop somewhere. I never see the "report created" message. Why are you trying to create the fixed report instead of using hierarchy bands? It should work with the latest build (I've fixed the Id==ParentId wro…
  • Hello, The Text export is not accurate nor wysisyg now. We plan to rewrite it in the next major version of FastReport (I can't say now when it will be available).
  • Hello, You may specify the pages to print (in the print dialog) as: "1,1,1,2,2,3,4,4,4"
  • Sorry, my mistake. The correct code is: foreach (Base c in report.Dictionary.AllObjects) ... The parameterized sql is not an option. [] are reserved symbols in many sql dialects.
  • Hello, What error do you get? Please see the Class Reference on "Relation" class. It has an example on how to add a relation: /// Report report1; /// DataSourceBase customersTable = report1.Dictionary.DataSources.FindByAlias("Customers"); …
  • You have one item with Id == ParentId. So the item "belongs to itself".
  • Ok, I will change the code in the next daily build.
  • Hello, I was able to reproduce the error. I will let you know when I fix it.
  • Hello, Set the databand's CanBreak property to true.
  • Hello, wrote: is there any way to print directly with report.print in "text file" format ? No, there is no "one-button-click" method of doing this. wrote: i am not able to see the words clearly its getting more big and consisted i d…
  • Hello, There is no mistake in the report, but your data has wrong rows (for example, a row with Id = 0 and ParentId = 0). I will add a check to avoid wrong results in case of such data. Our build server is down now (we have holidays now till jan …
  • Please send the test project to tz@fast-report.com.
  • Hello, FastReport has no control over printable area of a printer. You should set the desired margins in the "Page Settings" dialog. If you set too small margins, the text may get clipped on some printers. So you have to use large enough margins …
  • Hello, Probably you have set the "Keep together" flag on some band. Just turn it off.
  • Hello, To print tree-like structure, you may use databand with hierarchy. See details in the documentation: http://fast-report.com/documentation/UserM...nthierarchy.htm You use one databand to print a hierarchy of departments. This databand …
  • Hello, FastReport uses MS Chart control, you can find more information about it in this page: http://code.msdn.microsoft.com/mschart Regarding your problems: Probably you need to turn off the "Convert null values" option in the "Report/Opti…
  • Hello, You can print on dot-matrix printer using two modes: 1) regular mode (slow). Just press the "Print" button in the preview. 2) text mode (fast, but not wysiwyg, you have no control over bold, italic etc). Press the "Export" button in the …
  • Hello, You can call the report.PrintPrepared method several times (according to number of your printers): report.Prepare(); report.PrintSettings.ShowDialog = false; report.PrintSettings.PageRange = PageRange.PageNumbers; // print the firs…
  • Hello, I have tried to reproduce the error, but in my case everything works well. Be sure that you use the latest version. If the error still persists in the latest version, please send me the prepared report file (.fpx, save from preview) to tz@…
  • Hello, The converter can be downloaded here: http://www.fast-report.com/pbc_download/files/fr3tofrx.exe
  • Hello, You should specify full rtf text, if you create an object dynamically: richObject.Text = "{\rtf1\ansi\ansicpg1251\deff0\deflang1049{\fonttbl{\f0\fnil\fcharset0 Tahoma;}{\f1\fnil\fcharset204 Tahoma;}} {\colortbl ;\red0\green0\blue0;} …
  • Hello, We use some types like "uint". It's not CLS compliant type, but we need it.
  • Hello, See my answer in the trouble tickets.