Anothertest

Delphi code posted
created at 09 Jan 20:48

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#Region "Timer Code"

    Private Sub ClockTimer_Tick(Sender As Object, E As EventArgs) Handles ClockTimer.Tick

        ClockLabel.Text = Now.ToString
        StatusBar.Refresh()

    End Sub

    Private Sub WeatherTimer_Tick(Sender As Object, E As EventArgs) Handles WeatherTimer.Tick

        Weather.ProcessWeatherFeed()

    End Sub

    Private Sub InstagramTimer_Tick(sender As Object, e As EventArgs) Handles InstagramTimer.Tick

        Instagram.GetFeed()

    End Sub

    Private Sub TwitterTimer_Tick(Sender As Object, E As EventArgs) Handles TwitterTimer.Tick

        Twitter.ProcessTimeLine()

    End Sub

#End Region
662 Bytes in 2 ms with coderay