DirkDiggler
Programmer
How do I add a small bmp-image at the rightmost end of a TStatusBar? Is it possible at all?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
TCanvas *pCanvas = StatusBar->Canvas;
pCanvas->Brush->Color = clRed;
pCanvas->FillRect(Rect);
pCanvas->Font->Color = clYellow;
ImageList1->Draw(pCanvas,Rect.Left,Rect.Top, Panel->Index);
// pCanvas->TextOut(Rect.left + 30, Rect.top + 2, "Panel" + IntToStr(Panel->Index));