メモ
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
cs.lpszClass = AfxRegisterWndClass(0, 0, 0, AfxGetApp()->LoadIcon(IDR_MAINFRAME));
return TRUE;
}
====================================
クリップボードツールバーの自動表示の禁止
HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Common\General
AcbControl [DWORD]
0:表示 1:表示禁止
KB207438
====================================
HKEY_CURRENT_USER\Control Panel\Desktop
Pattern = 248 116 34 71 143 23 34 113
====================================
The last SDK that will work with VC 6.0 is the February 2003 Edition.
VC6 で使える DirectX SDK の最終版は、DirectX SDK 9.0b Update(2003 Summer)です。
====================================
Humpty Dumpty sat on a wall.
Humpty Dumpty had a great fall.
All the king's horses and all the king's men
Couldn't put Humpty together again.
====================================
改行は全て \n
XML
====================================
Win32 Dynamic-Link Library -- 空のプロジェクト --
/NOENTRY
InitInstance()
m_hResource = ::LoadLibrary(_T("RESOURCE.DLL"));
if (m_hResource != NULL)
AfxSetResourceHandle(m_hResource);
====================================