Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Doriano Blengino
Kadaitcha Man ha scritto: If I create a new form with the dialog support it gets this code: Public Sub Run() As Boolean If I had a textbox on the form and wanted to return its contents, what would be the change in syntax required? None whatsoever. Create a public variable in a

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/11 Doriano Blengino doriano.bleng...@fastwebnet.it: Kadaitcha Man ha scritto: If I create a new form with the dialog support it gets this code: Public Sub Run() As Boolean If I had a textbox on the form and wanted to return its contents, what would be the change in syntax required?

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Fabien Bodard
if you do not calm kadaitcha man you gonna get fired from this mailing list. I have not used it but you are insulting and it is not necessary. I would simply point out to you that all your intervention are not necessarily very bright Also if this is not to answer the question ... It is wiser to

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Fabien Bodard
if not MyForm.Run() then Print MyForm.sValue endif 2009/12/11 Fabien Bodard gambas...@gmail.com: if you do not calm kadaitcha man you gonna get fired from this mailing list. I have not used it but you are insulting and it is not necessary. I would simply point out to you that all your

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Les Hardy
richard terry wrote: On Friday 11 December 2009 17:22:54 you wrote: 2009/12/11 richard terry rte...@pacific.net.au: Hi List, My really stupid question for the week. I'm sorry. You've already done that three times this week. If I had a textbox on the form and wanted to return its contents,

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/11 Fabien Bodard gambas...@gmail.com: Also if this is not to answer the question ... It is an answer to the question. It is wiser to shut up! if you do not calm kadaitcha man you gonna get fired from this mailing list. I have not used it but you are insulting and it is not

[Gambas-user] Where is TextView?

2009-12-11 Thread Rolf-Werner Eilert
I just started to convert a more complex Gambas1 app to Gambas2. Rather clumsy job... Now I've come over a TextView control which seems not to exist anymore. What can I use instead? TextArea with ReadOnly? Or did I just oversee it? Regards Rolf

[Gambas-user] Isn't there an easier way...

2009-12-11 Thread Rolf-Werner Eilert
...of converting Gambas1 apps to Gambas2? I just thought, rebuilding the forms and dialogs control for control, copying their X, Y, Height and Width values and other properties one by one - it takes hours. Hasn't anyone made a converter for the files yet? No requirement? It couldn't be too

Re: [Gambas-user] Where is TextView?

2009-12-11 Thread Fabien Bodard
2009/12/11 Rolf-Werner Eilert eilert-sprac...@t-online.de: I just started to convert a more complex Gambas1 app to Gambas2. Rather clumsy job... Now I've come over a TextView control which seems not to exist anymore. What can I use instead? TextArea with ReadOnly? Or did I just oversee it?

Re: [Gambas-user] Isn't there an easier way...

2009-12-11 Thread Fabien Bodard
the converted is embbeded in the ide..; (Tool convert forms) You load the v1 project and then call this tool and then compile all... but make a copy of your project before 2009/12/11 Rolf-Werner Eilert eilert-sprac...@t-online.de: ...of converting Gambas1 apps to Gambas2? I just thought,

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Kadaitcha Man
2009/12/11 Fabien Bodard gambas...@gmail.com: in gambas 2 the minimum size of a form is set by the size given at the desing... BWAHAHAHAHAHAHAHAHA! Guess again. if this is not to answer the question ... It is wiser to shut up!

Re: [Gambas-user] menu button events Q

2009-12-11 Thread Fabien Bodard
That's ok on the rev 2475 2009/12/10 richard terry rte...@pacific.net.au: I've a menu button and want to be able to detect a right mouse click over the text of the button. None of the events seem intereceptable in the usual way in code, and creating an observor on the button and using stop

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : in gambas 2 the minimum size of a form is set by the size given at the desing... it's only true if it is a fixed sized, otherwise you can shrink it as you want... -- It's the Magic that counts. -- Larry Wall on Perl's apparent ugliness

Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man

2009-12-11 Thread Emil Tchekov
Dear friend, can you please stop with this behaviour? I will be very thankfull and appreciating your good manners. Thank you very much in advance sincerely Emil -Ursprungliche Nachricht- Von: Kadaitcha Man [mailto:nospam.nospam.nos...@gmail.com] Gesendet: Freitag, 11. Dezember

[Gambas-user] An Apology

2009-12-11 Thread Kadaitcha Man
I have pissed off a few people. If there is anyone whom I have not pissed off, I apologise. -- Return on Information: Google Enterprise Search pays you back Get the facts. http://p.sf.net/sfu/google-dev2dev

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true And in gambas3 with windows.type at Utility 2009/12/11 Jean-Yves F. Barbier 12u...@gmail.com: Fabien Bodard a écrit : in gambas 2 the minimum size of a form is set by

[Gambas-user] Kadaitcha Man

2009-12-11 Thread Emil Tchekov
-Ursprüngliche Nachricht- Von: Kadaitcha Man [mailto:nospam.nospam.nos...@gmail.com] Gesendet: Freitag, 11. Dezember 2009 11:44 An: Emil Tchekov Betreff: Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man 2009/12/11 Emil Tchekov e...@tchekov.net: Thank you very

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true zarb, it would be a good idea to also have min X,Y (not especially linked to a toolbar) And in gambas3 with windows.type at Utility -- If

Re: [Gambas-user] Isn't there an easier way...

