Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Dayman

    VB4: Format a numeric textbox to Currency without using convert

    SOLUTION FOUND AS FOLLOWS:<br> <br> Module:<br> <br> ' Convert any value into currency format. If the<br> ' value does not make sense, return 0.00.<br> Public Function cvCur(ByVal Value As Variant) As Currency<br> On Error Resume Next<br> cvCur = CCur(Value)<br> If Err.Number...
  2. Dayman

    VB4: Format a numeric textbox to Currency without using convert

    Hope someone can help. I am creating an accounting package and need to have textboxes display automatically in Currency with decimals.<br> <br> Thanks

Part and Inventory Search

Back
Top