I am using an access 97 database with VB5 and want to display some of the fields of one of the tables in a flexgrid. At the moment i can only get the whole table displayed, any ideas how i can select which i want to be displayed?
With MSFlegrid1
.Row = 0
.Col = 0
.Text = "Hi"
End With
This should do the trick. I'm pretty sure that if the FlexGrid is unbound then it is read-only. A workaround is to create an invisible text box on the form with no border. Capture on-click and keypress events for the FlexGrid and move the text box to the cell that was clicked (set visible = true). You can use the move method of the textbox. If you're interested, I'll post code.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.