오전 11:30 2003-04-17
인터넷 되는지 확인하는 코드
조경민 bro@shinbiro.com
=========================================================================
#include "objbase.h"
#include "INITGUID.H"
#include "Intshcut.h"
#pragma comment(lib, "url")
void CTestIsINetOffDlg::OnButton1()
{
// TODO: Add your control notification handler code here
if( InetIsOffline(0) == TRUE)
AfxMessageBox(_T("인터넷 불가"));
else
AfxMessageBox(_T("인터넷 가능"));
}
인터넷 되는지 확인하는 코드
조경민 bro@shinbiro.com
=========================================================================
#include "objbase.h"
#include "INITGUID.H"
#include "Intshcut.h"
#pragma comment(lib, "url")
void CTestIsINetOffDlg::OnButton1()
{
// TODO: Add your control notification handler code here
if( InetIsOffline(0) == TRUE)
AfxMessageBox(_T("인터넷 불가"));
else
AfxMessageBox(_T("인터넷 가능"));
}
'KB > MFC/Win32' 카테고리의 다른 글
전역후크시 잘안될때 (0) | 2004.03.19 |
---|---|
전역 핫키 설정하기 (0) | 2004.03.19 |
Connecting to a Running Instance of Internet Explorer (0) | 2004.03.19 |
UNICODE와 CString (0) | 2004.03.19 |
MSDN Unicode 관련 설명 해석 (0) | 2004.03.19 |