D
dapmco
Is there a way to build a string and execute the command to initialize
fields on a from within a loop, something like below? I thought the
eval command might work but doesnt seem to.
arry(1) = "Local"
arry(2) = "State"
arry(3) = "Federal"
For I = 1 To 3
TheString = "[Forms]![QBF]![LevelOfInterestUnbound]!" & arry(I) & " =
False""
Eval (TheString)
Next
Dave Taylor
fields on a from within a loop, something like below? I thought the
eval command might work but doesnt seem to.
arry(1) = "Local"
arry(2) = "State"
arry(3) = "Federal"
For I = 1 To 3
TheString = "[Forms]![QBF]![LevelOfInterestUnbound]!" & arry(I) & " =
False""
Eval (TheString)
Next
Dave Taylor