Results 1 to 1 of 1
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 ...
- 06-14-2011 #1Just Joined!
- Join Date
- Jan 2010
- Location
- Kirkland, WA, USA
- Posts
- 9
"is already declared in form definition."
I am trying to create a clock in Gambas2.
The time is supposed to be printed in CurrentHour (a label)
When I run the program, Gambas shows an error saying:Code:PUBLIC SUB CurrentHour() CurrentHour.Text = (Hour)
CurrentHour.Text is already declared in the form definition.
What do I need to do?


Reply With Quote