Psibernetic Posted January 10, 2007 Posted January 10, 2007 I am checking for the double click event using this function...I wrote a UDF for it like it says I need to...I got confused in the help file with DLL structs tho... can any one clear up my confusion PLZ... CODE func psi_DetectDblClick() $psi_SelectedItemListView=_GUICtrlListViewGetCurSel($xHiddenListView) Select Case $psi_SelectedItemListView<>-1 $psi_LonePath=_GUICtrlListViewGetItemText($xHiddenListView, $psi_SelectedItemListView,1) $psi_Filename=_GUICtrlListViewGetItemText($xHiddenListView, $psi_SelectedItemListView,0) If $psi_Filename<>"N/A" Then $psi_FullPath=$psi_LonePath & $psi_Filename GUICtrlSetData($xFilePath, $psi_FullPath) EndIf EndSelect EndFunc [sup]Psibernetic[/sup]My Creations:X-HideSecuracy
Psibernetic Posted January 10, 2007 Author Posted January 10, 2007 Wow ok I found a much easier solution to checking if a listview Item was clicked CODE If GUIGetMsg()=$GUI_EVENT_PRIMARYDOWN then ;in here do ur checking the $GUI_EVENT_PRIMARYDOWN is the event returned when u left clck on ur GUI so just see if an Item is selected endif [sup]Psibernetic[/sup]My Creations:X-HideSecuracy
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