
I'm evaluating buying the RadControls WinForms for the following use case:
To log millions of messages into a customizable grid GUI (e.g. similar features of Telerik's Win Forms Datagrid).
Since this should be used for logs from specific hardware I'm forced to use as a storage a file or a flat database (I don't want to use SQL server or so).
The gridview shall be customizable and fast on inserting new rows and when grouping/filtering/formatting. All these operations need to be done while the grid collects data on a pace of ~1000 events/second.
Would you recommend your grid for this purpose?






Private Sub Login_Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.BackColor = Color.Silver
ThemeResolutionService.ApplicationThemeName =
"Aqua"
End Sub
the backcolor doesn't change. it stays white all the time. how do i do this? please hlep thank you


if
(_local)
{
radGridView1.Columns[
"colFirstSeen"].IsVisible = true;
radGridView1.Columns[
"colTrust"].IsVisible = true;
radGridView1.Columns["colAcknowledged"].IsVisible = true;;
}
else
{
radGridView1.Columns[
"colFirstSeen"].IsVisible = false
radGridView1.Columns["colFirstSeen"].VisibleInColumnChooser = false
radGridView1.Columns["colTrust"].IsVisible = false
radGridView1.Columns[
"colAcknowledged"].IsVisible = false
Sorry, when I save the poste it changes the fomat.
