Advertisement
akosiraff

Commission Solution VB 2010

Nov 14th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/commission-solution-vb-2010/
  3. Problem 1: Chapter 3, Lesson B; page 174; Exercise 4: the Commission Solution.
  4. Open the Commission Solution (Commission Solution.sln) file contained in the
  5. VB2010\Chap03\Commission Solution folder. If necessary, open the designer window. The
  6. application calculates and displays a salesperson’s commission, using a commission rate of
  7. 10%. Make the Calculate Commission button the default button. Open the Code Editor window
  8. and review the code in the Calculate Commission button’s Click event procedure. Modify the
  9. procedure’s code to use variables. (Do not use the Val function.) Use a named constant for the
  10. commission rate. Be sure to enter the Option Explicit On, Option Strict On, and Option Infer Off
  11. statements in the General Declarations section. Use the ToString method to display the
  12. commission amount with a dollar sign, two decimal places, and a thousands separator (if
  13. necessary). Save the solution and then start the application. Test the application by calculating
  14. the commission for sales of 7500. The commission should be $750.00.
  15.  
  16. Download: http://solutionzip.com/downloads/commission-solution-vb-2010/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement