DigDeep Posted February 14, 2018 Posted February 14, 2018 I have a GUICtrlCreateListView with single column. I am able to get the Right click menu for 'Select All', 'Copy' options but using the Send("^a") for Select All and Send("^c") or Clipget() for Copy does not work. Can someone please help with any example? Thanks
Zedna Posted February 15, 2018 Posted February 15, 2018 Something for you to start with: $text = '' $n = _GUICtrlListView_GetItemCount($ListView1) For $i = 0 To $n - 1 $text &= _GUICtrlListView_GetItemTextString($ListView1, $i) & @CRLF Next ClipPut($text) DigDeep 1 Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now