Browse by Tags
All Tags » .Net Grid (RSS)
Showing page 1 of 4 (38 total posts)
-
Hi Glen,
You can simply use:
this.gridControl1.GridLineColor = System.Drawing.Color.Transparent;
and this should make the grid lines transparent, with the (pretty old) version 2.5 or with the (current) version 3.8.
Best regards,
-
I created a grid control using the following: Private WithEvents gridControl1 As Xceed.Grid.GridControl The MouseUp event for the Grid is never called Private Sub gridControl1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles gridControl1.MouseUp What am I doing ...
-
my code is below. I want to make the summary in bold letter. Please help , I am new to Xceed.Thanks
Dim sumRow As New SummaryRow()
If GridControl1.HeaderRows.Count > 0 Then
GridControl1.HeaderRows(0).Remove()
End If
GridControl1.HeaderRows.Add(sumRow)
DirectCast(sumRow.Cells(5), SummaryCell).TitleFormat = ''Total No Of ...
-
Hello,
I 'm trying to export a grid to excel. For this, I used this code:
ExcelExporter excelExporter = new ExcelExporter( ); excelExporter.Export( this.GridRecords, saveFileDialog.FileName );
The grid exports well but when I try open the excel file the office throw this ...
-
Hi,
I'm using an Xceed Grid which is bound to a DataTable object. What combination of properties constitutes as a cell being editable? At first I thought the 'ReadOnly' property of the cell was the only one I had to look at (i.e. Setting the parent column to read only would make all the cells in the column read only). However, I ...
-
I have an entity with an ID and a self referencing ParentID (both int) and I have successfully set up a DetailGrid to display the children at the first level, but have not found a way to have that cycle repeat itself down the hierarchy as required. The examples only seem to show how to do it manually....
Any ideas?
-
I have a Linq to SQL object Customer with an ID property (int), and a ParentID property (int?) and an Association in the dbml which links the two and creates an attached entity called Parent whic is of type customer. When using a GridControl to represent a Customer, I have initially created a ComboBoxEditor and viewer as ...
-
We use a Grid of about 40 columns and 250 rows. 10 of them are of type DateTime? at the right end of the grid.
When we scroll to the right the grid the grid takes more time to refresh it's state. Same behaviour, if we use the up and down arrow to navigate between the rows. If I change the datatype of the DateTime? columns to string ...
-
Hi,
We're currently using an Xceed grid, with a number of DetailGrids with an IList of objects. These objects have a property that returns a string value in the form of a decimal ie ''1.2'' or ''3.8''. We have added a SortColumn to one of the DetailGrids, and the rows are now sorted in the correct order. We have some rows that we have ...
-
I'm currently using a GridControl and trying to read values from cells in the grid using the Active Accessibility support (introduced in 2.1; my version is 3.6).
Using Microsoft's Active Accessibility SDK, specifically AccExplorer 2.0, I can get as deep as the grid itself, wwhich appears as a window holding a table, both of which have the ...
1
|
|
|
|