What do I have to do to make font size changes take effect?
Seems the size remains unchanged no matter if I change it at design time or at run time.
I tried this:
Me.RadGridView1.Font = New System.Drawing.Font("Arial", 3.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Compare the amount of data shown on a MS ListView control to the RadGridView control.
Also, any way to speed up loading of data. Takes about 5 times as long than loading a ListView in VB6 with the same data.
With RadGridView1
.GridElement.BeginUpdate()
Dim command As OleDbCommand
command = New OleDbCommand("SELECT * FROM FinalSettings")
command.Connection = New OleDbConnection(My.Settings.WorkSpaceMgrConnectionString)
command.Connection.Open()
.MasterGridViewTemplate.LoadFrom(command.ExecuteReader())
command.Connection.Close()
.GridElement.EndUpdate()
End With
Finn
void dockPanel3_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
dockPanel3.Visible =
false;
e.Cancel =
true;
}
Instead of closing the dockPanel, I just want to hide it so that I can reconstitute it later without losing its contents.
Currently, the "Closing" event is never called, even when I close the whole application.
Thanks.
adProgressBarElement1.Value1 = 0;
radProgressBarElement1.Text =
"";
radStatusStrip1.Refresh();
radLabelElement1.Visibility = Telerik.WinControls.
ElementVisibility.Hidden;
radStatusStrip1.Refresh();
but it never become unvisible
can any one help me ure=gently plz?????????????