Procedure Name | Type | Description |
(Declarations) | Declarations | Declarations and private variables for the modStringNumbers module. |
CurrencyToText | Procedure | Converts a currency number to spelled out text with padding/length options which is commonly used for check writing. |
NumberToRoman | Procedure | Converts an integer to Roman numerals. |
' Example of modStringNumbers ' ' To use this example, create a new module and paste this code into it. ' Then run the procedure by putting the cursor in the procedure and pressing: ' F5 to run it, or ' F8 to step through it line-by-line (see the Debug menu for more options) Private Sub Example_modStringNumbers() ' Comments: Examples of using the modStringNumbers module to convert value to strings for check writing and Roman numerals in VBA and VB6. ' See the results in the Immediate Window ' Convert number amount to words: ONE THOUSAND TWO HUNDRED FORTY-FIVE & 67/100****** Debug.Print CurrencyToText("1245.67", 50) Debug.Print ' Convert number to Roman numerals (e.g. 1999 is MCMXCIX) Debug.Print NumberToRoman(1999) Debug.Print NumberToRoman(Year(Date)) Debug.Print End Sub
The source code in Total Visual Sourcebook includes modules and classes for Microsoft Access, Visual Basic 6 (VB6), and Visual Basic for Applications (VBA) developers. Easily add this professionally written, tested, and documented royalty-free code into your applications to simplify your application development efforts.
Total Visual SourceBook is written for the needs of a developer using a source code library covering the many challenges you face. Countless developers over the years have told us they learned some or much of their development skills and tricks from our code. You can too!
Supports Access/Office 2016, 2013, 2010 and 2007, and Visual Basic 6.0!
"The code is exactly how I would like to write code and the algorithms used are very efficient and well-documented."
Van T. Dinh, Microsoft MVP