Re: [Gambas-user] collection of collection problem

2017-03-21 Thread PICCORO McKAY Lenz
2017-03-21 11:24 GMT-04:00 Charlie : > Can you simplify the code so we can run it or upload the program. lets get simple: i want a registri "order" that have many "products" so : object (1 element with many attrs) and one of those attrs, its the cod_contenido , of the products of the order att

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Riccardo
Thank you, Matti and Gianluigi, that worked. -- View this message in context: http://gambas.8142.n7.nabble.com/Mouse-move-tp58655p58662.html Sent from the gambas-user mailing list archive at Nabble.com. -- Check out th

Re: [Gambas-user] Show records on a WebTable

2017-03-21 Thread Tobias Boege
On Tue, 21 Mar 2017, herberth guzman wrote: > >Le 17/03/2017 à 20:18, Tobias Boege a écrit : > > I didn't test it, but the following is approximately how it goes: > > > > Public Sub WebTable1_Data(Row As Integer, Column As Integer, Data As > > WebTableData) > > Dim i As Integer > > Dim f

Re: [Gambas-user] Show records on a WebTable

2017-03-21 Thread herberth guzman
>Le 17/03/2017 à 20:18, Tobias Boege a écrit : > I didn't test it, but the following is approximately how it goes: > > Public Sub WebTable1_Data(Row As Integer, Column As Integer, Data As > WebTableData) > Dim i As Integer > Dim f As ResultField > > cx = M_DB.Connect() > rs = cx.

Re: [Gambas-user] collection of collection problem

2017-03-21 Thread Charlie
Can you simplify the code so we can run it or upload the program. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/collection-of-collection-problem-tp58654p58659.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Charlie
Riccardo wrote > Is there a way to attach (or modify) the mouse move event to an object > such that it is activated without the left mouse button being pressed? I interpret this to mean that an object (e.g. a panel) should know if the mouse has 'Entered' or 'Left' it. Have a look at the attached

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Gianluigi
You have to change in True the Traking property. Regards Gianluigi 2017-03-21 11:16 GMT+01:00 Riccardo : > Is there a way to attach (or modify) the mouse move event to an object such > that it is activated without the left mouse button being pressed? I want to > monitor the X,Y position of the m

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Matti
Set 'Tracking' = True. Then: Public Sub Form_MouseMove() Print Mouse.X, Mouse.Y End Am 21.03.2017 um 11:16 schrieb Riccardo: > Is there a way to attach (or modify) the mouse move event to an object such > that it is activated without the left mouse button being pressed? I want to > monitor t

[Gambas-user] Mouse move ...

2017-03-21 Thread Riccardo
Is there a way to attach (or modify) the mouse move event to an object such that it is activated without the left mouse button being pressed? I want to monitor the X,Y position of the mouse cursor at all times on the main form... cheers! -- View this message in context: http://gambas.8142.n7.n