MouseMove Example for Visual C++ 5.0

void CConViewView::OnMouseMoveLeadrastercontainerviewer1 (short Button, short Shift, float x, float y, long lActionID, long lCount) 
{
 CString S; 
   if(this->GetActiveWindow())
   {
      this->GetActiveWindow()->SetWindowText(S + TEXT("Mouse Move"));
   }

   if(lActionID == 0) 
   {

    ILEADRaster* Temp; 
    for (int nI = 0; nI < lCount; nI++)
    {
       // m_ConView is defined some where else
      Temp = (ILEADRaster *)m_LEADContainerViewer.GetOwnerActionImageList(nI);

      // Do what you want on this image
       // . 
       // . 
       // . 
    }
   }
}