alman
alman
About
- Username
- alman
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
hieu wrote: » mesg " system.darwing.graphics has no constructors defined ! You can catch the event and take Graphics object from the event. Something like this: Â Â Â Â Â Â Â Â protected override void OnPaint(PaintEventArgs e) Â Â Â Â Â …
-
It will be possible in next build. Fixes just sent to repository. Two properties were added to PDFExport class - "DefaultZoom" and "DefaultPage". DefaultPage is integer value which sets default page. Default zoom is an enumeration. Here are valu…
-
tampasounds wrote: » Is it possible to export a report as html into the email "body" of Outlook/outlook express ? We do not support such feature at this time.
-
Sorry for response delay. Your patch was accepted and sent to repository. Next build will include your patch.
-
Dear WOW, sorry for response delay. Fixes just sent to repository and new version will be available in next build. You can see result of the export in attached archive. WOW wrote: » Dear Alex: I got an error when Excel file whitch Expor…
-
Sorry for response delay. It seems that some dll are missing. Here is useful link: http://www.mono-project.com/DllNotFoundException We have tested FR.Mono under Suse Linux , Ubuntu Linux, Mac OS X and Windows and we cannot reproduce that erro…
-
I think that you have installed Framework 4.0, but you should install Framework 2.0 too.
-
banita wrote: » anyone successful install anydac component for fastreport 4? there is: requires VCL, VCLDB, FastReport, < dont find this !!! xmlrtl, AnyDAC_Phys_D14, AnyDAC_ComI_D14, AnyDAC_Comp_D14; sory for me english …
-
        private TfrxADOTableClass        master_table;         private TfrxADOTableClass        detail_table;         master_table = new TfrxADOTableClass();         detail_table = new TfrxADOTableCl…
-
Redistributable DLL does not include designer code. There is only way - redistribute development dll without activation. After 15 day of full functionality designer will be switched to limited mode that allows edit existing reports, but does not a…
-
I think that there is no problem in case of manual registration the redistributable DLL by means of regsvr32.exe fastreport3.dll in IIS accessible directory.
-
Pobovskies wrote: » But the problem is when I want to open it in client machines, there is an error. So, what do I have to install into my client's machine first to be able to view the report? Is there a run-time version or some things like that? …
-
There is no a report template (FR3 file) load into report object Try following code: Public Sub ReportLoad() On Error GoTo ReportLoadErr Dim query1_obj As TfrxADOQuery Dim query2_obj As TfrxADOQuery Dim query3_obj As TfrxADOQuery Dim database_o…
-
Copy fastreport3.dll into IIS accessible directory (under C:\Intepub directory) and register it manually by regsvr32.exe fastreport3.dll
-
Pobovskies wrote: » In FR Studio, how can I create an object via Microsoft Visual Studio C# 2005? For example, I can create new variable for FR from VS c#. I would like to know how to create an object such as charts, lines and set their propertie…
-
Redistributable version of FastReport.DLL does not include Designer code and it has not copy protection. There is no way to run designer on redistributable version. Anyway, you may redistribute develpment version without registration. In this ca…
-
FrxDataTable is a wrapper on top of .NET DataSet. This wrapper written in C#. I suggest to use a DataPlugin instead of FrxDataTable wrapper. You may found plugin example in "C:\Program Files\FastReports\FastReport Studio\Examples\VisualC#.NET…
-
Website1 example may not work because IIS server does not have access to "C:\Program Files" directory. To make this example work you must copy Fastreport3.dll into "C:/Inetpub" directory and register it with Regsvr32.exe. Anyway, could you descr…
-
We are sorry, there are limitions on using FastReport with VB Script. I can suggest to call FastReport.exe with following arguments. For example: "C:\Program Files\FastReports\FastReport Studio\Bin\FastReport.exe" list.fr3 /export=list.pdf S…
-
fdavood wrote: » 1.The IIS is working just fine and I am getting services from different application. Why I am getting the above Error message while the IIS is working fine and I have also registered the fastreport3.dll ? The problem is d…
-
We are using ADO engine as default engine to access to databases. There are two ways to access to database - built-in into report ADO objects or dynamically created ADO objects. There are 3 objects: TfrxADODatabase is an object that provides …
-
Could you provide a source code? This problem may happen if some resources are not released at the time of program termination.
-
Some problems may arise in case of Windows Vista UAC (User Access Control) is disabled on installation stage. Even you don't need UAC, you must enable it on installation procedure. You may disable it after installation procedure. Also you can re…
-
Alfredo wrote: » I need to generate graphs by code, but there are many properties that do not can modified. The size of the graph (Width,Height), the format of data (formatValue). It is necessary to create an object in particular within the Tfr…
-
natan78 wrote: » Hi I'm trying to pass a variable to my report, I have a report with one adoquery and I have this script for on the start report. ADOquery1.active:=false; ADOquery1.sql[6]:='where g.per_pk='''++'''; ADOquery1.active:=true; …
-
anithegregorian wrote: » Fast Report Studio stores all the connections that it uses in the windows registry. To have a look at it just go to : HKEY_LOCAL_MACHINE\SOFTWARE\Fast Reports\Connections and here you can see all the connections used. …
-
hirasoft wrote: » I could locate this object on designer. I placed this object on page. (It is a dot matrix report) Now I want to specify page length in lines. so in command properties of this object, I specified Chr(27) + "C" +Chr(36) and ex…
-
seshadri wrote: » I'm getting exception while dividing by zero there is a Raise Exception Function.But How to use that in Basic Script I'm using Fast Report 3 studio Plzz thow some light on this. I don't know how to catch exception…
-
ademcicek wrote: » Error HRESULT E_FAIL has been returned from a call to a COM component. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the e…
-
smching wrote: » Fastreport Studio for Microsoft Access come with a demo as below: Private Sub Form_Load() Set fr = CreateObject("FastReport.TfrxReport") If Not Left(Application.CodeProject.Path, 1) = Left(CurDir, 1) Then ChDrive Left(Applica…