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

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

Postby Silvio.Falconi » Sun Feb 23, 2014 8:58 pm

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
User avatar
Silvio.Falconi
 
Posts: 6865
Joined: Thu Oct 18, 2012 7:17 pm

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

Postby horacio » Mon Feb 24, 2014 12:58 pm

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

Code: Select all  Expand view

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

Pero me dice que no existe, si existe esta
Code: Select all  Expand view

 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
horacio
 
Posts: 1358
Joined: Wed Jun 21, 2006 12:39 am
Location: Capital Federal Argentina

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

Postby cnavarro » Mon Feb 24, 2014 1:32 pm

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
User avatar
cnavarro
 
Posts: 6504
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

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

Postby horacio » Mon Feb 24, 2014 2:16 pm

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

Code: Select all  Expand view

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
horacio
 
Posts: 1358
Joined: Wed Jun 21, 2006 12:39 am
Location: Capital Federal Argentina

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

Postby Silvio.Falconi » Tue Feb 25, 2014 8:06 am

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
User avatar
Silvio.Falconi
 
Posts: 6865
Joined: Thu Oct 18, 2012 7:17 pm

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

Postby horacio » Tue Feb 25, 2014 10:38 am

Silvio, estoy utilizando Harbour, no xHarbour.

Saludos
horacio
 
Posts: 1358
Joined: Wed Jun 21, 2006 12:39 am
Location: Capital Federal Argentina

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

Postby Silvio.Falconi » Tue Feb 25, 2014 6:21 pm

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: 6865
Joined: Thu Oct 18, 2012 7:17 pm

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

Postby Silvio.Falconi » Thu Feb 27, 2014 5:18 pm

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
Silvio.Falconi
 
Posts: 6865
Joined: Thu Oct 18, 2012 7:17 pm

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

Postby QAZWSX2K » Sun Mar 16, 2014 1:27 pm

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
User avatar
QAZWSX2K
 
Posts: 363
Joined: Tue Oct 25, 2005 7:06 pm
Location: Bogota - Caracas

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

Postby elvira » Tue May 20, 2014 1:52 pm

Hola Amigos,

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

Muy agradecida :D :D
elvira
 
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

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

Postby Antonio Linares » Tue May 20, 2014 7:48 pm

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
User avatar
Antonio Linares
Site Admin
 
Posts: 41436
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

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

Postby elvira » Wed May 21, 2014 8:19 am

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
elvira
 
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

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

Postby Sebastián Almirón » Thu May 22, 2014 3:11 pm

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
Sebastián Almirón
 
Posts: 157
Joined: Mon Dec 12, 2005 9:56 am
Location: Moralzarzal - Spain

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

Postby sysctrl2 » Sat May 24, 2014 2:41 am

Animo Sebastian,

saludos.
Cesar Cortes Cruz
SysCtrl Software
Mexico

' Sin +- FWH es mejor "
User avatar
sysctrl2
 
Posts: 975
Joined: Mon Feb 05, 2007 7:15 pm

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

Postby Jairo Barbosa » Sun May 25, 2014 9:12 pm

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
User avatar
Jairo Barbosa
 
Posts: 194
Joined: Fri Jan 23, 2009 2:50 am
Location: Cali Valle Colombia

PreviousNext

Return to FiveWin para Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 38 guests