Hi all,
The following code will lock all controls on a form, but what I want is to lock all controls on a particular TAB, leaving the controls on other TABs enabled, does anyone know how to do that?
The following code will lock all controls on a form, but what I want is to lock all controls on a particular TAB, leaving the controls on other TABs enabled, does anyone know how to do that?
PHP:
Dim c As Control
For Each c In Me.Controls
c.Locked = True
Next c
Set c = Nothing