On 29-Dec-04, at 3:35 AM, FFL wrote:
I have two editexts in my app window. RB takes care of dragndropping
selected chunks of text between these two fields, and this pastes a
copy of the selection into other field, thanks to RB.
How can i change this to have selected text cut from field1 and pasted
into field2 as default behaviour, and copy-and-paste when
keyboard.asyncoptionkey true ?
Thanks one more time!
In Editfield2's Text change event put the following code:
If Not Keyboard.AsyncOptionKey Then EditField1.SelText=""
Or if you don't have 5.2 or up
If Not Keyboard.AsyncOptionKey Then
EditField1.SelText=""
End If
Terry
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
|