I hope someone can help me!! I am fairly new at VB and I have already tried searching for the answer...hope this isn't a repeat.
Question is: I want to disable/enable an array of textboxes, e.g. Text2(i).Text, located in frmexposurepath s within the frame called receptor. What i have so far:
If blah blah Then
frmexposurepath s!Text2(i).Text .Enabled = False
Else
frmexposurepath s!Text2(i).Text .Enabled = True
End If
But obviously this doesn't work. :) Any ideas?
DonnaDarko
Question is: I want to disable/enable an array of textboxes, e.g. Text2(i).Text, located in frmexposurepath s within the frame called receptor. What i have so far:
If blah blah Then
frmexposurepath s!Text2(i).Text .Enabled = False
Else
frmexposurepath s!Text2(i).Text .Enabled = True
End If
But obviously this doesn't work. :) Any ideas?
DonnaDarko
Comment