Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
11431 | Mar 5,2004 12:31 PM UTC | Jun 16,2004 06:04 PM UTC | WinForms | 5 |
![]() |
Tags: GridControl |
//turn off readonly
this.grid.IgnoreReadOnly = true;
// change your styles...
//....
//turn readonly back on
this.grid.IgnoreReadOnly = false;
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
GridControl1.IgnoreReadOnly = True
Dim i As Integer
For i = 1 To 10
GridControl1(i, 1).ReadOnly = False
GridControl1(i, 1).CellValue = "Reset"
Next
GridControl1.IgnoreReadOnly = False
End Sub
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.