//---------------------------------------------------------------------------
//in
source...
__fastcall
TForm1::TForm1(TComponent* Owner)
:
TForm(Owner)
{
TallHeaderFont = new TFont();
TallHeaderFont->Name = "Tahoma";
TallHeaderFont->Size = 24;
//Get the Header control's handle
HWND HeaderHandle = GetDlgItem(ListView1->Handle, 0);
SendMessage(HeaderHandle, WM_SETFONT,
(WPARAM)(TallHeaderFont->Handle), (LPARAM)true);
}
|