Gillboss Posted June 23, 2008 Posted June 23, 2008 this is the code:expandcollapse popup#include <GuiConstantsEx.au3> #include <GuiListView.au3> $hGui = GuiCreate("TestGui", 200, 100) $hListView = _GUICtrlListView_Create($hGui, "Item|Subitem", 5, 5, 195, 50) $LV_Item1 = _GUICtrlListView_AddItem($hListView, "Item1") GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY") GUISetState() While 1 $msg = GUIGetMsg() Switch $msg Case $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd Func WM_NOTIFY($hWnd, $Msg, $wParam, $lParam) Local $hWndFrom, $iCode, $tNMHDR, $hWndListView $hWndListView = $hListView If Not IsHWnd($hWndListView) Then $hWndListView = GUICtrlGetHandle($hListView) $tNMHDR = DllStructCreate($tagNMHDR, $lParam) $hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom")) $iCode = DllStructGetData($tNMHDR, "Code") Switch $hWndFrom Case $hWndListView Switch $iCode Case $NM_DBLCLK MsgBox(0, "", "Double click") EndSwitch EndSwitch Return $GUI_RUNDEFMSG EndFuncand picture:http://www.zix.co.il/images/z-777430091.jpgoh and my OS is Vista Eng x64Autoit: v3.2.12.1thanks!
Developers Jos Posted June 23, 2008 Developers Posted June 23, 2008 use these includes: #include <GUIConstantsEx.au3> #include <GuiListView.au3> #include <StructureConstants.au3> #include <WindowsConstants.au3> SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Gillboss Posted June 23, 2008 Author Posted June 23, 2008 slove.. so why need to get: MsgBox(0, "", "Double click") (line 37) ??
Developers Jos Posted June 23, 2008 Developers Posted June 23, 2008 slove..Slove = Solved ? so why need to get:MsgBox(0, "", "Double click") (line 37)??It only shows the MSGBOX() for me when I actually double click. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Gillboss Posted June 23, 2008 Author Posted June 23, 2008 when im double click its not show me nothing.. and you thank you about the fixing work Slove my ingysh bad by the way, can u complise EXE and the upload me? maybe there is problem on me O_o
Developers Jos Posted June 23, 2008 Developers Posted June 23, 2008 when im double click its not show me nothing..and you thank you about the fixing work Slove my ingysh bad by the way, can u complise EXE and the upload me? maybe there is problem on me O_oYou are Double clicking the cell containing "Item1"... right ?I am testing in WinXP and haven't tested in Vista. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Gillboss Posted June 23, 2008 Author Posted June 23, 2008 oops! i have to run it as "Run Script (x86)" hmmm and quetion if i want complise it, will it work on xp?
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