Re: [Gambas-user] Re port for Gambas

2009-05-12 Thread Sergio A. Hernandez
Kido,
Other nice option is to use the XSLT component.
At the beginning I was thinking in some fancy PInvoke over Kugar, but
after the email from Marc I realize that we need to keep it in the
scope of the simplest solution.
The best thing to do is to convert the mysql output to xml, then
transform to xslt without leaving Gambas. By doing this, you reduce
the need of other dependency, and can modify easily the way the report
looks using some fance css.
I apologize for pointed you guys in the wrong direction.


PS. Recently, I recommend to Ricky (the Doctor) to create directly the
HTML file from some parsed data because at that time I was using to
write some XML example for the Gambas book I'm writing. Honestly, I
must admit that I was not analyzing the issue correctly just because I
wanted to 'kill two birds with one stone'.

On Tue, May 12, 2009 at 6:29 AM, Marc Miralles m...@monalternatiu.com wrote:
 yes Sergio, it works perfectly on gambas. I Think at this moment is a
 good solution for make reports in gambas

 I test this in gambas 2.12

 Here the code in gambas, it's very easy:

 PUBLIC FUNCTION kugar
    DIM flname AS String
    DIM hfile AS file

    flname = User.home  /gambas//projectname//reports/test.kdf
    IF Exist(flname) THEN KILL flname
      OPEN flname FOR WRITE CREATE AS #hFile
        'Make Kugar file data in XML
        PRINT #hfile, ?xml version='1.0' encoding='UTF-8'?
        PRINT #hfile, 
        PRINT #hfile, !DOCTYPE KugarData [
        PRINT #hfile,     !ELEMENT KugarData (Row* )
        PRINT #hfile,     !ATTLIST KugarData
        PRINT #hfile,         Template CDATA #REQUIRED
        PRINT #hfile, 
        PRINT #hfile,     !ELEMENT Row EMPTY
        PRINT #hfile,     !ATTLIST Row
        PRINT #hfile,         level CDATA #REQUIRED
        PRINT #hfile,         title CDATA #REQUIRED
        PRINT #hfile,         version CDATA #REQUIRED
        PRINT #hfile,         platform CDATA #REQUIRED
        PRINT #hfile,         copies CDATA #REQUIRED
        PRINT #hfile, ]
        PRINT #hfile, 
          ' here you can replace next lines for a  for each in and
 replace fields with mysq result and add some rows
        PRINT #hfile, KugarData Template='test.ktf'
        PRINT #hfile,     Row level= '0' title= 'BRU' version= '15.0'
 platform= 'x86' copies= '1'/
        PRINT #hfile,     Row level= '0' title= 'Caldera Open Linux'
 version= '2.2' platform= 'x86' copies= '3'/
        PRINT #hfile, /KugarData
      CLOSE #hFile
    Message.Info(File Created, OK)
    SHELL kugar   flname
 END



 En/na Sergio A. Hernandez ha escrit:
 Marc,
 I get confused, I made work Kugar work under C++ QT, but I'm not quite
 sure I can on Gambas.
 The best way with Gambas is, just like you said, create a HTML
 customized report. But is a time consuming project that probably Kido
 is not going to use anymore.
 If you can make work Kugar under gambas please let us know.

 On Fri, May 8, 2009 at 7:36 AM, Marc Miralles m...@monalternatiu.com wrote:

 Dear Kido Zu

 I think this sample and guide  in docs.kde is good for you. In this
 moment I haven't a sample in gambas but I think it's a good info for
 beginning.

 http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make
 template)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make
 a data file with SQL result)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report
 in any language)

 This night I can test Kugar in gambas I think is similar to make report
 in HTML, You can create a  XML data file  with required format and run
 it in gambas with  Kugar.

 I think its easy.

 If this night I have time to do it and if I have exit I send sample to
 your mail.



 En/na Kido Zu ha escrit:

 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:


 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:


 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...





 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user




 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect 

Re: [Gambas-user] Re port for Gambas

