Created
November 21, 2017 11:22
-
-
Save Willy-Kimura/65fd85ee92f9a73b77d33e6af1166bae to your computer and use it in GitHub Desktop.
Timer event for charts-generation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick | |
' Stop the Timer component after the first interval - 100 Milliseconds. | |
Timer1.Stop() | |
' Then Generate the charts with the method we created. | |
GenerateCharts() | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment