回复 2楼 梦幻倩影
昨天才在一本书(VB2008 STEP BY STEP)看到,其实移动图片框特方便,VB2008以上支持如下方式移动(例如PICTUREBOX1):
picturebox1.left=picturebox1.left+50 '图片框横向右移动50个单位;
picturebox1.top=picturebox1.top+50 '图片框向下移动50个单位;
picturebox1.location= new point(200,100) '图片框移动到指定坐标。
就这么简单,利用定时控件就可做出动画效果。