资源简介
程程设计报告和源程序代码,源代码使用vc实现。仅供参考
代码片段和文件信息
// xiongFtp.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “FtpClient.h“
#include “MainFrm.h“
#include “FtpClientDoc.h“
#include “FtpClientView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFtpClientApp
BEGIN_MESSAGE_MAP(CFtpClientApp CWinApp)
//{{AFX_MSG_MAP(CFtpClientApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFtpClientApp construction
CFtpClientApp::CFtpClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFtpClientApp object
CFtpClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFtpClientApp initialization
BOOL CFtpClientApp::InitInstance()
{
AfxEnableControlContainer();
// 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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CFtpClientDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CFtpClientView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
m_pMainWnd->CenterWindow(CWnd::GetDesktopWindow());
// The one and only window has been initialized so sh
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-06-13 12:51 FTP文件传输\
目录 0 2011-06-12 17:50 FTP文件传输\FtpClient\
目录 0 2008-01-14 20:31 FTP文件传输\FtpClient\Debug\
文件 192577 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClient.exe
文件 629972 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClient.ilk
文件 25499 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClient.obj
文件 5499144 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClient.pch
文件 525312 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClient.pdb
文件 11812 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClient.res
文件 14617 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClientDoc.obj
文件 21985 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\FtpClientView.obj
文件 282369 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\MainFrm.obj
文件 105389 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\StdAfx.obj
文件 214016 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\vc60.idb
文件 389120 2008-01-14 20:24 FTP文件传输\FtpClient\Debug\vc60.pdb
文件 278528 2008-07-30 10:05 FTP文件传输\FtpClient\FlyFtp.exe
文件 35232 2008-01-14 20:24 FTP文件传输\FtpClient\FtpClient.aps
文件 3354 2008-01-14 20:25 FTP文件传输\FtpClient\FtpClient.clw
文件 4316 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient.cpp
文件 4932 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient.dsp
文件 543 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient.dsw
文件 1383 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient.h
文件 222208 2008-01-14 22:14 FTP文件传输\FtpClient\FtpClient.ncb
文件 74752 2008-01-14 22:14 FTP文件传输\FtpClient\FtpClient.opt
文件 1946 2008-01-14 20:24 FTP文件传输\FtpClient\FtpClient.plg
文件 14276 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient.rc
文件 4164 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient1.cpp
文件 1236 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClient1.h
文件 1801 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClientDoc.cpp
文件 1504 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClientDoc.h
文件 2824 2001-07-17 17:20 FTP文件传输\FtpClient\FtpClientView.cpp
............此处省略126个文件信息
- 上一篇:cling源码的demo程序
- 下一篇:WordNet3.0
评论
共有 条评论