or
Ask for function in GridView (cell, combobox):
1.I have two decimal columns A and B. I write into A 55 and next click in
column B i click small up buttton and I have value 56 but i want to get 1. How
can I disabled remember function for this two columns?
2.I have ComboboxColumn in Grid with properties: DropDownStyle-DropDown and
AutoCOmpleteMode-SuggestAppend. Can I in this controls reduce items in combobox
during edit? f.e I write Ma and in comboboxe user see only items begins word
Ma?
full Only Ma
M
Ma
Marcin Marcin
Maciej Maciej
Marta Marta
Monika
Thanks for help.



Imports Telerik.WinControls.UI.Docking Public Class Form1 Private file As String = "a.xml" Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Me.Visible = False If (System.IO.File.Exists(file)) Then RadDock1.LoadFromXml(file) RadDock1.Visible = False Me.Visible = True End Sub Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing RadDock1.SaveToXml(file) End Sub Private Sub RadMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadMenuItem1.Click Static flag As Boolean If flag Then RadDock1.Visible = False Else RadDock1.Visible = True End If flag = Not flag End SubEnd Class
For i As Integer = 0 To 9 Dim oItem As New RadListDataItem oItem.Text = "COM" & i oItem.Value = "COM" & i rddReceiveCOM.Items.Add(oItem) rddSendCOM.Items.Add(oItem) oItem = NothingNext