README.md

December 5, 2022 ยท View on GitHub

Easy Rounding Function

Description

Round to X Decimal places with one line of code!

More Info

Submitted On
ByAfro
LevelBeginner
User Rating5.0 (15 globes from 3 users)
CompatibilityVB 4.0 (32-bit), VB 5.0, VB 6.0
CategoryFiles/ File Controls/ Input/ Output
WorldVisual 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

Contents

  1. 1Easy Rounding Function
  2. 1.1Description
  3. 1.2More Info
  4. 1.3Source Code