TreeView Click Event

RandomCoder

Well-Known Member
Licensed User
Longtime User
Please can we have a treeview click event?
I've managed to get around my context menu problems by removing the AfterSelect event and placing all the code within the context menu click event.
But this means that I must always use the context menu to initiate actions. A seperate click event for the treeview would overcome this problem.

Thanks,
RandomCoder
 

RandomCoder

Well-Known Member
Licensed User
Longtime User
Is there anyway of utilising the Form MouseUp event?
I did try this but the treeveiw blocked the event from happening - I know this is going to be a silly question BUT is it possible to somehow bring the Form to the front whilst still showing the tree view? Then I would be able to use the MouseUp event.

Regards,
RandomCoder
 

agraham

Expert
Licensed User
Longtime User
Sorry no. I can't think of a way round this. You might be able to get somehwere at a really low level using the dzEventsMagic library to hook some of the windows messages. Also, on the desktop only, I could extend my ControlEvents library to capture the click event but this wouldn't work on the device.
 
Top