Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Checkbox ReadOnly?
Message
Information générale
Forum:
ASP.NET
Catégorie:
Formulaires
Divers
Thread ID:
00870633
Message ID:
00871101
Vues:
16
Hi Terry,

One approach is to handle the click event of the checkbox. In the click event, determine if you want the user to be able to change the state.
Private Sub CheckBox_Click(ByVal sender As Object, ByVal e As System.EventArgs)
   'Determine if the user can update the control
   ' ...
   Dim Obj As CheckBox = CType(sender, CheckBox)
   Obj.Checked = Not Obj.Checked
End Sub
>In a winform, how can a checkbox be set to readonly without being disabled?
>
>Thanks in Advance,
>
>Terry Carroll
-----------------------------------------

Cathi Gero, CPA
Prenia Software & Consulting Services
Microsoft C# / .NET MVP
Mere Mortals for .NET MVP
cgero@prenia.com
www.prenia.com
Weblog: blogs.prenia.com/cathi
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform