Re: [Gambas-user] gb.report

2015-12-08 Thread Fabien Bodard
You can see an example in the farm ... search : "DocumentView" 2015-12-08 11:42 GMT+01:00 Fabien Bodard : > 2015-12-08 0:46 GMT+01:00 Buster Seven : >> I’m trying to use the reportview component that i add to a form and then >> display my report

Re: [Gambas-user] gb.report

2015-12-08 Thread Buster Seven
but i can't work out how to load the report into the document view? On Tue, Dec 8, 2015 at 9:49 PM, Fabien Bodard wrote: > You can see an example in the farm ... search : "DocumentView" > > 2015-12-08 11:42 GMT+01:00 Fabien Bodard : > > 2015-12-08 0:46

Re: [Gambas-user] gb.report

2015-12-08 Thread Fabien Bodard
2015-12-08 0:46 GMT+01:00 Buster Seven : > I’m trying to use the reportview component that i add to a form and then > display my report without using the preview basically > my own preview form with the buttons on it to do what i want before it > printed etc OKay so you

Re: [Gambas-user] gb.report

2015-12-08 Thread Buster Seven
ah so easy with a simple example don’t know why i couldn't work it out  On Wed, Dec 9, 2015 at 8:31 AM, Fabien Bodard wrote: > hum > > this is an example > > 2015-12-08 13:14 GMT+01:00 Buster Seven : > > but i can't work out how to load the report

Re: [Gambas-user] gb.report

2015-12-08 Thread Fabien Bodard
hum this is an example 2015-12-08 13:14 GMT+01:00 Buster Seven : > but i can't work out how to load the report into the document view? > > > On Tue, Dec 8, 2015 at 9:49 PM, Fabien Bodard wrote: > >> You can see an example in the farm ... search :

Re: [Gambas-user] gb.report

2015-12-07 Thread Frank
with following code I open the .preview() to see how the Report looks like for printing: report1 = New Rptrechnung report1.Preview() if the Report is written right, all elements and text should be visible. the Reportview has a few buttons left below to show the Report in Preview partially,

Re: [Gambas-user] gb.report

2015-12-07 Thread Buster Seven
I’m trying to use the reportview component that i add to a form and then display my report without using the preview basically my own preview form with the buttons on it to do what i want before it printed etc On Mon, Dec 7, 2015 at 8:32 PM, Frank wrote: > with following

Re: [Gambas-user] gb.report

2015-12-04 Thread Buster Seven
Tanks Frank Just what i needed. One more question when displaying a report in reportview component how do scale the report down to fit the reportview? thanks shane On Wed, Dec 2, 2015 at 8:43 PM, Frank wrote: > this is how I did it: > > Public Sub savepdf() > > Dim path As

Re: [Gambas-user] gb.report

2015-12-02 Thread Frank
this is how I did it: Public Sub savepdf() Dim path As String Dim hReport1 As New Rpt Dim hprinter As New Printer path = "/home/me/Gambas/projecten/project/" & name & ".pdf" hprinter.Orientation = Printer.Portrait hprinter.Resolution = Desktop.Resolution hprinter.Paper = Printer.A4

Re: [Gambas-user] gb.report

2015-12-02 Thread Fabien Bodard
Do you use gb.report or gb.report2 ? Le 2 déc. 2015 04:52, "Buster Seven" a écrit : > i'm using gb.report and I would like to save a pdf file automatically > generated from my program without out user input ! is this possible? > > > thanks Shane > >

Re: [Gambas-user] gb.report

2015-12-02 Thread Fabien Bodard
Report users ? Happy to meet you ! Have you any feed back about this components or some needs ? I have drawn this component for my need but to polish it I need more user feedback. What are you using it for ? What kind of widget miss you ? Or anything else can help me to improve this

Re: [Gambas-user] gb.report

2015-12-02 Thread fgores
Gb.report2 yes Verstuurd vanaf mijn iPad > Op 2 dec. 2015 om 12:45 heeft Fabien Bodard het > volgende geschreven: > > Le 2 déc. 2015 12:23, "Frank" a écrit : >> >> Hi Fabien, >> >> Yes I use it. I created a accountingprogram where I store customers,

Re: [Gambas-user] gb.report

