Skip to content

Instantly share code, notes, and snippets.

@Willy-Kimura
Created November 21, 2017 11:22
Show Gist options
  • Save Willy-Kimura/65fd85ee92f9a73b77d33e6af1166bae to your computer and use it in GitHub Desktop.
Save Willy-Kimura/65fd85ee92f9a73b77d33e6af1166bae to your computer and use it in GitHub Desktop.
Timer event for charts-generation.
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