OutputWnd.cpp
资源名称:Netmanag.zip [点击查看]
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // OutputWnd.cpp : implementation file
- //
- #include "stdafx.h"
- #include "netmanager.h"
- #include "OutputWnd.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // COutputWnd
- COutputWnd::COutputWnd()
- {
- }
- COutputWnd::~COutputWnd()
- {
- }
- BEGIN_MESSAGE_MAP(COutputWnd, CEdit)
- //{{AFX_MSG_MAP(COutputWnd)
- ON_WM_LBUTTONDBLCLK()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // COutputWnd message handlers
- void COutputWnd::OnLButtonDblClk(UINT nFlags, CPoint point)
- {
- SetReadOnly(FALSE);
- SetSel(0, -1);
- Clear();
- SetReadOnly();
- CEdit::OnLButtonDblClk(nFlags, point);
- }
- /////////////////////////////////////////////////////////////////////////////