2009-05-11 Thread Jack
Le samedi 09 mai 2009 13:35:52 charlesg, vous avez écrit :
 Hi

 I think Laurux uses Kugar?

Bonjour,
I use no more Kugar. All reports of Laurux are now made with Gambas, but  i 
can send you some Kugar reports samples if you want.

Jack



--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Re port for Gambas

2009-05-10 Thread Kido Zu

ok Marc...i'll try it...thanks.;-)



Marc Miralles wrote:
 
 yes Sergio, it works perfectly on gambas. I Think at this moment is a 
 good solution for make reports in gambas
 
 I test this in gambas 2.12
 
 Here the code in gambas, it's very easy:
 
 PUBLIC FUNCTION kugar
 DIM flname AS String
 DIM hfile AS file
 
 flname = User.home  /gambas//projectname//reports/test.kdf
 IF Exist(flname) THEN KILL flname
   OPEN flname FOR WRITE CREATE AS #hFile
 'Make Kugar file data in XML
 PRINT #hfile, ?xml version='1.0' encoding='UTF-8'?
 PRINT #hfile, 
 PRINT #hfile, !DOCTYPE KugarData [
 PRINT #hfile, !ELEMENT KugarData (Row* )
 PRINT #hfile, !ATTLIST KugarData
 PRINT #hfile, Template CDATA #REQUIRED
 PRINT #hfile, 
 PRINT #hfile, !ELEMENT Row EMPTY
 PRINT #hfile, !ATTLIST Row
 PRINT #hfile, level CDATA #REQUIRED
 PRINT #hfile, title CDATA #REQUIRED
 PRINT #hfile, version CDATA #REQUIRED
 PRINT #hfile, platform CDATA #REQUIRED
 PRINT #hfile, copies CDATA #REQUIRED
 PRINT #hfile, ]
 PRINT #hfile, 
   ' here you can replace next lines for a  for each in and 
 replace fields with mysq result and add some rows
 PRINT #hfile, KugarData Template='test.ktf'
 PRINT #hfile, Row level= '0' title= 'BRU' version= '15.0' 
 platform= 'x86' copies= '1'/
 PRINT #hfile, Row level= '0' title= 'Caldera Open Linux' 
 version= '2.2' platform= 'x86' copies= '3'/
 PRINT #hfile, /KugarData
   CLOSE #hFile
 Message.Info(File Created, OK)
 SHELL kugar   flname
 END
 
 
 
 En/na Sergio A. Hernandez ha escrit:
 Marc,
 I get confused, I made work Kugar work under C++ QT, but I'm not quite
 sure I can on Gambas.
 The best way with Gambas is, just like you said, create a HTML
 customized report. But is a time consuming project that probably Kido
 is not going to use anymore.
 If you can make work Kugar under gambas please let us know.

 On Fri, May 8, 2009 at 7:36 AM, Marc Miralles m...@monalternatiu.com
 wrote:
   
 Dear Kido Zu

 I think this sample and guide  in docs.kde is good for you. In this
 moment I haven't a sample in gambas but I think it's a good info for
 beginning.

 http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make
 template)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make
 a data file with SQL result)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report
 in any language)

 This night I can test Kugar in gambas I think is similar to make report
 in HTML, You can create a  XML data file  with required format and run
 it in gambas with  Kugar.

 I think its easy.

 If this night I have time to do it and if I have exit I send sample to
 your mail.



 En/na Kido Zu ha escrit:
 
 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:

   
 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:

 
 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...





 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
 Your
 production scanning environment may not be a perfect world - but
 thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW
 KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
 Your
 production scanning environment may not be a perfect world - but
 thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW
 KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



 
   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features 

Re: [Gambas-user] Re port for Gambas

2009-05-09 Thread Sergio A. Hernandez
Marc,
I get confused, I made work Kugar work under C++ QT, but I'm not quite
sure I can on Gambas.
The best way with Gambas is, just like you said, create a HTML
customized report. But is a time consuming project that probably Kido
is not going to use anymore.
If you can make work Kugar under gambas please let us know.

