Re: [Gambas-user] Possible bug in round() function

2014-01-31 Thread Ricardo Díaz Martín
Regards, Ricardo 2014-01-30 Benoît Minisini > Le 30/01/2014 11:33, Ricardo Díaz Martín a écrit : > > Hi guys, > > > > Try to do this in the gambas console: > > > > ? round (283.5 * 0.21, -2) > > 59,53 > > > > ? 283.5 * 0.21 > > 59,535

[Gambas-user] Possible bug in round() function

2014-01-30 Thread Ricardo Díaz Martín
Hi guys, Try to do this in the gambas console: ? round (283.5 * 0.21, -2) 59,53 ? 283.5 * 0.21 59,535 ? round(59.535, -2) 59,54 Why round (283.5 * 0.21, -2) doesn't works as expected? (or as I expected...) I got the same wrong behavior in my program using something like fAux = round(fNumber1,

Re: [Gambas-user] Writing a text file from the contents of a text area

2013-12-15 Thread Ricardo Díaz Martín
Bill, take a look to gambas documentation for the easy way to save a string to a text file. http://gambasdoc.org/help/comp/gb/file/save?v3 Regards, Ricardo Diaz 2013/12/15 John Rose > Bill, > > The textarea control (i.e. as you see it on the form) has a number > of lines. But I'm also interes

Re: [Gambas-user] Program picture icon

2013-10-23 Thread Ricardo Díaz Martín
> >op 23-10-13 12:22, Ricardo Díaz Martín schreef: > > 2013/10/22 Johny Provoost [1] > > Just get an icon in the icon property in your fmain.form > > > Sorry Johny, but I think you're in a mistake... Could you send us an > example of this or a screenshot? &

Re: [Gambas-user] Program picture icon

2013-10-23 Thread Ricardo Díaz Martín
2013/10/22 Johny Provoost > Just get an icon in the icon property in your fmain.form Sorry Johny, but I think you're in a mistake... Could you send us an example of this or a screenshot? -- October Webinars: Code for

Re: [Gambas-user] Program picture icon

2013-10-22 Thread Ricardo Díaz Martín
AFAIK you can't insert an Icon in the executable file as you can do in MS Windows. You have to do it using .desktop file or something similar. 2013/10/21 Charlie > Bump! > > > > -- > View this message in context: > http://gambas.8142.n7.nabble.com/Program-picture-icon-tp43471p43741.html > Sent

Re: [Gambas-user] Container help

2013-10-22 Thread Ricardo Díaz Martín
Sounds it's because the theme you are using in you OS... Please, don't bump. It isn't a forum for sale a bike 2013/10/21 Charlie > Bump > > > > -- > View this message in context: > http://gambas.8142.n7.nabble.com/Container-help-tp43472p43742.html > Sent from the gambas-user mailing list archi

Re: [Gambas-user] Gambas3 not start

2013-04-21 Thread Ricardo Díaz Martín
Did you tried with another theme? -- 2013/4/21 Rodrigo Maia : > Em dom 21 abr 2013, às 19:08:47, Ricardo Díaz Martín escreveu: >> Looks like theres is a problem with your theme. Can you change it an >> try another one? >> >> BTW are you using gnome or kde? >

Re: [Gambas-user] Gambas3 not start

2013-04-21 Thread Ricardo Díaz Martín
Looks like theres is a problem with your theme. Can you change it an try another one? BTW are you using gnome or kde? Regards, Ricardo Díaz 2013/4/21 Rodrigo Maia : > Em dom 21 abr 2013, às 16:36:39, Olivier Cruilles escreveu: >> Hello, >> >> You need to give the Linux distribution, from where

Re: [Gambas-user] Mysql connection loose country language preferences

2013-04-11 Thread Ricardo Díaz Martín
Hi Jorge, I'm using gambas like mysql front end apss for a long long time too. I have never experimented this problem. My question is why do you need to keep open database connection for a long time? I only keep open connection for a while when I retrieve/save information from database. Maybe it's

Re: [Gambas-user] Bugs in 5607 or before (last nemh update is also affected)

2013-04-02 Thread Ricardo Díaz Martín
Thanks Benoit!! -- <http://www.oceanosoft.com> 2013/4/2 Benoît Minisini > Le 01/04/2013 22:30, Ricardo Díaz Martín a écrit : > > Opps, I forgot the attached file :-( > > > > > > 2013/4/1 Ricardo Díaz Martín > > > >> Hi, > >> >

Re: [Gambas-user] Bugs in 5607 or before (last nemh update is also affected)

