
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
wrote: 1. How I can bind the given code on Web Viewer Export/Save options/buttons. Are you suggesting to create another button and write this Code. yes, create another button and assign a function, you can place that button into built-in tool…
-
Set height = 0; using (FastReport.Report rpt = new FastReport.Report()) {Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â rpt.Load(HttpContext.Current.Server.MapPath("~/App_Data/rptLdg.frx")); Â Â Â Â rpt.Re…
-
i think the problem lies on dotnet garbage collector. the same problem happens on latest release of fastreport mono (not 2014 release). [img]style_emoticons/<#EMO_DIR#>/mad.gif" style="vertical-align:middle" emoid="" border="0" alt="mad.gif" …
-
just for curiosity, do you put image as watermark or picture in overlay section? a red cross with dimension of page size.
-
i forgot to explain why, in my case, total pages didnt show zero, i used "Page [Page#] of [TotalPages#]", note: there is additional #, use built-in progress window and single-pass report from documentation: TotalPages# Total number of pages i…
-
i tried to cancel single-pass report, it showed total pages only 35 (out of 100 pages), not zero as you said. have you tried cancelling double-pass report?
-
using class (pre-compiled) instead of frx file is recommended for performance. frx file is loaded at runtime and compiled at runtime, performance will suffer. but, the steps are not simple. First of first, you need datasource to design a report,…
-
http://madskristensen.net/post/fix-for-uncompressed-js-files
-
What about this? I use fastreport demo to play with. Replace C:\Program Files\FastReports\FastReport.Net Trial\Demos\Reports\Simple List.frx with modified version note: float b = (29.7F - 2.15F - 1F - 1F - 0.2F) * 37.8F - a; 29.7F = A4 paper hei…
-
use script for the last resort. i made a correction on your frx file, take a look at it. Note: 1. quick and dirty code, not tested, i don't have data to play with, hope you get the idea. 2. i do page calculation => A4 = 29.7cm and convert i…
-
Time to learn : https://docs.microsoft.com/en-us/aspnet/core/migration/mvc https://docs.microsoft.com/en-us/aspnet/cor...igration/webapi
-
wrote: the Page Footers don't seem to print. I do have Printable set to True. Could you attach your frx file? wrote: Also, I have one data band that I would like to stretch to fill the unused space. It's actually an area for notes. I…
-
Do not use windows form designer, you must manually create fastreport component. public partial class Form1 : Form { Â Â Â Â private FastReport.Preview.PreviewControl previewControl1; Â Â Â Â private FastReport.Report report; Â Â Â Â public Form1…
-
as i said before, cells are printed from left to right. if you want to highlight first cell when you are at second cell, it wont work because first cell already printed. so, in your case, switch the column, target | actual
-
use script, i modified sample from fastreport by adding Cell9_BeforePrint event, look at attached picture. note : in matrix report, cell is printed from left to right (to understand that, uncomment 'MessageBox' from script below). in your case, …
-
Read this : https://blogs.msdn.microsoft.com/tmarq/2007...-preconditions/ IIS uses http handlers from both and . The solution is add precondition: integratedMode, therefore, if you use 'classic mode', IIS will not use handler with preconditi…
-
sounds like you forgot to attach the code to Report Start Event
-
have you done this?
-
Load datasource from your .net project, then design the report. // IF YOU WANT TO REUSE PREVIEWCONTROL1 FOR ANOTHER REPORT, DON'T FORGET THIS CODE if (PreviewControl1.Report != null) { Â Â Â Â PreviewControl1.Clear(); Â Â Â Â PreviewControl1.Repor…
-
                using (SqlConnection cnn = new SqlConnection(yourSQLConnectionString))                 {                     cnn.Open();                     using (SqlCommand c…
-
Interesting.....are you using Web Farm and Web Garden architectures? from documentation : To use the FastReport report generator in a multi-server (Web Farm) or multi-processor (Web Garden) architecture there are additional requirements for cre…
-
Dont know if microsoft has solved this issue : http://superuser.com/questions/1117469/ext...015-u3-net-core
-
double check the IIS installation features from the control panel (Programs and Features -> Turn Windows Features on and off -> Internet Information Services -> World Wide Web Services -> Application Development Features). and appl…
-
You may be a victim of software counterfeiting
-
the mechanism of fastreport web is : 1. returning html which contains anitmated progress picture and a syntax to call webservice via ajax/xhr script, to enable calling webservice, you need to attach : (note: MVC Razor style) @WebReportGlobals.Scr…
-
my opinion : please read forum terms and rules
-
This question is indeed subjective and opinion-based
-
you need to decode html entities (http://www.w3schools.com/html/html_entities.asp), quite complicated, i'll send you private message
-
Did you try to set 'HtmlTags=true' property in textobject?
-
there are two queries, one for report and one for authentication, if authenticated, you can pass parameter to fastreport