README.md
December 5, 2022 ยท View on GitHub
Description
Round to X Decimal places with one line of code!
More Info
| Submitted On | |
| By | Afro |
| Level | Beginner |
| User Rating | 5.0 (15 globes from 3 users) |
| Compatibility | VB 4.0 (32-bit), VB 5.0, VB 6.0 |
| Category | Files/ File Controls/ Input/ Output |
| World | Visual Basic |
| Archive File |
Source Code
Private Sub RoundTo_Click()
Text1 = Format(Text1,"####.00") 'To alter
'the D.P. just add or subtract the 0's after
'the decimal point.
End Sub