Foxtable(狐表)用户栏目专家坐堂 → [求助]


  共有1658人关注过本帖树形打印复制链接

主题:[求助]

帅哥哟,离线,有人找我吗?
江南小镇
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:七尾狐 帖子:1765 积分:11811 威望:0 精华:0 注册:2015/6/22 8:11:00
[求助]  发帖心情 Post By:2017/10/8 10:16:00 [只看该作者]


Dim txt As String = Functions.Execute("窗口表数据查找",Tables("文件管理"),e.Form.Controls("TextBox1").Text)
'执行查询
Tables("文件管理").Filter = txt

老师,我设置上面代码后为有下面的报错。

.NET Framework 版本:2.0.50727.3655
Foxtable 版本:2017.4.22.1
错误所在事件:窗口,文件管理,PictureBox1,BeforeGetImage
详细错误信息:
Object reference not set to an instance of an object.

下面是图片控件的代码。
Dim pic As WinForm.PictureBox = e.Sender
Dim wjm As String = Tables("文件管理").Current("文件")
If wjm.Contains(".") = False Then  '若文件名不包含.,说明是未知文件
    e.File = ProjectPath & "images/other.png"
Else
    Dim i As Integer = wjm.LastIndexOf(".")
    Dim kzm As String  = wjm.SubString(i+1)
    Dim kzms As String = "swf accdb mdb psd png xls xlsx bmp rar jpg doc docx zip pdf txt ppt exe" '定义已知扩展名
    If kzms.Contains(kzm) = True Then
        e.file = ProjectPath & "images/" & kzm & ".png"
    Else
        e.File = ProjectPath & "images/other.png"
    End If
End If


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/10/8 10:41:00 [只看该作者]

Dim pic As WinForm.PictureBox = e.Sender
If Tables("文件管理").Current Is Nothing Then
    e.File = ProjectPath & "images/other.png"
    return
End If
Dim wjm As String = Tables("文件管理").Current("文件")
If wjm.Contains(".") = False Then  '若文件名不包含.,说明是未知文件
    e.File = ProjectPath & "images/other.png"
Else
    Dim i As Integer = wjm.LastIndexOf(".")
    Dim kzm As String  = wjm.SubString(i+1)
    Dim kzms As String = "swf accdb mdb psd png xls xlsx bmp rar jpg doc docx zip pdf txt ppt exe" '定义已知扩展名
    If kzms.Contains(kzm) = True Then
        e.file = ProjectPath & "images/" & kzm & ".png"
    Else
        e.File = ProjectPath & "images/other.png"
    End If
End If

 回到顶部
帅哥哟,离线,有人找我吗?
江南小镇
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:七尾狐 帖子:1765 积分:11811 威望:0 精华:0 注册:2015/6/22 8:11:00
  发帖心情 Post By:2017/10/8 12:33:00 [只看该作者]

谢谢老师

 回到顶部
帅哥哟,离线,有人找我吗?
江南小镇
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:七尾狐 帖子:1765 积分:11811 威望:0 精华:0 注册:2015/6/22 8:11:00
  发帖心情 Post By:2017/10/8 14:24:00 [只看该作者]

老师,在打开图片编辑软件时希望能让项目最小化同时关闭独立窗口。


Dim Proc As New Process
Proc.File = "D:\软件安装\图片管理\ACDSee\14.0\ACDSee14"
Proc.Start()
Proc.WaitForExit() '等带拍照程序退出.

'Forms("系统").baseform.visible=False


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

[此贴子已经被作者于2017/10/8 15:01:52编辑过]

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  5楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/10/8 15:46:00 [只看该作者]

Forms("系统").baseform.windowstate = 1

 

Dim Proc As New Process
Proc.File = "D:\软件安装\图片管理\ACDSee\14.0\ACDSee14"
Proc.Start()
Proc.WaitForExit() '等带拍照程序退出.


 回到顶部