Re: [Gambas-user] painting graph to image continuously

2010-12-17 Thread wally
On Thursday 16 December 2010 22:42:14 Benoît Minisini wrote: On Thursday 16 December 2010 20:15:21 Fabien Bodard wrote: I hope this can help you. This is in few lines how to make a real time graph in gambas Fabian, thank you very much, i'll study this code tomorrow.

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

2010-12-17 Thread Demosthenes Koptsis
Good morning, what is the difference about events Form.Show and Form.Open ? -- Regards, Demosthenes Koptsis. -- Lotusphere 2011 Register now for Lotusphere 2011 and learn how to connect the dots, take your

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 demosthen...@gmail.com Good morning, what

Re: [Gambas-user] painting graph to image continuously

2010-12-17 Thread Benoît Minisini
Benoit, i sent already, but maybe attachments has been rejected. The code below creates 1 circle. After resizing in GB3 i got 4 circles. Doing same in GB2 just a resize of the area is performed and the primarly created circle persists. Public Sub btn_test_Click() 'Drawing Area set

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

2010-12-17 Thread 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 rows written in gb2. Could you give me an esteem how much I have to modulize it to become acceptable for gb3? Thanks!

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. mohar...@gmail.com 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

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

2010-12-17 Thread Benoît Minisini
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 rows written in gb2. Could you give me an esteem how much I have to modulize it to become acceptable for gb3? Thanks!

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

2010-12-17 Thread Fabien Bodard
11000 rows in one class ... wh Le 17 décembre 2010 13:12, Benoît Minisini gam...@users.sourceforge.net a écrit : 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

[Gambas-user] What has happened to ValueBox

2010-12-17 Thread Michael
In Gambas 2 I had a number of Value Boxes which I assigned to Group Value. Then I would identify the calling box in code as follows: Public Sub Value_GotFocus() dim txtTemp as valueBox = LAST SELECT CASE txtTemp.Name 'Returns name of calling Value Box various actions In Gambas 3 I got

Re: [Gambas-user] What has happened to ValueBox

2010-12-17 Thread Benoît Minisini
In Gambas 2 I had a number of Value Boxes which I assigned to Group Value. Then I would identify the calling box in code as follows: Public Sub Value_GotFocus() dim txtTemp as valueBox = LAST SELECT CASE txtTemp.Name 'Returns name of calling Value Box various actions In Gambas 3

Re: [Gambas-user] What has happened to ValueBox

2010-12-17 Thread Michael
Benoit, On the line Dim txtTemp as Valuebox = LAST I get an error Expecting valuebox got textbox But the last control was a valuebox. It works if I change the code to Dim txtTemp as Textbox even though it is not a textbox firing the event. Then I cannot read the name that I assigned to the

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

2010-12-17 Thread M. Cs.
2010/12/17 Fabien Bodard gambas...@gmail.com 11000 rows in one class ... wh Le 17 décembre 2010 13:12, Benoît Minisini gam...@users.sourceforge.net a écrit : I've installed gambas3 from ubuntu's PPAs, and the first thing I've realized is that the number of allowed constants or code

[Gambas-user] can't copy and paste controls in gambas3

2010-12-17 Thread Zach Smith
I can't copy and paste a control on a form. I right click on a button to copy (or use CTRL-C). Then if I right click on the form, the paste option in the menu is disabled. I'm running gambas 3 v 3354. It works fine in gambas 2.22.

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

2010-12-17 Thread Kevin Fishburne
On 12/17/2010 09:31 AM, M. Cs. wrote: Yes, it is a complex program, with a lot of buttons, grids etc. I've already moved many of the parts into modules, still I have quite a lot of subroutines. I've transformed the gb2 into gb3. I'm preparing the porting to gb3, and I've encountered this

[Gambas-user] Gambas2 IDE Snap to Grid Question

2010-12-17 Thread nando
Does anyone know how to turn off the grid snapping feature when place an object in a form in the IDE? I am placing a label in a specific place. I hold the CNTRL down so it is off while moving it. However, when I click on another object and then click on the original one, it snaps to the grid.

Re: [Gambas-user] What has happened to ValueBox

2010-12-17 Thread Benoît Minisini
Benoit, On the line Dim txtTemp as Valuebox = LAST I get an error Expecting valuebox got textbox But the last control was a valuebox. It works if I change the code to Dim txtTemp as Textbox even though it is not a textbox firing the event. OK I see! The ValueBox of Gambas 2 inherits

