【Access示例】使用Web控件显示GIF动画
时 间:2016-04-22 08:19:17
作 者:缪炜 ID:24010 城市:江阴
摘 要:利用Microsoft Web Browser控件显示gif动画。
正 文:
主要的代码:
Private Sub Form_Open(Cancel As Integer) On Error Resume Next Call BinExport Me.GRBrowser.Navigate strPfadDB() & "gr.html" End Sub Private Function BinExport() Dim DB As Database, rs As Recordset, FrNum As Long, BinData() As Byte Set DB = CurrentDb Set rs = DB.OpenRecordset("select * from tblJagd order by namen", dbOpenSnapshot) rs.MoveFirst For I = 1 To 4 FrNum = FreeFile If I = 1 Then Open strPfadDB() & "gr.html" For Binary As #FrNum If I = 2 Then Open strPfadDB() & "hor2.gif" For Binary As #FrNum If I = 3 Then Open strPfadDB() & "wolf.gif" For Binary As #FrNum If I = 4 Then Open strPfadDB() & "hunde.gif" For Binary As #FrNum ReDim BinData(rs("objekt").FieldSize) BinData() = rs("objekt").GetChunk(0, rs("objekt").FieldSize) Put #FrNum, , BinData() Close #FrNum Erase BinData rs.MoveNext Next rs.Close DB.Close Set rs = Nothing Set DB = Nothing End Function Private Function strPfadDB() As String Dim strName As String, Z As Byte strName = CurrentDb.Name For Z = 1 To Len(strName) If Mid(strName, Z, 1) = "\" Then Q = Z Next strPfadDB = Left(strName, Q) End Function
附 件:
演 示:
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)

学习心得
最新文章
- 仓库管理实战课程(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)
- 统计当月之前(不含当月)的记录数怎...(03.11)