• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Diff. between "greyed" and "disabled" check-box properties

kunaldua

Junior Member
Self-explantory i guess;

In VB properties of a checkbox control how is setting "checkbox.enabled=FALSE" diff. from setting "checkbox.value=2(Grayed)" ???

Thanx
Kunal


---------------------------------
Just struck me (maybe): disabling a checkbox still preserves the value/status of the checkbox - is that it??
 
When one disables a control, it is dimmed (greyed).

You can dim the control without disabling it

From the MSDN reference


<< The dimmed state typically is used to show that a check box has been disabled. >>

 
Back
Top