Re: [Gambas-user] Gambas 2 question

2010-12-07 Thread Rolf-Werner Eilert
Am 07.12.2010 19:56, schrieb nando: > Correct. > > > -- Original Message --- > From: Benoît Minisini > To: nand...@nothingsimple.com, mailing list for gambas users > > Sent: Tue, 7 Dec 2010 18:52:03 +0100 > Subject: Re: [Gambas-user] Gambas 2 question > >>> Benoit >>> >>> In my deb

[Gambas-user] Gambas 3 Printing

2010-12-07 Thread Michael
Can anybody please clarify how to generate a new page when printing in Gambas 3. I know you have have the Printer.Count value but it appears you need to know the number of pages to set this value before printing. You cannot loop through data and say INC hPrinter.Count. It will only print the in

Re: [Gambas-user] Size of gambas exe question

2010-12-07 Thread Benoît Minisini
> HI benoit > > Ian and I have a 'huge' tree. > > When I started the project I kept everything there including all the help > files etc. > > > I wonder if there is anyway of setting up gambas so that the compiled exe > can exclude tree branches so as not to end up with such a huge exe. > > RE

[Gambas-user] Size of gambas exe question

2010-12-07 Thread richard terry
HI benoit Ian and I have a 'huge' tree. When I started the project I kept everything there including all the help files etc. I wonder if there is anyway of setting up gambas so that the compiled exe can exclude tree branches so as not to end up with such a huge exe. REgards Richard -

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread Benoît Minisini
> Benoit, > > the image i want to print is created this way: > "hPaper = New Image(6000, 300, Color.White)" > On this image i paint my spectrogram data. > I do some more experiments and assume i get it work > as needed. Thank You :) 6000 * 300 * 4 = 7,2 Mb. So a big image! > > By the way: Is an

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread wally
Benoit, the image i want to print is created this way: "hPaper = New Image(6000, 300, Color.White)" On this image i paint my spectrogram data. I do some more experiments and assume i get it work as needed. Thank You :) By the way: Is any effort known to make a math lib available for Ganbas (e.

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread Benoît Minisini
> It works via "Printer1.Count = 8" but printing to PDF is extremely slow > on my system. Few minutes for 8 PDF pages. Much slower than the real > Printer creates output on paper. Thats the rerason i asked here. > I did not aware, that pdf generation was still in process when i tried to > load it

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread wally
It works via "Printer1.Count = 8" but printing to PDF is extremely slow on my system. Few minutes for 8 PDF pages. Much slower than the real Printer creates output on paper. Thats the rerason i asked here. I did not aware, that pdf generation was still in process when i tried to load it to acro

Re: [Gambas-user] Gambas 2 question

2010-12-07 Thread nando
Correct. -- Original Message --- From: Benoît Minisini To: nand...@nothingsimple.com, mailing list for gambas users Sent: Tue, 7 Dec 2010 18:52:03 +0100 Subject: Re: [Gambas-user] Gambas 2 question > > Benoit > > > > In my debugging, I was doing... > > > > PRINT "IN", 'at t

[Gambas-user] gambas3 print image 2nd

2010-12-07 Thread wally
How to print a very wide image, lets say a spectrogram DinA4 Heigth and usually 5 or 6 sheets wide in landscaoe format ? Do i need to manage the page cutting manually in code or is there a more smart way ? Target should be few pages of printer output or a multipage PDF. cheers wally --

Re: [Gambas-user] Gambas 2 question

2010-12-07 Thread Benoît Minisini
> Benoit > > In my debugging, I was doing... > > PRINT "IN", 'at the beginning of a routine > . . . > . . . > PRINT "OUT" 'at the end > > so I could track and detect flow. > > the first line does a \n in all cases even though it has a trailing comma. > Normally, the comma didn't do a New Li

[Gambas-user] Gambas 2 question

2010-12-07 Thread nando
Benoit In my debugging, I was doing... PRINT "IN", 'at the beginning of a routine . . . . . . PRINT "OUT" 'at the end so I could track and detect flow. the first line does a \n in all cases even though it has a trailing comma. Normally, the comma didn't do a New Line. It correctly does a ta

Re: [Gambas-user] gambas3 print image

2010-12-07 Thread wally
Thank you also from my side. "Paint.DrawImage" is very cool :) wally On Tuesday 07 December 2010 14:30:46 Fabien Bodard wrote: > wou finally i've my paint.image :) !!! > > thank you :) > > Le 7 décembre 2010 02:31, Benoît Minisini > a écrit : > >> > >> I finally found a workaround to tha

Re: [Gambas-user] gambas3 print image

2010-12-07 Thread Fabien Bodard
wou finally i've my paint.image :) !!! thank you :) Le 7 décembre 2010 02:31, Benoît Minisini a écrit : >> >> I finally found a workaround to that Qt bug in revision #3347. And I added >> a new Paint.DrawImage() function to easily paint images. And I fixed the >> default value of Printer.Cou