資源簡介
MFC VC 錄音 實時波形顯示
自己編的,希望能對初學者有所幫助

代碼片段和文件信息
//?addnewdata.cpp?:?Defines?the?class?behaviors?for?the?application.
//
#include?“stdafx.h“
#include?“addnewdata.h“
#include?“addnewdataDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CAddnewdataApp
BEGIN_MESSAGE_MAP(CAddnewdataApp?CWinApp)
//{{AFX_MSG_MAP(CAddnewdataApp)
//?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()
/////////////////////////////////////////////////////////////////////////////
//?CAddnewdataApp?construction
CAddnewdataApp::CAddnewdataApp()
{
//?TODO:?add?construction?code?here
//?Place?all?significant?initialization?in?InitInstance
}
/////////////////////////////////////////////////////////////////////////////
//?The?one?and?only?CAddnewdataApp?object
CAddnewdataApp?theApp;
/////////////////////////////////////////////////////////////////////////////
//?CAddnewdataApp?initialization
BOOL?CAddnewdataApp::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
CAddnewdataDlg?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;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????36032??2010-05-10?19:15??addnewdata\addnewdata.aps
?????文件???????1328??2010-05-10?19:22??addnewdata\addnewdata.clw
?????文件???????2119??2010-05-09?16:12??addnewdata\addnewdata.cpp
?????文件???????4231??2010-05-09?16:12??addnewdata\addnewdata.dsp
?????文件????????528??2010-05-09?16:12??addnewdata\addnewdata.dsw
?????文件???????1368??2010-05-09?16:12??addnewdata\addnewdata.h
?????文件?????140288??2010-05-10?19:23??addnewdata\addnewdata.ncb
?????文件??????54784??2010-05-10?19:23??addnewdata\addnewdata.opt
?????文件???????2070??2010-05-10?19:22??addnewdata\addnewdata.plg
?????文件???????5529??2010-05-10?19:15??addnewdata\addnewdata.rc
?????文件??????13553??2010-05-10?19:22??addnewdata\addnewdataDlg.cpp
?????文件???????1769??2010-05-10?19:12??addnewdata\addnewdataDlg.h
?????文件?????118884??2010-05-10?19:22??addnewdata\Debug\addnewdata.exe
?????文件?????288208??2010-05-10?19:22??addnewdata\Debug\addnewdata.ilk
?????文件??????14586??2010-05-10?19:15??addnewdata\Debug\addnewdata.obj
?????文件????7970132??2010-05-10?14:31??addnewdata\Debug\addnewdata.pch
?????文件?????558080??2010-05-10?19:22??addnewdata\Debug\addnewdata.pdb
?????文件???????2676??2010-05-10?19:15??addnewdata\Debug\addnewdata.res
?????文件??????66507??2010-05-10?19:22??addnewdata\Debug\addnewdataDlg.obj
?????文件??????90757??2008-01-13?00:33??addnewdata\Debug\msado15.tlh
?????文件??????76683??2008-01-13?00:33??addnewdata\Debug\msado15.tli
?????文件?????145958??2010-05-10?14:31??addnewdata\Debug\StdAfx.obj
?????文件?????246784??2010-05-10?19:22??addnewdata\Debug\vc60.idb
?????文件?????577536??2010-05-10?19:22??addnewdata\Debug\vc60.pdb
?????文件???????3651??2010-05-09?16:12??addnewdata\ReadMe.txt
?????文件???????1078??2010-05-09?16:12??addnewdata\res\addnewdata.ico
?????文件????????402??2010-05-09?16:12??addnewdata\res\addnewdata.rc2
?????文件????????918??2010-05-10?19:15??addnewdata\resource.h
?????文件????????212??2010-05-09?16:12??addnewdata\StdAfx.cpp
?????文件???????1265??2010-05-09?20:47??addnewdata\StdAfx.h
............此處省略6個文件信息
- 上一篇:計算機圖形學大作業參考代碼(VC版)MFC開發
- 下一篇:完整版掃雷游戲
評論
共有 條評論