I thought about using the timer control but for now I going to use the mousemove on the MSHFlexgrid.
Private Sub grdMyRec_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
' If Mouse is on Fixed row then check resize of col
' else just exit sub
If (y > 200) Then
Exit Sub
End If
' Call function that checks the size of cols.
Call CheckColResize
End Sub
I figured there will be times when the program will be process information without any user intervention and I did not want a timer going off every 5 sec.
But thanks for the tip.
rgds,
Leaf