
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
definitely a bug, but there is a workaround: inject basepath into html/script which is rendered by fastreport https://mega.nz/#!Z50wjSZC!GdAffsV6...LxlSHA1xGxOnIaA
-
i think the best approach is using pages (page #1, #2, #3) no headache with script and coloring for each copy
-
see attachment
-
500 reports??? are you using background thread? maybe cross thread problem? try to shut-off progress window: FastReport.Utils.Config.ReportSettings.ShowProgress = false;
-
use script   public class ReportScript   {     int diff;         private void Text1_BeforePrint(object sender, EventArgs e)     {       int value = (int) Report.GetColumnValue("Orders.OrderID");       if (diff <…
-
textobject has a property called 'htmltags', set it to true. or if you're not satisfied, use demo version of sautinsoft.htmltortf SautinSoft.HtmlToRtf htmlToRtf = new SautinSoft.HtmlToRtf(); string trial = htmlToRtf.ConvertString("This is a …
-
use richtext object and try this library: https://www.sautinsoft.com/products/html-to...tnet-csharp.php
-
make sure drive c is allowed to create file (folder security in windows o/s), try another drive, d:\xxx.pdf
-
https://msdn.microsoft.com/en-us/library/sy...(v=vs.110).aspx
-
there is 'trim' property, set it to false. i've checked with Aspose BarCodeReader and
-
http://www.idautomation.com/kb/fonts-space.html
-
string parameter = Report.GetParameterValue("ParameterName").ToString(); if (parameter.Equals(""))
-
try to code: report.load before report.registerdata
-
for complex calculation, use script as custom function namespace FastReport {   public class ReportScript   {     public double CustomFunction(double a, double b, double c)     {                        return …
-
here is working example (SPA = single page application) https://mega.nz/#!9odxwYbR!ytMwBSz7...Mi1WxzdpRq6wBYY
-
here is working example https://mega.nz/#!BodhAQiY!e5Xpmy6W...xbHifOayjNqMCmg
-
try to play with 'keeptogether', 'keepdetail', 'canbreak' properties, see FRNetUserManual-en.pdf page 77
-
pdf export using HttpHandler html page     var btnPDF = function (event) {         window.open("ReportPDF.ashx?ID=COA", "_blank");     } web.config <?xml version="1.0"?>                       …
-
i copied the code from webapi project. https://docs.microsoft.com/en-us/aspnet/web.../action-results http://www.c-sharpcorner.com/UploadFile/03...e-in-webapi166/ code in html page     var buttonPDF = function (event) {         …
-
Dim response As New HttpResponseMessage(HttpStatusCode.OK) Using report As New FastReport.Report     report.Load(frxFile)     report.Report.RegisterData(dataTable, dataTable.TableName)     report.Prepare()     Using ms As New System…
-
            FastReport.Report report = new FastReport.Report();             report.Load("TemplateRevision0.frx");             report.RegisterData(Root, "Root", 4);             // to reflect changes in …
-
        private FastReport.Report report;         public Form1()         {             InitializeComponent();         }         private void Form1_Load(object sender, EventArgs e)        …
-
use 'Report.GetColumnValue' function : decimal value = (decimal)Report.GetColumnValue("QUOT_CC.TOT_DISC"); if (value == 0) { Â Â Text16.Visible = false; Â Â Text16.TextColor = Color.White; } else { Â Â Text16.Visible = true; Â Â Text16.TextCol…
-
Domi wrote: » If you see the message, I use Jet.OLEDB.4.0 which works fine on the *same* PC in my current Visual Studio C# application therefore, I don't know why it's not working in the Designer.exe i bet you compiled c# app with 'prefer …
-
32bit string connectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=order.mdb"; 64bit (runtime: access 2010) string connectionString = "PROVIDER=Microsoft.ACE.OLEDB.12.0;Data Source=order.mdb";
-
use script, pass parameter "EnableDialog" if you run fastreport from system namespace FastReport {   public class ReportScript   {     private void _StartReport(object sender, EventArgs e)     {       string enableDialogForm = (s…
-
try the demo, read documentation, what you've done, what you've tried, be specific with problem happened
-
viewer.exe opens prepared report (fpx file), means that report template (frx file) already filled with data from database and ready to preview or print frx file (report template), if you opened with designer.exe, there are 2 models : 1. pull dat…
-
wrote: any idea about how to change designer report scaling ? (i want smaller scaling because i want controls to be aligned/resized correctly) sounds hacky, look at fr demo : customdesigner. and change to : private void Form1_Load(object…
-
wrote: I am trying to change cell width and cell height using its properties but there is no effects of changing these properties example: report object thru code: FastReport.CellularTextObject CellularText3 = new FastReport.CellularTextObj…