Charin
Charin
About
- Username
- Charin
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Use this code inside report'designer on Code's section: use: [FloatToEng('your_number_field')] // English ---- function getNumEng(const Value:longint):string; begin case Value of 0:result:='ZERO'; 1:result:='ONE'; 2:result:='TWO'; …
-
Stark wrote: » Hi I think you must convert the numbers to words in your application and pass it to report Hope this code help MessageBox.Show( FastReport.Functions.StdFunctions.ToWords(1500.5, "", "")); Use this code on fast…