My program goes like this:
1) I have date range 6th to 16th
2) If current date equals to date range stated above, the Command1 button will be automatically clicked.

But, the problem is I got this error when running this program.

Runtime error '28':
out of stack space

Why this error occur ? Can someone help me correct this error?

Below is the code:
VB Code:
  1. Private Sub lbltime_Change()
  2. dateCreate_1 = Month(Now) & "/6/" & Year(Now)
  3. dateCreate_2 = Month(Now) & "/16/" & Year(Now)
  4. lbltime.Caption = Date
  5. Dim bil As Date
  6. For bil = dateCreate_1 To dateCreate_2
  7. tarikhCreate = bil
  8. Label1.Caption = tarikhCreate
  9.      If lbltime.Caption = Label1.Caption Then
  10.         Command1_Click
  11.      End If
  12. Next
  13. End Sub