2015-12-02 Thread Fabien Bodard
Le 2 déc. 2015 12:23, "Frank" a écrit : > > Hi Fabien, > > Yes I use it. I created a accountingprogram where I store customers, contracts, work done and bills in a MYSQL database. Every month I create a bill and store it as PDF in a local folder: I create a report and show it

Re: [Gambas-user] gb.report

2015-12-02 Thread Frank
Hi Fabien, Yes I use it. I created a accountingprogram where I store customers, contracts, work done and bills in a MYSQL database. Every month I create a bill and store it as PDF in a local folder: I create a report and show it with .preview(), on closing I let the program store the .pdf as

Re: [Gambas-user] gb.report Question

2015-02-06 Thread Fabien Bodard
Ok Le 6 févr. 2015 14:37, Johny Provoost johny.provo...@skynet.be a écrit : I'll try to cut that peace off, otherwise I'll send the whole project. Op 06-02-15 om 14:07 schreef Fabien Bodard: Can you send me à project that Show how you are doing Le 6 févr. 2015 12:39, Johny Provoost

Re: [Gambas-user] gb.report Question (Solved)

2015-02-06 Thread Fabien Bodard
Le 6 févr. 2015 16:20, Johny Provoost johny.provo...@skynet.be a écrit : Fabien, While try to isolate the code I'll found the problem. A stupid list wasn't updated with the new data. Well, I'm only a would-be programmer (and an old one too), not a professional so I'm do some stupid things.

[Gambas-user] gb.report Question

2015-02-06 Thread Johny Provoost
I have a program which the possibility to print to print address labels with gb.report. Works perfectly but I always have to close the program before I can print the same report with different data. It always put the first data into the report. My code to put data on the labels is in the _New

Re: [Gambas-user] gb.report Question (Solved)

2015-02-06 Thread Johny Provoost
Fabien, While try to isolate the code I'll found the problem. A stupid list wasn't updated with the new data. Well, I'm only a would-be programmer (and an old one too), not a professional so I'm do some stupid things. So in fact, indirectly, you solve my problem :). Thank you for this and

Re: [Gambas-user] gb.report Question

2015-02-06 Thread Johny Provoost
I'll try to cut that peace off, otherwise I'll send the whole project. Op 06-02-15 om 14:07 schreef Fabien Bodard: Can you send me à project that Show how you are doing Le 6 févr. 2015 12:39, Johny Provoost johny.provo...@skynet.be a écrit : I have a program which the possibility to print

Re: [Gambas-user] gb.report Question

2015-02-06 Thread Fabien Bodard
Can you send me à project that Show how you are doing Le 6 févr. 2015 12:39, Johny Provoost johny.provo...@skynet.be a écrit : I have a program which the possibility to print to print address labels with gb.report. Works perfectly but I always have to close the program before I can print the

Re: [Gambas-user] gb.report question

2014-10-25 Thread Willy Raets
On do, 2014-10-23 at 07:37 +0200, Fabien Bodard wrote: Van toi sens me en example I'll try to come up an example for you. -- Kind regards, Willy (aka gbWilly) http://gambasshowcase.org/ http://howtogambas.org http://gambos.org

[Gambas-user] gb.report question

