MyRpt - Diseñador de Reportings - En desarrollo :-)

User avatar
Silvio.Falconi
Posts: 7141
Joined: Thu Oct 18, 2012 7:17 pm
Been thanked: 1 time

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Silvio.Falconi »

wich ?
if you compile repdemo you have all samples to run !!!!

the last one problems was on w7 not run ok , because the says are moved . Now with Sebastian Changes all run good!!!

I not Know how make the labels ...
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
horacio
Posts: 1364
Joined: Wed Jun 21, 2006 12:39 am
Location: Capital Federal Argentina

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by horacio »

Un par de preguntas, en el código de repdemo.prg se invoca esta función

Code: Select all | Expand


oHrb := HB_CompileBuf( HB_ARGV( 0 ), cPrg, "-n" )
 

Pero me dice que no existe, si existe esta

Code: Select all | Expand


 oHrb = HB_CompileFromBuf( Scripts->Code, "-n", "-Ic:\fwh1204\include", "-Ic:\harbour_bcc582\include" )
 

Es está última la que tendría que ir ? Y de paso, en que librería de harbour se encuentra esta función ???
Gracias de antemano

Saludos
User avatar
cnavarro
Posts: 6557
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by cnavarro »

Horacio

C:\Harbour\harb20131007\bin>hbmk2 -find hb_compileBuf
-lhbcplr (installed):
hb_compileBuf()



Con este comando te dice que está en la libreria hbcplr
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
horacio
Posts: 1364
Joined: Wed Jun 21, 2006 12:39 am
Location: Capital Federal Argentina

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by horacio »

Gracias Cristobal por tu respuesta, pero al añadirle esta librería obtengo estos errores de compilación

Code: Select all | Expand


Executando: ILINK32 @B32.BC
Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland
Error: Unresolved external '_hb_pp_new' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbcomp
Error: Unresolved external '_hb_pp_tokenToString' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|complex
Error: Unresolved external '_hb_pp_tokenBlockString' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|complex
Error: Unresolved external '_hb_pp_tokenUpper' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|complex
Error: Unresolved external '_hb_pp_tokenNextExp' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|complex
Error: Unresolved external '_hb_pp_tokenGet' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|complex
Error: Unresolved external '_hb_pp_free' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbcomp
Error: Unresolved external '_hb_pp_addSearchPath' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|cmdcheck
Error: Unresolved external '_hb_pp_addDefine' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|cmdcheck
Error: Unresolved external '_hb_pp_delDefine' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|cmdcheck
Error: Unresolved external '_hb_pp_line' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_fileName' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_init' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_setIncFunc' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_setStdRules' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_initDynDefines' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_readRules' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_setStdBase' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|ppcomp
Error: Unresolved external '_hb_pp_eof' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|harboury
Error: Unresolved external '_hb_pp_reset' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbmain
Error: Unresolved external '_hb_pp_inBuffer' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbmain
Error: Unresolved external '_hb_pp_inFile' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbmain
Error: Unresolved external '_hb_pp_traceFile' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbmain
Error: Unresolved external '_hb_pp_outFile' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbmain
Error: Unresolved external '_hb_pp_lineTot' referenced from C:\HARBOUR_BCC582\LIB\HBCPLR.LIB|hbmain
 


Saludos
User avatar
Silvio.Falconi
Posts: 7141
Joined: Thu Oct 18, 2012 7:17 pm
Been thanked: 1 time

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Silvio.Falconi »

the function run only with Harbour
not run with xharbour !!!
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
horacio
Posts: 1364
Joined: Wed Jun 21, 2006 12:39 am
Location: Capital Federal Argentina

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by horacio »

Silvio, estoy utilizando Harbour, no xHarbour.

Saludos
User avatar
Silvio.Falconi
Posts: 7141
Joined: Thu Oct 18, 2012 7:17 pm
Been thanked: 1 time

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Silvio.Falconi »

Horacio with Harbour run good
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
Silvio.Falconi
Posts: 7141
Joined: Thu Oct 18, 2012 7:17 pm
Been thanked: 1 time

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Silvio.Falconi »

