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
Child Form
Can anyone see where I have placed a wrong foot? How would you go about accessing this array from a child?
Any help would be much appreciated
John
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)
Code:
MsgBox Me.Parent.ChildNum(Me.CurrentRecord)
Any help would be much appreciated
John
Comment