每次将条目添加到mysql数据库时,是否有办法显示通知?对于每个条目都有一个状态列,1是默认值,这是一个新条目,我想每次数据库获得一个新条目时显示通知,所以我可以在我们设置的网站上看到(每个条目是一个服务台票)来审查它。我正在使用VB.net 也应该关注我有显示通知部分制定
答案 0 :(得分:0)
对于任何好奇的人,我让它自己工作,我使用的代码是
Dim curCount = data_set2.Tables(0).Rows(0).Item(0) 'gets the current count
If curCount > prevCount Then 'if there are more than the previous count, that means a entry was added
NotifyIcon1.Icon = SystemIcons.Exclamation
NotifyIcon1.BalloonTipText =
data_set.Tables(0).Rows(0).Item(0)NotifyIcon1.ShowBalloonTip(10000)
End If
prevCount = data_set2.Tables(0).Rows(0).Item(0) 'sets the previous count to the current one for checking
这一切都在一个计时器上,它在我测试的时候对我起作用,现在可能有点不好,但它是第一个有用的。