Hello VB experts
how to select a perticular cell in mSHFlex Grid Control in VB at run time? Whats the property or coding i need to add? anyone help me please?
Use the Row and Col values to specify a cell.
Flex.Row = 10 Flex.Col = 5
Will select the cell in the intersection of 11th row and 6th column. Remember the Row and Column values start from Zero
Hi, check this : To Get Cell value of Row=2, Col=5:
Dim TStr As String TStr = FlxGrd.TextMatrix(2,5)
Regards Veena