Hi,
Is it possible to select multiple rows in a continuous form using the ctrl
key and not the shift key (similar to the list box behavior)? I need to
select rows in diferent places on the form.
Thanks in advance,
Hi,
Is it possible to select multiple rows in a continuous form using the ctrl
key and not the shift key (similar to the list box behavior)? I need to
select rows in diferent places on the form.
Thanks in advance,
No, unlike Excel or a multi-select listbox, selection in continuous or datasheet views must be sequential. Try it and see.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
You might consider adding a Bound Control, say a Checkbox or Radio Button, and select your Records via this route. You could later deselect them, when closing the Form or at some other point in the process, through an Update Query or by walking through a RecordSetClone and resetting them to False.
Linq ;0)>
Good point Missinglinq. Since each desired record would have to be clicked anyway, just click a checkbox. Create a yes/no field in table to bind checkbox control to.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.