or
bool setFocusTogridView = true;
foreach (Form form in Application.OpenForms)
{
if (form.GetType() == typeof(ConditionalFormattingForm))
{
form.TopMost = true;
form.Focus();
setFocusTogridView = false;
break;
}
}
if(setFocusTogridView)
this.gridView.Focus();
Please let me know if there is some solution for this problem.
I am using Telrik version 8.2.0.0.
Regards,
Renu
RadButtonPar_Start.ThemeName =
"Startbutton"
RadButtonPar_Stop.ThemeName = "Stopbutton"
Thanks in advance!
.MasterGridViewTemplate.LoadFrom(command.ExecuteReader())
In the old VB6 ListView one can set the "Checkboxes" property to True and have checkboxes appear.Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click |
Me.tree.FullRowSelect = Not Me.tree.FullRowSelect |
Me.lblTest.Text = Me.tree.FullRowSelect.ToString |
End Sub |