本文介绍了当系统没有互联网连接时,在应用程序顶部显示一条消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
我创建了使用远程在线MYSQL数据库的Windows应用程序.
我的要求是,每当系统没有Internet连接时,都会出现一条弹出消息,直到重新建立连接为止,用户只能关闭应用程序才能执行任何操作.
我正在上这样的课..
Hello there,
I''ve created windows application which uses an remote online MYSQL database.
My requirement is, whenever system has no internet connectivity, a pop up message should come and till the connection re established, the user won''t be able to do anything except closing the application..
I''m having a class like this..
public bool ConnectionExists()
{
try
{
System.Net.Sockets.TcpClient clnt = new System.Net.Sockets.TcpClient("www.google.com", 80);
clnt.Close();
return true;
}
catch (System.Exception ex)
{
return false;
}
}
我是否应该将其用作将在整个应用程序中运行的线程?或有什么主意吗?
谢谢..
Debasish
Should I use this as a thread which will run through out the application? or any idea?
Thanx..
Debasish
推荐答案
这篇关于当系统没有互联网连接时,在应用程序顶部显示一条消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!