
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
No, it's not possible due to some internal limitations.
-
Hello, Please look at Demos\C#\Web project.
-
1) This property does nothing, it is not implemented yet. 2) I will consider adding the Exportable flag to all report objects. It will be after v1.3 release. 3) That's correct, isn't it? You have the "Page" object which will be printed in any case.
-
Hello, We have such plans for further versions. I can't tell the timeframe for this because we have other higher-priority tasks. The Printable flag is used when printing. It is ignored when exporting.
-
I've tried to reproduce this, with no success. - in the demo.exe, I edited the "Simple List" report - I've created the BeforePrint event handler for the report title band - in the code, I wrote     private void ReportTitle1_BeforePrint(obje…
-
Toske, Could you make a simple project for me and send it to tz@fast-report.com?
-
Hello, What exactly is wrong? Can you attach a scan of the printed paper?
-
Ok, I'll better add separate ShowPrintDialog/PrintPrepared methods in the next build.
-
It's TextObject.Brackets property.
-
Ok, if you want to bind it to data, forget my last message. Probably the problem is that you use non-existing data column in the Text object. In this case you'll get a bunch of compiler errors (invalid use of '', or something similar).
-
If you don't want expressions in the Text object, set its AllowExpressions property to false.
-
Ok, I will add the fix in the next build.
-
Sorry, It's not possible now. You will loose printer settings made in this dialog (via the "Settings..." button).
-
Hello, Here is the corrected code:     protected void imgEmail_Click(object sender, ImageClickEventArgs e)     {         Report FReport = new Report();         // comment this         //ReportPage page = new Repo…
-
Do you use WebReport component? If so, you have to change the report in the WebReport.StartReport event.
-
Hello, Could you send me your report file?
-
Hello, The code is correct. Probably the report is not refreshed propertly when you call the FDisclosureReport.Refresh(). Probably you load the report file in this method? In this case, the villageName is loaded from a file and loses your setting…
-
Hello, I've tried your code, it works well. wrote: Funny thing is when i remove one Text Object from my report, evrything works fine What is the content of this Text object?
-
Hello, The SL viewer is in our todo list. I cannot say when it will be ready, though. Its priority is not high.
-
Hello, You may use this code: report.Load(...); DataConnectionBase conn = report.Dictionary.Connections[0]; conn.ConnectionString = "your string";
-
Hello, Sorry, there is no such event in the designer. If you have a source code (the Professional version), you may extend it to match your needs.
-
It should work. Could you send me the code of your project?
-
Do you want to add a custom button to the preview's toolbar? You can do this using the PreviewControl component. The toolbar is accessible via the ToolBar property.
-
Hello, You may look at 2D barcodes such as PDF417 and DataMatrix.
-
It happens when you run the same report the second time. I'll fix this in the next daily build.
-
Sorry, it requires too much efforts to implement it. We don't have such plans in the near future.
-
You may attach a child band to the groupheader and set its PrintOn property to "FirstPage, LastPage, OddPages, EvenPages" (everything except the "RepeatedBand"). I've attached the example report - you can run it in the demo.exe.
-
You can add empty Title band and make it zero-height. Don't add this code in the page header, it will lead to infinite loop. Data1 is the name of your databand. wrote: I really would prefer a design where I could follow "All databand-related …
-
Hello, In the page header, the datasource is in indeterminate state. You have to use script to init the datasource at the start of report (use the code from my previous post in this topic).
-
You can use the following code: Â Â Â Â Â Â BarcodeObject barcode = new BarcodeObject(); Â Â Â Â Â Â barcode.SymbologyName = "Code39"; Â Â Â Â Â Â barcode.Text = "123456789"; Â Â Â Â Â Â barcode.Height = 64; Â Â Â Â Â Â // to get actual width, we…