You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
459 B
16 lines
459 B
// DialErr.cpp : Implementation of CDialErr
|
|
#include "stdafx.h"
|
|
#include "icwhelp.h"
|
|
#include "DialErr.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDialErr
|
|
|
|
|
|
HRESULT CDialErr::OnDraw(ATL_DRAWINFO& di)
|
|
{
|
|
RECT& rc = *(RECT*)di.prcBounds;
|
|
Rectangle(di.hdcDraw, rc.left, rc.top, rc.right, rc.bottom);
|
|
DrawText(di.hdcDraw, _T("ATL 2.0"), -1, &rc, DT_CENTER | DT_VCENTER | DT_SINGLELINE);
|
|
return S_OK;
|
|
}
|