Browse Source
Bugs exist, most importantly in some cases a retrieval of database metadata results in a class cast exception. It is however possible to create a logical database connection, create and test its connection string, without retrieving metadata. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2424 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
4 changed files with 65 additions and 4 deletions
@ -0,0 +1,23 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: dickon |
||||||
|
* Date: 04/03/2007 |
||||||
|
* Time: 09:14 |
||||||
|
* |
||||||
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||||
|
*/ |
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Windows.Forms; |
||||||
|
|
||||||
|
namespace SharpServerTools.Forms |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// This interface is implemented by any plugin to ServerExplorer that supports drag and drop
|
||||||
|
/// of some of its data
|
||||||
|
/// </summary>
|
||||||
|
public interface ISupportsDragDrop |
||||||
|
{ |
||||||
|
void HandleMouseDownEvent(object sender, MouseEventArgs e); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue