资源简介
VC 获取计算机名和IP地址,基于MFC的,是一个通过MFC来获取本地计算机IP地址的程序。具体来说是使用gethostname获取主机名(计算机名),使用GetIPAddress来获取IP地址的字符串,然后再经过字符转换成IP格式,这个例子挺简单,对研究MFC的朋友,或许有帮助。
代码片段和文件信息
// IPAddress.cpp : Defines the class behaviors for the application.
// Download by http://www.srcfans.com
#include “stdafx.h“
#include “IPAddress.h“
#include “IPAddressDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CIPAddressApp
BEGIN_MESSAGE_MAP(CIPAddressApp CWinApp)
//{{AFX_MSG_MAP(CIPAddressApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIPAddressApp construction
CIPAddressApp::CIPAddressApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CIPAddressApp object
CIPAddressApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CIPAddressApp initialization
BOOL CIPAddressApp::InitInstance()
{
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CIPAddressDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4326 1998-07-08 17:16 srcfans.com\获得本机ip地址的MFC程序\IPAddress.001
文件 21432 2002-12-17 22:27 srcfans.com\获得本机ip地址的MFC程序\IPAddress.aps
文件 1229 2002-12-17 22:27 srcfans.com\获得本机ip地址的MFC程序\IPAddress.clw
文件 2107 2016-12-01 17:36 srcfans.com\获得本机ip地址的MFC程序\IPAddress.cpp
文件 4260 2002-08-09 09:09 srcfans.com\获得本机ip地址的MFC程序\IPAddress.dsp
文件 541 2002-08-09 09:09 srcfans.com\获得本机ip地址的MFC程序\IPAddress.dsw
文件 1365 1998-07-08 15:38 srcfans.com\获得本机ip地址的MFC程序\IPAddress.h
文件 5885 2002-11-20 11:49 srcfans.com\获得本机ip地址的MFC程序\IPAddress.rc
文件 6546 2016-12-01 17:36 srcfans.com\获得本机ip地址的MFC程序\IPAddressDlg.cpp
文件 1536 1998-07-08 16:19 srcfans.com\获得本机ip地址的MFC程序\IPAddressDlg.h
文件 3404 1998-07-08 15:38 srcfans.com\获得本机ip地址的MFC程序\ReadMe.txt
文件 1078 1998-07-08 15:38 srcfans.com\获得本机ip地址的MFC程序\res\IPAddress.ico
文件 401 1998-07-08 15:38 srcfans.com\获得本机ip地址的MFC程序\res\IPAddress.rc2
文件 733 1998-07-08 15:55 srcfans.com\获得本机ip地址的MFC程序\resource.h
文件 207 1998-07-08 15:38 srcfans.com\获得本机ip地址的MFC程序\StdAfx.cpp
文件 928 1998-07-08 15:38 srcfans.com\获得本机ip地址的MFC程序\StdAfx.h
目录 0 2016-12-01 17:35 srcfans.com\获得本机ip地址的MFC程序\res
目录 0 2016-12-01 17:35 srcfans.com\获得本机ip地址的MFC程序
目录 0 2016-12-01 17:35 srcfans.com
----------- --------- ---------- ----- ----
55978 19
相关资源
- VC++基于OpenGL模拟的一个3维空间模型
- 基于VC++的SolidWorks二次开发SolidWorks
- VC6 USB开发源码
- VC操作SQLSERVER数据库
- aes加解密(vc源程序)
- vc_串口通讯
- 吕鑫vc6c++数据结构视频源码
- 派克变换VC++源码(附文档)
- 基于opencv漫水填充算法综合
- VC++ 串口
- VC++ 大富翁4_大富翁游戏源码
- MFC的异步网络通讯应用程序
- VC++ 摄像头视频采集与回放源程序
- 转 VC++ 实现电子邮件(Email)发送
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- VC++ 服务程序编写及安装与卸载
- VC++6.0番茄西红柿VAXvirsual assist X完美破
- VC编程助手2010破解版(原名VA_X_10.6.
- 基于改进的fcm算法的图像分割vc++
- VC++6.0 绿色版,免安装,非常好用。
- Microsoft Visual C++ 2005 Redistributable Pack
- VC++MFC课程设计的学生成绩管理系统
- VC6查找与替换插件
- 大智慧365DLL插件设计
- Microsoft Visual C++ 2010 Redistributable Pack
- VC经典教程等chm格式学习资料包
- 基于VC、MATLAB的汽车制动性能仿真
- VC++6.0汉化包
- VC++完整商业界面源码(再上传)
- VC++编程技术600个大型项目源码.rar
评论
共有 条评论