2009-12-11 Thread Rolf-Werner Eilert
Hmm! Interesting! I copied the original directory to another place with a different name and loaded the project into Gambas2. It complained, wanted to know Do you really want..., OK. Then I chose Tools/Update all Forms. After some work, it says Cannot open file Component missing

Re: [Gambas-user] Isn't there an easier way...

2009-12-11 Thread Fabien Bodard
if you can send e directly your project ... i will be able to see the problem... 2009/12/11 Rolf-Werner Eilert eilert-sprac...@t-online.de: Hmm! Interesting! I copied the original directory to another place with a different name and loaded the project into Gambas2. It complained, wanted to

Re: [Gambas-user] menu button events Q

2009-12-11 Thread Benoît Minisini
I've a menu button and want to be able to detect a right mouse click over the text of the button. None of the events seem intereceptable in the usual way in code, and creating an observor on the button and using stop events dosn't seem to work either (gambas3 + qt4). Is there

Re: [Gambas-user] An Apology

2009-12-11 Thread Benoît Minisini
I have pissed off a few people. If there is anyone whom I have not pissed off, I apologise. Kadaitcha Man, Thanks for your apology. But you are going to stop throwing insults in your posts, otherwise you will be banned. There are about six hundred people on this mailing-list, I don't want

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Werner
On 11/12/09 19:01, Fabien Bodard wrote: ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true And in gambas3 with windows.type at Utility Yes that works for me. Thanks! Werner

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Kadaitcha Man
Fabien Bodard wrote: ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true Not true. The minimum size of any form shown as modal is the design-time size.

Re: [Gambas-user] SVN

2009-12-11 Thread Jean-Yves F. Barbier
Norarg a écrit : PLS avoid cross-posting: open a new post by adressing to gambas-user@lists.sourceforge.net I would like to try out newer releases of Gambas, fox. 3.0. I had some problems with other releases in the past - in the end gambas did not work at all. I have tried to figure it

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
2009/12/11 Kadaitcha Man nospam.nospam.nos...@gmail.com: Fabien Bodard wrote: ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true Not true. The minimum size of any form shown as modal is the design-time size. yes

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true O_o: I checked Toolbox and my CPU climbed up to 100% (gbx2), starting the application but not showing anything!? -- Trouble always comes at

Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man

2009-12-11 Thread Werner
On 11/12/09 18:27, Emil Tchekov wrote: Dear friend, can you please stop with this behaviour? I will be very thankfull and appreciating your good manners. Thank you very much in advance sincerely Emil I googled him up and could not find any constructive comments made by him

Re: [Gambas-user] Minimum Size of a Form / for Kadaitcha Man

2009-12-11 Thread Alessandro Rinaldi
http://www.mombu.com/medicine/psychology/t-trolls-the-kadaitcha-man-1061830.html I see :) -- Return on Information: Google Enterprise Search pays you back Get the facts. http://p.sf.net/sfu/google-dev2dev

Re: [Gambas-user] SVN

2009-12-11 Thread Norarg
Jean-Yves F. Barbier schrieb: Norarg a écrit : PLS avoid cross-posting: open a new post by adressing to gambas-user@lists.sourceforge.net I would like to try out newer releases of Gambas, fox. 3.0. I had some problems with other releases in the past - in the end gambas did not work

Re: [Gambas-user] Minimum Size of a Form

2009-12-11 Thread Fabien Bodard
2009/12/11 Jean-Yves F. Barbier 12u...@gmail.com: Fabien Bodard a écrit : ok Error from mine :) ... but for one part the min size is fixed at the desing but only for windows with ToolBox option at true O_o: I checked Toolbox and my CPU climbed up to 100% (gbx2), starting the application but

Re: [Gambas-user] SVN

2009-12-11 Thread Norarg
thanks again, get some worthy informations here :) btw. prices are not really the problem here, I pay 70 pesos=12€ monthly, the availability is: because of the size of ARG they have very little of cables, everything is wireless. In the village where I live, they have two internet-providers -

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Les Hardy
richard terry wrote: On Friday 11 December 2009 17:22:54 you wrote: 2009/12/11 richard terry rte...@pacific.net.au: Hi List, My really stupid question for the week. I'm sorry. You've already done that three times this week. If I had a textbox on the form and wanted to return its contents,

[Gambas-user] Timer

2009-12-11 Thread Toni
Hi, I've an application that has a timer that should get fired every 1 second. Sometimes when the application is running and my desktop is under heavy load the timer doesn't get fired in time. Despite this, my expectation was that gambas would queue all this Timer events and they would get

Re: [Gambas-user] menu button events Q

2009-12-11 Thread richard terry
On Friday 11 December 2009 22:38:06 you wrote: I've a menu button and want to be able to detect a right mouse click over the text of the button. None of the events seem intereceptable in the usual way in code, and creating an observor on the button and using stop events dosn't seem to

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Fabien Bodard
2009/12/12 Kadaitcha Man nospam.nospam.nos...@gmail.com: 2009/12/11 Fabien Bodard gambas...@gmail.com: Static Public sValue as string Public Sub Run () As Boolean I knew there was a reason not to use your method and to make the recommendation I did. If you tested that code then I presume

Re: [Gambas-user] Really dumb question about dialog forms

2009-12-11 Thread Kadaitcha Man
2009/12/12 Fabien Bodard gambas...@gmail.com: 2009/12/12 Kadaitcha Man nospam.nospam.nos...@gmail.com: In short, Fabien, as far as I can tell, the only way to make it work correctly in gb2 is to do it the way I originally said to do it. Of course I'm open to being shown to be wrong. in fact