
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
The text export filter applies the command to the entire document. There is no option to apply it to some text objects. So I think it's not what you need.
-
No, removing the category is impossible.
-
There is no Remove method, I see no reason to do this.
-
Hello, It will be fixed in the next build.
-
Hello, You need to turn off the progress window at the report prepare: Config.ReportSettings.ShowProgress = false;
-
Hello, See the modified code below.   public class CustTemplate : FastReport.Wizards.WizardBase   {     public override bool Run(Designer designer)     {       // this will create a report with single page containing several …
-
You cannot hide components depending on report template used. But you can hide them permanently: RegisteredObjects.FindObject(typeof(TextObject)).Enabled = false;
-
Hello, You may create own report wizards/templates and register them using the RegisteredObjects.AddWizard method.
-
Hello, This code works well for me if I insert in in the Features/Business Objects demo report: Â Â Â Â private void ResolveDataSources(Report report) Â Â Â Â { Â Â Â Â Â Â foreach (PageBase pb in report.Pages) Â Â Â Â Â Â { Â Â Â Â Â Â Â Â for…
-
Hello, You have to add the following code in the Form.Load event handler: Â Â Â Â private void Form1_Load(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â // restore the design layout. Without this code, the designer tool windows will be unava…
-
To register an object, use the RegisteredObject.Add method: ///
/// Registers an object in the specified category with button's image and text. /// /// Type of object to register. /// Name of category to register in. ///… -
There is something wrong with the attachment; second try.
-
Hello, FastReport.Net has similar classes. Typically you need to inherit from ReportComponentBase class and do the following: - define properties; - override Assign and Serialize methods to assign/store properties; - override Draw method to dr…
-
Hello, There is no such manual for FR.Net, only user's manual and programmer's manual.
-
Try this: http://www.fast-report.com/documentation/U...inheritance.htm also be aware of this: http://www.fast-report.com/documentation/U...estrictions.htm
-
Hello, XML-datasource reads the xml file into the DataSet using the code - dataSet.ReadXML(xmlFile); then registers all the tables in this dataset. So the xmlfile must be DataSet-compatible.
-
Hello, Sorry, no - dotmatrix support requires a lot of changes everywhere (at component level, engine level, preview, export and print). We have no plans to implement it now.
-
Hello, Please turn off the sorting in the group header's editor (set to "None").
-
Hello, Use this code to register nested data: report.RegisterData(new Master[] {CreateMaster()}, "MyMaster", 5); // 5 is max.nesting level report.GetDataSource("MyMaster").Enabled = true;
-
Hello, You can set the Width and Height properties of WebReport.
-
Hello, FastReport.Net does not support MVC now.
-
Hello, FR.Net uses CanGrow, CanShrink, and GrowToBottom properties. See details here: http://www.fast-report.com/documentation/U...namiclayout.htm
-
Hello, Please check the email.
-
Hello, We don't plan to support SL in the near future. You may use server-side code to generate a report, export it to pdf and send it to client side.
-
Hello, This should work: protected void WebReport1_StartReport(object sender, EventArgs e) { string strFileName = "456.fpx"; //file exits WebReport1.Report.LoadPrepared(strFileName); WebReport1.ReportDone = true; }
-
Hello, You should set this property *before* you assign a report instance to the designerControl.Report.
-
Hello, I do this in the group header's BeforePrint event handler and it works: Â Â Â Â private void GroupHeader1_BeforePrint(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â if (((Int32)Report.GetVariableValue("Row#")) % 2 == 0) Â Â Â Â Â Â Â …
-
You can run this code before you use the report objects: Config.Root.FindItem("Designer").FindItem("Report").SetProp("ClassicView", "1");
-
Sorry, it's for custom preview window only. You can't hide that item in the default preview window.
-
Hello, A small hack needed: Â Â Â Â Â Â ButtonItem btnSave = previewControl1.ToolBar.Items[previewControl1.ToolBar.Items.IndexOf("btnSave")] as ButtonItem; Â Â Â Â Â Â btnSave.SubItems.RemoveAt(0);