I have been writing an application for a client and it is basically finnished. However they want tooltiptext hoverovers for each button.

It is using the BitBlt function (below), to replace images displayed in various pictureboxes cut from one large image (skin). During the mouseup, mousedown and mousemove events.

I have set the tooltiptext property for each button(picturebox) at design time. The tooltiptext's are displayed when no image is loaded, but not when the picturebox contains an image. WHY?
Code:
Public Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long.
[Edited by charliecatney on 07-07-2000 at 11:44 AM]