Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MSFlexgrid - How to set focus on a specific row and column ?

Status
Not open for further replies.

ooops

MIS
Dec 21, 2000
91
US
Hello all,

Could you please show me how to set focus on a specific row and column ? (in my case I need to set focus on the second column of the last row) Thank you so much.
 
Set the .col and .row properties.
Code:
MSFlexGrid1.Row = MSFlexGrid1.Rows - 1 'last row
MSFlexGrid1.Col = 1 'second column, no col headers

zemp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top