Foxtable(狐表)用户栏目专家坐堂 → 升级后出现的问题


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

主题:升级后出现的问题

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/7/17 17:06:00 [显示全部帖子]

 click事件写了什么代码?

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/7/17 17:16:00 [显示全部帖子]

试试这样

 

Dim ip As String
Dim ipFile As String = ProjectPath & "ip.txt"
If Filesys.FileExists(ipFile) Then
    ip = FileSys.ReadAllText(ipFile)
End If
If Network.Ping("192.168.1.74",1000) OrElse (ip > "" AndAlso Network.Ping(ip,1000)) Then
   
    Dim y As Integer = Date.Today.Year
    Dim m As Integer = Date.Today.Month
    Dim dt4 As New Date(y, m, 1)
    Dim dt5 As new Date(y,m,Date.DaysInMonth(y,m))
    DataTables("报销明细表").LoadFilter = "申请日期 >= '" & dt4 & "' and 申请日期 <= '" & dt5 & "'"
    DataTables("报销明细表").Load
    Forms("费用查询").open
Else
    MessageBox.show("网络不通请重新操作!")
End If


 回到顶部