On Fri, May 8, 2009 at 7:36 AM, Marc Miralles m...@monalternatiu.com wrote:
 Dear Kido Zu

 I think this sample and guide  in docs.kde is good for you. In this
 moment I haven't a sample in gambas but I think it's a good info for
 beginning.

 http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make
 template)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make
 a data file with SQL result)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report
 in any language)

 This night I can test Kugar in gambas I think is similar to make report
 in HTML, You can create a  XML data file  with required format and run
 it in gambas with  Kugar.

 I think its easy.

 If this night I have time to do it and if I have exit I send sample to
 your mail.



 En/na Kido Zu ha escrit:
 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:

 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:

 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...





 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user







 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Re port for Gambas

2009-05-09 Thread charlesg

Hi

I think Laurux uses Kugar?

There are also references here and elsewhere to using unzip on a template
created in Open Office spreadsheet, changing the values in the xml and
re-zipping back to .ods.

rgds
-- 
View this message in context: 
http://www.nabble.com/Report-for-Gambas-tp23442269p23459725.html
Sent from the gambas-user mailing list archive at Nabble.com.


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Re port for Gambas

2009-05-09 Thread Marc Miralles
yes Sergio, it works perfectly on gambas. I Think at this moment is a 
good solution for make reports in gambas

I test this in gambas 2.12

Here the code in gambas, it's very easy:

PUBLIC FUNCTION kugar
DIM flname AS String
DIM hfile AS file

flname = User.home  /gambas//projectname//reports/test.kdf
IF Exist(flname) THEN KILL flname
  OPEN flname FOR WRITE CREATE AS #hFile
'Make Kugar file data in XML
PRINT #hfile, ?xml version='1.0' encoding='UTF-8'?
PRINT #hfile, 
PRINT #hfile, !DOCTYPE KugarData [
PRINT #hfile, !ELEMENT KugarData (Row* )
PRINT #hfile, !ATTLIST KugarData
PRINT #hfile, Template CDATA #REQUIRED
PRINT #hfile, 
PRINT #hfile, !ELEMENT Row EMPTY
PRINT #hfile, !ATTLIST Row
PRINT #hfile, level CDATA #REQUIRED
PRINT #hfile, title CDATA #REQUIRED
PRINT #hfile, version CDATA #REQUIRED
PRINT #hfile, platform CDATA #REQUIRED
PRINT #hfile, copies CDATA #REQUIRED
PRINT #hfile, ]
PRINT #hfile, 
  ' here you can replace next lines for a  for each in and 
replace fields with mysq result and add some rows
PRINT #hfile, KugarData Template='test.ktf'
PRINT #hfile, Row level= '0' title= 'BRU' version= '15.0' 
platform= 'x86' copies= '1'/
PRINT #hfile, Row level= '0' title= 'Caldera Open Linux' 
version= '2.2' platform= 'x86' copies= '3'/
PRINT #hfile, /KugarData
  CLOSE #hFile
Message.Info(File Created, OK)
SHELL kugar   flname
END



En/na Sergio A. Hernandez ha escrit:
 Marc,
 I get confused, I made work Kugar work under C++ QT, but I'm not quite
 sure I can on Gambas.
 The best way with Gambas is, just like you said, create a HTML
 customized report. But is a time consuming project that probably Kido
 is not going to use anymore.
 If you can make work Kugar under gambas please let us know.

 On Fri, May 8, 2009 at 7:36 AM, Marc Miralles m...@monalternatiu.com wrote:
   
 Dear Kido Zu

 I think this sample and guide  in docs.kde is good for you. In this
 moment I haven't a sample in gambas but I think it's a good info for
 beginning.

 http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make
 template)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make
 a data file with SQL result)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report
 in any language)

 This night I can test Kugar in gambas I think is similar to make report
 in HTML, You can create a  XML data file  with required format and run
 it in gambas with  Kugar.

 I think its easy.

 If this night I have time to do it and if I have exit I send sample to
 your mail.



 En/na Kido Zu ha escrit:
 
 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:

   
 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:

 
 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...





 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



 
   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 

