相关文章  
  • 教你如何IIS信息服务器排错指南
  • 加固Windows Server 2003 IIS 服务器(1)
  • 基于IIS的WEB服务器架建
  • 基于Web的系统测试与传统的软件测试
  • 修改IIS的Banner隐藏操作系统版本
  • 用IIS+ASP建网站的安全性分析
  • 让IIS6.0可以执行WSH中的RUN命令
  • 虚拟主机IIS 防范入侵常见问答
  • 给IIS Web虚拟主机服务器装上一把锁
  • 精心配置IIS打造安全Web服务器
  •   推荐  
      科普之友首页   专利     科普      动物      植物        天文   考古   前沿科技
     您现在的位置在:  首页 >>文献 >>培训

    用SQL Server为Web浏览器提供图像(三)4

    >  Public Property Let NameOfImageIdColumn(ByVal strVal As String)
       mstrImageIdColumnName = strVal
      End Property
      
      Public Property Get ImageFile(ByVal ImageId As Integer) As String
       Dim intPos As Integer
       Dim blnFindId As Boolean
       Dim i As Integer
      
       blnFindId = False
       For i = 0 To mlngNumberOfFiles - 1
         If mlngImageId(i) = ImageId Then
          intPos = 5 + Len(ImageId) + 3
          ImageFile = Right(mstrFileName(i), intPos) 'reformat the location of file.
          blnFindId = True
         End If
       Next i
      
       If blnFindId = False Then
         Err.Clear
         Err.Raise vbObjectError + 23, "Get ImageFile", "Can't find image file!"
       End If
      
      End Property
      
      
      Public Sub OpenConnection()
      '*****

    页码:[1] [2] [3] [4] [5] [6] [7] [8] [9]4页、共9页

         

          设为首页       |       加入收藏       |       广告服务       |       友情链接       |       版权申明      

    Copyriht 2007 - 2008 ©  科普之友 All right reserved