|
|
|
|
|
- What is Drag and Drop?
- WINDEV and "Drag and Drop"
- Special case: SQL Server Native Connector and Drag and Drop
- WEBDEV and "Drag and Drop"
Drag and Drop is used to transfer data between several controls with the mouse. This data can be moved between several controls found in the same application or in different applications. You must distinguish between: - The source, object containing the data to copy or to cut.
- The target, object into which the data must be copied.
To perform Drag and Drop: - Select the data in the source with the mouse.
- Press the left mouse button and hold it down while moving data to the destination.
- Release the mouse button to validate the data transfer.
If data must be copied, the Ctrl key must be held down during the operation.
WINDEV and "Drag and Drop" Several types of Drag and Drop can be performed in your applications: Special case: SQL Server Native Connector and Drag and Drop The Drag and Drop feature may not work when using the SQL Server Connector (via OLE DB or via ODBC).. To restore a correct operating mode, the following lines of code should be added into the project initialization code: LoadDLL("ole32")
API("ole32","CoInitializeEx",0,2)
WEBDEV and "Drag and Drop"
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|