In my case I just wanted to put an image on top of the grid saying "Loading, please wait..." however I couldn't position the image on top of the flexgrid no matter what until I found out about the subforms. So to solve the issue I've put my image in a subform and put the subform on top of the flexgrid and it works, since Access is saying that subforms and list boxes will always be on top of other controls no matter what!
I hope that this is helpful.
"Philippe" wrote:
[Quoted Text] > Hi Warren, > > A Flexgrid is an ActiveX object that you can include in a form. To use it, > you must set a reference to "Microsoft Hierarchical MSHFlexgrid" in your > project. > > It allows to display data in a tabular way, as you can see in Excel for > example. It is very flexible to display tabular data. > > The problem is that a Flexgrid doesn't allow for editing the values in the > table. To edit the value in a cell, you must superpose a "floating" TextBox > on this cell, copy the data from the FlexGrid to the Textbox, edit the data, > and then copy again from the TextBox to the FlexGrid cell. It works fine in > VB6, but in Access, I cant manage to put the TextBox in front of the > FlexGrid, it always appears behind and is hidden. > -- > Phil >
|