
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
not supported https://stackoverflow.com/questions/378247/...-sign-pdf-files
-
1. Get list of paper sources that your default printer supports, important!!! System.Drawing.Printing.PrinterSettings printerSettings = new System.Drawing.Printing.PrinterSettings(); int selectedSource = -1; foreach (System.Drawing.Printing.PaperSou…
-
try FastReport.Report report = new FastReport.Report(); report.PrintSettings.PaperSource = (int)System.Drawing.Printing.PaperSourceKind.Upper;
-
http://www.fast-report.com/en/forum/?p=/discussion/14027
-
1. use script to create your custom function. using System; namespace FastReport {   public class ReportScript   {     public double MyCustomFunction(decimal amount, int quantity)     {       if (quantity == 0)        …
-
set text quality to anti alias
-
you can't take full control if you're using show() method. you must place previewcontrol component on your form. to convert from c# to vb, use http://converter.telerik.com
-
http://www.fast-report.com/en/forum/?p=/discussion/13992
-
it must be bug.......i tried from c# project and no problem. if you insist the wizard, use varchar datatype and defaultvalue = 2017-12-31 12:35:29.1234567 +12:15 using (SqlConnection cnn = new SqlConnection(connectionString)) { Â Â Â Â cnn.O…
-
http://sqlmag.com/sql-server/what-you-need...e-zone-function https://docs.microsoft.com/en-us/sql/t-sql/...et-transact-sql
-
use yyyy-MM-dd , just like in sql server management studio date: datetime:
-
you need 2 databands, for listA and listB. databand with source = listB gives you everything. find my last answer in https://www.fast-report.com/en/forum/index....c=14027&hl=
-
using (FastReport.Report report = new FastReport.Report()) { Â Â Â Â report.Load(@"C:\Program Files\FastReports\FastReport.Net Trial\Demos\Reports\simple list.frx"); Â Â Â Â foreach (FastReport.Base item in report.AllObjects) Â Â Â Â { Â Â Â Â Â Â Â…
-
.net application Image image = Image.FromFile(@"d:\image.jpeg"); using (FastReport.Report report = new FastReport.Report()) { Â Â Â Â report.Load(@"d:\untitled.frx"); Â Â Â Â report.SetParameterValue("Parameter", image); Â Â Â Â report.Show(true); }…
-
try to use subreport side-by-side trick....
-
since matrix object calculate data band height automatically, i guess you may try the order of the object, open and edit frx file directly with notepad, check if matrix1 is earlier than matrix2. If it doesnt work, you have to drop the side-by-side i…
-
what if you put the second matrix in child band...
-
i think you have to create custom selector by yourself. if you're using html5, take a look at http://www.jqwidgets.com/jquery-widgets-demo/
-
no problem with fastreport 2017.2
-
here is working example, replace file in C:\Program Files (x86)\FastReports\FastReport.Net Trial\Demos\Reports
-
-
no problem with your code....maybe integer color value problem??? Â Â Â Â private void ReportTitle1_BeforeLayout(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â Random random = new Random(); Â Â Â Â Â Â DataPointCollection dpc = MSChart2.Chart.S…
-
script namespace FastReport {   public class ReportScript   {     private void _StartReport(object sender, EventArgs e)     {       DataConnectionBase dcb = (Report.GetDataSource("YourDataSourceName") as TableDataSource).Connecti…
-
jquery text editor produces html, you need to convert from html to rtf at your server, then display it to fastreport. there are commercial code such as gembox.document , sautinsoft.htmltortf, https://demos.devexpress.com/MVCxRichEditDe...ent/Loa…
-
personally, i will use jquery html editor, then display it in fastreport (htmlobject) http://www.jqwidgets.com/jquery-widgets-do...ted.htm?search=
-
for richtext object, just create a document with wordpad, save it, then you may open it from fastreport richtext object
-
pdf export maybe unsupported, there is no documentation for htmlobject, i think the purpose of htmlobject is to embed full html codes in web report, according to release notes: Version 2016.4 [Core] + added new HtmlObject for using in the WebRe…
-
maybe font problem, are you using uncommon font?
-
are you using the latest version? (2017.2.x) i tried to export from code, looks fine... using (FastReport.Report report = new FastReport.Report()) { Â Â Â Â report.Load(HttpContext.Current.Server.MapPath("~/App_Data/report.frx")); Â Â Â Â repor…
-
please post the screen capture....