serifelsen
serifelsen
About
- Username
- serifelsen
- Location
- Unknown
- Joined
- Visits
- 2
- Last Active
- Roles
- Members
Comments
-
StartNewPage property can help You
-
For save report as PDF file I wrote: string tempFolder = Path.GetTempPath() + "_" + Guid.NewGuid().ToString(); string filepath = tempFolder + "\\Result.pdf"; if (!Directory.Exists(tempFolder)) { Directory.CreateDirectory(tempFolder); } …
-
AlexTZ wrote: » Hello, Visible is not considered while docking the objects. Either set the Width of such objects to 0, or use the Table object where you can hide the entire column. first of all, thanks for the reply I have used table …
-
http://www.fast-report.com/en/forum/?p=/discussion/6787 wrote: http://www.fast-report.com/en/forum/?p=/discussion/6787 [/url] Thanks working
-
serifelsen wrote: » Hi i want to remove "Edit page" button in the preview mode because this button allows user to edit data. (FastReport .NET) thanks in advance i found the solution FastReport.Utils.Config.PreviewSettings.Buttons = P…
-
serifelsen wrote: » Hi I need to manually export report data to excel because fast report does not provide "Export only data". I need to export only data (without report title, page header only once) So, first i need to get "Data source" of …
-
serifelsen wrote: » Hi, I have seen that my report throws oracle exception in some machines , so I analysed my PL/SQL and saw that problem occurs in "TO_NUMBER" function. (if i remove it exception does not occur) However, same report works f…
-
Mick.pl wrote: » Try do it in a few steps: 1. Add TfrxADOQuery (or similar that you use) to Data tab; let's say its name will be qrySucces 2. Insert SQL statemanet alter session set NLS_NUMERIC_CHARACTERS=',.' in this query 3. Use qrySucces.…
-
serifelsen wrote: » serifelsen wrote: » Check Oracle provider's version on both machines They are same: 11.2.0.2.0 how can I set NLS_NUMERIC_CHARACTERS in the session? I know that "alter session set NLS_NUMERIC_CHARACTERS=',.…
-
gpi wrote: » gpi wrote: » and saw that problem occurs in "TO_NUMBER" function What field type in "TO_NUMBER" function? Is regional settings same? It is string which contains number. I have changed decimal separator in the PC, st…
-
gpi wrote: » Check Oracle provider's version on both machines They are same: 11.2.0.2.0
-
gordk wrote: » read the user manual chapter on script printing the group's sum total in the groups header. use the same principle Thanks gordk. Solution is: private void Child1_BeforePrint(object sender, EventArgs e) { // Get data…
-
gordk wrote: » make report 2 pass, gather values on first pass sub into objects on second pass. see the main demo totals in header report for hoe to do it. sorry i didn't get your idea. can you explain it in an other way?
-
problem solved. As connection type I chose "Microsoft OLE DB Provider for Oracle". Instead of that I use "Oracle Provider for OLE DB" (Provided by Oracle)
-
I have written those characters in the Text object and everything is fine. By the way I am using FastReport.NET 4 and developing in visual studio 2008.