mohanaraj
mohanaraj
About
- Username
- mohanaraj
- Location
- 600001
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Hello Refer this link you get an Idea. http://fast-report.com/documentation/UserM...tableobject.htm Regards Mohanaraj
-
Hello, I want to do this by program. Eg In my page one check box is displayed with text LEGEND if the user checked that checkbox then only Legend is shown in the report, and also they want to choose the color for the chart (area in that chart.)
-
Dear Alex, Thanks for your support. It display the total value correct in the top. I want to disaply the summary of the Sub Department also with the parent please refer the Picture (pic1). In this production, package have the summary val…
-
Dear alex, Please run the application. In the report the summary is not displayed correct. ie the spices Department is the child for production so the summary of this Department should be added to the summary of Porduction. Please refer t…
-
Dear alex, In the report the summary, value is displayed according to the parent - child relation between them. ie In report's First page it showing the DepartmentId and ParentId eg: Production department having ParentId as 10 and Depart…
-
AlexTZ wrote: » Doubleclick the databand, select "Filter" tab and write the following expression: [TableName.ColumnName] == 0 Dear alex, I tried this but it throw an error as 'Specified cast is not valid.' I tried this in Data1 (Fi…
-
Dear Alex, Thank you very much for your support, its works fine. I have one question, ie How i can filter the data for display the data in the data band. eg. DepartmentId -- Department Name 0 Unassigned 1 SuzlanFoods 2 Parcel …
-
Dear Alex, I add sum values in different databands, by crating several totals (one for each band), then sum totals as you mentioned. It display the summary but with wrong calculation. It sum all the values of that datasource instead of sum …
-
AlexTZ wrote: » Since you need to sum values in different databands, you have to use several totals (one for each band), then sum totals. - add data band after the Data4 band, add footer to it. You will print totals here. The footer is needed to …
-
AlexTZ wrote: » You have renamed the dtOrgsummary.ParentId column to ParentDepartmentId, it causes the errors. - select Data2 databand and fix its ParentIdColumn property; - the relation between dtOrgsummary and dtLevelsummary datasources is not…
-
Dear Alex, I corrected the data in xml by using XmlWriteMode.WriteSchema. The format is displayed correct in summary but only first page is displayed other pages are not created please address my mistake. Thanks in advance.
-
Dear Alex, Thanks i will make it correct. How can i display the Summary for the Data band i marked in the previous quote. Please refer my PDF file for which summary. Thanks in advance.
-
Dear Alex, Thanks for your build. i see the header displayed for all sub Department. But to display the summary of the page it too complex for me. I place the total field for display the summary and choose currency format for that text obje…
-
AlexTZ wrote: » No, I did not noticed that. Which header (DataHeader1,DataHeader2,DataHeader3)? And where do you expect to see it? Hi Alex, DataHeader2 (middle one) Header was not print for sub department which have same level. Eg: …
-
AlexTZ wrote: » Hello, Use the data footer band to display a summary info for the hierarchy item. Hi Alex, Thanks, Shall you noticed that the header was not displayed for the sub department levels ? The header was displayed on…
-
Dear Alex, Thanks for your update, Its works fine now i got my expected structure of the report. But I have to place the summary for the each, As in the .rtf file of previous quote. and also the the Data Header is not display for the sub De…
-
Dear alex, I created the application for generate the report that i mentioned previously by create the .frx file manually with the datasets needed for that report design, but it won't display the data header for the report, when i added the heade…
-
Dear alex, Whats wrong in my data?, i can't understand what you mean. could you please explain how its wrong. Thanks.
-
Dear Alex, Thank you for your reply, By the reference of your sample i tried the sample with my data for hierarchic structure but they threw an error as "Specified cast is not valid." could you please point out my mistake done in this. …
-
AlexTZ wrote: » Sorry, the desired report structure is very unclear to me. I'm afraid I cannot help you with this. Dear Alex, My application for generate report for display the call details of Extension that belongs to the department. t…
-
Dear Alex, I design the report without subreport, But i can't get the exact what i want. I attach the sample application with this please refer this and guide me where i done wrong in the design. I also attach the sample report want i expec…
-
AlexTZ wrote: » Hello, Right-click the Text object and select "Format...". Then select Number formatting. Dear Alex, I bound this text object by program. thanks.
-
AlexTZ wrote: » Hello, You can use IIF function to check for 0. Something like [IIF([Totalcalls] == 0, "", SecondsToHHmmss([TotalDuration]/[Totalcalls]))] -or- [[Totalcalls] == 0 ? "" : SecondsToHHmmss([TotalDuration]/[Totalcalls])] …
-
Dear Alex, Thanks, But i found that the error occurs in this line "[SecondsToHHmmss([TotalDuration]/[Totalcalls])]" I use this function for calculate the total duration in HH:MM:SS in this function [TotalDuration] and [Totalcalls] are totals. …
-
Dear Alex, Thanks its work fine thank you. But in the child table (dtAllCallDetail) table some time there may be possible to bind the empty data and the parent table (dtcolor) having data in this situation the relation fails the application w…
-
Hello, Use custom format and give your format dd/MMM/yyyy in that. All the best.
-
Hello, You can do this by program use this code FastReport.Format.NumberFormat format = new FastReport.Format.NumberFormat(); format.UseLocale = false; format.DecimalDigits = 2; format.DecimalSeparator = "."; format.GroupSeparator = ","; …
-
AlexTZ wrote: » string colorName = (String)Report.GetColumnValue("MainTable.ColorTable.Color"); Text1.TextColor = (Color)(new ColorConverter().ConvertFromInvariantString(colorName)); Dear Alex, I tried out , by create relation between t…
-
Dear Alex, In my report i change the color of the text according to the user changed colors. eg - For Report Extension - Call_Type 315 Incoming 316 13Calls 317 Outgoing 318 IDD I change the color in the report as per the data submitt…
-
Hai Alex, How to compare the string value in this. Error Occurs throw as "The name 'Outgoing' does not exist in the current context" My code is please advice.