
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Ok, found how to reproduce it. I've placed the code OdbcConnection myConnection = new OdbcConnection("Dsn=...");// replace ... with some dsn Config.DesignerSettings.ApplicationConnection = myConnection; in the form's constructor, so it is exe…
-
Sorry, I can't reproduce the crash in the Demo.exe using the following code:       OdbcConnection myConnection = new OdbcConnection("Dsn=...");// replace ... with some dsn       Config.DesignerSettings.ApplicationConnection = myConnect…
-
Hello, 1) it was fixed yesterday, please download the latest build. 2) I've added this to buglist. I will let you know when the fix will be available.
-
Hello, Since we haven't Windows7 64 here, I've tried it on machines with Windows7 32 and Vista 64. It works fine wrote: When moving while pasting, the location indicator at the bottom left status bar always shows "-250 cm;-250 cm" although t…
-
I've tried to replace it and get many bugs (inaccurate text output). So it's not an option.
-
Hello, Remove outer brackets: ToDecimal([Position.GP])
-
Hello, 1) after you change something in the MSChart using the "Properties" window, make some changes in a report (for example, move the Chart object a little). It is necessary because FastReport cannot detect the changes you made in the underlyin…
-
I see. In this case, you need to use one databand with columns. You also need to form the dataset in such a way that it will contain all labels you need to print, e.g. label1 label1 label1 label2 label2 label3 ....
-
wrote: I tried to use columns not in the page, but in the bands, but as I use master and detail bands I didn't manage to make it work correctly. It should work. Just set the detaildata Columns property to desired number of columns. Don't touc…
-
Hello, Are you talking about FastReport.Net? It does not have Vertical bands.
-
Hello, Welcome to GDI+ world. It's standard behavior of the Graphics.DrawString method. You may set Padding.Left to negative value to compensate the offset.
-
I have fixed something after 1.2.1, please try latest available build.
-
The "LoadData" is called only when report is actually needs the data. You may have 10 enabled sources in a report; but if your report is of "simple list" type and uses only one datasource, all remaining 9 datasources will never be filled with data.
-
Hello, Dot-matrix printing is available using Text export (in the preview window, click "Save" and select "Text file/Matrix printer". We don't plan to support full dot-matrix mode like it was in FastReport VCL.
-
Hello, FormatDateTime uses predefined format name: wrote: FormatDateTime(DateTime value, string format) Formats the specified value as a date/time, using the named format specified in the "format" parameter. The valid values for this par…
-
Hello, All datasources registered using report.RegisterData call, are available in the report.Dictionary.DataSources collection. Also look at report.Dictionary.Connections collection: it contains data connection defined in a report. Each connecti…
-
Hello, Which FR.Net version do you use? Did you tried the latest version?
-
I don't have Window7/64bit right now, will test it later. Can you reproduce this in the Demo.exe?
-
Sorry, I cannot reproduce this behavior in the Demo.exe.
-
Hello, Please read the user's manual, it has a chapter "Report creation" which covers all report types.
-
Hello, You may use FastReport designer to do this: Report report = new Report(); DialogPage dialog = new DialogPage(); report.Pages.Add(dialog); report.Design();
-
yes, it's automated process. The new build will be available in midnight (GMT+3).
-
Hello, ODBC support will be available in the next daily build (1.2.13).
-
Hello, Write the following code in your reportsummary.BeforePrint event handler: private void ReportSummary1_BeforePrint(object sender, EventArgs e) { Â Â if (Engine.FreeSpace < ReportSummary1.Height) Â Â Â Â PageHeader1.Visible = false; }
-
Go to the "Data|Choose Report Data..." menu. Did you see tables of your dataset?
-
Hello, Since there is no DataSet visual component in ASP.NET, use ObjectDataSource component. Connect it to a table in your dataset, then use it in a report.
-
Hello, Sorry, there is no way to compile FR as a single exe.
-
No, but you can use own logging methods. For example, in the report.StartReport event you create a new file, in the other events you write to this file, and in the report.FinishReport you close the file.
-
Hello, You can put the code in the report script. You may use the report.StartReport event handler to call the code (to create an event handler, go to the Properties window, select "Report" item in the combobox, and click "Events" button).
-
Hello, You can hide the Help menu completely, or just the About item: Config.DesignerSettings.DesignerLoaded += new EventHandler(DesignerSettings_DesignerLoaded); void DesignerSettings_DesignerLoaded(object sender, EventArgs e) { Â Â (sender a…