资源简介
MFC实时网络连接装状况监测代码,点击按钮查看网络状况,网络若连接则实时监测到,并关闭窗口。
代码片段和文件信息
#include
#include
#include
#include
#include “CheckInternetState.h“
#pragma comment(lib“Wininet.lib“)
#pragma comment(lib“Sensapi.lib“)
#pragma comment(lib“iphlpapi“)
BOOL CheckInternetMethord1()
{
//#define INTERNET_CONNECTION_MODEM 1
//#define INTERNET_CONNECTION_LAN 2
//#define INTERNET_CONNECTION_PROXY 4
//#define INTERNET_CONNECTION_MODEM_BUSY 8
DWORD flags;//上网方式
BOOL bOnline=TRUE;//是否在线
bOnline=InternetGetConnectedState(&flags0);
// if(bOnline)//在线
// {
// if ((flags & INTERNET_CONNECTION_MODEM) ==INTERNET_CONNECTION_MODEM)
// {
// cout<<“在线:拨号上网“ << endl;
// }
// if ((flags & INTERNET_CONNECTION_LAN) ==INTERNET_CONNECTION_LAN)
// {
// cout<<“在线:通过局域网“ << endl;
// }
// if ((flags & INTERNET_CONNECTION_PROXY) ==INTERNET_CONNECTION_PROXY)
// {
// cout<<“在线:代理“ << endl;
// }
// if ((flags & INTERNET_CONNECTION_MODEM_BUSY) ==INTERNET_CONNECTION_MODEM_BUSY)
// {
// cout<<“MODEM被其他非INTERNET连接占用“ << endl;
// }
// }
// else
// {
// cout<<“不在线/n“;
// }
return bOnline;
}
BOOL CheckInternetMethord2()
{
DWORD flags;//上网方式
BOOL bOnline = TRUE;//是否在线
bOnline=IsNetworkAlive(&flags);
// if(bOnline && GetLastError() == 0)//在线,调用后要用GetLastError确定是否调用成功
// {
// if ((flags & NETWORK_ALIVE_LAN) ==NETWORK_ALIVE_LAN)
// {
// cout<<“在线:NETWORK_ALIVE_LAN“ << endl;
// }
// if ((flags & NETWORK_ALIVE_WAN) ==NETWORK_ALIVE_WAN)
// {
// cout<<“在线:NETWORK_ALIVE_WAN“ << endl;
// }
// if ((flags & NETWORK_ALIVE_AOL) ==NETWORK_ALIVE_AOL)
// {
// cout<<“在线:NETWORK_ALIVE_AOL“ << endl;
// }
// }
// else
// {
// cout<<“不在线“ << endl;
// }
return bOnline;
}
//说明:
//InternetGetConnectedState():对网络状况不能及时反应
//IsNetworkAlive():可以及时反应网络连通情况,但是需要服务System Event Notification支持(系统默认自动启动该服务)。调用后要用GetLastError确定是否调用成功
bool CheckInternetMethord3()
{
bool bIsInternetAvailable = false;
// Get the required buffer size
DWORD dwBufferSize = 0;
if (ERROR_INSUFFICIENT_BUFFER == GetIpForwardTable(NULL &dwBufferSize false))
{
BYTE *pByte = new BYTE[dwBufferSize];
if (pByte)
{
PMIB_IPFORWARDTABLE pRoutingTable = reinterpret_cast(pByte);
// Attempt to fill buffer with routing table information
if (NO_ERROR == GetIpForwardTable(pRoutingTable &dwBufferSize false))
{
DWORD dwRowCount = pRoutingTable->dwNumEntries; // Get row count
// Look for default route to gateway
for (DWORD dwIndex = 0; dwIndex < dwRowCount; ++dwIndex)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4543 2014-11-07 13:17 20141106_checkInternetState\TestInternetState\TestCheckInternetState\CheckInternetState.cpp
文件 351 2014-11-07 10:59 20141106_checkInternetState\TestInternetState\TestCheckInternetState\CheckInternetState.h
文件 5694 2014-11-07 13:30 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\BuildLog.htm
文件 28573 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\CheckInternetState.obj
文件 4177 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\stdafx.obj
文件 2048 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\TestCheckInternetState.exe.em
文件 2112 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\TestCheckInternetState.exe.em
文件 621 2014-11-07 13:30 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\TestCheckInternetState.exe.intermediate.manifest
文件 56614 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\TestCheckInternetState.obj
文件 633856 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\vc90.idb
文件 282624 2014-11-07 13:18 20141106_checkInternetState\TestInternetState\TestCheckInternetState\Debug\vc90.pdb
文件 1273 2014-11-06 17:56 20141106_checkInternetState\TestInternetState\TestCheckInternetState\ReadMe.txt
文件 227 2014-11-06 17:56 20141106_checkInternetState\TestInternetState\TestCheckInternetState\stdafx.cpp
文件 229 2014-11-07 10:09 20141106_checkInternetState\TestInternetState\TestCheckInternetState\stdafx.h
文件 498 2014-11-06 17:56 20141106_checkInternetState\TestInternetState\TestCheckInternetState\targetver.h
文件 1150 2014-11-07 11:02 20141106_checkInternetState\TestInternetState\TestCheckInternetState\TestCheckInternetState.cpp
文件 4444 2014-11-07 11:04 20141106_checkInternetState\TestInternetState\TestCheckInternetState\TestCheckInternetState.vcproj
文件 1421 2014-11-07 11:07 20141106_checkInternetState\TestInternetState\TestCheckInternetState\TestCheckInternetState.vcproj.zhangfeng-PC.zhangfeng.user
文件 4321 2014-11-12 18:37 20141106_checkInternetState\TestInternetState\TestInternetState\CheckInternetState.cpp
文件 374 2014-11-12 18:09 20141106_checkInternetState\TestInternetState\TestInternetState\CheckInternetState.h
文件 1819 2014-11-07 13:30 20141106_checkInternetState\TestInternetState\TestInternetState\InternetStatus.cpp
文件 511 2014-11-07 13:16 20141106_checkInternetState\TestInternetState\TestInternetState\InternetStatus.h
文件 2943 2014-11-06 11:11 20141106_checkInternetState\TestInternetState\TestInternetState\ReadMe.txt
文件 21630 2003-07-24 09:52 20141106_checkInternetState\TestInternetState\TestInternetState\res\TestInternetState.ico
文件 373 2014-11-06 11:11 20141106_checkInternetState\TestInternetState\TestInternetState\res\TestInternetState.rc2
文件 540 2014-11-06 11:11 20141106_checkInternetState\TestInternetState\TestInternetState\Resource.h
文件 148 2014-11-06 11:11 20141106_checkInternetState\TestInternetState\TestInternetState\stdafx.cpp
文件 1796 2014-11-06 11:11 20141106_checkInternetState\TestInternetState\TestInternetState\stdafx.h
文件 1030 2014-11-06 11:11 20141106_checkInternetState\TestInternetState\TestInternetState\targetver.h
文件 58952 2014-11-06 11:12 20141106_checkInternetState\TestInternetState\TestInternetState\TestInternetState.aps
............此处省略18个文件信息
相关资源
- VC++基于mfc 实现对话框打开读取txt文件
- 巴特沃斯低通滤波器的MFC程序
- MFC创建UI线程
- mfc矩阵运算器
- 基于MFC的BMP图像处理
- VC++之MFC类库中文手册一怀去意---
- PE文件格式解析MFCC++源码
- VS2010之MFC入门到精通教程1-55全部
- MFC写的windows网络热点共享源代码
- mfc读取excel
- Visual C++开发大全提高卷)光盘资料
- MFC视频播放器(带播放列表VC++6.0源代
- vs使用mfc实现全屏截屏和自定义区域截
- 基于MFC的软键盘
- 基于MFC仿QQ聊天程序设计完整教程
- MFC_Clock.zip
- 梅尔倒谱系数MFCC的matlab代码
- mfc绘制数学函数图像
- mfc生成excel-pdf图表
- 漂亮的MFC进度条
- MFC 动态曲线 支持缩放
- gridctrl_demo
- 学生管理系统,mfc做的,本人课设作
- 模拟的DBMS
- MFC窗体设计
- MFC自定义列表listcontrol
- MFC利用CSOCKET实现的小小聊天室
- VC++ MFC MSCOMM VS2010 手把手学会串口收发
- MFC开发的数学公式编辑器
- mfc编写的简单聊天程序
评论
共有 条评论