Re: [Gambas-user] Nice book of Gambas

2008-08-31 Thread Hamish Robertson
So would I. Turning that book into a wiki is a great Idea. Would John be up for that though? On 01/09/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Quoting Fabien Bodard <[EMAIL PROTECTED]>: > >> i'mm not sure that J. Rittinghouse write something else as he is really >> sick. >> >> Fabien B

Re: [Gambas-user] Database manager bug

2008-08-31 Thread richard terry
Further to this problem, now on Build 1532, I wonder if Benoit could point me on where to proceed. After my recent posts about difficulty saving images, I decided to give the database manager another try, and it bugs out in just the same way, first when clicking on ones database it comes up say

Re: [Gambas-user] Drawing Persistence

2008-08-31 Thread Jason Hackney
Hey Rob, thanks for the direction. Got it working now. I was confusing how clear, cached, and refresh work with each other. I think I got 'em all set now. :-) Cheers. > You want the Cached property. > > http://www.gambasdoc.org/help/comp/gb.qt/drawingarea/cached > > Rob -

[Gambas-user] New feature in Gambas 3 development version

2008-08-31 Thread Benoit Minisini
Hi, If you use the development version, now you can declare typed object arrays: DIM ArrayOfLabels AS Label[8, 8] The Label[] class is dynamically created by the interpreter the first time it is used. It has exactly the same features as the Object[] class, except that it always returns Label

Re: [Gambas-user] Drawing Persistence

2008-08-31 Thread Rob
On Sunday 31 August 2008 16:38, Jason Hackney wrote: > How do you make an image in the Drawing Area persistent? > That is, I draw a box. Then open a popup (which appears directly over > my drawing). Close the popup when I'm done and parts of my drawing > (which were covered by the popup) are blanke

Re: [Gambas-user] Q:how to save a file.png into Postgresql

2008-08-31 Thread richard terry
Hi Rof, thanks for taking the time to reply. Dies at the line containing 'Coct' with message: unknown identifier but I'm sure this way is good, as I can remember reading something about this in the postgres doc's but couldn't figure out how to do the substitution. Next step? thanks. Richard

Re: [Gambas-user] Nice book of Gambas

2008-08-31 Thread admin
Quoting Fabien Bodard <[EMAIL PROTECTED]>: > i'mm not sure that J. Rittinghouse write something else as he is really sick. > > Fabien Bodard That is sad news. Maybe the work he did could be used as a foundation to build on with a wiki and a PayPal Donation button could be added. I would contri

Re: [Gambas-user] Nice book of Gambas

2008-08-31 Thread Fabien Bodard
i'mm not sure that J. Rittinghouse write something else as he is really sick. Fabien Bodard 2008/8/31 <[EMAIL PROTECTED]>: > Quoting Jason Hackney <[EMAIL PROTECTED]>: > >> First of all, I bought this book. Mr. Rittinghouse obviously worked >> very hard on it and I felt he deserves a little some

Re: [Gambas-user] Nice book of Gambas

2008-08-31 Thread admin
Quoting Jason Hackney <[EMAIL PROTECTED]>: > First of all, I bought this book. Mr. Rittinghouse obviously worked > very hard on it and I felt he deserves a little something for his > effort. > > Does anyone know if Mr. Rittinghouse plans on releasing an updated > version of this book? There are in

[Gambas-user] Drawing Persistence

2008-08-31 Thread Jason Hackney
How do you make an image in the Drawing Area persistent? That is, I draw a box. Then open a popup (which appears directly over my drawing). Close the popup when I'm done and parts of my drawing (which were covered by the popup) are blanked out--needing to be redrawn by calling the initial drawing

Re: [Gambas-user] Nice book of Gambas

2008-08-31 Thread Jason Hackney
First of all, I bought this book. Mr. Rittinghouse obviously worked very hard on it and I felt he deserves a little something for his effort. Does anyone know if Mr. Rittinghouse plans on releasing an updated version of this book? There are inconsistencies, errors, and just plain outdated informat

[Gambas-user] Nice book of Gambas

2008-08-31 Thread Kari Laine
Hi, Sometime ago I found a nice book about Gambas. Sorry if everybody already know this. Search GooGle for "gambas beginner guide". Here is one of the links http://www.linuxinet.com/free-linux-ebooks/free-linux-programming-ebooks-beginner-039-s-guide-gambas.html Best Regards Kari Laine --

Re: [Gambas-user] about combobox

2008-08-31 Thread Benoit Minisini
On vendredi 29 août 2008, Benoit Minisini wrote: > On mardi 26 août 2008, Fox wrote: > > About combobox, we are talking about this control a little time ago. > > There is a big difference from QT and GTK combobox. > > Gtk combobox have trouble to manage long lists, try to fill with many > > items,

Re: [Gambas-user] Gambas Apps Dependencies

2008-08-31 Thread werner 007
Hello NxGTR I have do some check with: --- snipp --- DIM sF AS String DIM msg AS String sF = Temp$() SHELL "dpkg -s normalize-audio | grep -i 'status' 1> " & sF WAIT (--> But you can do that without using a external File) msg = file.Load(sF) IF Left(LCase(Trim(msg)), 6) <> "status"

Re: [Gambas-user] Release of gambas 2.8.2

2008-08-31 Thread Guillermo Ballester Valor
Hl Saturday 30 August 2008 12:30:50 Benoit Minisini escribió: > Hi, > > This maintenance release fixes the following bugs: > > * Thanks to 梁 (Liang Wei) tests, the bits manipulation functions now work > correctly. > > * The tray icons are correctly refreshed when the icon has changed. > > * The int

Re: [Gambas-user] Q:how to save a file.png into Postgresql

2008-08-31 Thread Benoit Minisini
On dimanche 31 août 2008, Rolf Schmidt wrote: > Hi richard > > > Public sub Save_Image(ImagePath as string) > > > > Dim img As Image > > Dim pictureData As String > > Dim sql As String > > > > img = Image.Load(ImagePath) ' Save temp image as png file > > tempFile = Temp() & ".png" > > img

Re: [Gambas-user] Q:how to save a file.png into Postgresql

2008-08-31 Thread Rolf Schmidt
Hi richard > Public sub Save_Image(ImagePath as string) > > Dim img As Image > Dim pictureData As String > Dim sql As String > > img = Image.Load(ImagePath) ' Save temp image as png file > tempFile = Temp() & ".png" > img.Save(tempFile) > > > pictureData = File.Load(tempFile) 'reload

Re: [Gambas-user] Q:how to save a file.png into Postgresql

2008-08-31 Thread Benoit Minisini
On dimanche 31 août 2008, richard terry wrote: > snip.. > > > Did you look at the "PictureDatabase" example? It stores images files > > from disk into a database, and retrieves them. > > Thanks, yes I've done that overnight since your suggestion, and now have > this problem: > > My gambas code goes