Re: [Gambas-user] Form.ShowModal in Gambas3

2010-09-27 Thread Benoît Minisini
> I have problems with modal forms (OpenSuse, qt4 here). > There always can be done something with them that leads to trouble. > See example. > > If I can handle these things by "implementing the event handler", please > tell me how to. :-) > > Regards > Matti For the first problem, it does not

Re: [Gambas-user] Gambas3 :: Method signature and documentation

2010-09-27 Thread Benoît Minisini
> Ok, don't worry, I think I'll need to wait for the implementation or the > correction :-) > > But the another strange thing is that the method signature (Bug fixed in > revision 3241) doesn’t appears :-( > What do you mean by that? -- Benoît Minisini

[Gambas-user] gb2: having same project open twice and code saving

2010-09-27 Thread kevinfishburne
The project I'm working on has a client module and server module, with shared modules/procedures/variables between the two. The user chooses the mode from a GUI upon running it. Consequently I have it running in client mode on bare metal and server mode in a virtual machine with a separate IP addr

Re: [Gambas-user] Gambas3 :: Method signature and documentation

2010-09-27 Thread Lord Quo
Ok, don't worry, I think I'll need to wait for the implementation or the correction :-) But the another strange thing is that the method signature (Bug fixed in revision 3241) doesn’t appears :-( Regards. -Mensaje original- De: Benoît Minisini [mailto:gam...

Re: [Gambas-user] Gambas3 :: Method signature and documentation

2010-09-27 Thread Benoît Minisini
> Hi all again. > > > > I developed a component, which I included him documentation with the double > quotes '': > > > > '' +Description > > '' Initialize a web browser view with the help on a specific symbol. > > '' +Arguments > > '' - #hWebView# is the WebView control to init

[Gambas-user] Gambas3 :: Method signature and documentation

2010-09-27 Thread Lord Quo
Hi all again. I developed a component, which I included him documentation with the double quotes '': '' +Description '' Initialize a web browser view with the help on a specific symbol. '' +Arguments '' - #hWebView# is the WebView control to initialize. I created the exec

[Gambas-user] Form.ShowModal in Gambas3

2010-09-27 Thread Matti
I have problems with modal forms (OpenSuse, qt4 here). There always can be done something with them that leads to trouble. See example. If I can handle these things by "implementing the event handler", please tell me how to. :-) Regards Matti test2.tar.gz Description: GNU Zip compressed data --

Re: [Gambas-user] Question about date conversion in Gambas v2

2010-09-27 Thread Olivier Cruilles
Thank's Benoit, It's exactly that I need. Olivier Le 27 sept. 2010 à 20:44, Benoît Minisini a écrit : >> Hi Benoit, >> >> I have just a question about the possibility to convert in Gambas v2 a >> variable in format Date to a value of this date in number of seconds like >> in Unix command ? >>

Re: [Gambas-user] Question about date conversion in Gambas v2

2010-09-27 Thread Jussi Lahtinen
Or use shell with "date +%s". Jussi 2010/9/27 Benoît Minisini > > Hi Benoit, > > > > I have just a question about the possibility to convert in Gambas v2 a > > variable in format Date to a value of this date in number of seconds like > > in Unix command ? > > > > In my projet i need to use dat

Re: [Gambas-user] Feature request: optional packages

2010-09-27 Thread M. Cs.
Thanks! I hope there will be few changes with the existing code. 2010/9/27 Benoît Minisini > > When will be the change to version 3.00? > > I try to make a release candidate before the end of the year. > > > Will the 2.xx projects be > > compatible with it? > > No. You have to change things. But

[Gambas-user] ME.Height and Menus

2010-09-27 Thread tobias
Good evening, i never had to use menues in my programs, but now i have to reproduce a program written in delphi for our ubuntu computers at school, only for education purposes (the program was also written by students, don't worry ;)). this program has a menue and a simple textarea just under i

Re: [Gambas-user] Question about date conversion in Gambas v2

2010-09-27 Thread Benoît Minisini
> Hi Benoit, > > I have just a question about the possibility to convert in Gambas v2 a > variable in format Date to a value of this date in number of seconds like > in Unix command ? > > In my projet i need to use date value in number of seconds and not in > standard format as for example this o

Re: [Gambas-user] Feature request: optional packages

2010-09-27 Thread Benoît Minisini
> When will be the change to version 3.00? I try to make a release candidate before the end of the year. > Will the 2.xx projects be > compatible with it? No. You have to change things. But no so many. For example the documentation website is based on a CGI script written with the Gambas 3 IDE

Re: [Gambas-user] Feature request: optional packages

2010-09-27 Thread M. Cs.
When will be the change to version 3.00? Will the 2.xx projects be compatible with it? -- Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate you

Re: [Gambas-user] Feature request: optional packages

2010-09-27 Thread Benoît Minisini
> I'd like to see an option during packaging to add external packages as > dependencies. It could be done with or without version number (only package > name). This is done in Gambas 3. Regards, -- Benoît Minisini -- S

[Gambas-user] Feature request: optional packages

2010-09-27 Thread M. Cs.
I'd like to see an option during packaging to add external packages as dependencies. It could be done with or without version number (only package name). -- Start uncovering the many advantages of virtual appliances and sta

Re: [Gambas-user] Feature request "TODO/FIXME"

2010-09-27 Thread EA7DFH
El 27/09/10 00:29, Benoît Minisini escribió: >> El 26/09/10 21:36, Benoît Minisini escribió: Hi, Benoît It would be fine if you could implement a 'tasks system', like in other IDEs, to keep track of pending tasks or fixes. For example, if the text editor finds a commen

Re: [Gambas-user] Logical error in Gambas2.21

2010-09-27 Thread Benoît Minisini
> PUBLIC SUB MaxFind(tomb AS String[], minta AS String) AS Integer ' A > function in Archs module that finds the highest index in the array tomb > which contains minta > DIM supst AS String[] > DIM mfind AS Integer = -1 > DIM cel AS Integer > supst = NEW String[] > supst = tomb > WHILE supst.Find(m

[Gambas-user] Logical error in Gambas2.21

2010-09-27 Thread M. Cs.
PUBLIC SUB MaxFind(tomb AS String[], minta AS String) AS Integer ' A function in Archs module that finds the highest index in the array tomb which contains minta DIM supst AS String[] DIM mfind AS Integer = -1 DIM cel AS Integer supst = NEW String[] supst = tomb WHILE supst.Find(minta) <> -1 cel =

[Gambas-user] Logical error in Gambas2.21

2010-09-27 Thread M. Cs.
PUBLIC SUB MaxFind(tomb AS String[], minta AS String) AS Integer ' A function in Archs module that finds the highest index in the array tomb which contains minta DIM supst AS String[] DIM mfind AS Integer = -1 DIM cel AS Integer supst = NEW String[] supst = tomb WHILE supst.Find(minta) <> -1 cel =