DigDeep Posted February 14, 2018 Share 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 Link to comment Share on other sites More sharing options...
Zedna Posted February 15, 2018 Share 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 Link to comment Share on other sites More sharing options...
DigDeep Posted February 19, 2018 Author Share Posted February 19, 2018 thanks @Zedna Link to comment Share on other sites More sharing options...
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