Occurs when the user dblclk the left mouse button over an object.
Type | Description | |||
Shift as Integer | An integer that corresponds to the state of the SHIFT, CTRL, and ALT keys. | |||
X as OLE_XPOS_PIXELS | A single that specifies the current X location of the mouse pointer. The x values is always expressed in container coordinates. | |||
Y as OLE_YPOS_PIXELS | A single that specifies the current Y location of the mouse pointer. The y values is always expressed in container coordinates. |
The DblClick event is fired when the user dbl clicks on the control. Use the DblClick event to notify your application that a cell has been double-clicked. Use the ItemFromPoint property to determine the cell or the item over the cursor. Use the CloseOnDblClk property to specify whether the drop down portion of the control is hidden when the user double clicks an item. Use the Style property to specify whether the control shows a drop down portion.
The following VB sample prints the caption of the cell that's dbl clicked:
Private Sub ComboBox1_DblClick(Shift As Integer, X As Single, Y As Single) With ComboBox1 Dim i As HITEM, c As Long, hit As EXCOMBOBOXLibCtl.HitTestInfoEnum i = .ItemFromPoint(X / Screen.TwipsPerPixelX, Y / Screen.TwipsPerPixelY, c, hit) If (i >= 0) Then Debug.Print .Items.CellCaption(i, c) & " HT = " & hit End If End With End Sub
The following C++ sample prints the caption of the cell that's dbl clicked:
void OnDblClickCombobox1(short Shift, long X, long Y) { long c = 0, h = 0, i = m_combobox.GetItemFromPoint( X, Y, &c, &h ); if ( i != 0 ) { CString strOutput; strOutput.Format( "'%s' HT= %i\r\n", V2S( &m_combobox.GetItems().GetCellCaption(COleVariant(i), COleVariant(c) ) ), h ); OutputDebugString( strOutput ); } }
where the V2S function converts a VARIANT to a string expression,
static CString V2S( VARIANT* pv, LPCTSTR szDefault = _T("") ) { if ( pv ) { if ( pv->vt == VT_ERROR ) return szDefault; COleVariant vt; vt.ChangeType( VT_BSTR, pv ); return V_BSTR( &vt ); } return szDefault; }
The following VB.NET sample prints the caption of the cell that's dbl clicked:
Private Sub AxComboBox1_DblClick(ByVal sender As Object, ByVal e As AxEXCOMBOBOXLib._IComboBoxEvents_DblClickEvent) Handles AxComboBox1.DblClick With AxComboBox1 Dim i As Integer, c As Integer, hit As EXCOMBOBOXLib.HitTestInfoEnum i = .get_ItemFromPoint(e.x, e.y, c, hit) If (i >= 0) Then Debug.WriteLine(.Items.CellCaption(i, c) & " HT = " & hit) End If End With End Sub
The following C# sample prints the caption of the cell that's dbl clicked:
private void axComboBox1_DblClick(object sender, AxEXCOMBOBOXLib._IComboBoxEvents_DblClickEvent e) { EXCOMBOBOXLib.HitTestInfoEnum h; int c = 0, i = axComboBox1.get_ItemFromPoint(e.x, e.y, out c, out h); if (i != 0) System.Diagnostics.Debug.WriteLine(axComboBox1.Items.get_CellCaption(i,c).ToString() + " HT = " + h.ToString() ); }
The following VFP sample prints the caption of the cell that's dbl clicked:
*** ActiveX Control Event *** LPARAMETERS shift, x, y With thisform.ComboBox1 local c, hit c = 0 hit = 0 .Items.DefaultItem = .ItemFromPoint(X , Y, @c, @hit) If (.Items.DefaultItem >= 0) Then wait window nowait .Items.CellCaption(0, c) + " HT = " + str(hit) EndIf EndWithSyntax for DblClick event, /NET version, on:
private void DblClick(object sender,short Shift,int X,int Y) { } Private Sub DblClick(ByVal sender As System.Object,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles DblClick End Sub |
private void DblClick(object sender, AxEXCOMBOBOXLib._IComboBoxEvents_DblClickEvent e) { } void OnDblClick(short Shift,long X,long Y) { } void __fastcall DblClick(TObject *Sender,short Shift,int X,int Y) { } procedure DblClick(ASender: TObject; Shift : Smallint;X : Integer;Y : Integer); begin end; procedure DblClick(sender: System.Object; e: AxEXCOMBOBOXLib._IComboBoxEvents_DblClickEvent); begin end; begin event DblClick(integer Shift,long X,long Y) end event DblClick Private Sub DblClick(ByVal sender As System.Object, ByVal e As AxEXCOMBOBOXLib._IComboBoxEvents_DblClickEvent) Handles DblClick End Sub Private Sub DblClick(Shift As Integer,X As Single,Y As Single) End Sub Private Sub DblClick(ByVal Shift As Integer,ByVal X As Long,ByVal Y As Long) End Sub LPARAMETERS Shift,X,Y PROCEDURE OnDblClick(oComboBox,Shift,X,Y) RETURN |
<SCRIPT EVENT="DblClick(Shift,X,Y)" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function DblClick(Shift,X,Y) End Function </SCRIPT> Procedure OnComDblClick Short llShift OLE_XPOS_PIXELS llX OLE_YPOS_PIXELS llY Forward Send OnComDblClick llShift llX llY End_Procedure METHOD OCX_DblClick(Shift,X,Y) CLASS MainDialog RETURN NIL void onEvent_DblClick(int _Shift,int _X,int _Y) { } function DblClick as v (Shift as N,X as OLE::Exontrol.ComboBox.1::OLE_XPOS_PIXELS,Y as OLE::Exontrol.ComboBox.1::OLE_YPOS_PIXELS) end function function nativeObject_DblClick(Shift,X,Y) return |