First, I want to put the following array into a message box.
Dim myVar(1 To 40) As Variant
With frmLoadExistingPlanning.cbxPlanning
myVar1 = .List(.ListIndex, 0) 'Planning Number
myVar2 = .List(.ListIndex, 1) 'Product type
.
.
myVar40 = .List(.ListIndex, 51) 'Revision
End With
Second, after the user has completed the revisions/edits to the user form inputs, i want to capture all the users selections from the combo boxes, text boxes and option buttons, is their a simple way to put this into an array so that the beginning array can be compared to the ending array?
Thanks
Bookmarks