Drag/Drop enhancement

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Drag/Drop enhancement

#1 Post by rdonnay »

It was brought to my attention today that dropping text from another application does not work.

This has been fixed and will be in the next release.

Attached is an updated _DCCLASS.PRG.
Copy the file to your \exp19\source\dclipx folder and run BUILD19_SL1.BAT to rebuild DCLIPX.DLL.

Below is the test program.

Code: Select all

#INCLUDE "dcdialog.CH"

FUNCTION Main()

LOCAL GetList[0], oStatic

@ 0,0 DCSAY '' SIZE 100,25 ;
   DROP {|o,c|IIF(valtype(c)=='C',o:setCaption(c),nil)} ;
   SAYWORDBREAK ;
   FONT '10.Lucida Console'

DCREAD GUI FIT TITLE 'Drop Text here from another application'

RETURN nil

PROC appsys ; return
Attachments
drop.zip
(41.11 KiB) Downloaded 580 times
The eXpress train is coming - and it has more cars.

Post Reply