I have a value in th picbox and it is a counter adding one each click how do i make it if it add one each time>





VB Code:
  1. Dim num As Integer
  2.  
  3. Private Sub cmdclick_Click()
  4. picscore.Cls
  5. NumberCount = 1
  6.  
  7. End Sub
  8.  
  9. Private Sub cmdclick_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  10. num = num + 1
  11.  
  12. picscore.Print num
  13. End Sub