Advertisement
akosiraff

Salvage Value VB 2010

Jun 3rd, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/salvage-value-vb-2010/
  3. In reporting their taxes, businesses can report the depreciated value of their assets in several ways. Design a Form that allows users to calculate the depreciated value of an asset from the original COST, the SALVAGE VALUE, and the useful LIFE of the asset. The SALVAGE VALUE is the resale value of the asset at the end of the asset’s useful LIFE.
  4. The user should be able to select one of three ways to compute the depreciation, and from it the present value of an asset, given its COST, SALVAGE VALUE, and LIFE:
  5. (1) “Straight Line” assumes the depreciation is the same each year, as given by the formula:
  6. depreciation = (cost – salvage_value ) / life
  7. (2) “Double-declining Balance” depreciates the remaining value of the asset by twice that of the “Straight Line” method, according to the formula:
  8. depreciation = present_value * 2 / life
  9. where present_value is the current depreciated value of the asset in a given year of its life.
  10. (3) “Sum-of-years’ digits” depreciates an asset more during the early part of its life than the later part of its life, according to the formula:
  11. depreciation = 2 * straight_line_deprec * time_left/(life + 1)
  12. where time_left denotes the number of years remaining in the life of the asset.
  13. In all cases, once the depreciation is calculated, the present value of the asset, represented by value_in_year_n, can be computed as follows:
  14. value_in_year_n = value_in_year_(n-1) – depreciation
  15. where: value_in_year_0 = cost
  16. NOTE: Although VB actually provides functions to perform these calculations, it is required that you write your own functions for this purpose.
  17.  
  18. Download: http://solutionzip.com/downloads/salvage-value-vb-2010/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement