this code sits as my message3 in #sub DlgProc. i have 2 questions below...
i have 2 Grids and i want to return which of the Grids was edited. i am using LVN_ENDLABELEDIT but dont know how to return the control ID so i can execute a sub script against a specific Grid
another question regarding NOTIFY message. i see this returns the row and col that was clicked but how do I return the text of that row/col?
;messages3
NMHDR* nh=+lParam
if(nh.idFrom=3) ret DT_Ret
if(nh.idFrom=6) ret DT_Ret
(hDlg scAutomate_Grid_Notify(nh))
#endregion
ret 2
i have 2 Grids and i want to return which of the Grids was edited. i am using LVN_ENDLABELEDIT but dont know how to return the control ID so i can execute a sub script against a specific Grid
case LVN_ENDLABELEDIT
,out "end edit: item=%i subitem=%i text=%s" di.item.iItem di.item.iSubItem di.item.pszText
another question regarding NOTIFY message. i see this returns the row and col that was clicked but how do I return the text of that row/col?