窗体中图片放大与缩小的制作
时 间:2007-06-16 00:00:00
作 者:褚玉春 ID:11 城市:上海 QQ:3002789054
摘 要:窗体中图片放大与缩小的制作原理
正 文:
实现图片的放大缩小可以通过改变图片的宽度和高度来实现,下面举例说明。

操作步骤:
打开ACCESS,新增一空白窗体,在窗体中添加一个图像控件,修改图片名称,设定图片来源,如下图:
在窗体中添加两按钮,标题分别为“放大”,“缩小”,名称分别为”cmdBigger”,”cmdSmaller”,为两按钮的单击事件编写代码如下:
Private Sub cmdBigger_Click()
Dim intWidth As Integer
Dim intHeight As Integer
With Image2
intWidth = .Width
intHeight = .Height
.Width = intWidth * 4.05
.Height = intHeight * 4.05
.SizeMode = acOLESizeZoom
End With
' Allow Access time to Repaint Screen
' since we have Autorepeat set to TRUE for
' this Command Button
DoEvents
End Sub
Private Sub cmdSmaller_Click()
Dim intWidth As Integer
Dim intHeight As Integer
With Image2
intWidth = .Width
intHeight = .Height
.Width = intWidth / 1.05
.Height = intHeight / 1.05
.SizeMode = acOLESizeZoom
End With
' Allow Access time to Repaint Screen
' since we have Autorepeat set to TRUE for
' this Command Button
DoEvents
End Sub
保存运行即可!
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)
- 【Access高效办公】上月累...(01.06)
- 【Access Inputbo...(12.23)
- 【Access Dsum示例】...(12.16)

学习心得
最新文章
- 仓库管理实战课程(9)-开发往来单...(04.02)
- 仓库管理实战课程(8)-商品信息功...(04.01)
- 仓库管理实战课程(7)-链接表(03.31)
- 仓库管理实战课程(6)-创建查询(03.29)
- 仓库管理实战课程(5)-字段属性(03.27)
- 设备装配出入库管理系统;基于Acc...(03.24)
- 仓库管理实战课程(4)-建表操作(03.22)
- 仓库管理实战课程(3)-需求设计说...(03.19)
- 仓库管理实战课程(2)-软件背景和...(03.18)
- 仓库管理实战课程(1)-讲师介绍(03.16)