Decoremos el arbol de navidad de FWH - Decorate the FWH tree

User avatar
anserkk
Posts: 1333
Joined: Fri Jun 13, 2008 11:04 am
Location: Kochi, India

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by anserkk »

cnavarro wrote:Dear Anser

The references to these external programs are one more feature that I have added to verify, at the moment, that the reports are valid, but are not necessary for the operation of FastReport.net.
Its operation is identical to the one you mention. A single DLL that is called from Fw.

Wow. That's a great news. It would be nice if you can share the steps involved to test this.
User avatar
AngelSalom
Posts: 727
Joined: Fri Oct 07, 2005 7:38 am
Location: Benicarló (Castellón ) - España
Contact:

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by AngelSalom »

Hola Cristóbal, ¿existe documentación de la clase TGGraphics?
Gracias!

cnavarro wrote:New method of making graphics
Class TGGraphics included in the latest version (18/03/2018) of Google.lib
Includes example and built exe

Nuevo método de realizar gráficos
Class TGGraphics incluida en la ultima version ( 18/03/2018 ) de Google.lib
Incluye ejemplo y exe construido

Image
Angel Salom
Visionwin Software - https://www.visionwin.com
------------------------------------------------------------
fwh 19.05 - harbour 3.2 - bcc 7.4
Horizon
Posts: 1323
Joined: Fri May 23, 2008 1:33 pm
Has thanked: 3 times

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by Horizon »

anserkk wrote:
cnavarro wrote:Dear Anser

The references to these external programs are one more feature that I have added to verify, at the moment, that the reports are valid, but are not necessary for the operation of FastReport.net.
Its operation is identical to the one you mention. A single DLL that is called from Fw.

Wow. That's a great news. It would be nice if you can share the steps involved to test this.


+1
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
Silvio.Falconi
Posts: 7110
Joined: Thu Oct 18, 2012 7:17 pm

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by Silvio.Falconi »

Cristobal
TDotNet ? where is it ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
cnavarro
Posts: 6555
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by cnavarro »

In lib, source not published
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
Silvio.Falconi
Posts: 7110
Joined: Thu Oct 18, 2012 7:17 pm

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by Silvio.Falconi »

i joined on slack now
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
hua
Posts: 1074
Joined: Fri Oct 28, 2005 2:27 am
Been thanked: 1 time

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by hua »

cnavarro wrote:Also, the main problem I have is that I have never used FastReport and I do not know exactly the scope it has to have and the priorities to which I must give importance in its development.


Sergey's adaptation of Fastreport is based on Fastreport 3. It's quite similar to the look and feel of this demo http://fast-report.com/pbc_download/fr4demo.exe

The strength of his version is from within his Fastreport,

i. private and public variables in [x]Harbour program can be seen
ii. From within Fastreport's script, [x]Harbour's functions can be called
iii. Array can be setup as a dataset to pass to Fastreport
iv. It has a lot of export options
Image

v. A typical code to call Sergey's Fastreport

Code: Select all | Expand


   oFrPrn:setWorkArea("fdohold", nArea) // setup dbf's in Fastreport
   oFrPrn:setWorkArea("name", select("name"))
   oFrPrn:SetResyncPair("fdohold", "name") // SET RELATION Fastreport's style
   oFrPRn:loadFromFile("dprint.fr3") // load template
   oFrPrn:setTitle("Preview-D/O") // preview's title
   oFrPrn:setIcon("logo") // logo at preview
   oFrPrn:setVariable("cStat", cStat) // passing [x]Harbour's variable to Fastreport's internal variable
   oFrPrn:showReport() // could be :prepareReport()
   oFrPrn:end()
 


vi. Maybe seeing how Sergey's structured his class is useful to you https://drive.google.com/open?id=1CwQZo ... QNL8yWI42a

HTH.
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
User avatar
cnavarro
Posts: 6555
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by cnavarro »

Dear Hua
Please put this info in slack for fastreport
https://join.slack.com/t/fwfastnet/shar ... aFuGFjXQ5g
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
karinha
Posts: 7907
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil
Been thanked: 3 times
Contact:

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by karinha »

Reiterar nuevamente nuestro agradecimiento a Cristóbal por sus grandes contribuciones.

+1

Regardfs, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
cnavarro
Posts: 6555
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by cnavarro »

Gracias Joao, y gracias a ti también por todo lo que has hecho y haces por nuestra comunidad
Un abrazo
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
mgsoft
Posts: 422
Joined: Mon Aug 17, 2009 12:18 pm
Location: España

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by mgsoft »

Muy buenas Cristobal, te escribo para preguntarte cómo va el proceso de Fastreport y agradecerte una vez más tus contribuciones.

Un saludo
Saludos,

Eduardo
Boby6Muertos
Posts: 10
Joined: Fri Jun 20, 2008 1:14 am
Location: México
Contact:

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by Boby6Muertos »

Esta muy Interesante el tema del consumo de FAstReport Net, yo tenía un desarrollo a 32 con la dll y e frg que permitía el uso , pero la librería es a 32 y estoy teniendo problemas para montar ahora que estoy migrando a 64, me podrías apoyar para el tema del uso del FastReport Net?.

De antemano Gracias
User avatar
cnavarro
Posts: 6555
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by cnavarro »

mgsoft wrote:Muy buenas Cristobal, te escribo para preguntarte cómo va el proceso de Fastreport y agradecerte una vez más tus contribuciones.

Un saludo
Hay un canal de discord:
https://discord.gg/4dSGR87v
PReéntate y pon tu mensaje
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
cnavarro
Posts: 6555
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by cnavarro »

Boby6Muertos wrote:Esta muy Interesante el tema del consumo de FAstReport Net, yo tenía un desarrollo a 32 con la dll y e frg que permitía el uso , pero la librería es a 32 y estoy teniendo problemas para montar ahora que estoy migrando a 64, me podrías apoyar para el tema del uso del FastReport Net?.

De antemano Gracias
Hay un canal de discord:
https://discord.gg/4dSGR87v
Peeéntate y pon tu mensaje
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
richard-service
Posts: 806
Joined: Tue Oct 16, 2007 8:57 am
Location: New Taipei City, Taiwan
Contact:

Re: Decoremos el arbol de navidad de FWH - Decorate the FWH tree

Post by richard-service »

cnavarro wrote:
Boby6Muertos wrote:Esta muy Interesante el tema del consumo de FAstReport Net, yo tenía un desarrollo a 32 con la dll y e frg que permitía el uso , pero la librería es a 32 y estoy teniendo problemas para montar ahora que estoy migrando a 64, me podrías apoyar para el tema del uso del FastReport Net?.

De antemano Gracias
Hay un canal de discord:
https://discord.gg/4dSGR87v
Peeéntate y pon tu mensaje
FastReport Net discount price.
https://www.fast-report.com/summer-2024-promo

Any News for FWH?
Best Regards,

Richard

Harbour 3.2.0dev (r2402101027) => Borland C++ v7.7 32bit
MySQL v8.0 /ADS v10
Harbour 3.2.0dev (r2011030937) => Borland C++ v7.4 64bit
Post Reply