Jump to content

List help


 Share

Recommended Posts

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

#include <GuiConstants.au3>

GuiCreate("Example")
$list = GuiCtrlCreateList("",10, 10, 100, 200)
GuiCtrlSetData($list, "one|two|three|four|five|six|seven")
$button = GuiCtrlCreateButton("Delete Sel",150, 100, 100, 200)

GuiSetState()
While 1
   $msg = GuiGetMsg()
   If $msg = $GUI_EVENT_CLOSE Then ExitLoop
   If $msg = $button Then _GuiLB_DeleteCurSel($list)
WEnd

; Delete current selection in a listbox
Func _GuiLB_DeleteCurSel($ref)
    Local $sel = GuiSendMsg($ref, 0x0188, 0, 0);LB_GETCURSEL
    Return GuiSendMsg($ref, 0x0182, $sel, 0);LB_DELETESTRING
EndFunc
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...