如何在form中加在图片?
热门软件下载:
有三个commnad点击1时图片出现2时图片放大3时缩小
推荐阅读
i think you may use image object.(strench ------ true)
private sub form_load()
image.visable = false
cmd2.enabled = false
cmd3.enabled = false
end sub
private sub cmd1_click()
image.visable = true
cmd2.enabled = true
cmd.enabled = true
end sub
private sub cmd2_click()
image.height = image.height * 2 it can be modified
image.width = image.width * 2 it can be modified
end sub
private sub cmd3_click()
image.height = image.height * 0.5
image.width = image.width * 0.5
end sub
not interesting, is it???
相关评论