资源简介
windows网络编程源代码
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “MyBrowser.h“
#include “MainFrm.h“
#include
#include “MyBrowserView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
ON_CBN_SELENDOK(ID_COMBOOnNewAddress)
ON_COMMAND(IDOKOnNewAddressEnter)
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndRebar.Create(this))
{
TRACE0(“Failed to create combobox\n“);
return -1; // fail to create
}
if (!m_wndAddress.Create(CBS_DROPDOWN | WS_CHILD
CRect(0 0 200 120) this ID_COMBO)) //创建一下拉组合框
{
TRACE0(“Failed to create combobox\n“);
return -1; // fail to create
}
m_wndRebar.AddBar(&m_wndAddress“地址:“);
//把组合框添加到Rebar中,组合框的标题为“地址“
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
void CMainframe::OnNewAddress()
{
m_wndAddress.GetLBText(m_wndAddress.GetCurSel() m_strAddress);
Connect();
}
void CMainframe::OnNewAddressEnter()
{
m_wndAddress.GetEditCtrl()->GetWindowText(m_strAddress);
COMBOBOXEXITEM item;
item.mask = CBEIF_TEXT;
item.iItem = -1;
item.pszText = (LPTSTR)(LPCTSTR)m_strAddress;
m_wndAddress
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 24519 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\df21shoot.jpg
文件 2026 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-1.GIF
文件 2719 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-10.GIF
文件 3959 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-11.GIF
文件 4888 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-13.GIF
文件 1856 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-2.GIF
文件 2758 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-3.GIF
文件 2682 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-4.GIF
文件 3915 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-5.GIF
文件 3512 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-6.GIF
文件 4257 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-7.GIF
文件 3728 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-8.GIF
文件 4033 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\P1-9.GIF
文件 5378 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\PL-12.GIF
..A.SH. 8 2006-09-05 10:54 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\IMAGE\_desktop.ini
文件 0 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\post.bat
文件 77 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\post.htm
文件 832 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\BLANK.GIF
文件 22 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\default.bat
文件 882 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\FILE.GIF
文件 883 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\FOLDER.GIF
文件 2008 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\HTTPSVR.GIF
文件 856 2003-06-03 00:00 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\PREV.GIF
..A.SH. 8 2006-09-05 10:54 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\SVRADMIN\_desktop.ini
..A.SH. 8 2006-09-05 10:54 《windows网络编程源代码》\chap10\MulThreadHttpSvr\Webpages\_desktop.ini
..A.SH. 8 2006-09-05 10:54 《windows网络编程源代码》\chap10\MulThreadHttpSvr\_desktop.ini
文件 9505 2003-06-03 00:00 《windows网络编程源代码》\chap10\WEBQUERY\QUERYDLG.CPP
文件 1595 2003-06-03 00:00 《windows网络编程源代码》\chap10\WEBQUERY\QUERYDLG.H
文件 3600 2003-06-03 00:00 《windows网络编程源代码》\chap10\WEBQUERY\README.TXT
文件 1050 2003-06-03 00:00 《windows网络编程源代码》\chap10\WEBQUERY\RESOURCE.H
............此处省略1084个文件信息
相关资源
- VMware Remote Console 10.0.3 for WindowsVMware
- 淘宝装修源代码
- texstudio 2.12.6 for Windows
- microsoft-windows-netfx3-x86-package.cab
- P2P对等网络原理与应用
- 工业控制网络安全技术与实践 配套课
- 微信电脑版WxPC_Windows_V2.4.5.73官方原版
- 机器学习系统设计中文pdf版+源代码
- 想学好网络编程必看的书
- H3CNE课程 V7.0 构建中小企业网络全套培
- 神经网络控制第三版光盘
- Git-2.17.0-64-bit.exe
- .Net网络爬虫
- Net网络高级编程修订
- 《C和指针》中文清晰带书签PDF源代码
- 32位Windows版Git便携版PortableGit-2.11.0-
- MissionPlanner地面站源代码,可以直接编
- Windows Installer 4.5 vs2015项目打包文件全
- BCGControlBarPro v22.1正式版源代码、
- 网络规划设计师教程-黄传河.pdf
- DLT 860 变电站通信网络和系统整理完全
- 网络收音机
- DIRECTX9.0.3D游戏开发编程基础(红龙书
- glog及gflags在Windows下的预编译库
- WINDOWS 英文字体 900英文字库
- 贝叶斯网络学习、推理与应用
- GB-T 22239-2019 信息安全技术网络安全等
- OpenCV LBP特征提取源代码
- 网络数据的统计分析:R语言实践
- _CD_源代码.zip
评论
共有 条评论