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?

Recommended Answers

All 2 Replies

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

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.