I am trying to create a clock in Gambas2.

The time is supposed to be printed in CurrentHour (a label)

Code:
PUBLIC SUB CurrentHour()
CurrentHour.Text = (Hour)
When I run the program, Gambas shows an error saying:

CurrentHour.Text is already declared in the form definition.

What do I need to do?