
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
sounds like inner join, filter it with query, only valid records were being sent to the report
-
i think it's difficult to port all features to .net core, especially with feature based on system.drawing or system.drawing.2d, it's windows GDI specific
-
demo version prints only 5 pages without styles? fastreport.core is in the early stage, not mature enough
-
a simple way to update frx file, in fastreport.report namespace, there is a method : void Save(string fileName) after loading frx into memory, modify it by code, then save
-
just mssql data connection.
-
are you using mssql connection embedded in frx file? delete it! remember, report designer uses .net framework, and your web app uses .net standard (core) library
-
are you using mssql connection embedded in frx file? delete it!
-
code please.... .net core and .net framework use same syntax string connection = @"...."; using (SqlConnection cnn = new SqlConnection(connection)) { Â Â Â Â cnn.Open(); Â Â Â Â using (SqlCommand cmd = new SqlCommand("SELECT * FROM Data", cnn)) Â …
-
have you solved 0.0012999..... ? if not, i think there is something wrong in your data you may check with creating 'running sum' with code. use currency formatting only if solved
-
printer machine has margin limitation, professional software like ms excel or adobe photoshop can print at margin top-right-bottom-left = 0, but dotnet printer can not. about margin limitation, read printer whitepaper
-
have you refreshed datasource? check your frx file with notepad: make sure debit and credit with 'System.Decimal' datatype                                                          …
-
i think the documentation quite clear, do not change the connection string via parameter. // in my application FastReport.Report report = new FastReport.Report(); report.Preview = previewControl1;Â Â Â Â Â Â Â Â Â Â Â Â report.Load(@"d:\untitled.…
-
because you send connection string via parameter, therefore, you must open with code, not designer
-
you didnt read documentation: section "Passing own connection string"   public class ReportScript   {     private void _StartReport(object sender, EventArgs e)     {       String connection = Report.GetParameterValue("Connection…
-
1. add a reference : FastReport.Bars.dll (menu Report=>Options=Script) 2. add dialog form, with name = Form1 3. in report script, create a wrapper for devcomponent, for example : button   public class ReportScript   {     private void F…
-
yes, you can, but limited to the version embedded in fastreport for example, in window forms: Â Â Â Â Â Â Â Â private void InitializeComponent() Â Â Â Â Â Â Â Â { Â Â Â Â Â Â Â Â Â Â Â Â ... Â Â Â Â Â Â Â Â Â Â Â Â this.DotNetBarButton = new F…
-
do not use floating point (float and double datatypes) for accounting records! msaccess => use currency datatype mssql => use money datatype why? https://stackoverflow.com/questions/2144627...access-database http://csharpindepth…
-
did you try to scan qrcode in https://www.fast-report.com/en/blog/103/show/ vcard editor? learn from https://github.com/Sterc/vCard-generator/bl...ntact-vcard.php
-
1. are you calling msaccess db from fastreport directly? or push data from .net code to fastreport? 2. what datatype you're using? float, double, decimal? float is less precision 3. make sure that you've 2 decimal places in the msaccess data, what…
-
it is not limited to one resource, basically, passing image to fastreport as parameter:             // create parameter             FastReport.Data.Parameter parameter = new FastReport.Data.Parameter();           …
-
https://mega.nz/#!BodhAQiY!e5Xpmy6W...xbHifOayjNqMCmg
-
databinding with razor
-
see attachment
-
Mohamed Gahlan wrote: » we don't need online designer we need to work locally using fast report designer in our local machine. online designer is the one and only report designer in .net core i think you've mistaken between .net core and…
-
https://www.fast-report.com/en/blog/196/show/
-
that link show you how to use fastreport in net core. probably you should google with keyword = 'call-method-in-class-from-razor"
-
https://www.fast-report.com/en/blog/197/show/
-
https://mega.nz/#!Z50wjSZC!GdAffsV6...LxlSHA1xGxOnIaA i dont have a license to test online designer, try it yourself, dont forget to set webreportmode = designer
-
https://mega.nz/#!Z50wjSZC!GdAffsV6...LxlSHA1xGxOnIaA
-
in system.web node, add: in system.webserver node, add: FastReport.Export.axd, not FastReport.Export.aspx