資源簡介
包括《Visual C++角色扮演游戲程序設計》這本書的PDF電子書和隨書源代碼
代碼片段和文件信息
//
//?About-關于對話框
//
// Copyright?(c)?2000-2001?Chihiro.SAKAMOTO?(HyperWorks)
//
#include?“stdafx.h“
#include?“Application.h“
#include?“Dialog.h“
#include?“AboutDlg.h“
#include?“resource.h“
//
//?“關于本軟件”這個事件是以對話框來處理
//
// 藉由初始化動作,IDC_COMPANY和IDC_title會被重寫
//
BOOL?CAboutDlg::DlgProc(UINT?uMsg?WPARAM?wParam?LPARAM?lParam)
{
switch?(uMsg)?{
??case?WM_INITDIALOG: //?初始化
{
char copyright[256];
sprintf(copyright?“Copyright(c)?%s?%s“?__DATE__?+?7?CompanyName);
SetDlgItemText(IDC_COMPANY?copyright);
SetDlgItemText(IDC_title?Applicationtitle);
CenterWindow();
}
break;
??case?WM_COMMAND: //?按下按鈕
switch?(LOWORD(wParam))?{
??case?IDOK:
??case?IDCANCEL:
EndDialog(hDlg?LOWORD(wParam));
break;
}
break;
??default:
return?FALSE;
}
return?TRUE;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????402895??2006-07-05?18:03??[Visual?C++角色扮演游戲程序設計]?目錄.pdf
?????文件???10201517??2006-07-05?18:04??[Visual?C++角色扮演游戲程序設計].pdf
?????文件????????886??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\AboutDlg.cpp
?????文件????????368??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\AboutDlg.h
?????文件????????787??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\Action.cpp
?????文件????????879??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\Action.h
?????文件???????8122??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\Battle.cpp
?????文件???????3093??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\Battle.h
?????文件??????10616??2004-02-03?19:35??Visual?C++角色扮演游戲程序設計\chapter10\CGDATA\block.bmp
?????文件??????24632??2004-02-03?19:35??Visual?C++角色扮演游戲程序設計\chapter10\CGDATA\Cursor.bmp
?????文件?????119096??2004-02-03?19:35??Visual?C++角色扮演游戲程序設計\chapter10\CGDATA\fighter.bmp
?????文件?????921656??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\CGDATA\MAP1.bmp
?????文件?????317432??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\CGDATA\puyo.bmp
?????文件???????1005??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\Character.cpp
?????文件???????2147??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\Character.h
?????文件????????341??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Config.h
?????文件????????844??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\coordinate.h
?????文件???????1107??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\DrawImage.cpp
?????文件???????1340??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\DrawImage.h
?????文件???????2349??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Image.cpp
?????文件????????845??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Image.h
?????文件???????4568??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\MainWin.cpp
?????文件????????925??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\MainWin.h
?????文件???????1078??2004-02-03?19:36??Visual?C++角色扮演游戲程序設計\chapter10\RES\Sample.ico
?????文件???????1129??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\resource.h
?????文件??????38308??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Sample.aps
?????文件???????1129??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Sample.cpp
?????文件???????5626??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Sample.dsp
?????文件????????541??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Sample.dsw
?????文件??????73728??2004-02-03?19:37??Visual?C++角色扮演游戲程序設計\chapter10\Sample.exe
............此處省略492個文件信息
評論
共有 條評論