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


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

主题:[求助]OpenQQ问题

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


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2016/2/18 12:39:00 [显示全部帖子]

1、直接stop

 

http://www.foxtable.com/help/topics/2989.htm

 

2、肯定可以,对菜单控件的引用,改成对窗口控件的引用即可。


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


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2016/2/18 14:20:00 [显示全部帖子]

写到timertick事件里去

 

http://www.foxtable.com/help/topics/1301.htm

 

 

Static OpenQQ As winForm.Button
If OpenQQ Is Nothing Then
    OpenQQ = e.Form.Controls("OpenQQ")
End If
Dim txt As String
If QQClient.Ready
    If QQClient.UnreadCount > 0 Then
        txt = "(" & QQClient.UnreadCount & "条)"
    End If
End If
If OpenQQ.Text <> txt Then
    OpenQQ.Text = txt
End If
If OpenQQ.Text > "" Then
    If OpenQQ.ForeColor = Color.Red Then
        OpenQQ.ForeColor = Color.Transparent
    Else
        OpenQQ.ForeColor = Color.Red
    End If
End If


 回到顶部