If I click a node on a treeview (%ID_TREE2) the following is true and the code that follows executes. If I click the same node again this code is not true (probably because it doesn't detect a change) How do I get a node to satisfy a condition if I want to be able to click the same node twice in a row without moving the selection.
I just want clicking a node to tell the callback to do something wheter I click the node once or several times in a row.
Bob Mechler
Code:
IF (@lpNmh.Code = %TVN_SELCHANGED) AND (@lpNmh.idFrom = %ID_TREE2) THEN
Bob Mechler
Comment