Re: [Gambas-user] Re port for Gambas

2009-05-08 Thread Kido Zu

thanks Marc..

can you show me or give me an example how to create Kugar report for
Gambas...with a simple way?:confused:



Marc Miralles wrote:
 
 Hi Kido zu
 
 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.
 
 
 
 En/na Kido zu ha escrit:
 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...




   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image 
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

   
 
 
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image 
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 

-- 
View this message in context: 
http://www.nabble.com/Report-for-Gambas-tp23442269p23445233.html
Sent from the gambas-user mailing list archive at Nabble.com.


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Re port for Gambas

2009-05-08 Thread Marc Miralles
Dear Kido Zu

I think this sample and guide  in docs.kde is good for you. In this 
moment I haven't a sample in gambas but I think it's a good info for 
beginning.

http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make 
template)
http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make 
a data file with SQL result)
http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report 
in any language)

This night I can test Kugar in gambas I think is similar to make report 
in HTML, You can create a  XML data file  with required format and run 
it in gambas with  Kugar.

I think its easy.

If this night I have time to do it and if I have exit I send sample to 
your mail.



En/na Kido Zu ha escrit:
 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:
   
 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:
 
 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...




   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image 
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

   
   
 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image 
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


 

   


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Re port for Gambas

2009-05-08 Thread Fabien Bodard
for a first time i think kugar will be the better for reporting at lea

2009/5/8 Marc Miralles m...@monalternatiu.com:
 Dear Kido Zu

 I think this sample and guide  in docs.kde is good for you. In this
 moment I haven't a sample in gambas but I think it's a good info for
 beginning.

 http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make
 template)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make
 a data file with SQL result)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report
 in any language)

 This night I can test Kugar in gambas I think is similar to make report
 in HTML, You can create a  XML data file  with required format and run
 it in gambas with  Kugar.

 I think its easy.

 If this night I have time to do it and if I have exit I send sample to
 your mail.



 En/na Kido Zu ha escrit:
 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:

 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:

 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...





 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user







 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Re port for Gambas

2009-05-08 Thread Fabien Bodard
hem ... lol

at least on gambas2.

on gambas3 you have the gb.report component but it need some job to be
ready. i'm waiting for the gambas IDE Module management
and then i will polish tis component with a true editor.

In my mind  this will be as easy as made a form on gambas... you can
already try it on svn version. you can ave some exemple in the
component it self.

Regards,
Fabien Bodard

2009/5/8 Fabien Bodard gambas...@gmail.com:
 for a first time i think kugar will be the better for reporting at lea

 2009/5/8 Marc Miralles m...@monalternatiu.com:
 Dear Kido Zu

 I think this sample and guide  in docs.kde is good for you. In this
 moment I haven't a sample in gambas but I think it's a good info for
 beginning.

 http://docs.kde.org/kde3/en/koffice/kugar/tutorial.html ( for  make
 template)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-2.html (about how to make
 a data file with SQL result)
 http://docs.kde.org/kde3/en/koffice/kugar/tut-3.html (how to run report
 in any language)

 This night I can test Kugar in gambas I think is similar to make report
 in HTML, You can create a  XML data file  with required format and run
 it in gambas with  Kugar.

 I think its easy.

 If this night I have time to do it and if I have exit I send sample to
 your mail.



 En/na Kido Zu ha escrit:
 thanks Marc..

 can you show me or give me an example how to create Kugar report for
 Gambas...with a simple way?:confused:



 Marc Miralles wrote:

 Hi Kido zu

 I test Kugar in gnome, now, in Ubuntu 9.04 and it work fine.



 En/na Kido zu ha escrit:

 Hi...

 what's the best report for Gambas?
 i'm using ubuntu and MySQL.
 can Kugar run on Gnome?

 thanks...





 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks
 to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
 i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user







 --
 The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
 production scanning environment may not be a perfect world - but thanks to
 Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
 Series Scanner you'll get full speed at 300 dpi even with all image
 processing features enabled. http://p.sf.net/sfu/kodak-com
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user