Hello target:
On Feb 14, 11:44=A0am, target <rmtar...@[EMAIL PROTECTED]
> wrote:
> Hi friends: I need to select a group of records that
> are shown inside a browse...how can I active the key
> shift+arrow down in order to get those records in one
> step....thanks in advance
Seems like you could include a function in the UDF for your browse:
If last key pressed is shift+down (and not EOF)
add the current record number to the select array, and
highlight the current record, and
return to browse with instructions to move down one record.
If last key pressed is shift+up and the array is not empty
delete the current record number from the select array, and
unhighlight the current record, and
return to browse with instructions to move up one record.
If next key pending is not shift+down, shift+up and is not an action
key
empty the select array, and
unhighlight all records / repaint the screen, whatever.
I am not sure how you would highlight the selected records... maybe a
separate display field?
David A. Smith


|