[Gambas-user] ColumnView select unselect item

2016-05-18 Thread Gianluigi
An easier way Regards Gianluigi MonteiroColumn-0.0.2.tar.gz Description: GNU Zip compressed data -- Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked

Re: [Gambas-user] Select and then unselect an item from a CollumnView

2016-05-18 Thread Gianluigi
Attention your mail appears as spam See attached Regards Gianluigi 2016-05-18 18:32 GMT+02:00 Jose Monteiro : > Dear Fellows: In order to find an item inside a very populated CollumView, > the user types an integer on a ValueBox and the search if made by: > cvNFMercantil.MoveTo(vbPedidoNFMercant

Re: [Gambas-user] Select and then unselect an item from a CollumnView

2016-05-18 Thread Gianluigi
Attention your mail appears as spam See attached Regards Gianluigi 2016-05-18 18:32 GMT+02:00 Jose Monteiro : > Dear Fellows: In order to find an item inside a very populated CollumView, > the user types an integer on a ValueBox and the search if made by: > cvNFMercantil.MoveTo(vbPedidoNFMercant

[Gambas-user] Select and then unselect an item from a CollumnView

2016-05-18 Thread Jose Monteiro
Dear Fellows: In order to find an item inside a very populated CollumView, the user types an integer on a ValueBox and the search if made by: cvNFMercantil.MoveTo(vbPedidoNFMercantil.Text) cvNFMercantil[vbPedidoNFMercantil.Text].Selected = True First problem: the item is selected, but the control

Re: [Gambas-user] Toolbox lost and NOT found

2016-05-18 Thread gambas
On 2016-05-18 10:33, Benoît Minisini wrote: > Le 18/05/2016 16:58, gambas a écrit : >> Hi All: >> >> While using Gambas 3.8.4, I inadvertently did something to cause the >> forms toolbox to disappear and I can't figure out how to get it back. >> The properties list is still there, just the toolbo

Re: [Gambas-user] Toolbox lost and NOT found

2016-05-18 Thread Benoît Minisini
Le 18/05/2016 16:58, gambas a écrit : > Hi All: > > While using Gambas 3.8.4, I inadvertently did something to cause the > forms toolbox to disappear and I can't figure out how to get it back. > The properties list is still there, just the toolbox is gone. > > Any help appreciated. > > Thanks, > Ge

[Gambas-user] Toolbox lost and NOT found

2016-05-18 Thread gambas
Hi All: While using Gambas 3.8.4, I inadvertently did something to cause the forms toolbox to disappear and I can't figure out how to get it back. The properties list is still there, just the toolbox is gone. Any help appreciated. Thanks, Gene PS - F4 just toggles the properties list, no tool

Re: [Gambas-user] Probably a really dumb question about Error

2016-05-18 Thread Benoît Minisini
Le 18/05/2016 12:47, richard terry a écrit : > Hi List, > > I ran in to an odd problem when I used: > > Try whatever > If error then > do-somehing > end if > > Where despite Try Whatever, not generating an error, it still when on to > the do-something. When I logged what was happening, it was

Re: [Gambas-user] Probably a really dumb question about Error

2016-05-18 Thread Jussi Lahtinen
Depends on your needs. You can use Try without Error, if you don't need to handle the error situation, but that's bit weird and probably not the right way to do what ever you try to do. Otherwise I use it like this: Try something If Error Then do something Error.Clear Endif So, you need to c

[Gambas-user] Probably a really dumb question about Error

2016-05-18 Thread richard terry
Hi List, I ran in to an odd problem when I used: Try whatever If error then do-somehing end if Where despite Try Whatever, not generating an error, it still when on to the do-something. When I logged what was happening, it was carrying forward the last known error in my program (in this ca