Can we use a Grid to select multiple rows ? to drag them out of the Grid
like in an List Control.
OR
Can we add Column Headers to a List Control to make it look like a Grid ?

Re: Grid for Multiple Item Selection .. by Jan

Jan
Sun Dec 04 01:13:54 CST 2005

Tanveer,

Create a class with a grid. Add a property called "selected" as an array.
This class can then easily be added to your forms and you can code
extensions directly in the class. Then store the record numbers of the
selected records in this array. You can then use the array to highlight the
selected records, or write code to emulate the standard CTRL & SHIFT
selection methods used in widows. In my experience using an array with
recnos is faster than using a column in the table.

HTH
Jan

"Tanveer H. Malik" <tanmalik@hotmail.com> wrote in message
news:OXwG9sD%23FHA.912@TK2MSFTNGP11.phx.gbl...
> Can we use a Grid to select multiple rows ? to drag them out of the Grid
> like in an List Control.
> OR
> Can we add Column Headers to a List Control to make it look like a Grid ?
>



Re: Grid for Multiple Item Selection .. by Tanveer

Tanveer
Sun Dec 04 01:37:46 CST 2005

Can you borrow me the sample code ..

"Jan" <nomail@nowhere.com> wrote in message
news:u9k1$IK%23FHA.2708@TK2MSFTNGP12.phx.gbl...
> Tanveer,
>
> Create a class with a grid. Add a property called "selected" as an array.
> This class can then easily be added to your forms and you can code
> extensions directly in the class. Then store the record numbers of the
> selected records in this array. You can then use the array to highlight
> the selected records, or write code to emulate the standard CTRL & SHIFT
> selection methods used in widows. In my experience using an array with
> recnos is faster than using a column in the table.
>
> HTH
> Jan
>
> "Tanveer H. Malik" <tanmalik@hotmail.com> wrote in message
> news:OXwG9sD%23FHA.912@TK2MSFTNGP11.phx.gbl...
>> Can we use a Grid to select multiple rows ? to drag them out of the Grid
>> like in an List Control.
>> OR
>> Can we add Column Headers to a List Control to make it look like a Grid ?
>>
>
>