Re: [Gambas-user] Gambas 3 Grid/Table question

2010-11-14 Thread Rolf-Werner Eilert
Am 13.11.2010 02:01, schrieb Benoît Minisini: >> Sorry, I was kinda tired this morning :-) >> >> There is a linewrap in the Gridview even with Gambas 2, but it is a >> default (at least I have not yet found a way to deactivate it) and it >> does not by itself adjust the line height appropriately. >

Re: [Gambas-user] Problem with data types

2010-11-14 Thread Michael
Thanks Benoit, The help page for gb.mysql says it is not available for Gambas2 but it doesn't matter as one of the beauties of Gambas, it is always possible to find a way around problems. When can we expect V3 generally available? Regards Mike On 14/11/10 22:05, Benoît Minisini wrote: >> I am p

Re: [Gambas-user] Display & character on Message box

2010-11-14 Thread Ron
You are right, it never worked, so I assumed it still didn't, but now it does work in titles...hmmm Sorry for the noise... On Sun, Nov 14, 2010 at 4:48 PM, Matti wrote: > Strange. Here I have 2-2.21.0 (from 24-07-2010) without any svn updates, and > all > of the following works perfectly: > >  M

Re: [Gambas-user] Using WebBrowser Control With Squid Proxy

2010-11-14 Thread jcrebt
Like gambas but should go back to vb -- View this message in context: http://old.nabble.com/Using-WebBrowser-Control-With-Squid-Proxy-tp30212765p30212882.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] Display & character on Message box

2010-11-14 Thread Matti
Strange. Here I have 2-2.21.0 (from 24-07-2010) without any svn updates, and all of the following works perfectly: ME.Title = "Loading " & Chr(38) & " starting" Message.Info("Loading " & Chr(38) & " starting") ME.Title = "Loading " & "&" & " starting" Message.Info("Loading " & "&" & " sta

Re: [Gambas-user] Using WebBrowser Control With Squid Proxy

2010-11-14 Thread Benoît Minisini
> Just started learning Gambas > How set Webbrowser control to use a proxy server that requires > authentication (Squid proxy server)? > In VB6 I could have used the WinInet with InternetSetOption > Any help would be greatly appreciated In Gambas 2 you can't, unless you configure KDE3 proxy settin

[Gambas-user] Using WebBrowser Control With Squid Proxy

2010-11-14 Thread jcrebt
Just started learning Gambas How set Webbrowser control to use a proxy server that requires authentication (Squid proxy server)? In VB6 I could have used the WinInet with InternetSetOption Any help would be greatly appreciated -- View this message in context: http://old.nabble.com/Using-We

Re: [Gambas-user] Display & character on Message box

2010-11-14 Thread Ron
You have the same issue with title propery of forms. On Nov 14, 2010 2:19 PM, "Demosthenes Koptsis" wrote: > Nope, none of them works. > > On Sun, 2010-11-14 at 12:06 +0100, Benoît Minisini wrote: >> > On gambas2-2.21-svn3289 >> > >> > Message.Info("&") >> > >> > is not working! >> > >> > Message

Re: [Gambas-user] Elusive Gambas3 crashing bug

2010-11-14 Thread Jussi Lahtinen
More... Shouldn't Finally to be read after Catch, not before? Now I get: TestErrorManagment(1) = 1 <-- Catch is never read! TestErrorManagment(2) = 21 I exepected; TestErrorManagment(1) = 4 TestErrorManagment(2) = 21 Right now word Finally doesn't do anything. Private Function TestErrorManagm

Re: [Gambas-user] CDE. An interesting packaging tool

2010-11-14 Thread Demosthenes Koptsis
yes this is better. i tried cde with gambas project and it copied all the files in cde-package included passwd /home directory and other files that application used. This feature should work only for libs and as an option for packagers not "an only way" method. This is my opinion. On Sun, 2010-

Re: [Gambas-user] Display & character on Message box

2010-11-14 Thread Demosthenes Koptsis
Nope, none of them works. On Sun, 2010-11-14 at 12:06 +0100, Benoît Minisini wrote: > > On gambas2-2.21-svn3289 > > > > Message.Info("&") > > > > is not working! > > > > Message is empty. > > > > Mmm. Maybe now Qt interprets it as pure HTML, or a text mnenomic... > > Try: > > Message.

Re: [Gambas-user] Elusive Gambas3 crashing bug

2010-11-14 Thread Jussi Lahtinen
More... ? Week("07/24/2005") 30 Should be 29. Jussi On Sat, Nov 13, 2010 at 19:36, Jussi Lahtinen wrote: > More... > > Dim TestSingle As Single > Dim pp As Pointer > > TestSingle = 33.1 > pp = VarPtr(TestSingle) > > SinglePtr(pp) = 33.1 is False! Gives -2... > > > Jussi > > > > > > On Fri,

Re: [Gambas-user] CDE. An interesting packaging tool

2010-11-14 Thread Doriano Blengino
Benoît Minisini ha scritto: >> Although I'm not a gambas developer, I appreciate the idea. I would prefer >> to have all the must-haves packaged into single file, instead of fighting >> with unresolved package dependencies. It's better to have a myprogram.bin >> installer, than myprogram.rpm, mypro

Re: [Gambas-user] CDE. An interesting packaging tool

2010-11-14 Thread Benoît Minisini
> > > Although I'm not a gambas developer, I appreciate the idea. I would > > > prefer to have all the must-haves packaged into single file, instead of > > > fighting with unresolved package dependencies. It's better to have a > > > myprogram.bin installer, than myprogram.rpm, myprogram.deb... Mayb

Re: [Gambas-user] CDE. An interesting packaging tool

2010-11-14 Thread Benoît Minisini
> > Although I'm not a gambas developer, I appreciate the idea. I would > > prefer to have all the must-haves packaged into single file, instead of > > fighting with unresolved package dependencies. It's better to have a > > myprogram.bin installer, than myprogram.rpm, myprogram.deb... Maybe > > Be

Re: [Gambas-user] CDE. An interesting packaging tool

2010-11-14 Thread Benoît Minisini
> Although I'm not a gambas developer, I appreciate the idea. I would prefer > to have all the must-haves packaged into single file, instead of fighting > with unresolved package dependencies. It's better to have a myprogram.bin > installer, than myprogram.rpm, myprogram.deb... Maybe Benoit would a

Re: [Gambas-user] Display & character on Message box

2010-11-14 Thread Benoît Minisini
> On gambas2-2.21-svn3289 > > Message.Info("&") > > is not working! > > Message is empty. > Mmm. Maybe now Qt interprets it as pure HTML, or a text mnenomic... Try: Message.Info("&&") And: Message.Info("&") Regards, -- Benoît Minisini ---

Re: [Gambas-user] Problem with data types

2010-11-14 Thread Benoît Minisini
> I am porting all my vb.net apps to gambas and I am very happy with the > results, particularly the gb.db component. However it does have some > limitations: > 1. I need to determine the type of database columns using > irsData.Fields[intCounter].Type. This works fine for strings, floats, > intege

Re: [Gambas-user] Project - Make ...

2010-11-14 Thread Doriano Blengino
NW ha scritto: > Can anyone help me with the difference between Project --> Make --> Source > Archive and Project --> Make --> Installation Package please? I think that > the installation package is aimed at setting up a usable Gambas program for > someone who does not have Gambas installed. Is

[Gambas-user] Project - Make ...

2010-11-14 Thread NW
Can anyone help me with the difference between Project --> Make --> Source Archive and Project --> Make --> Installation Package please? I think that the installation package is aimed at setting up a usable Gambas program for someone who does not have Gambas installed. Is that correct? If so, w