E
Eddy
I am trying to populate an array with a value from each control in a report
section. Specfically the 'Top' value of the control. I am using the
following code but each element in the array is empty. First time using
arrays, Help. Thanks.
ReDim varValue(intX + 34)
For Each ctl In Me.GroupHeader3.Controls
varValue(intX) = ctl.Top
' intX = intX + 1
Next ctl
section. Specfically the 'Top' value of the control. I am using the
following code but each element in the array is empty. First time using
arrays, Help. Thanks.
ReDim varValue(intX + 34)
For Each ctl In Me.GroupHeader3.Controls
varValue(intX) = ctl.Top
' intX = intX + 1
Next ctl