Private Sub ComboVatRates_TextChanged(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles ComboVatRates.TextChanged
Dim rowInfo As GridViewRowInfo = DirectCast(Me.ComboVatRates.EditorControl, RadGridView).SelectedRows(0)
If Not rowInfo Is Nothing Then
Me.ComboVatRates.Text = rowInfo.Cells(1).Value.ToString()
End If
End Sub
Hello Telerik,
I am using RadMenu in my winform application and want to use hotkeys (e.g. Alt + A) for them. I try use the CommandBinding property for the menu items and use it as described on the support forum.
<admin>Obsolete Command Binding Link</admin>
The hotkey for a specific menu is only working when the mouse pointer is above it and is not working from any where else in the form (when mouse is not over it). So could you please help me in this regard and provide me with an example code for VB in VS2005.
Regards,
Haroon
if (grdGridData.CurrentRow is GridViewNewRowInfo)
((GridViewNewRowInfo)grdGridData.CurrentRow).Cells["DESCRIPTION"].Value = "Some text...";
Thanks