Razzak

I appreciate the help but I think there may be something wrong on
my computer since I am the only one having this problem.   I am using
the latest build of 7.6 but may have to reinstall it?

The Property ...CopyToClipboard does not pick up the contents of the
DB Edit.  I am using Ctrl V to copy the field ID to put in the Property
command to make sure I it is correct ID and that stays in the clipboard.
and the Paste to command places that in the field not instead of the
DB Edit field contents.

Also, using the example for MNVCDUBE for
   PROPERTY <DBRichTextControlCompID> SET_FOCUS 'TRUE'
   PROPERTY <DBRichTextControlCompID> SHOW_EDITOR 'LASTCHAR'
My cursor goes to the first character and the Editor does not pop up.

Thanks for the examples
Marc




--------------------------------------------------
From: "A. Razzak Memon" <[email protected]>
Sent: Friday, July 03, 2009 10:30 PM
To: "RBASE-L Mailing List" <[email protected]>
Subject: [RBASE-L] - Re: PROPERTY popid copytoclipboard 'TRUE'

At 09:30 AM 7/3/2009, Marc Schluter wrote:

Are there any examples using PROPERTY popid copytoclipboard 'TRUE'?


Marc,

Here you go ...

The following PROPERTY commands are now supported:

01. CopyToClipboard
02. CutToClipboard
03. PasteFromClipboard

01. To copy images or text data TO Windows Clipboard

    PROPERTY <ComponentID> CopyToClipboard 'TRUE'
    RETURN

    Supported Form Controls:

    . DB Edit
    . DB Memo
    . DB Image
    . Variable Edit
    . Variable Memo
    . Variable Image

02. To cut images or text data TO Windows Clipboard

    PROPERTY <ComponentID> CutToClipboard 'TRUE'
    RETURN

    Supported Form Controls:

    . DB Edit
    . DB Memo
    . DB Image
    . Variable Edit
    . Variable Memo
    . Variable Image

03. To paste images or text data FROM Windows Clipboard

    -- Example 01
    -- To paste Windows Clipboard BLOB Data into DB/VAR Image Field

    PROPERTY <BLOBControlComponentID> PasteFromClipboard 'TRUE'
    RETURN

    -- Example 02
    -- To paste Windows Clipboard Text Data into DB/VAR Edit/Memo Field

    PROPERTY <EditMemoControlComponentID> PasteFromClipboard 'TRUE'
    RETURN

    -- Example 03
-- To paste Windows Clipboard BLOB Data into focused DB/VAR Image Field

    PROPERTY RBASE_FORM PasteFromClipboard 'TRUE'
    RETURN

    -- Example 04
-- To paste Windows Clipboard Text Data into focused DB/VAR Edit/Memo Field

    PROPERTY RBASE_FORM PasteFromClipboard 'TRUE'
    RETURN

Very Best R:egards,

Razzak.

P.S.
A sample application to demonstrate the practical use of such properties
will be at available at:  http://www.razzak.com/sampleapplications/
Stay tuned ...




Reply via email to