Venkat – I am not sure if this is directly possible. As per my understanding, there is no MouseHover event. I mean there is no way to track the MouseHover position to conditionally show / hide the images. However, logically I can think of a way but I am not really sure... how difficult willthis be.
Here is the idea...
To replicate the Mouse Hover event in QV we need followingthings to work.
Need VB Script to get the X-Pos and Y-Pos toidentify the ListBox position
Then we need to run this Macro every second aswe don’t have the MouseHover event. So you need to use Volatile function like Now() – which gets recalculated every second. This way we can use the OnChangeTrigger on the Variable/Field which changes every second
Now, as soon as user hovers the mouse theListBox and the Now() function changes and it triggers the Macro which capturesthe Screen Position. Then you can set another variable to get updated to Booleanvalue.
Finally, you can use this final variable whichreturns Boolean value to conditionally show/hide the image
Please remember this is just conceptual idea on how you can get this working. And there might be Mouse Hover event and I am not aware.