[Gambas-user] Not Found component gb.form in /usr/local/lib/gambas2

2009-12-17 Thread craf
Hello. When I create a new project with database support. The hidden file . project show me the components that are needed to run the application. Example. # Gambas Project File 2.0 Title=myproject Startup=FMain Library=gb.db Library=gb.gtk Library=gb.gtk.ext Library=gb.form =>NOT FOUND Libr

[Gambas-user] [Fwd: Not Found component gb.form in /usr/local/lib/gambas2]

2009-12-17 Thread craf
Hello. When I create a new project with database support. The hidden file . project show me the components that are needed to run the application. Example. # Gambas Project File 2.0 Title=myproject Startup=FMain Library=gb.db Library=gb.gtk Library=gb.gtk.ext Library=gb.form =>NOT FOUND Libr

Re: [Gambas-user] Problems retrieving the original values

2009-12-17 Thread nando
SQLite REAL is 8B IEEE floating point number Gambas FLOAT is the exact same thing. 1. Make sure your Gambas var is FLOAT and not SINGLE 2. What you see 5.819279E+8 is only a visual representation to humans of what the value really is. Use FORMAT$ to represent it differently the way you wan

Re: [Gambas-user] problems with core functions

2009-12-17 Thread Norarg
thanks, yes I know, but I just did not find this in the documentation, or overread the part I should have seen. I searched for a pretty while before I posted this. sorry regards norarg Ricardo Díaz Martín schrieb: > Norag, > > It's something like this: > > Dim aux as String > > aux = FormWithT

[Gambas-user] Problems retrieving the original values

2009-12-17 Thread M. Cs.
I have a database file in Sqlite which has a REAL type field.When I browse the database in a terminal I have a value 581927884.0, but when I retrieve it to a table!"Size" variable it prints out as 5.819279E+8 which makes troubles for me. Can I have the original number format? --

Re: [Gambas-user] problems with core functions

2009-12-17 Thread Ricardo Díaz Martín
Norag, It's something like this: Dim aux as String aux = FormWithTheTextBox.NameOfTextbox.Selection.Text Is a pleasure to help someone but I recommend to you read documentation on before write in mailing list. Please visit http://gambasdoc.org/help/comp/gb.qt/textbox You only have to read f