Sundara Manikandan
Sundara Manikandan
About
- Username
- Sundara Manikandan
- Location
- Chennai
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Thank you Ulrich. I'll try the same.
-
Hi, Thanks a lot. It works.
-
Hi, I also tried this. Report report = new Report(); report.PrintSetting.ShowDialog = false; But it still shows the Print Settings. Thanks in advance.
-
Hi, Prepare your report, Then a = Report.Engine.TotalPages; b = Report.Engine.PageNo; if b< a then print "Continued"
-
Hi Alex, I have found a way. text1.Text = String.Format("{0:0,0.00}", debitBalance); Thank You.
-
AlexTZ wrote: » Hello, You need to write own script function that does such formatting. You may call it in the Text object then: [MyFunc(152653)] Hi Alex, I tried but could not figure out how. Can you give some code examples. …
-
AlexTZ wrote: » Hello, No, it's not possible. Hi Alex, That's very disappointing. Is there any work around?
-
Hi, Thanks. I will give it a try and reply back. One more doubt. Is it possible to hide the code window in the designer? (I don't want my users to alter the code or even view it.)
-
Stark wrote: » Hi , have a good day , Try this code FastReport.EnvironmentSettings frsetting = new FastReport.EnvironmentSettings(); frsetting.DesignerSettings.Restrictions.DontSaveReport = true; // for test // FastReport.Report repo…
-
Hi Alex, Under the same circumstances, the number is displayed as say - 152653.00 but I want to display as - 1,52,653.00. Thanks in advance.
-
AlexTZ wrote: » Hello, ... and what is the question? Hi Alex, I just wanted to thank you.
-
Hi Alex, Thanks for your guidance. Please find enclosed the pdf report.
-
Hi Alex, I have to print the report footer after the databand ((not at the end of page if data is less than a page, but at the end of page if the data is more than one page) I cannot use the data summary). Is this possible ?
-
Hi Alex, Thanks for guiding me in the right direction. I am working on the report and shall send the same in a short while. In the mean time, how shall I print the page footer at the end of the data band ( It prints at the end of page ) since…
-
I will give this a try and if I get into any problem, I will mail back with a sample report. Thanks for your suggestion.
-
AlexTZ wrote: » Hello, Please send the report file (.frx) to tz@fast-report.com. Hai, I have not yet started with the report. Here is my DB structure. 1. Date 2. Code.(Foreign Key connecting to the account name) 3. DebitBalanc…
-
Thank you for your patience and advice Alex.
-
Hai Alex, I finally made it to work as expected with a slight modification in your code. I made a report with double pass and added the following code. wrote: private float reportHeight; private void Data1_AfterPrint(object sender, …
-
Hai, I have worked around the problem. Please reply is there any other way of doing this. 1. I have created two reports billbase, billPrint. 2. In billbase, I created a public method called GetRows in which I pass the number of rows counte…
-
Thanks AlexTZ.
-
wrote: You probably forgot to connect BeforePrint event handlers to the bands. What code should I handle within the BeforePrint event handlers of the bands? I created a simple report using the report wizard and connecting to the Northwin…
-
Hi, Sorry I am new to Fast Reports.net. I recreated a report on the basis of your report. But each record prints on 1 page. How to create a report with two-pass ? P.S. I want to change the height of the page based on the number of recor…