Click to View Image169 View(s)
Private Sub IGrid1_CellClick(sender As Object, e As iGCellClickEventArgs) Handles IGrid1.CellClick With IGrid1 .BeginUpdate() If .CurCell.BackColor = Color.White Then .CurCell.BackColor = Color.LightGreen .CurCell.Font = New Font(.Font, FontStyle.Bold) ElseIf .CurCell.BackColor = Color.LightGreen Then .CurCell.BackColor = Color.White .CurCell.Font = New Font(.Font, FontStyle.Regular) End If .EndUpdate() End With End Sub
Click to View Image174 View(s)
The 10Tec Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies. More Details Close