Jump to content

How can I remove selected item from ListBox


bshoenhair
 Share

Recommended Posts

http://www.autoitscript.com/fileman/users/public/CyberSlug/lb_wrappers_self-contained.au3

EDIT: If you want to delete as soon as the user clicks on the list item then change the one line to If $msg = $list Then _GuiLB_DeleteSelection($list)

GuiCreate("Example")
GuiCtrlCreateList("",10, 10, 100, 100)
$list = GuiCtrlSetData(-1, "one|two|three|four|five|six|seven|eight", "two")
$del = GuiCtrlCreateButton("Delete selection", 10, 150, 100, 30)

GuiSetState()

While 1
   $msg = GuiGetMsg()
   If $msg = -3 Then Exit
   If $msg = $del Then _GuiLB_DeleteSelection($list)
WEnd

Func _GuiLB_DeleteSelection($ref)
   Local $index =  GuiSendMsg($ref, 0x0188, 0, 0);LB_GETCURSEL
   GuiSendMsg($ref, 0x0182, $index, 0);LB_DELETESTRING
EndFunc
Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...