I am trying to retrieve value from a textbox dynamically.
This code isn't working.
For i = 1 To TotalSheets
ReqValue = ValidationForm.Frame6.ReportName(i).Value
Next
But this code does,
ReqValue = ValidationForm.Frame6.ReportName1.Value
I need to get the values dynamically through a loop.
ValidationForm? AUserFormor something hand crafted usingForm controlsand / orActiveX controls?