Pokúšam sa zachytiť event prechádzania myši nad c1comboboxom. Nasledujúci kód ale odmieta poslúchať.
Private Sub InitComboEvent(ByVal p As Panel)
For Each c As Control In p.Controls
If TypeOf c Is C1.Win.C1List.C1Combo Then
AddHandler c.MouseMove, Me.OnComboMouseMove
End If
Next
End Sub
Private Sub OnComboMouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
End Sub
V AddHandler mi podčiarkne me.OnComboMouseMove a vypíše Argument not specified for parameter 'e' of 'Private Sub OnComboMouseMove(sender as object, e as system.windows.forms.mouseeventargs) Myslím si, že to mám napísané správne. Nechápem ani tej hláške. Máte nápad kolegovci?
|