
mohanaraj
mohanaraj
About
- Username
- mohanaraj
- Location
- 600001
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Dear Alex, Thanks for the reply. How i do the same by program? Because the color of the font can be described dynamicaly from the program. thaks in advance.
-
AlexTZ wrote: » Hello, Do you have an example of report which text is missing? I need the prepared report file (.fpx). AlexTZ wrote: » And also this print dialog is not open while i access the website in remote machine. Are you trying…
-
AlexTZ wrote: » Hello, Select the master data band and set its "PrintIfDetailEmpty" property to true. Dear Alex, Thank you very much.
-
AlexTZ wrote: » You have two options: 1) band.BeforePrint += new EventHandler(your_method); where your_method is defined in your code. Dear Alex, If i go with First option where can i define the method in asp.net page or in the repor…
-
AlexTZ wrote: » Please tell me the steps - how can I reproduce the error. Dear Alex, In the application after some little bit later i access (after page session expires) then i access the page it will show the above error.
-
AlexTZ wrote: » In the Data1.BeforePrint, for example. Dear alex, Thanks. In report when the session expired the error shown as Index was out of range. Must be non-negative and less than the size of the collection. in the line. R…
-
AlexTZ wrote: » Hello, You may use script: if (Data1.Height < ReportSummary1.Height) Engine.StartNewPage(); Dear Alex, In which Event i put this code.
-
AlexTZ wrote: » Hello, Select "Custom" format and type dd/MM/yyyy. DEAR ALEX, Thanks its works. How can i display text in two line in a single text object with proper line space? Thanks in advance.
-
AlexTZ wrote: » It should work. Could you send me the code of your project? Dear Alex, Hear with i attach my application in this please run the application as website and then click the mail icon it will create the report .pdf file in …
-
AlexTZ wrote: » Hello, Please look at Demos\C#\ExportToPDF demo. Dear Alex, I create report and save successfully with the reference of above mentioned demo. But i want to add the header, summary band to this report how i can achieve…
-
AlexTZ wrote: » Right-click the Text object which displays the total cost, and select "Format...". Choose appropriate format (Currency). Dear Alex, Thanks, But i don't want to display currency symbol "$". I cut down the code (Format.C…
-
AlexTZ wrote: » Hello, Put this text in your Text object (where you want to print the total): [SecondsToHHmmss([TotalDuration])] where "TotalDuration" is the name of your total. Dear Alex, Thanks. I display the total Cost whe…
-
Dear Alex, Thank you.
-
AlexTZ wrote: » The elegant solution is to use TimeSpan. Put this in your Text object, and you get hh:mm:ss value. [TimeSpan.FromSeconds(your_seconds_value)] Dear Alex, In the above line of code not working when i gave the second as 1…
-
AlexTZ wrote: » Hello, In the report designer. Go to Properties window, select Page, press "Events" button, then doubleclick the StartPage event. Dear Alex, Ya Its works thanks. Can you please tell what is the default page width?
-
AlexTZ wrote: » Hello, You can do it in the Page.StartPage event: Page1.PaperWidth = 300; // set to 300mm Dear Alex, I cant able to create event you mentioned can you please explain where can i create this event.
-
AlexTZ wrote: » The elegant solution is to use TimeSpan. Put this in your Text object, and you get hh:mm:ss value. [TimeSpan.FromSeconds(your_seconds_value)] Dear Alex, Thanks Its work fine.
-
Dear Alex, Thanks for the above i can able to create the the report title band and others by dynamic. Now i want to display the the Date and Time separately in dynamic in a separate textobject Now i can able to display the Date with time by g…
-
AlexTZ wrote: » Hello, Sum your field using FastReport total, then convert the total value from seconds to hh:mm:ss format using a script function. Dear Alex, I sum the field by adding New total to the data window and in the total p…
-
AlexTZ wrote: » Hello, It's not easy to fix; probably we will add this feature in the next major version. Dear AlexTZ, It is possible to email the .pdf report without dispaly the report (only generate the .pdf) and save automatica…
-
Hello, By creating the dataset in (.xsd file ) in .net. you can add this dataset as a datasource for your report. use this code to generate the design with userdefined dataset. #region generate .frx protected void Button1_Click(object sen…
-
AlexTZ wrote: » Yes, the demo is for WinForms; but you can use the same technique to create the report items in ASP.Net. Also look at the programmer's manual, "Working with Windows.Forms/Creating a report by using code". Dear AlexTZ …
-
AlexTZ wrote: » Hello, You have to build your report in code. Please look at the Demos\C#\ReportFromCode project. Dear AlexTZ, The demo is in window.form application i need it for ASP.NET application i want the user defined Report h…
-
AlexTZ wrote: » Set the PictureObject.ImageLocation property to either URL or file path. Dear AlexTZ, Thank you for the solution. Can you please fix the option for email this report.
-
AlexTZ wrote on Oct 13 2009, 03:13 PM: Hello, Just put the PictureObject on your report page, invoke its editor and load the image in it. Dear AlexTZ, Thanks for your reply. I want to load the image present in the server path this serv…
-
AlexTZ wrote: » Hello, I don't understand what do you mean here, please explain: AlexTZ wrote: » the page size is more than 6 What is 6? cm, inches, or something else? Mohanaraj :: Not 6 cm. I mean the page count. When the report hav…
-
AlexTZ wrote: » Hello, You should use AllcallDetails_StartReport event handler to access the report. Move all code to this handler. Thanks It works fine.
-
AlexTZ wrote: » Go to the "Data|Choose Report Data..." menu. Did you see tables of your dataset? Hai Alex, Thanks, I got it. Do you suggest how to do summary report.
-
Dear Alex, i read the post #4 you mentioned as the "run this code in the local machine" that means run this as windows application? or web application. When select the design report in the webreport component that placed in the aspx page it d…
-
AlexTZ wrote: » Hello, Please read the programmer's manual, "Working with Windows Forms" chapter. Also look at flash-demo here: http://www.fast-report.com/frnet_swf/use_in_vs.html Dear AlexTZ, I'm new to the fast report. I downloa…