【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)
- 合并列数据到一个文本框的示例;...(05.06)
- 通过命令按钮让Access列表...(04.24)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)
- 【Access高效办公】上月累...(01.06)

学习心得
最新文章
- 仓库管理实战课程(19)-库存统计...(05.21)
- 仓库管理实战课程(18)-设置日期...(05.19)
- 仓库管理实战课程(17)-库存明细...(05.13)
- 【Access高效办公】条件格式设...(05.12)
- 仓库管理实战课程(16)-联合查询...(05.07)
- 合并列数据到一个文本框的示例;输出...(05.06)
- 仓库管理实战课程(15)-月度库存...(04.30)
- Access选择打印机、横纵向、纸...(04.29)
- 仓库管理实战课程(14)-出库功能...(04.26)
- 通过命令按钮让Access列表框指...(04.24)