Re: [Gambas-user] select columnview row

2011-02-01 Thread Anthony Tekatch
On Tue, 01 Feb 2011 19:28:02 +0100, Jack wrote: > > > 2011/2/1 Anthony Tekatch > > > > Is there a way to have the application set the current row of a > > ColumnView just like it was clicked by a user? > > > > When the ColumnView starts up, the default is unselected, I want my > > code to select

Re: [Gambas-user] select columnview row

2011-02-01 Thread Jack
> 2011/2/1 Anthony Tekatch > > Is there a way to have the application set the current row of a > ColumnView just like it was clicked by a user? > > When the ColumnView starts up, the default is unselected, I want my code > to select the first row, but I cannot write to .Current.Key Yes, if i unde

Re: [Gambas-user] select columnview row

2011-02-01 Thread Ricardo Díaz Martín
I haven't used columnview control but with gridview is really easy: MyGridView.Row = 0 (gridview with at least 1 row) 2011/2/1 Anthony Tekatch > Is there a way to have the application set the current row of a > ColumnView just like it was clicked by a user? > > When the ColumnView starts up, th

[Gambas-user] select columnview row

2011-02-01 Thread Anthony Tekatch
Is there a way to have the application set the current row of a ColumnView just like it was clicked by a user? When the ColumnView starts up, the default is unselected, I want my code to select the first row, but I cannot write to .Current.Key Thanks, Anthony -