
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
at report script: Â Â Â Â private void _StartReport(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â string OldConnectionString = Report.Dictionary.Connections[0].ConnectionString; Â Â Â Â Â Â string newConnectionString = OldConnectionString.Replac…
-
there are 2 kind of models : 1. pull data from fastreport Yes, you can do filtering data at query level, database connection string is defined in frx file. https://www.fast-report.com/en/forum/index....tabledatasource 2. push data from deskto…
-
yes, from fr demo, mvc online designer, it will save frx file to your web folder, download the frx file and call with desktop application.         [HttpPost]         // call-back for save the designed report         public…
-
use script, event = beforeprint, look at documentation, how to get value from data source. watch out, solidfill must be created for each datarow. // FastReport.ShapeObject Shape1 = new FastReport.ShapeObject(); Shape1.Name = "Shape1"; Shape1.L…
-
change it directly with notepad, since decimalseparator property is string datatype
-
wrote: when i want to change format of new text ,in preview and result changes not affect . I don't know reason of it !? take a look at frx file, what is written? it should be Format.DecimalSeparator="/"
-
put pictureobject, set image = scanned cheque and set printable = false
-
starting from 2017.4, one of my httpmodule which is adding compression (Content-Encoding=deflate) makes fastreport not working, frrequest server returns blank... observe the httpmodule section in web.config
-
try the demo from fastreport, if they are working then there is something wrong with your datasource or layout
-
https://www.fast-report.com/en/forum/index....c=14113&hl= you also may pass object in Report.SetParameterValue for example: in your app.exe namespace AppFastReport {     public class MatrixDemo     {         public str…
-
for example, the output is attached pdf and take a look at frx file
-
why you create 2 pages, one page is enough if you want to put stamp 'continued' on the paper #2 or maybe paper #3, you can do it with script if you want to know how many pages are actually printed just before printing, use doublepass, menu 're…
-
use script, not "report from code"   public class ReportScript   {     private void Form1_Load(object sender, EventArgs e)     {       Button1.DialogResult = DialogResult.OK;       Button2.DialogResult = DialogResult.OK;  …
-
if you want to do like this, see attached picture, use overlay band and put shape or lines in there
-
probably database connection problem, try to catch data from database in report event, can you fetch the data? protected void WebReport1_StartReport(object sender, EventArgs e) Â Â Â Â Â Â Â Â { Â Â Â Â Â Â Â Â Â Â Â Â // fetch data from database …
-
MVC or webforms? have you set fastreport module in web.config
-
DateTimePicker returns datetime type, use datetime library, sorry in c#, you may convert with http://converter.telerik.com/: a. start date (reset time value to zero, just get the date portion) DateTime.Now returns 24/09/2017 23:11:05:001 DateT…
-
DateTimePicker1.Value = Date.Now.AddDays(-7)
-
wrote: I should expect 27/09/2017 23:59:00 you should do query in desktop program, before sending data to fastreport                 using (SqlConnection cnn = new SqlConnection(connectionString))             …
-
set it to vs2003 theme and dont use ribbon bar
-
important!!! do not use 'docking' private void Data3_BeforePrint(object sender, EventArgs e) {         // only use quantity column for testing         string value = (string)Report.GetColumnValue("...Replace_With_Quantity_DataSourc…
-
the word 'invisible' doesnt mean 'gone', it is still there but hidden, therefore, docking is not working welcome to the world of scripting [img]style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" al…
-
like this? https://dl.dropboxusercontent.com/1/view/aa...ultipledata.rar
-
try to use latest version of fastreport, maybe there is a glitch in your version
-
maybe you've large bitmap/picture in your report
-
i really dont get it, where is your problem, you may download a full demo about 'deserialize xml to business object' : https://dl.dropboxusercontent.com/1/view/x8...inessobject.rar it is completely from my previous answer http://www.fast-rep…
-
https://www.fast-report.com/en/forum/index....c=13871&hl=
-
font is very complex thing, missing glyph could rise a problem
-
try the latest version, maybe there is a glitch in 2017.2.1.0
-
units = millimeters script:     private void Page1_StartPage(object sender, EventArgs e)     {       // margin = 1 cm       Page1.LeftMargin = 10;     } report from code:             FastReport.ReportPage …