Charles,
can help us to create Labels with MyRep ?

I thinked to create a new data on INI file as Label= Yes or No

If the label is Yes the procedure must read the form of the labels

::nLblHeight Label Height
::nLblWidth Label Width
:nLblOnLine Lables for line
::nLblAtcol Labels for column
:nLblHSep Horizontal separation
::nLblVSep Vertical separation

::lGrid if there is Grid
::nPenGrid Pen for grid
::lShadow shadow labels

or we can create a file as INI with some template of labels as

7022=3,5|6,4|3|2|2|2


for the command to create labels we can use the Labels Class


LABEL ::oLabel ;
SIZE ::nLblWidth, ::nLblHeight ;
SEPARATORS ::nLblHSep, ::nLblVSep ;
ON LINE ::nLblOnLine ;
PEN oPen1 ;
FILE "LABEL.PRN" ;
TO FILE "LABEL.TXT" ;
CAPTION ::cTitulo1 ;
FONT ::oFont3, ::oFont2, ::oFont1

LBLITEM AT ::nLblAtcol DATA ..... FONT 2


LblAddItem( ::nLblAtcol,;
{bCampo(::aCampos,i)},; //fiels
::aWidth[i],; // width
{},; //picture
{||1},; // font
,;
,;
::lshadow,; //shadow
::lgrid ) //lgrid

END LABEL ::oLabel




this is only an Idea

I believe it can be done on My Rep

Perhaps we must change the the show of the paper but I notKnow how make it

if the MyRep have the labels My rep can be complete !!
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
QAZWSX2K
Posts: 364
Joined: Tue Oct 25, 2005 7:06 pm
Location: Bogota - Caracas

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by QAZWSX2K »

saludos, y al fin hay una version estable en 1 solo prg?
Software especializado para oficinas contables con grandes volumenes de Informacion
Impresion de todos los formularios del Seniat, Dian

alex_patino74@hotmail.com
whatsapp 57+3214777217
elvira
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by elvira »

Hola Amigos,

¿Hay algún avance de este tema tan interesante?.

Muy agradecida :D :D
User avatar
Antonio Linares
Site Admin
Posts: 42553
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 80 times
Contact:

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Antonio Linares »

Elvira,

Carles me comentó que con la experiencia adquirida construyendo MyRpt se sentía capaz de desarrollar uno mucho más potente y completo, pero eso es algo que ya depende de Carles, del tiempo que tenga para dedicarle a ese proyecto, etc.
regards, saludos

Antonio Linares
www.fivetechsoft.com
elvira
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by elvira »

Antonio,

Muchas gracias por la info.

Sería estupendo tener este producto en Fivewin, porque FastReport para Harbour fue descontinuado como sabes tras el fallecimiento de Sergey.

Sebas Almirón también estaba trabajando sobre ello, ¿se sabe algo?.

Mil gracias :D
User avatar
Sebastián Almirón
Posts: 159
Joined: Mon Dec 12, 2005 9:56 am
Location: Moralzarzal - Spain
Been thanked: 1 time

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Sebastián Almirón »

Hola,

Estoy en ello, lo tengo bastante avanzado, pero por falta de tiempo me quedan aun por solucionar algunos problemas que me he encontrado, sobre todo cuando no se utiliza Preview, pero espero en breve poder dejar una nueva versión más estable.

Saludos
User avatar
sysctrl2
Posts: 1050
Joined: Mon Feb 05, 2007 7:15 pm
Has thanked: 6 times
Been thanked: 2 times
Contact:

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by sysctrl2 »

Animo Sebastian,

saludos.
Cesar Cortes Cruz
SysCtrl Software
Mexico

' Sin +- FWH es mejor "
User avatar
Jairo Barbosa
Posts: 194
Joined: Fri Jan 23, 2009 2:50 am
Location: Cali Valle Colombia
Contact:

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Post by Jairo Barbosa »

Esto dos documentos se pueden decir que tienen un presentacion elegante
uno es desarrolado con el reporteador EasyReport y el otro es desarrolado con Myrpt

Image
Image

Gracias Carles y Almiron
que tengan un exitoso Final
Post Reply