show/hide this revision's text 2 added 329 characters in body; deleted 90 characters in body

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;
show/hide this revision's text 1

Why don't you use format function with format strings? Example:

sb.panels[2].Text := Format('%8.2f',[123.456]);