Hello! I would like to retreive data from an array in a parent form. I think it's best explained by showing an example...

Parent Form
Code:
Option Compare Database
Dim ChildNum(1 To 255) As Integer
...
'Inside a sub I have a loop with this inside it...
ChildNum(ii) = Nz(rstPODetails!RecordId)
Child Form
Code:
MsgBox Me.Parent.ChildNum(Me.CurrentRecord)
Can anyone see where...