Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Public Function GetValue(ByVal total as Integer) As Integer
  2. total = total - (total * 0.04)
  3. Return total
  4. End Function
  5.  
  6. Public Function GetCalValue(By caltotal as Integer) As Integer
  7. caltotal = (caltotal - (caltotal * 0.04)) + (caltotal * 0.004)
  8. Return caltotal
  9. End Function
  10.  
  11. Error 1 There is an error on line 5 of custom code: [BC30213] Comma or ')' expected.
  12. C:UsersuserDocumentsVisual Studio 2012ProjectsWindowsApplication3WindowsApplication3Report5.rdlc WindowsApplication3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement