[Gambas-user] gb.Text obsolete?

2015-11-09 Thread Rolf-Werner Eilert
From older Gambas2 code, I inherited a Mode = gb.Text in a Replace() function. Gambas 3.8.3 says, it doesn't exist anymore, but it's still mentioned in the help. What should I use instead? Regards Rolf -- Presto, an

Re: [Gambas-user] gb.Text obsolete?

2015-11-09 Thread Benoît Minisini
Le 09/11/2015 16:37, Rolf-Werner Eilert a écrit : > From older Gambas2 code, I inherited a Mode = gb.Text in a Replace() > function. Gambas 3.8.3 says, it doesn't exist anymore, but it's still > mentioned in the help. > > What should I use instead? > > Regards > Rolf > gb.IgnoreCase -- Benoît

Re: [Gambas-user] gb.Text obsolete?

2015-11-09 Thread Tobias Boege
On Mon, 09 Nov 2015, Rolf-Werner Eilert wrote: > From older Gambas2 code, I inherited a Mode = gb.Text in a Replace() > function. Gambas 3.8.3 says, it doesn't exist anymore, but it's still > mentioned in the help. > > What should I use instead? > I think gb.IgnoreCase [0] is the

Re: [Gambas-user] How to ensure Message is visible?

2015-11-09 Thread Jussi Lahtinen
> I get "out of bound" when try GAlarm > > in module Main in sub RemoveAlarm I change "SortAlarms" to "If > iAlarmByRow.Count > 0 Then SortAlarms" for fix the issue > I can't reproduce the problem. Which version you are using? And how did you induce the error? Jussi

[Gambas-user] 3.8.3 has slow editor here

2015-11-09 Thread Rolf-Werner Eilert
Hi folks, Tried out 3.8.3 - everything runs as expected, with one exception: The editor is rather slow, each letter typed in reacts with a delay of ca. 250 ms, or there are groups of letters coming later. Rather confusing when typing. When I type commands, it takes some time to open and close

Re: [Gambas-user] 3.8.3 has slow editor here

2015-11-09 Thread Benoît Minisini
Le 09/11/2015 16:32, Rolf-Werner Eilert a écrit : > Hi folks, > > Tried out 3.8.3 - everything runs as expected, with one exception: The > editor is rather slow, each letter typed in reacts with a delay of ca. > 250 ms, or there are groups of letters coming later. Rather confusing > when typing.

Re: [Gambas-user] gb.Text obsolete?

2015-11-09 Thread Benoît Minisini
Le 09/11/2015 16:41, Benoît Minisini a écrit : > Le 09/11/2015 16:37, Rolf-Werner Eilert a écrit : >> From older Gambas2 code, I inherited a Mode = gb.Text in a Replace() >> function. Gambas 3.8.3 says, it doesn't exist anymore, but it's still >> mentioned in the help. >> >> What should I use

Re: [Gambas-user] How to ensure Message is visible?

2015-11-09 Thread Jussi Lahtinen
> I get "out of bound" when try GAlarm > >> >> in module Main in sub RemoveAlarm I change "SortAlarms" to "If >> iAlarmByRow.Count > 0 Then SortAlarms" for fix the issue >> > > > I can't reproduce the problem. Which version you are using? And how did > you induce the error? > Also, where

Re: [Gambas-user] How to ensure Message is visible?

2015-11-09 Thread Jussi Lahtinen
The stacking is already set above to ensure that alarms are above other windows. The problem is with Message() which does not go above other alarms. Jussi On Mon, Nov 9, 2015 at 9:18 AM, zainudin ahmad wrote: > I hope this code can help > > Public Sub BtnOK_Click() >

[Gambas-user] New gb.web.form component

2015-11-09 Thread Benoît Minisini
Hi, The gb.web.form is a new component whose goal is easing Web application developement by mainly allowing to use the IDE form editor to define your GUI interface. It will use the web browser mainly as a sophisticated terminal. All the application logic will be run on the server. It won't

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread dickfrost
Hey! New message, please read dickfr...@frost-byte.com -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you

[Gambas-user] Fw: new message

2015-11-09 Thread Paul Neuland
Hey! New message, please read Paul Neuland -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily query

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread dickfrost
Hey! New message, please read dickfr...@frost-byte.com -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread John Hutchinson
Hey! New message, please read John Hutchinson -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to

[Gambas-user] Fw: new message

2015-11-09 Thread shlc1
Hey! New message, please read sh...@frontier.com -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily query

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread John Hutchinson
Hey! New message, please read John Hutchinson -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily

[Gambas-user] Fw: new message

2015-11-09 Thread Jason Shuey
Hey! New message, please read Jason Shuey -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily query

[Gambas-user] Fw: new message

2015-11-09 Thread Phyllis J . Youga
Hey! New message, please read Phyllis J. Youga -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread Jason Shuey
Hey! New message, please read Jason Shuey -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily

Re: [Gambas-user] How to ensure Message is visible?

2015-11-09 Thread zainudin ahmad
in my mind the solution only create messagebox by myself (but I never try it before) from a form and the stacking property set to above. or may be someone have a better idea ? On Mon, Nov 9, 2015 at 10:28 PM, Jussi Lahtinen wrote: > The stacking is already set above

Re: [Gambas-user] How to ensure Message is visible?

2015-11-09 Thread Jussi Lahtinen
OK, thanks! This is fixed in version 1.90. Also backup function is now added. Jussi On Tue, Nov 10, 2015 at 12:20 AM, zainudin ahmad wrote: > Some pic may be can help. > pic-1 (reproduce the bug) > pic-2 (out of bounds) > > On Mon, Nov 9, 2015 at 10:29 PM, Jussi

Re: [Gambas-user] Button color doesn't change

2015-11-09 Thread VonZorch
I did it first with the default graphical application, then tried GTK3, GTK2 and QT. All failed to change colors. -- View this message in context: http://gambas.8142.n7.nabble.com/Button-color-doesn-t-change-tp54336p54350.html Sent from the gambas-user mailing list archive at Nabble.com.

[Gambas-user] Fw: new message

2015-11-09 Thread Phyllis J . Youga
Hey! New message, please read Phyllis J. Youga -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread Robert van der Meulen
Hey! New message, please read Robert van der Meulen -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you

[Gambas-user] [SPAM] Fw: new message

2015-11-09 Thread Kurt Vonkoenigseck
Hey! New message, please read Kurt Vonkoenigseck -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily

[Gambas-user] Fw: new message

2015-11-09 Thread Andy Hill
Hey! New message, please read Andy Hill -- Presto, an open source distributed SQL query engine for big data, initially developed by Facebook, enables you to easily query