2014-10-22 Thread Willy Raets
Hi all, I have a report that exists of 3 'blocks of data' that are fed by 3 different result sets from a MySql database. All works fine as long as all result sets have data. Now, one of the results sets CAN be empty (this is intentional and just means that the block of data for that result set

Re: [Gambas-user] gb.report question

2014-10-22 Thread Fabien Bodard
Van toi sens me en example ? Le 22 oct. 2014 16:58, Willy Raets wi...@earthshipbelgium.be a écrit : Hi all, I have a report that exists of 3 'blocks of data' that are fed by 3 different result sets from a MySql database. All works fine as long as all result sets have data. Now, one of the

Re: [Gambas-user] gb.report question on setting printer to print to

2014-05-07 Thread Willy Raets
On Tue, 2014-05-06 at 21:55 +0200, Fabien Bodard wrote: hi willy the option is available since 3.5.3 Report.Print(optional MyPrinter as printer) if printer is defined then the configure box will not show. dim hprinter as new printer hprinter.name = HP-LaserJet

Re: [Gambas-user] gb.report question on setting printer to print to

2014-05-06 Thread Fabien Bodard
hi willy the option is available since 3.5.3 Report.Print(optional MyPrinter as printer) if printer is defined then the configure box will not show. dim hprinter as new printer hprinter.name = HP-LaserJet report.print(hprinter) 2014-05-05 17:39 GMT+02:00 Willy Raets

[Gambas-user] gb.report question on setting printer to print to

2014-05-05 Thread Willy Raets
Hi all, I have this situation where I have multiple printers available. Say they are named HP-LaserJet (default) and HP-Color. I do not want a Report Preview but print directly to either one of both printers available to the system. Now most reports I made need to go to the default printer

Re: [Gambas-user] gb.report page number

2014-03-20 Thread Fabien Bodard
In report label ckeck usefield to true Then in the text add $PAGE to get the current page number and $PAGES to get the total pages Le 19 mars 2014 15:00, kungfupanda riccardo.giud...@gmail.com a écrit : Hi, I've a simple question...I don't know how to obtain the current page number in my

[Gambas-user] gb.report page number

2014-03-19 Thread kungfupanda
Hi, I've a simple question...I don't know how to obtain the current page number in my gb.report. I can use reportname.Pagecount to know how many pages I have in my report but I don't know how to obtain the number of the current page... someone can help me ?? Thanks -- View this message in

Re: [Gambas-user] gb.Report : Setting label colors

2014-01-10 Thread Fabien Bodard
Use reportbrush.color instead Report.color is deprecated buggy and need to be removed. Le 9 janv. 2014 11:05, Fabien Bodard gambas...@gmail.com a écrit : You are one of the first advanced user of gb.report... Thank you So bugs are... I will see what I can do ... I have no many time today Le

Re: [Gambas-user] gb.Report : Setting label colors

2014-01-09 Thread Fabien Bodard
You are one of the first advanced user of gb.report... Thank you So bugs are... I will see what I can do ... I have no many time today Le 9 janv. 2014 02:22, Bruce bbr...@paddys-hill.net a écrit : More learning curve! I am trying to set the foreground and background colors for a report label:

[Gambas-user] gb.Report : Setting label colors

2014-01-08 Thread Bruce
More learning curve! I am trying to set the foreground and background colors for a report label: 8 Dim lblType as new ReportLabel 17 lblType.Text = $currProblem.ProblemType.Value 18 lblType.Brush = Report.Color($currProblem.ProblemType.ForeColor) 19 lblType.BackGround =

Re: [Gambas-user] gb.report, help wanted to write a simple report

2013-10-17 Thread Fabien Bodard
To understand the layout using and container arrangement ... Just play with container with different background colors. I'm currently rewritting the layout. So one or two option will come up for recurssive container process. Then I will do a true documented example and certainly a good video Le

[Gambas-user] gb.report, help wanted to write a simple report

2013-10-16 Thread bill-lancaster
I would like a simple report, one page, a number of boxes with fixed and variable information. Have tried to manipulate the example programme (which is far more complex than my needs) but can't see how to controll the position of reportlables. Also, in a blank project, a new Report is created, a

Re: [Gambas-user] gb.report, help wanted to write a simple report

2013-10-16 Thread Fabien Bodard
Set the height or the label to 5mm or set its autoresize property to true Le 16 oct. 2013 17:01, bill-lancaster bill-lancas...@lineone.net a écrit : I would like a simple report, one page, a number of boxes with fixed and variable information. Have tried to manipulate the example programme

[Gambas-user] gb.report, help wanted to write a simple report

2013-10-16 Thread bill-lancaster
Thanks for the reply - it helped a bit. I have two reportlables in a ReportBox in a ReportVBox. The text in both labels is showing in preview but the second label is over-writing the first. How would I have the second label display exactly below the first. BTW the first label will have multiple

[Gambas-user] gb.report, help wanted to write a simple report

2013-10-16 Thread bill-lancaster
Making some progress now, please regard this post as closed. Thanks again. -- View this message in context: http://gambas.8142.n7.nabble.com/gb-report-help-wanted-to-write-a-simple-report-tp43672p43682.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] gb.report without a database connection

2013-09-14 Thread Fabien Bodard
yes gb.report can be used in many many cases. with data provided too. You can pass the datas by a run sub too. 2013/9/14 Dimitris Anogiatis dos...@gmail.com Thanks for your quick reply Fabien, I also saw the report example and noticed that Report2 is covering that case. On Thu, Sep 12,

Re: [Gambas-user] gb.report without a database connection

2013-09-13 Thread Dimitris Anogiatis
Thanks for your quick reply Fabien, I also saw the report example and noticed that Report2 is covering that case. On Thu, Sep 12, 2013 at 2:47 PM, Fabien Bodard gambas...@gmail.com wrote: yes 2013/9/12 Dimitris Anogiatis dos...@gmail.com Hey guys, Is it possible to use the

Re: [Gambas-user] gb.report without a database connection

2013-09-12 Thread Fabien Bodard
yes 2013/9/12 Dimitris Anogiatis dos...@gmail.com Hey guys, Is it possible to use the gb.report component without a database connection? What I'm basically asking is if the report component can take data from an array (or from multiple arrays). Thanks in advance Dimitris

[Gambas-user] gb.report without a database connection

2013-09-11 Thread Dimitris Anogiatis
Hey guys, Is it possible to use the gb.report component without a database connection? What I'm basically asking is if the report component can take data from an array (or from multiple arrays). Thanks in advance Dimitris

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-29 Thread Fabien Bodard
diciembre de 2011 05:45 p.m. Para: mailing list for gambas users Asunto: Re: [Gambas-user] gb.report Gambas 3 - I'm struggling or just change it in the ide (in the properties) -- Ridiculously easy VDI. With Citrix VDI

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-28 Thread Alfonso Contreras
Hi Fabian I have a question how can I change the report orientation to landscape? Thank you -Mensaje original- De: Fabien Bodard [mailto:gambas...@gmail.com] Enviado el: martes, 13 de diciembre de 2011 07:11 a.m. Para: mailing list for gambas users Asunto: Re: [Gambas-user] gb.report

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-28 Thread Fabien Bodard
diciembre de 2011 07:11 a.m. Para: mailing list for gambas users Asunto: Re: [Gambas-user] gb.report Gambas 3 - I'm struggling 2011/12/13 Bill-Lancaster bill-lancas...@lineone.net: SVN Have installed it (I think!). If I run Gambas3 from where I did the install I get Gambas 2.99.6

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-28 Thread Fabien Bodard
or just change it in the ide (in the properties) -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to virtual desktops.

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-28 Thread Alfonso Contreras
Asunto: Re: [Gambas-user] gb.report Gambas 3 - I'm struggling or just change it in the ide (in the properties) -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-13 Thread Bill-Lancaster
SVN Have installed it (I think!). If I run Gambas3 from where I did the install I get Gambas 2.99.6 - is this the svn? running the report example produces not enough arguments when Print button clicked -- View this message in context:

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-13 Thread Fabien Bodard
2011/12/13 Bill-Lancaster bill-lancas...@lineone.net: SVN Have installed it (I think!). If I run Gambas3 from where I did the install I get Gambas 2.99.6 - is this if you haveinstalled the rc before ... you need to remove it. then make instal in the svn . the version number is the same as

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-11 Thread Bill-Lancaster
Dear Fabien, OK, I have one main form with a button that opens Report1 (a report type of form - is that what you call a 'panel'?) The I added a ReportTextLabel set width, height, x y. Then in code for Report1 I have, Public Sub TextLabel_Data() Last.Data = KK End When I run it

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-11 Thread Bill-Lancaster
A step forward! Have discovered if I insert a ReportTextLabel in Report1 then select 'embed into a container' from its properties I get Panel1 containing the ReportTextLabel. So now I know what you meant by a 'panel' and the error 'Unknown Symbol etc' has gone away. I couldn't see an item

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-11 Thread Fabien Bodard
2011/12/11 Bill-Lancaster bill-lancas...@lineone.net: A step forward! Have discovered if I insert a ReportTextLabel in Report1 then select 'embed into a container' from its properties I get Panel1 containing the ReportTextLabel. So now I know what you meant by a 'panel' and the error

[Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-10 Thread Bill-Lancaster
First, the report example doesn't work for me - it just hangs. I want to print information onto a pre-printed form (one A4 sheet) so there would be a number of fields in specific positions on the page. Building a new project using the same components as the example I can get a form to print OK

Re: [Gambas-user] gb.report Gambas 3 - I'm struggling

2011-12-10 Thread Fabien Bodard
2011/12/10 Bill-Lancaster bill-lancas...@lineone.net: First, the report example doesn't work for me - it just hangs. I want to print information onto a pre-printed form (one A4 sheet) so there would be a number of fields in specific positions on the page. Building a new project using the

Re: [Gambas-user] gb.report gambas3

2011-08-04 Thread Fabien Bodard
ouch i can maybe help you ... if i can understand what you mean :) i've not suffisely time to make the doc for gb.Report :/ (but i will try) now .. report.spacing = 1mm for each hresult hcont = new ReportHBox(report) hcont.autoresize = true hcont.border.bottom.width = 1px hlabel = new

[Gambas-user] gb.report gambas3

2011-08-03 Thread herberth guzman
goodnight community would like to help me with gb.report I managed to do some reports in gambas3 but only funsion me with code creating them, I would like to design a graphical report and you look as designed, if you design a report to run it when you looks misconfigured. And also I have the

[Gambas-user] gb.report

2011-03-05 Thread herberth guzman
Saludos a todo, necesito ayuda, estoy realizando un programa en gambas3 y necesito crear reportes, logre crear reportes con gb.report despues de varios dias, pero quiero llamar el reporte desde un formulario llamado frmreportes. Alguien podria decirme como visualizarlo. Gracias Greetings all, I

[Gambas-user] gb.report

2011-03-05 Thread herberth guzman
Saludos a todo, necesito ayuda, estoy realizando un programa en gambas3 y necesito crear reportes, logre crear reportes con gb.report despues de varios dias, pero quiero llamar el reporte desde un formulario llamado frmreportes. Alguien podria decirme como visualizarlo. Gracias Greetings all, I

Re: [Gambas-user] gb.report

2011-03-05 Thread Fabien Bodard
2011/3/5 herberth guzman herberthguz...@gmail.com: Saludos a todo, necesito ayuda, estoy realizando un programa en gambas3 y necesito crear reportes, logre crear reportes con gb.report despues de varios dias, pero quiero llamar el reporte desde un formulario llamado frmreportes. Alguien podria

[Gambas-user] gb.report

2010-03-14 Thread Bill-Lancaster
Can anyone direct me to an example (or some help) on how to use this component? -- View this message in context: http://old.nabble.com/gb.report-tp27894645p27894645.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] gb.report

2010-03-14 Thread Fabien Bodard
on what version of gambas ? 2010/3/14 Bill-Lancaster bill-lancas...@lineone.net: Can anyone direct me to an example (or some help) on how to use this component? -- View this message in context: http://old.nabble.com/gb.report-tp27894645p27894645.html Sent from the gambas-user mailing

Re: [Gambas-user] gb.report

2010-03-14 Thread Bill-Lancaster
Sorry - Gambas 2.13 -- View this message in context: http://old.nabble.com/gb.report-tp27894645p27894915.html Sent from the gambas-user mailing list archive at Nabble.com. -- Download Intel#174; Parallel Studio Eval

Re: [Gambas-user] gb.report

2010-03-14 Thread Fabien Bodard
the version 2 is not really usable(it's an alpha version) ... the gb.report will be usable in the gambas3 version ... please wait for it 2010/3/14 Bill-Lancaster bill-lancas...@lineone.net: Sorry - Gambas 2.13 -- View this message in context:

Re: [Gambas-user] gb.report

2010-03-14 Thread Charlie Reinl
Am Sonntag, den 14.03.2010, 15:55 +0100 schrieb Fabien Bodard: the version 2 is not really usable(it's an alpha version) ... the gb.report will be usable in the gambas3 version ... please wait for it 2010/3/14 Bill-Lancaster bill-lancas...@lineone.net: Sorry - Gambas 2.13

Re: [Gambas-user] gb.report pagebreak?

2009-12-29 Thread Fabien Bodard
Please wait gambas3 to use the gb.report component as it is not finished ! it's just an early alpha version in gb2. Regards, Fabien Bodard 2009/12/29 JLichter jlich...@web.de: I use Ubuntu 9.10 with Gambas 2.13 and I try the gb.report. All is running good, however I can't create a page 2 or

[Gambas-user] gb.report pagebreak?

2009-12-28 Thread JLichter
I use Ubuntu 9.10 with Gambas 2.13 and I try the gb.report. All is running good, however I can't create a page 2 or more in the report. Is it possible two create more pages (pagebreak)? Thanks in advance, jo42 Here my code: ___ ' Gambas module