2013-04-01 Thread Ricardo Díaz Martín
Opps, I forgot the attached file :-( 2013/4/1 Ricardo Díaz Martín > Hi, > > I attach an example of the bugs detected. In my box I got name of the form > #0 instead FMain. > I also got signal 11 when you try to set one variable to a non-exists > control with a try sentence >

[Gambas-user] Bugs in 5607 or before (last nemh update is also affected)

2013-04-01 Thread Ricardo Díaz Martín
Hi, I attach an example of the bugs detected. In my box I got name of the form #0 instead FMain. I also got signal 11 when you try to set one variable to a non-exists control with a try sentence Using gambas3 rev 5607 [System] OperatingSystem=Linux Kernel=3.5.0-26-generic Architecture=x86_64 Dis

Re: [Gambas-user] Gambas2: Replace doesn't replace

2013-03-12 Thread Ricardo Díaz Martín
Hi Rolf, You have to use in your code txt = Replace(txt, alterString, neuerString) instead of Replace(txt, alterString, neuerString) In http://gambasdoc.org/help/lang/replace?v2 you can see as Replace works: *Result* *= Replace (* *String* *,* *Pattern* *,* *ReplaceString* [ *,* *Comparison

Re: [Gambas-user] Autoresize in gridview

2013-03-10 Thread Ricardo Díaz Martín
Thanks!! 2013/3/9 Benoît Minisini > Le 01/03/2013 13:45, Ricardo Díaz Martín a écrit : > > Hi Benoit, > > > > I think It could be good idea to add new property to gridview control > > related with AutoResize. The name could be something like > > Colu

[Gambas-user] Autoresize in gridview

2013-03-01 Thread Ricardo Díaz Martín
Hi Benoit, I think It could be good idea to add new property to gridview control related with AutoResize. The name could be something like ColumnToAutoResize (integer from 0 to gridview.columns.count). I try to explain: Sometimes you're filling a gridview in a resizable form and the row you want

[Gambas-user] Treeview behaviour have changed with new gambas3 versions

2012-11-26 Thread Ricardo Díaz Martín
Hi Benoit, I just update gambas3 from 2 months gambas version and now treeview are expanded by default. Is there any reason to change the old treeview default behaviour? If not please set expanded = false by default. Regards, Ricardo -

Re: [Gambas-user] Forms controls type

2012-10-17 Thread Ricardo Díaz Martín
Thanks a lot Fabien. I was getting crazy cause I couldn't remember the way to do it. Regards, Ricardo 2012/10/17 Fabien Bodard > > a écrit : > > > Hi, > > > > How can I know the control type of MyForm.Controls["SomeControl"] ? > > (ComboBox, TextBox, TexArea, ) > > > > Sorry if it's too bas

[Gambas-user] Forms controls type

2012-10-17 Thread Ricardo Díaz Martín
Hi, How can I know the control type of MyForm.Controls["SomeControl"] ? (ComboBox, TextBox, TexArea, ) Sorry if it's too basic but I'm stucked! :-( Regards, Ricardo Díaz -- Everyone hates slow websites. So do we. Mak

Re: [Gambas-user] gb3 latest revision and 3-3.3.3 segfault

2012-10-11 Thread Ricardo Díaz Martín
Kevin, Are you using remote access? Can you see in systems logs wich library got the problem when you type in terminal gambas3? Regards, 2012/10/11 Kevin Fishburne > On 10/11/2012 03:39 AM, Fabien Bodard wrote: > > Do a make uninstall after.. Configure > > > > Then go to the /usr/local/bin rem

[Gambas-user] Looks like a small bug when reenabliing form in textarea controls

2012-09-06 Thread Ricardo Díaz Martín
Hi, Maybe there is some problem with textareas when you set Enabled property to true in runtime. If you set in runtime a form to enabled = false and then change by code the text inside a textarea and the set enabled = true again the text area forecolor change to gray. See the example. Please no

Re: [Gambas-user] Who use gb.report ? (to all gambas users)

2012-08-31 Thread Ricardo Díaz Martín
You didn't attach infobook.db 2012/8/30 Jack > Le 30/08/2012 15:26, Fabien Bodard a écrit : > > For jack... Gb.report is more easy to use :) > > Yes Fabien, > I admire your work and I will use gb.report when i have a little more > time :) > > > > --

Re: [Gambas-user] Who use gb.report ? (to all gambas users)

2012-08-30 Thread Ricardo Díaz Martín
Hi Fabien, I'm not using gb.report cause I use my own code to create libreoffice documents. And I make my own code because when I started using gambas there wasn't gb.report. In my todo list there is a big note to try to share this system with the gambas users but I don't have enough time to do i

Re: [Gambas-user] Gambas-3 & Ubuntu 12.10 Quantal

2012-08-24 Thread Ricardo Díaz Martín
Please, read http://gambas.sourceforge.net/en/main.html 2012/8/24 John Rose > FAO Sebastian Kulesz, > > How do the svn & version shown on the Launchpad webpage of your ppa > relate to the version number, which Benoit quotes when asking people to > try a new version (for bug fixes / new feature

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-18 Thread Ricardo Díaz Martín
2012/8/17 Benoît Minisini > Le 17/08/2012 12:24, Ricardo Díaz Martín a écrit : > > Ok, so when you define special events for tablets and make PointerX and > > PointerY relative to the control I'll change the project. > > > > Regards, > > > > Hi again,

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-17 Thread Ricardo Díaz Martín
Ok, so when you define special events for tablets and make PointerX and PointerY relative to the control I'll change the project. Regards, 2012/8/17 Benoît Minisini > Le 17/08/2012 08:50, Ricardo Díaz Martín a écrit : > > Ok, I'm in the forum. So if you change I'l

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
t Minisini > Le 16/08/2012 19:37, Ricardo Díaz Martín a écrit : > > Yes, now works fine!! > > > > Thanks a lot Benoit > > > > Cool. Now beware that I may change the interface for reading tablet > events sooner or later before the version release! > > Now

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
Yes, now works fine!! Thanks a lot Benoit 2012/8/16 Benoît Minisini > Le 16/08/2012 17:16, Ricardo Díaz Martín a écrit : > > He it goes! > > > > OK. This was a stupid error with { ... }. Please try revision #5048! >

Re: [Gambas-user] Frame Control

2012-08-16 Thread Ricardo Díaz Martín
Ivan, You are using Clearlooks in gnome but not in qt. You need to install qtconfig to set one border visible frame theme (like clearlooks for qt). Regards, Ricardo 2012/8/16 Ivan Kern > At moment I use Clearlooks theme > > -Ursprüngliche Nachricht- > Von: Fabien Bodard [mailto:gambas

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
He it goes! 2012/8/16 Benoît Minisini > Le 16/08/2012 17:05, Ricardo Díaz Martín a écrit : > > More extra information... > > > > If I keep the pen pressed (it means mouse down its fired) I can move the > > pen to everywhere in the screen with no crash. If I try to

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
MouseDown sometimes where fired and sometimes not. It was my mistake. Both of then are right fired. Sorry. Regards, Ricardo 2012/8/16 Ricardo Díaz Martín > Extra information. > > I said that IDE crash after the poject crash. So I try now to do a gdb to > gambas3 and I got this: >

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
led] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". ERROR: #2: Cannot load class 'CReportBrush': Unable to load class file [Inferior 1 (process 6213) exited with code 01] Maybe it's related maybe not. I don't know... 2012/8/16 Ricardo Dí

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
Yes, with gimp works nice. 2012/8/16 Benoît Minisini > Le 16/08/2012 16:16, Ricardo Díaz Martín a écrit : > > Benoit, > > > > Ummm, take an oulook to this: > http://doc.trolltech.com/4.6/qtabletevent.html > > > > this is the event definition: > > QTa

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
t xTilt, int yTilt, qreal tangentialPressure, qreal rotation, int z, Qt::KeyboardModifiers keyState, qint64 uniqueID ) there is a "keyState specifies which keyboard modifiers are pressed (e.g., Ctrl)." Could it be the segment fault for this keyState property? Regards, Ricardo 2012/8/

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
tablet" name example. Everything works in this example. In adition looks like xtilt and ytilt are allways 0 with my wacom bamboo pen. Rotation is setted to -14.0625 like in gambas3. Hope that it helps you. Regards, Ricardo Díaz 2012/8/16 Benoît Minisini > Le 16/08/2012 09:06, Ricardo Díaz M

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
In addition I attach the project with last modifications. Regards 2012/8/16 Ricardo Díaz Martín > Ok, this is the information I got: > > - When I said crash in the IDE too, it means after the crash in the > project, if you still moving the pen in the tablet, the IDE got the cra

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-16 Thread Ricardo Díaz Martín
7 If I can help you with extra information please say to me. Regards, Ricardo Díaz 2012/8/15 Benoît Minisini > Le 15/08/2012 20:09, Ricardo Díaz Martín a écrit : > > When the IDE crash you can see 'core' was generated (but I > > don't know where is it to attach

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-15 Thread Ricardo Díaz Martín
4 Memory=5965424 kB DistributionVendor=Ubuntu DistributionRelease="Ubuntu 12.04 LTS" Desktop=Gnome [Gambas 3] Version=3.2.90 Path=/usr/local/bin/gbx3 [Libraries] Qt4=libQtCore.so.4.8.1 GTK+=libgtk-x11-2.0.so.0.2400.10 Regards, Ricardo Díaz 2012/8/10 Ricardo Díaz Martín

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-08-09 Thread Ricardo Díaz Martín
Thanks Benoit, I'm going directly to the shop to buy a wacom tablet to test it. Hope to try it this weekend. I'll keep you informed. Regards, 2012/8/10 Benoît Minisini > Le 25/07/2012 08:15, Ricardo Díaz Martín a écrit : > > Hi, > > > > I wonder if th

[Gambas-user] Individual cell width in gridview control

2012-07-31 Thread Ricardo Díaz Martín
Hi to all, Is there a way to change some specific cell in a gridview control to differente width the column got? It's something like if you write some text in one cell and the next to the right is empty the text will use the empty cell space for itself. Some tips about to do it? Regards, Ricard

[Gambas-user] Bug when you press CTRL+A to select all controls in a form

2012-07-31 Thread Ricardo Díaz Martín
Hi, Probably there is a bug using this shortcut. To reproduce it, open the form in the project, click in the background at the end of the form and press CTRL+A. Then I got the screenshot. [System] OperatingSystem=Linux Kernel=3.2.0-27-generic Architecture=x86_64 Memory=5965424 kB DistributionVen

Re: [Gambas-user] Gridview title row height

2012-07-27 Thread Ricardo Díaz Martín
Yes, now tittle row resizes in the right size. Regards 2012/7/27 Benoît Minisini > Le 26/07/2012 21:55, Ricardo Díaz Martín a écrit : > > I tried on before to write the email... and doesn't work > > > > It should be fixed in revision #4994. > > R

Re: [Gambas-user] Rounding to 2 decimals

2012-07-27 Thread Ricardo Díaz Martín
Yes, gambas convert them but I you can have some problems with "-", "." and "," symbols if you are using formatted numbers 2012/7/27 Fabien Bodard > Le 27 juil. 2012 08:33, "Ricardo Díaz Martín" > > a écrit : > > > > Hi rocko >

Re: [Gambas-user] no code

2012-07-26 Thread Ricardo Díaz Martín
Hi John, In my own experience I recommended to all when there is a problem like this, rebuild again the source code deleting trunk folder and getting it again from svn. I got the same version and everything works ok. If you don't want to get svn trunk again, try to do a make clean and then ./reco

Re: [Gambas-user] Rounding to 2 decimals

2012-07-26 Thread Ricardo Díaz Martín
Hi rocko As you can read this http://gambasdoc.org/help/lang/round you have to put perAmnt = Round((prmAmnt / totAmnt * 100), -2). In addition you'd have to convert the Text to float on before to do the division to avoid errors or using ValueBox. Regards, Ricardo Díaz 2012/7/27 LeszekK > Valu

Re: [Gambas-user] Gridview title row height

2012-07-26 Thread Ricardo Díaz Martín
I tried on before to write the email... and doesn't work 2012/7/26 Fabien Bodard > As a workaround do: > Firsttext/nsecondtext/n > Le 26 juil. 2012 16:45, "Ricardo Díaz Martín" > > a écrit : > > > Hi, > > > > I wonder if there is a way

Re: [Gambas-user] Reading pen pressure from wacom tablets

2012-07-26 Thread Ricardo Díaz Martín
For me it's enough in qt4. Thanks in advance for your time! Regards, Ricardo Díaz 2012/7/25 Benoît Minisini > Le 25/07/2012 08:15, Ricardo Díaz Martín a écrit : > > Hi, > > > > I wonder if there is some way to read the pen pressure from wacom like > > tab

[Gambas-user] Reading pen pressure from wacom tablets

2012-07-24 Thread Ricardo Díaz Martín
Hi, I wonder if there is some way to read the pen pressure from wacom like tablets in gambas. I have read some documentations for java and looks like wacon tablets works like a normal mouse with some extra properties you can get: pressure, rubber mode, etc... I know there is qt4 support for this

Re: [Gambas-user] Gridview.row ?tag possible

2012-06-14 Thread Ricardo Díaz Martín
It would be great this feature. I explain the way I do. I fill gridview first column with the record key and set the width to 0. So after you got a easy way to get this key. I know there are other ways to do it but this is quite simple. Regards, Ricardo Díaz 2012/6/14 Richard Terry > Hi Benoi

Re: [Gambas-user] Possible bug in textarea foreground color

2012-06-12 Thread Ricardo Díaz Martín
Opps, here it goes! 2012/6/12 Benoît Minisini > Le 11/06/2012 12:17, Ricardo Díaz Martín a écrit : > > Hi, > > > > Try to exec this sample and you can see the text inside textarea is not > > "green". If you select this, then it changes to green. >

[Gambas-user] Possible bug in textarea foreground color

2012-06-11 Thread Ricardo Díaz Martín
Hi, Try to exec this sample and you can see the text inside textarea is not "green". If you select this, then it changes to green. [System] OperatingSystem=Linux Kernel=3.2.0-24-generic Architecture=x86_64 Memory=4046444 kB DistributionVendor=Ubuntu DistributionRelease="Ubuntu 12.04 LTS" Desktop=

[Gambas-user] Transparent expander container and and problem to resize a very height form in the IDE

2012-06-11 Thread Ricardo Díaz Martín
Hi, Please note that maybe is a Ubuntu Unity problem. I'm using ubuntu 12.04 with Unity-2d to test it. After the expanders in the IDE were set to transparent, if you got a a form in the ide higher than your screen view, you can't reduce the size by clicking in white-squares on the form-end place.

Re: [Gambas-user] My Raspberry Pi has arrived!

2012-05-30 Thread Ricardo Díaz Martín
Hi, If you're thinking to use ssh -X I think freenx will be better. I'm using for deploy my software from the last 5 years and works fine. In ubuntu it is very easy to install. But both of them need you install all the gambas enviroment in raspberry pi box and maybe Benoit is only thinking in sen

Re: [Gambas-user] GridView: Missing Left property

2012-03-13 Thread Ricardo Díaz Martín
Thanks! El 14 de marzo de 2012 01:28, Benoît Minisini escribió: > Le 13/03/2012 11:12, Ricardo Díaz Martín a écrit : > > Hi Benoit, > > > > Can you create the synonym Left to X property? It's for keep > compatibility > > whit the older gridview control. &g

Re: [Gambas-user] GridView: Unable to set colum width to 0

2012-03-13 Thread Ricardo Díaz Martín
Works fine. Thanks! El 14 de marzo de 2012 01:35, Benoît Minisini escribió: > Le 13/03/2012 11:46, Ricardo Díaz Martín a écrit : > > Hi Benoit, > > > > After control gridview has been rewrited, I can set to 0 width the first > > column. > > > > I attach a

[Gambas-user] GridView: Unable to set colum width to 0

2012-03-13 Thread Ricardo Díaz Martín
Hi Benoit, After control gridview has been rewrited, I can set to 0 width the first column. I attach and example. Regards, PD: Using QT in Ubuntu test-0.0.1.tar.gz Description: GNU Zip compressed data -- Keep Your Dev

[Gambas-user] GridView: Missing Left property

2012-03-13 Thread Ricardo Díaz Martín
Hi Benoit, Can you create the synonym Left to X property? It's for keep compatibility whit the older gridview control. Regards, -- Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learnin

Re: [Gambas-user] Issues with 'double click' & Keypress events not working on some controls.

2012-01-26 Thread Ricardo Díaz Martín
Ian, Have you tried with Activate event? Regards 2012/1/27 Ian Roper > Greetings, > I understand that this may be a GTK / QT issue but would like to > understand if there are any 'work around' that I could use. > > Control - Date Chooser. > Control - Folder Chooser. > > Note # With folder choo

Re: [Gambas-user] Help me ....... with Gambas2 and SQlite3

2011-08-16 Thread Ricardo Díaz Martín
It's very easy: - Open file - Read data and transform into SQL inserts - Execute SQL inserts All of these steps are properly documented in gambas help. Regards, Ricardo Díaz 2011/8/16 César Augusto Muñoz Palominos > Hello: > >How I can insert a CSV (comma-separated values) file into S

[Gambas-user] How can I see the allocation non freed?

2011-08-04 Thread Ricardo Díaz Martín
Hi, I got a problem with a non freed allocation when I'm filling a gridview. I use the same sub to fill all the gridviews in the different forms the app and works fine. How can I check wich object are non freed? Regards, Ricardo Díaz --

Re: [Gambas-user] ListBox Mode Property

2011-07-13 Thread Ricardo Díaz Martín
Andrea, As far as I know this is not possible. You can do something like: For i = 0 To ListWithMultipleRowsSelected.Rows.Count - 1 If ListWithMultipleRowsSelected.Rows[i].Selected Then 'you got it Endif Next Regards, Ricardo Díaz 2011/7/13 Andrea Bertini > If i set the mode p

Re: [Gambas-user] Seg fault, rev 3903, odbc db selecting... how to...

2011-06-30 Thread Ricardo Díaz Martín
do > > I just tried back in Gambas2 and got a sig11 > > I used > PRIVATE myDB as NEW Connection > ... > WITH myDB >.Type = "odbc" >.Host = "localhost" >.Login = "Admin" >.Name = "E4Y" > END WITH > > TRY myD

Re: [Gambas-user] Seg fault, rev 3903, odbc db selecting... how to...

2011-06-29 Thread Ricardo Díaz Martín
Hi Caveat, You can look for Ian Roper in this mailing list. I remember he was to be able to to. go http://sourceforge.net/mailarchive/message.php?msg_id=26630386 Regards, Ricardo Díaz 2011/6/29 Caveat > Hi Rolf, > > Many thanks for the reply. Yes, I do have libmdbodbc installed, and the > md

Re: [Gambas-user] A step forward in Gambas!

2011-06-16 Thread Ricardo Díaz Martín
Congratulations! It's a good new. I'll try when mac's package is available. Regards, Ricardo Díaz 2011/6/16 François Gallo > > Hello the english community of Gambas, > > > I ported the Gambas 3 project to Mac OS X 10.6. > it works perfectly and all its components. > > Currently, there is only o

Re: [Gambas-user] Calendar control bug

2011-06-08 Thread Ricardo Díaz Martín
Thanks! Works fine. 2011/6/8 Benoît Minisini > > Hi, > > > > Please, run this gambas3 example. Click on button and then click on the > > calendar left arrow. It shows a Color class error. > > > > ... > > Fixed in revision #3873. > > Regards, > > -- > Benoît Minisini > > > ---

[Gambas-user] Calendar control bug

2011-06-08 Thread Ricardo Díaz Martín
Hi, Please, run this gambas3 example. Click on button and then click on the calendar left arrow. It shows a Color class error. Tryed in 3 boxes with ubuntu 10.10 x86_64 and 11.04 x86_64 and now in (Current gambas3 rev is 3858): [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.35-28-g

[Gambas-user] Calendar control bug

2011-06-08 Thread Ricardo Díaz Martín
Hi, Please, run this gambas3 example. Click on button and then click on the calendar left arrow. It shows a Color class error. Tryed in 3 boxes with ubuntu 10.10 x86_64 and 11.04 x86_64 and now in (Current gambas3 rev is 3858): [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.35-28-g

[Gambas-user] Calendar control bug

2011-06-08 Thread Ricardo Díaz Martín
Hi, Please, run this gambas3 example. Click on button and then click on the calendar left arrow. It shows a Color class error. Tryed in 3 boxes with ubuntu 10.10 x86_64 and 11.04 x86_64 and now in (Current gambas3 rev is 3858): [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.35-28-g

Re: [Gambas-user] To wish list.

2011-05-30 Thread Ricardo Díaz Martín
+1 It would be great!! 2011/5/30 Jussi Lahtinen > Hi! > It would be nice to be able to change order of tabs with drag&drop, just > like in Firefox. > Maybe to Gambas 4! > > Jussi > > -- > vRanger cuts backup time in half

Re: [Gambas-user] We live a dangerous life sometimes...

2011-05-26 Thread Ricardo Díaz Martín
It will be funny if you repair your HD using win 98 XD 2011/5/26 Benoît Minisini > > Sometimes bad power cable connection does things like that, but maybe > > Benoit has already check those. > > > > Jussi > > > > I come back, with a new firmware. > > I have two SATA hard disks. The first one is

Re: [Gambas-user] Gambas 3 menu on Ubuntu Natty

2011-05-01 Thread Ricardo Díaz Martín
Thanks Benoit, it works better (in my box the ide menu shows two times, one in the main ide window and other in the pannel). Regards, Ricardo Díaz 2011/5/1 Benoît Minisini > Hi, > > I have found a workaround for the buggy global menu in Ubuntu Natty. I put > it > in revision #3824. > > I don't

Re: [Gambas-user] Gambas 3 working on Ubuntu Natty with Unity interface

2011-04-29 Thread Ricardo Díaz Martín
Something new in this issue? Regards, Ricardo Díaz 2011/4/23 Benoît Minisini > > gambas menu is disappeared:-( > > > > Andrea Bertini > > > > I have the same problem with the KDE plasma applet that shows the menu on > the > top of the screen, like on Mac. The IDE menu does not show, and I don't

Re: [Gambas-user] Change envent in ComboBox is not fired

2011-04-20 Thread Ricardo Díaz Martín
you could use the Click event? > > Regards > Matti > > Am 20.04.2011 10:24, schrieb Ricardo Díaz Martín: > > Hi, > > > > Example is attached. I'm trying with qt4 libs. > > > > Regards, > > Ricardo Díaz > > > > [OperatingSystem] >

[Gambas-user] Change envent in ComboBox is not fired

2011-04-20 Thread Ricardo Díaz Martín
Hi, Example is attached. I'm trying with qt4 libs. Regards, Ricardo Díaz [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.35-28-generic DistributionVendor=Ubuntu DistributionRelease="Ubuntu 10.10" [System] CPUArchitecture=x86_64 TotalRam=2057124 kB Desktop=Gnome [Gambas] Gamba

Re: [Gambas-user] Why format (0, "#,###") is blank?

2011-04-19 Thread Ricardo Díaz Martín
Thanks 2011/4/19 Benoît Minisini > > Hi to all, > > > > I'm using gambas3 rev 3777 > > > > I think format(0, "#,###") must be 0. I'm not sure but I think in > previous > > gambas3 versions was 0. > > > > Regards, > > Ricardo Díaz > > Mmm. This is a corner case. If you want a zero, use "#,##0". >

[Gambas-user] Why format (0, "#,###") is blank?

2011-04-19 Thread Ricardo Díaz Martín
Hi to all, I'm using gambas3 rev 3777 I think format(0, "#,###") must be 0. I'm not sure but I think in previous gambas3 versions was 0. Regards, Ricardo Díaz -- Benefiting from Server Virtualization: Beyond Initial Work

Re: [Gambas-user] Some issues in revision 3776

2011-04-18 Thread Ricardo Díaz Martín
Thanks Benoit for fast reply. Ok, I'm going to change the "FormsCleaner" sub to include f.Close() Only for your information, last used version was 3572 (2011-02-14) Regards, Ricardo Díaz 2011/4/18 Benoît Minisini > > Hi list, > > > > I have updated gambas3 from svn this weekend and I got now

[Gambas-user] Some issues in revision 3776

2011-04-18 Thread Ricardo Díaz Martín
Hi list, I have updated gambas3 from svn this weekend and I got now some issues: 1- What's happened with gb.info component? It can be selected in project dependencies but it's missing. 2- I usually save a reference to open forms in a collection in the main class of my applications to improve app

Re: [Gambas-user] Crash gambas3 ide when you select a View from a mysql database connection in

2011-02-06 Thread Ricardo Díaz Martín
Hi Benoit, Please, exec this sentences as a script in mysql server. It creates a table an a view. If you make a new connection to this database from the gambas3 IDE. If you select the view from the list, IDE crash (with no 11 signal) I'm using ubuntu 10.10 x64 with gambas3 rev 3537 Regards, 2

[Gambas-user] Crash gambas3 ide when you select a View from a mysql database connection in

2011-02-06 Thread Ricardo Díaz Martín
Hi to all, When you got in the IDE a connection to MySQL database, if you click over a view (not over a table), IDE crash. Views have been declared in mysql as "create view SomeName as select * from SomeTable" and runs ok from mysql command line. I was looking for in gambas3 sources about the cr

Re: [Gambas-user] select columnview row

2011-02-01 Thread Ricardo Díaz Martín
I haven't used columnview control but with gridview is really easy: MyGridView.Row = 0 (gridview with at least 1 row) 2011/2/1 Anthony Tekatch > Is there a way to have the application set the current row of a > ColumnView just like it was clicked by a user? > > When the ColumnView starts up, th

[Gambas-user] Foreground property in CheckBox doesn't work (gambas3)

2011-02-01 Thread Ricardo Díaz Martín
Hi to all, I'm using gambas3 rev 3521 in ubuntu 10.10 x64 with qt libraries. Test is simple. Create new form. Insert a ChekBox control and change foreground property. Nothing happend. Regards, Ricardo Díaz -- Special Off

Re: [Gambas-user] Add Control.Focusable = False to the gambas3 wish list...

2011-02-01 Thread Ricardo Díaz Martín
I addition to the previous email, I don't want the users can move focus to some textboxes by clicking. I only wish some property like AutoFocus = False. It means the control isn't in form's focus cycle. Hope you understand better now. Regards, Ricardo Díaz 2011/2/1 Ricardo Día

[Gambas-user] Add Control.Focusable = False to the gambas3 wish list...

2011-01-31 Thread Ricardo Díaz Martín
Hi to all, I'd like you can choose which controls will be focusable and which ones no. Too much difficult to develop? Regards, Ricardo Díaz -- Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally,

Re: [Gambas-user] Unable to make lastest build

2011-01-30 Thread Ricardo Díaz Martín
Jhon, I recommend to you that complete delete the trunk folder, create again and after: svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk/ ./reconf-all && ./configure -C && make sudo make install I have got some problems like this in the past and after a "clean installa

Re: [Gambas-user] Disappeared error messages

2011-01-27 Thread Ricardo Díaz Martín
Ok, forget my last mail. Works as expected on 3498. Regards, Ricardo 2011/1/27 Ricardo Díaz Martín > In version 3498 works better. I can see again the message error but > double-click on a variable or object doesn't work anymore. > > Regards, > Ricardo Díaz > > 201

Re: [Gambas-user] Disappeared error messages

2011-01-27 Thread Ricardo Díaz Martín
In version 3498 works better. I can see again the message error but double-click on a variable or object doesn't work anymore. Regards, Ricardo Díaz 2011/1/26 Ricardo Díaz Martín > I got the same problem with the same gambas version in the same OS. Compiz > is disabled. > >

Re: [Gambas-user] Disappeared error messages

2011-01-26 Thread Ricardo Díaz Martín
I got the same problem with the same gambas version in the same OS. Compiz is disabled. In addition, when IDE is in debug mode, if you do double-click on a variable (or object), nothing happens, In previous gambas3 versions, a form with detailed info was open. Regards, Ricardo Díaz 2011/1/26 Jus

Re: [Gambas-user] Incorrect name at the top of the lang web page V2 instead of V3

2011-01-13 Thread Ricardo Díaz Martín
Hi Ian, At the current time, the "[3.0]" label, its a link to gambas 3.0 docs. When you see [2.0] it's a link to 2.0 docs. Maybe could be changed but it's only a different way to see the info... Regards, Ricardo Díaz 2011/1/13 Ian Roper > I noticed that at the top of the web page on the Gamba

Re: [Gambas-user] OOT: Email filtering for gambas issue

2011-01-05 Thread Ricardo Díaz Martín
Yes 2011/1/5 Jussi Lahtinen > ? > Every message from gambas mailing list has [Gambas-user] in subject line..? > > Jussi > On Wed, Jan 5, 2011 at 04:25, MSulchan Darmawan > wrote: > > > Dear all, > > > > I did by filtering From header, but I saw someone accidently hit reply > > and send the emai

Re: [Gambas-user] Object-Arrays

2010-12-25 Thread Ricardo Díaz Martín
To add new elements to a dynamic array use: Dim aux as new Image PicNr=PicNr+1 NP.Add(aux,PicNr) Regards, Ricardo Díaz 2010/12/25 Dag-Jarle Johansen > Hello, > > first of all Merry Christmas to everyone. > > It has been a pretty long time since I have done something with Gambas, and > now I h

Re: [Gambas-user] IsFloat

2010-12-20 Thread Ricardo Díaz Martín
I think it's right, because an integer isn't a float. Maybe you're thinking in other function like "CanBeConvertedToFloat()" (doesn't exist in gambas but it's on my own functions set). Regards, Ricardo Díaz 2010/12/20 Jussi Lahtinen > Hi! > > Is this correct; > ? IsFloat("123") > False > > 123

Re: [Gambas-user] Preprocessor in the Gambas 3 compiler

2010-12-19 Thread Ricardo Díaz Martín
> > - SYSTEM, that returns the current OS ("Linux", "FreeBSD", "MacOSX"...) Are you thinking to port gambas3 to MacOSX? Regards, Ricardo Díaz 2010/12/18 Jussi Lahtinen > Nice! > But now I have to consider doing only one version that handles both 32 and > 64 bit architecture... > > Jussi > > >

Re: [Gambas-user] How many is too many in GB3?

2010-12-17 Thread Ricardo Díaz Martín
I don't know about limits. Did you convert the project to gambas3 first? Regards, Ricardo Díaz 2010/12/17 M. Cs. > I've installed gambas3 from ubuntu's PPAs, and the first thing I've > realized > is that the number of allowed constants or code rows fell dramatically. I > have a FMain of 11.000

Re: [Gambas-user] What is the difference about events Show, Open

2010-12-17 Thread Ricardo Díaz Martín
Open is fired only the first time you show a form. In the other hand, Show event is fired for example if you use 2 virtual desktops and change from one to other and change again to the desktop you got the form. Regards, 2010/12/17 Demosthenes Koptsis > Good morning, > > what is the difference a

Re: [Gambas-user] DateBox/DateChoose - numbers on calendar all the same

2010-11-25 Thread Ricardo Díaz Martín
Works fine in 3321. Regards, Ricardo Díaz 2010/11/25 Ricardo Díaz Martín > I got the same problem with calendar control. Now I'm updating gambas3 from > svn. I'm going to try new version if the bug is fixed. > > Regards, > Ricardo Díaz > > > > 2010/11/23 r

Re: [Gambas-user] DateBox/DateChoose - numbers on calendar all the same

2010-11-25 Thread Ricardo Díaz Martín
I got the same problem with calendar control. Now I'm updating gambas3 from svn. I'm going to try new version if the bug is fixed. Regards, Ricardo Díaz 2010/11/23 richard terry > Hi List > > ?Just my machine, but for some reason in my last update there all the days > of > the mont h are '31'

Re: [Gambas-user] gambas3 IDE bug

2010-11-17 Thread Ricardo Díaz Martín
Now works fine. Thanks Benoit 2010/11/17 Benoît Minisini > > Hi, > > > > I have updated today to version 3296 and I got this bug in the IDE. > > > > Attach a project example to reproduce. Open the project in gambas3, go to > > Form_Open() sub and write: > > > > me.fF > > > > Then you got the er

Re: [Gambas-user] Class destructor

2010-11-16 Thread Ricardo Díaz Martín
Thanks a lot, Fabien 2010/11/16 Fabien Bodard > Just > > Public sub _free() > > end > > and at the same level that _init > > public sub _exit() > > > > -- > Fabien Bodard > > > -- > Beautiful is writing same markup. Int

[Gambas-user] Class destructor

2010-11-16 Thread Ricardo Díaz Martín
Hi, Is possible in gambas3 set a sub that will be fire when you set the object = null? I got a gambas class for loading big quantity of data in a gridview in dynamic mode (using the Data event). In this class, I got some "New" sentences that be manually cleaned by a public sub. I want to simply s

  1   2   >