je sais pas si je peux faire un truc comme ça? :?Code:labStatTTC.Caption := IntToStr(speFuseau.Value div speCreneau.Value * FormatFloat('0.00', inttostr(dbefcPrixTTC.Field.value)) + ' ';
Version imprimable
je sais pas si je peux faire un truc comme ça? :?Code:labStatTTC.Caption := IntToStr(speFuseau.Value div speCreneau.Value * FormatFloat('0.00', inttostr(dbefcPrixTTC.Field.value)) + ' ';
aide delphi
doncCitation:
function FormatFloat(const Format: string; Value: Extended): string;
Code:
1
2 labStatTTC.Caption := FormatFloat('0.00', (speFuseau.Value div speCreneau.Value) * dbefcPrixTTC.Field.value ) + ' ';
merci