Hi

I working with ugly,obsolete...etc control ssdbgrid and can not to change for other control I give maintenance It . I must to select particular row using code. The row chosen should be in higilight
I tried a lot of things, but nothing work, I saw the ridiculous manual but could not find, searched on google something and also not found.

I tried something in AfterUpdate Event , but too no work
Code:
Private Sub dbgMygrid_AfterUpdate(RtnDispErrMsg As Integer)
    Call Grids_Pauta_AfterUpdate(RtnDispErrMsg, dbgPautaICMS_NCM)
    
    
    
    Call Sel_row_grid(dbgPautaICMS_NCM, 0) 'dbgPautaICMS_NCM.Row - 1)
     'dbgPautaICMS_NCM.Bookmark = dbgPautaICMS_NCM.SelBookmarks(0)
     'dbgPautaICMS_NCM.Refresh
    
End Sub

Private Sub Sel_row_grid(dbg_grid As SSDBGrid, P_row As Integer)
  Dim i As Integer
    With dbg_grid
        For i = P_row To P_row
            .SelBookmarks.Add .RowBookmark(0)
           '  .StyleSets("Selected").ForeColor = Me.BackColor              ' &HFFFFFF
           ' .StyleSets("Selected").BackColor = Me.ForeColor  ' &H800000
            .ActiveRowStyleSet = "Selected"
        Next i
    End With
 End Sub
somebody know where can I examples or library functions using this trash control ?

Tia