Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > Access数据库-窗体/数据页

【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交流群 (群号:483923997)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助