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


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

主题:[求助]

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | 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

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | 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() '等带拍照程序退出.


 回到顶部