Hello all,
I have a quick question on how to set properties on UserForm fields with variables?
Here is the general idea of what I am trying to do, obviously it dosnt work:
I have a quick question on how to set properties on UserForm fields with variables?
Here is the general idea of what I am trying to do, obviously it dosnt work:
Code:
Private Sub AccountType_Change()
Dim DKDoc As Shape
Select Case AccountType.Value
Case Is = "INDIVIDUAL"
DKDoc = "LPOADoc"
DKDoc& "Lable.Enabled" = True
DKDoc& "Original.Enabled" = True
DKDoc& "Signed.Enabled" = True
DKDoc& "Completed.Enabled" = True
Case Else
End Select
End Sub