Guest cgchris99 Posted September 17, 2002 Posted September 17, 2002 I am creating a login form. If the user correctly enter the admin password, I need to enable various fields on form1. If they fail to enter the correct password. These same fields need to be disabled. Is there an easy way to code this or use a third party library. I have a LOT of textboxes in my app and would hate to hand code this for each textbox on this form. Thanks for any help Quote
*Gurus* Derek Stone Posted September 17, 2002 *Gurus* Posted September 17, 2002 Enumerate the controls collection. Quote Posting Guidelines
Guest cgchris99 Posted September 17, 2002 Posted September 17, 2002 Are there any examples of this? Quote
*Gurus* Derek Stone Posted September 17, 2002 *Gurus* Posted September 17, 2002 Dim x As Control For Each x In Me.Controls MessageBox.Show("", "") Next Quote Posting Guidelines
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.