Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
Re: [nonVCL] Problem mit Fenster
20. Dez 2006, 12:11
So geht es:
Delphi-Quellcode:
WM_CTLCOLORSTATIC:
begin
case GetDlgCtrlID(lParam) of
IDC_STC_BANNER:
begin
SetTextColor(wParam, RGB(0,255,0));
result := GetStockObject(WHITE_BRUSH);
end;
else
Result := DefWindowProc(hWnd, uMsg, wParam, lParam);
end;
end;
Michael Ein Teil meines Codes würde euch verunsichern.
|