Re: [Gambas-user] wish

2009-11-17 Thread Jerry McBride
On Tuesday 17 November 2009 09:55:03 Jean-Yves F. Barbier wrote: > Hi, > > It would be (very) nice to have the possibility to freely format text > in ValueBox for I/O (may be the same syntax as in DBase screens). > My wish would be the ability to compile gambas and not have to drag in anything

[Gambas-user] wish

2009-11-17 Thread Jean-Yves F. Barbier
Hi, It would be (very) nice to have the possibility to freely format text in ValueBox for I/O (may be the same syntax as in DBase screens). -- -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-

Re: [Gambas-user] strange behaviour property visible

2009-11-17 Thread Jean-Yves F. Barbier
Doriano Blengino a écrit : > It is not strange - it is simply normal. > Screen refresh is done in the main loop (every graphical application > does so, even in other OSes), so you will not see screen changes when > your code is running an event handler. If you really want, you put a > WAIT (may

Re: [Gambas-user] strange behaviour property visible

2009-11-17 Thread Doriano Blengino
Jean-Yves F. Barbier ha scritto: > gb 2.17 debian sid > == > > Hi, > > I've got something strange: if I don't add a wait line between > a visible property and a call, it don't work at all: > > PUBLIC SUB btnOk_Click() > MDB.MyHost = txtbHost.Text > MDB.MyDB = txtbDB.Text > MDB

[Gambas-user] strange behaviour property visible

2009-11-17 Thread Jean-Yves F. Barbier
gb 2.17 debian sid == Hi, I've got something strange: if I don't add a wait line between a visible property and a call, it don't work at all: PUBLIC SUB btnOk_Click() MDB.MyHost = txtbHost.Text MDB.MyDB = txtbDB.Text MDB.MyUsr = txtbLogin.Text MDB.MyPass = txtbPass.Text