FAINT,这么简单。在Image的MouseDown事件里加代码,如:
sub Image1_MouseDown(..........)
if x<200 and x>100 and y<500 and y>100 then '点到矩形(100,100),(200,500)里了。
     ClickInHotpot()'这是你自己处理的函数
else
  if x<xxx and x>xxx and y<xxx and y>xxx then
       '点到另外一个框里了
  end if..........................
end if