Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
6.5k views
in .NET FTP by (1.2k points)
Hans-

We are trying to disable the MouseDoubleClick events for the local and remote file lists. Do you know how to do this quickly? Any help you can provide would be greatly appreciated.

12 Answers

0 votes
by (162k points)
Try this:

protected override void OnSelectItem(FTPFileListItem fileItem, bool forceTransfer)
{
            if (forceTransfer || fileItem.FileInfo.Dir)
                super.OnSelectItem(fileItem, forceTransfer);        
}


The 'Pro' components are deprecated.
0 votes
by (1.2k points)
"super" did not work, but I replaced that with the keyword "base" and am now having success. Do you see any problems with this approach?

Thanks.

Categories

...