Why don't you use format function with format strings? Example:
sb.panels[2].Text := Format('%8.2f',[123.456]);
Other functions would be
function FormatFloat(const Format: string; Value: Extended): string; overload;
function FormatFloat(const Format: string; Value: Extended; const FormatSettings: TFormatSettings): string; overload;
