I'm sure I'm not the first to have this issue, but I can't seem to find any advice
I have a MSHFlexGrid and a textbox from the Forms 2.0 Object Library. I am trying to do the usual trick of overlaying the textbox on the grid to allow for editing. Unfortunately, the textbox is not shown over the grid, it always stays under it.
This is the code being used in the grid click event:
Any ideas?
I am using Forms 2.0 controls as I need to handle unicode characters (which is working nicely).
Thanks
I have a MSHFlexGrid and a textbox from the Forms 2.0 Object Library. I am trying to do the usual trick of overlaying the textbox on the grid to allow for editing. Unfortunately, the textbox is not shown over the grid, it always stays under it.
This is the code being used in the grid click event:
Code:
With grd
txt.Text = .Text
txt.Move .CellLeft + .Left, .CellTop + .Top, .CellWidth, .CellHeight
txt.ZOrder 0
txt.Visible = True
txt.SetFocus
DoEvents
End With
Any ideas?
I am using Forms 2.0 controls as I need to handle unicode characters (which is working nicely).
Thanks