gettingstarted
[Top] [All Lists]

Re: Paste or move

To: Getting Started <gettingstarted at lists dot realsoftware dot com>
Subject: Re: Paste or move
From: Terry Ford <tmford at shaw dot ca>
Date: Wed, 29 Dec 2004 11:24:19 -0800
Delivered-to: gettingstarted at lists dot realsoftware dot com
References: <BDF33F2F dot 604E%kim at webguide dot com dot au> <3396e7e204122611437a75b18d at mail dot gmail dot com> <p06200703bdf4d6f98aa6 at 192 dot 168 dot 0 dot 1> <3396e7e20412261333725a7dda at mail dot gmail dot com> <p06200705bdf4df788886 at 192 dot 168 dot 0 dot 1> <3396e7e20412261426227ab0ab at mail dot gmail dot com> <p0620070abdf4ee4f02f2 at 192 dot 168 dot 0 dot 1> <41CF3F44 dot 3020406 at realsoftware dot com> <3396e7e204122614503bac7cf0 at mail dot gmail dot com> <p0620070cbdf4f2e515f5 at 192 dot 168 dot 0 dot 1> <3396e7e2041226180969c191f2 at mail dot gmail dot com> <p06200745bdf845b282f5 at [192 dot 168 dot 0 dot 1]>

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>

<Prev in Thread] Current Thread [Next in Thread>