以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  二进制存储照片查看问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=123059)

--  作者:susu312
--  发布时间:2018/8/7 13:28:00
--  二进制存储照片查看问题


图片点击可在新窗口打开查看此主题相关图片如下:1.png
图片点击可在新窗口打开查看

老师,为啥查看窗口查看不了呢?

表的currentchanged事件:

 

If Forms("更改窗口").Opened Then \'如果窗口已经打开
    Dim pbx As WinForm.PictureBox = Forms("更改窗口").Controls("PictureBox1")
    If Tables("person").Current Is Nothing Then
        pbx.Image = Nothing
    Else
        pbx.Image = Tables("person").Current.DataRow.SQlLoadImage("photo") \'从后台提取照片并显示
    End If
End If

If Forms("查看窗口").Opened Then \'如果窗口已经打开
    Dim pbx As WinForm.PictureBox = Forms("查看窗口").Controls("PictureBox1")
    If Tables("person").Current Is Nothing Then
        pbx.Image = Nothing
    Else
        pbx.Image = Tables("person").Current.DataRow.SQlLoadImage("photo") \'从后台提取照片并显示
    End If
End If

 

查看窗口的afterload事件:

Tables("person").RaiseCurrentChanged()

 

点击更改时,图片能显示出来,就是有滚动条, 把滚动条设为false,依然有?


--  作者:有点甜
--  发布时间:2018/8/7 14:13:00
--  

 

PictureBox控件,设置 缩放->StretchImage

 


--  作者:susu312
--  发布时间:2018/8/7 14:25:00
--  
以下是引用有点甜在2018/8/7 14:13:00的发言:

 

PictureBox控件,设置 缩放->StretchImage

 

  查看窗口依然无法显示图片,只有左右两边细细的两条道道


--  作者:狐狸爸爸
--  发布时间:2018/8/7 14:44:00
--  
可能图片太太,你看到的只是部分?
--  作者:有点甜
--  发布时间:2018/8/7 14:57:00
--  

执行下面代码弹出什么?红色代码生成的图片是否正确?

 

If Forms("查看窗口").Opened Then \'如果窗口已经打开

msgbox(1)
    Dim pbx As WinForm.PictureBox = Forms("查看窗口").Controls("PictureBox1")
    If Tables("person").Current Is Nothing Then
        pbx.Image = Nothing
    Else

msgbox(2)
        pbx.Image = Tables("person").Current.DataRow.SQlLoadImage("photo") \'从后台提取照片并显示

pbx.Image.save("d:\\123.jpg")
    End If
End If