Code:
ShowMessage(IntToStr(value));
|
Newbie Member
|
|
| 16Jun2011,20:02 | #1 |
|
For example for int:
Code:
ShowMessage(IntToStr(value)); |
|
Mentor
|
![]() |
| 17Jun2011,13:53 | #2 |
|
Find the family of functions that includes IntToStr() and see if there is a LongDoubleToStr(). Alternatively use sprintf %ld to "print" the long double to a char array X then just ShowMessage(X).
|