Re: [Gambas-user] Gambas2 IDE Snap to Grid Question

2010-12-17 Thread Benoît Minisini
Does anyone know how to turn off the grid snapping feature when place an object in a form in the IDE? I am placing a label in a specific place. I hold the CNTRL down so it is off while moving it. You mean the SHIFT key? However, when I click on another object and then click on the

Re: [Gambas-user] can't copy and paste controls in gambas3

2010-12-17 Thread Benoît Minisini
I can't copy and paste a control on a form. I right click on a button to copy (or use CTRL-C). Then if I right click on the form, the paste option in the menu is disabled. I'm running gambas 3 v 3354. It works fine in gambas 2.22. Humf. It works perfectly there. Does someone else has

Re: [Gambas-user] painting graph to image continuously

2010-12-17 Thread wally
On Friday 17 December 2010 11:14:49 Benoît Minisini wrote: Benoit, i sent already, but maybe attachments has been rejected. The code below creates 1 circle. After resizing in GB3 i got 4 circles. Doing same in GB2 just a resize of the area is performed and the primarly created

Re: [Gambas-user] can't copy and paste controls in gambas3

2010-12-17 Thread Zach Smith
2010/12/17 Benoît Minisini gam...@users.sourceforge.net: I can't copy and paste a control on a form. I right click on a button to copy (or use CTRL-C).  Then if I right click on the form, the paste option in the menu is disabled.  I'm running gambas 3 v 3354.  It works fine in gambas 2.22.

Re: [Gambas-user] painting graph to image continuously

2010-12-17 Thread wally
On Friday 17 December 2010 11:14:49 Benoît Minisini wrote: Benoit, i sent already, but maybe attachments has been rejected. The code below creates 1 circle. After resizing in GB3 i got 4 circles. Doing same in GB2 just a resize of the area is performed and the primarly created

Re: [Gambas-user] Gambas2 IDE Snap to Grid Question

2010-12-17 Thread nando
Yes, I do mean the SHIFT key. I am using 2.9 When do you expect to begin not supporting 2 anymore? -Fernando -- Original Message --- From: Benoît Minisini gam...@users.sourceforge.net To: nand...@nothingsimple.com, mailing list for gambas users gambas-user@lists.sourceforge.net

[Gambas-user] gb3 make error again

2010-12-17 Thread math.e...@t-online.de
rev. 3373: make fails, the error seems to start here: libtool: compile: g++ -DHAVE_CONFIG_H -I. -I.. -DQT3_SUPPORT -DQT_SHARED -DQT3_SUPPORT-I/usr/include/QtCore-I/usr/include/QtGui -I/usr/include/Qt3Support -I/usr/include/QtNetwork -I/usr/include/QtSql

Re: [Gambas-user] painting graph to image continuously

2010-12-17 Thread Fabien Bodard
2010/12/17 wally wa...@voosen.eu: On Friday 17 December 2010 11:14:49 Benoît Minisini wrote: Benoit, i sent already, but maybe attachments has been rejected. The code below creates 1 circle. After resizing in GB3 i got 4 circles. Doing same in GB2 just a resize of the area is

[Gambas-user] Did anyone have a script to record webcame picture in video files

2010-12-17 Thread firman
I Almost done my project about monitoring camera using webcam with gambas 3... the picture or streaming video can displayed on picturebox but i still have a problem to record in video file mode r like avi, mpg or other compressed format.. please help me if anyone can solve my problem. i will

Re: [Gambas-user] What has happened to ValueBox

2010-12-17 Thread Michael
Thanks. I'll be off air for 2 weeks due to moving house. I look forward to getting latest version in 2011. Regards Michael On 18/12/10 04:24, Benoît Minisini wrote: Benoit, On the line Dim txtTemp as Valuebox = LAST I get an error Expecting valuebox got textbox But the last control was a

[Gambas-user] Gambas 3 IDE features request

2010-12-17 Thread Fabián Flores Vadell
Hi. There are two features I beleave could be fine in Gambas 3 IDE: 1. Add an option named create getters and setters (or similar) to the context menu in the code editor, so the IDE can take care of this boring work. A simple comment can define attributes than will have accessor and modifiers,