Honestly, with a reputation like he has, who would actually marry RA? I still love you, Ryan.
Category: Uncategorized
Range Life
Resizing a TCustomControl to fit TField contents
void SizeControlToField(TCustomControl* control, TField* field)
{
HDC DC;
LPTEXTMETRIC lptm = static_cast<LPTEXTMETRIC>(malloc(sizeof(TEXTMETRIC)));
DC = ::GetDC(control->Parent->Handle);
::GetTextMetrics(DC, lptm);
if (field->DataType == TFieldType::ftString) {
control->Width = field->DataSize * lptm->tmAveCharWidth;
}
free(lptm);
}
Top 5 Tragically Hip Albums
1. Fully Completely
2. Road Apples
3. In Violet Light
4. Day For Night
5. We Are The Same
https://www.rollingstone.com/music/lists/the-tragically-hip-10-essential-songs-w435104