Private Void mcbUserReports_SelectedIndexChanged(object sender, EventArgs e)
}
Telerik.WinControls.UI.CurrentRowChangedEventArgs objTelerikEventArgs = //(not sure what to put here)
Int32 intOldRow = objTelerikEventArgs.OldRow.Index:
}
The first line within the SelectedIndexChanged block should read below:
Thanks
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
Sub
End
Class