I am trying to create a simple credit calculator that calculates the tax percentage, then it takes that percentage and multiplies it by the different shipping tiers we have, but for some reason, i cant get the values, to turn into actual money values, I did the Ccur but it dosent work

VB Code:
  1. Option Explicit
  2. Dim num1 As Double
  3. Dim num2 As Double
  4. Dim num3 As Double
  5. Dim num4 As Double
  6. Dim num5 As Double
  7. Dim answer1 As Double
  8.  
  9. Private Sub Command1_Click()
  10. num1 = Text1.Text
  11. num2 = Text2.Text
  12. num3 = Text3.Text
  13. num4 = Text4.Text
  14.  
  15. answer1 = (num2 / num1)
  16. Text3.Text = answer1
  17. Text4.Text = (answer1 * num1) + (num1)
  18. Text5.Text = CCur(Text5.Text * answer1)
  19. Text6.Text = CCur(Text6.Text * answer1)
  20. Text7.Text = CCur(Text7.Text * answer1)
  21. Text8.Text = CCur(Text8.Text * answer1)
  22. Text9.Text = CCur(Text9.Text * answer1)
  23. Text10.Text = CCur(Text10.Text * answer1)
  24. Text11.Text = CCur(Text11.Text * answer1)
  25. Text12.Text = CCur(Text12.Text * answer1)
  26. Text13.Text = CCur(Text13.Text * answer1)
  27. Text14.Text = CCur(Text14.Text * answer1)
  28. Text15.Text = CCur(Text15.Text * answer1)
  29. Text16.Text = CCur(Text16.Text * answer1)
  30. Text17.Text = CCur(Text17.Text * answer1)
  31. Text18.Text = CCur(Text18.Text * answer1)
  32. Text19.Text = CCur(Text19.Text * answer1)
  33.  
  34. End Sub
  35.  
  36. 'Clear the Values
  37. Private Sub Command3_Click()
  38. Text1.Text = ""
  39. Text2.Text = ""
  40. Text3.Text = "0"
  41. Text4.Text = "0"
  42. Form_Load
  43. End Sub
  44.  
  45. Public Sub Form_Load()
  46. ' Loading the values into the sections
  47.     Text5.Text = CCur(4.95)
  48.     Text6.Text = CCur(5.95)
  49.     Text7.Text = CCur(8.95)
  50.     Text8.Text = CCur(10.95)
  51.     Text9.Text = CCur(12.95)
  52.     Text10.Text = CCur(9.95)
  53.     Text11.Text = CCur(11.95)
  54.     Text12.Text = CCur(13.95)
  55.     Text13.Text = CCur(15.95)
  56.     Text14.Text = CCur(17.95)
  57.     Text15.Text = CCur(24.95)
  58.     Text16.Text = CCur(26.95)
  59.     Text17.Text = CCur(28.95)
  60.     Text18.Text = CCur(30.95)
  61.     Text19.Text = CCur(32.95)
  62.  
  63. End Sub