Hi all, a new question (is not a problem with the grid itself), it's only to know the best way to do it.
I have a grid with .... 200 lines
I want to "auto select" 50 of them, via clipboard. I mean, i have a list with this 50 items to search at the grid, find and select them.
Actually i'm pasting the list on another grid and with a loop searching for the items on the first grid.
Is there any way to just drag a file (a txt with the items, one on each line) for example and select this? what event must i use fot this ?
Thanks !!!
For any who searchs something similar:
Event: BeforeClipboardAction
Code:If Action = FlexClipboardActionPaste Then Tcop = Clipboard.GetText 'do what you need Cancel = True end If
it's perfect.
thanks!




Reply With Quote