Hi,
I have modified ANYGUIv2.8.au3 so that it works again.
Only changes are:
;$sztext = _GUICtrlListGetText($nID, $dragIdx)
$sztext = _GUICtrlListBox_GetText($nID, $dragIdx)
;_GUICtrlListDeleteItem($nID, $dragIdx)
_GUICtrlListBox_DeleteString($nID, $dragIdx)
;_GUICtrlListInsertItem($nID, $sztext, $dragIdto)
_GUICtrlListBox_InsertString($nID, $sztext, $dragIdto)
;_GUICtrlListSelectIndex($nID, $dragIdto)
_GUICtrlListBox_SetCurSel($nID, $dragIdto)
The following script now works (to remove title bar from existing notepad window):
#include "ANYGUIv2.8.au3"
Opt ("WinTitleMatchMode", 4)
$xh = WinGetHandle("Untitled - Notepad")
$Style = 0x00C00000
$ExStyle = -1
$result = _TargetStyle("unset", 1, $Style, $ExStyle, $xh)
Btw the includes are:
#include <GUIconstants.au3>
#include <WindowsConstants.au3>
#include <GUIListBox.au3>
Thanks and enjoy. ANYGUIv2.8.au3