Before the unsanctioned Golf tournament begins, here is Benny's code ungolfed

 Code:
For $Index = 1 to len($string)
  $temp2 = Left($temp1,1)
  If Asc($temp2) > 64 And Asc($temp2) < 91
    $Caps = $Caps + $temp2
  EndIf
  $temp1 = Right($temp1,-1)
Next

? $Caps
_________________________
(... better days ahead)