I want my program to read from a label. so that when i click on a button it reads its caption and changes somthing in a modual.

I have this modual

VB Code:
  1. Public Type DataType
  2.     TodayMonth As String
  3.     TodayMonthNum As Integer
  4.     TodayDay As Integer
  5.     username As String
  6.     ChosenMonthNum As Integer
  7.     ChosenMonth As String
  8.     ChosenDay As Integer
  9.     TotalUsers As Integer
  10. End Type
  11. Public Data(0) As DataType

and this is the code inside each button
VB Code:
  1. Dim TodayDate As Integer
  2.     TodayDate = FriA.Caption
  3.     Data(0).TodayDay = TodayDate

but when i run the program i get this error.

Run Time Error "424":
Object required

So can anyone see a problem with my code, or is it that you can't read captions this way, and if thats the case how do i read captions?