Question How to do a AUTO-ZAP functionality - Editor widget

Hi,

Can any one tell us, how we can implement a auto-zap functionality to an editor widget. If the user double click in the editor field , he should be able to select the entire contet of that editor.
TIA
Philip
 

andre42

Member
Well, there is a MOUSE-SELECT-DBLCLICK event or alternatively a LEFT-MOUSE-DBLCLICK event. You could try to write something like
Code:
ON LEFT-MOUSE-DBLCLICK OF wEdit :
  wEdit:SET-SELECTION(1,32000).
END.
(I didn't try it so it might work differently.)
 
Top