Sunday, February 6, 2011

Convert Integer to Decimal

Convert Integer to Decimal

 Dim intControl as Integer= 56
  
 Dim decLose as Decimal
  
 decLose= CDec(intControl)  

1 comment:

  1. Would have liked to see a value assigned to the variables. Like dim intControl as Integer = 42

    ReplyDelete