or
Imports Telerik.WinControls.UI.Localization Imports Telerik.WinControls.UI Imports Telerik.WinControls.UI.Design Imports Telerik.WinControls Imports Telerik.WinControls.Localization Class MyEnglishSpellCheckerLocalizationProvider Inherits RadSpellCheckerLocalizationProvider Public Overrides Function GetLocalizedString(id As String) As String Select Case id Case RadSpellCheckerStringId.Title Return "Spell Checking" Case RadSpellCheckerStringId.OK Return "OK" Case RadSpellCheckerStringId.Cancel Return "Cancel" Case RadSpellCheckerStringId.Close Return "Close" Case RadSpellCheckerStringId.Change Return "Change" Case RadSpellCheckerStringId.Complete Return "The spelling check is complete." Case RadSpellCheckerStringId.AddToDictionary Return "Add to Dictionary" Case RadSpellCheckerStringId.IngoreAll Return "Ignore All" Case RadSpellCheckerStringId.Suggestions Return "Suggestions:" Case RadSpellCheckerStringId.ChangeTo Return "Change To:" Case RadSpellCheckerStringId.NotInDictionary Return "Not in Dicitionary:" End Select Return Nothing End Function End Class


radLabel1.Enabled = !radLabel1.Enabled;
private void grdClientes_ValueChanged(object sender, EventArgs e) { foreach (GridViewDataRowInfo row in grdClientes.Rows) { if (row.Cells["Seleccionado"].Value == "On") { _selectedRowIndex += (int)row.Cells["Cantidad"].Value; } } }
Dim col As GridViewMultiComboBoxColumn = New GridViewMultiComboBoxColumn()col.DataSource = myLibrary_Consultantscol.DisplayMember = "Initial"col.ValueMember = "Initial"col.Name = "Cons1"RadGridView_ContactLog.Columns.Add(col)RadGridView_ContactLog.Columns(0)... doesn't have a datasource property?
Thanks
Terry

