OLE Drag and Drop Documentation

Feel free to bookmark this page for easy access to our documentation.


Project maintained by Devuna Hosted on GitHub Pages — Theme by mattgraham

Devuna OLE Drag and Drop


Getting Started

Files normally installed in the
CSIDL_PROGRAM_FILES\SoftVelocity\Clarion10\accessory folder:

Files normally installed in the
CSIDL_COMMON_DOCUMENTS\SoftVelocity\Clarion10\Accessory\Devuna

To use the Classes and Templates with older clarion versions, you will need to copy the following Softvelocity Clarion 10 files to the appropriate libsrc folder:

Templates

There are two templates in the KCR_OleDragDrop template set.

KCR_GlobalOleDragDrop

KCR_GlobalOleDragDrop is the Devuna Global OLE Drag and Drop Extension template.

Add this template to the Global Extensions of your application. It is required by the other template(s) in the set.

Screen Shot

The template has a check box to allow you to turn off code generation. If you check this option, there will be no Ole Drag and Drop code generated in the entire application. You can disable it at the procedure level with the next template.

KCR_OleDragDrop

KCR_OleDragDrop is the Devuna OLE Drag and Drop Extension used to add Ole Drag and Drop to your procedure. You need to have a local CSTRING variable to contain the drag and drop text. Define it before populating the template.

Screen Shot

This template has several prompts:

Drag and Drop Control   select the control that is to be the source/target for the drag and drop. If the control you selected is also an ABC BrowseBox control the the template will automatically generate the code to set the OleData to the BrowseBox contents.

Drag and Drop Data   the local CSTRING variable you created to hold the drag/drop text

Include Drag Support   uncheck to disable generating code to support the drag operation

Include Column Heading   if this is an ABC BrowseBox add the column headers to the OleData.

Field Delimiter   choose either CRLF (Carrige Return Line Feed) or TAB as a field separator. If you are pasting into Excel, use CRLF to put the data into different rows; use TAB to put the data into different columns.

Effects Allowed   these control the effects that are allowed by the drop source. You must have at least one of these selected. Keystate modifiers have the following standard OLE effects:

It is up to you to respond appropriately in your code to the returned effect after a successful drop. For copy you don’t need to do anything; for move, you would need to delete the queue entry (for a listbox) or the selected text (for text or entry controls). Link is provided for completeness; you’ll have to decide how to handle this yourself.

Include Drop Support   uncheck to disable generating code to support the drop operation

OleDrop Event Value   when a successful drop has been completed, the generated code will post an event back to your main window. You can set the value for that event here; the default is 09000h

Text/Entry Default Drop Behaviour Determines how the dropped text will affect text currently in the control.

IMPORTANT
If you are using a List control as your Drag and Drop control, make sure it does not have a DRAGID or a DROPID as Clarion list box drag and drop support will cause problems. IMPORTANT

Classes

Interface classes

There are four interface classes included in the package. These classes are wrappers for similarly name interfaces. Please see the interface documentation on MSDN for details of the interface methods.

Besides the interface methods, each interface class has several additional common methods:

OleData class

There is also an OleData class that has just one method GetOleData. This class method is called from a subclassed winproc. As such it runs on a different stack than your main code. This means that you should only access global and module data from this procedure.

The GetOleData method is called just prior to initiating the drag operation to allow you to prepare the data for transfer. Please look at the comments and default generated code.

Further Reading

If you want to know more details about how OLE Drag and Drop works, and also what I used as a guide, check out this Ole Drag and Drop Tutorial.

Example

The example application is normally installed in the CSIDL_COMMON_DOCUMENTS\SoftVelocity\Clarion10\Accessory\Devuna\Examples\OleDragDrop folder.

The example is the standard People App with Ole Drag and Drop support added to the people browse.