Content deleted Content added
This article is unduly glorifying Visual Basic. (Even its logo is unduly large and exaggerated.) Perhaps some stats supporting the contrary are in order. |
m Added links where releveant |
||
Line 195:
End Sub
</syntaxhighlight>
This snippet makes a counter that moves up 1 every second (a label and a timer control need to be added to the form for this to work) until the form is closed or an [[integer overflow]] occurs:
<syntaxhighlight lang="vb" >
Option Explicit
|