Results 1 to 3 of 3

Thread: Select cell in Flexgrid[RESOLVED]

Hybrid View

  1. #1
    Hyperactive Member aks_1610's Avatar
    Join Date
    Sep 2002
    Location
    Pune, India
    Posts
    280
    hi,
    here is the code:

    VB Code:
    1. Dim i As Integer
    2.     For i = 0 To fgMOB.Rows - 1
    3.         If LCase(Text1.Text) = LCase(fgMOB.TextMatrix(i, 1)) Then
    4.                With fgMOB
    5.                      .Col = 0
    6.                      .RowSel = i
    7.                      .ColSel = '<number of columns in the Grid>
    8.                      .TopRow=i
    9.                  End With
    10.         End If
    11.     Next i
    Last edited by aks_1610; Apr 12th, 2004 at 12:42 AM.
    A man with nothing to live for has everything to fight for...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width