FIT   100
© Copyright University of Washington 1999-2000
On Clicking On OK
vWith the month chosen and the day chosen, it is possible to figure out the sign
;If the day is on the midpt or before, it’s the earlier sign
;If the day is after the midpt, it’s the later sign
v
Logic for OK Button
…
If dayPick <= midpt Then
   lblSign.Caption = loSign
Else
   lblSign.Caption = hiSign
End If
lblSign.Visible = True
lblYour.Visible = True
...
This label control will
be called “lblSign”