资源简介
《第一财经》的播放器源码《第一财经》的播放器源码
代码片段和文件信息
// BBTV.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “BBTV.h“
#include “BBTVDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CBBTVApp
BEGIN_MESSAGE_MAP(CBBTVApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CBBTVApp construction
CBBTVApp::CBBTVApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
// The one and only CBBTVApp object
CBBTVApp theApp;
// CBBTVApp initialization
BOOL CBBTVApp::InitInstance()
{
// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles. Otherwise any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::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
// 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“));
CBBTVDlg *pDlg = new CBBTVDlg;
m_pMainWnd = pDlg;
pDlg->Create(CBBTVDlg::IDD NULL);
pDlg->ShowWindow(SW_HIDE);
//pDlg->ShowWindow(SW_SHOW);
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return TRUE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 315392 2009-11-26 08:57 bin\BBTV.exe
文件 139201 2009-11-26 14:25 bin\BBTV.rar
文件 14871552 2009-11-26 08:57 BBTV.ncb
文件 877 2009-11-25 09:06 BBTV.sln
..A..H. 14848 2009-11-26 08:57 BBTV.suo
文件 59028 2009-11-26 08:56 BBTV\BBTV.APS
文件 1891 2009-11-26 08:57 BBTV\BBTV.cpp
文件 492 2009-11-25 09:06 BBTV\BBTV.h
文件 6099 2009-11-26 08:56 BBTV\BBTV.rc
文件 5978 2009-11-25 10:00 BBTV\BBTV.vcproj
文件 1403 2009-11-26 08:57 BBTV\BBTV.vcproj.SAM.wolf.user
文件 4030 2009-11-25 13:54 BBTV\BBTVDlg.cpp
文件 859 2009-11-25 09:49 BBTV\BBTVDlg.h
文件 640 2009-11-25 09:17 BBTV\ocx_pla
文件 9094 2009-11-25 09:16 BBTV\ocx_pla
文件 3985 2009-11-25 09:06 BBTV\ReadMe.txt
文件 15086 2009-11-25 13:16 BBTV\res\BBTV.ico
文件 395 2009-11-25 09:06 BBTV\res\BBTV.rc2
文件 15086 2009-11-25 09:56 BBTV\res\BBTV2.ico
文件 0 2009-11-25 09:09 BBTV\res\html1.htm
文件 813 2009-11-25 09:45 BBTV\Resource.h
文件 204 2009-11-25 09:06 BBTV\stdafx.cpp
文件 2864 2009-11-25 09:06 BBTV\stdafx.h
文件 7471 2006-11-22 10:34 BBTV\Subclass.cpp
文件 2096 2006-07-06 17:10 BBTV\Subclass.h
文件 6292 2009-11-25 13:27 BBTV\TRAYICON.CPP
文件 1923 2006-07-06 17:10 BBTV\TRAYICON.H
目录 0 2009-11-25 13:16 BBTV\res
目录 0 2009-11-26 14:25 bin
目录 0 2009-12-01 20:08 BBTV
............此处省略3个文件信息
评论
共有 条评论