Checked vs CheckState

Just curious if the following statements do the same thing and what is the difference between the properties .Checked and .CheckState for a CheckBox

Me.ActiveCheckBox.Checked = CheckState.Checked

Me.ActiveCheckBox.CheckState = CheckState.Checked

[433 byte] By [GS] at [2007-12-17]
# 1
If you have Option Strict On, your first line won't compile: the Checked property is Boolean, so it may only be True or False. CheckState, on the other hand, may contain any of the three CheckState enumeration values: Checked, Unchecked, or Indeterminate. The Checked property returns True if CheckState is anything but Unchecked. For more information, see http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWindowsFormsCheckBoxClassCheckedTopic.asp
PhilWeber at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 2
Thanks

GS

GS at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...