Thank you all for not holding my hand on this one

.
Here is what I tried that seems to work:
Dim i As Integer = arrEditNum.BinarySearch(drg1
(cma.Position, 0))
Dim frm As frmEdit = CType(arrEditfrm(i), frmEdit)
frm.Activate()
So I get the position of the record on the grid from the
currency manager and the ID value (at column 0 on the
grid). But I am using 2 arraylists. One list contains
the IDs and the 2nd arraylist contains the forms. I was
thinking about creating a small class object to contain
both items (ID and frm) so I could search on the ID
property and then invoke/activate the frm property of my
little class object in the arraylist. but back to square
one:
i = arrObj(??).BinarySearch(...)
Dim frm as...(arrObj(??))
Any suggestions how to get the values of my class object
from the arrylist greatly appreciated.
Adda
>-----Original Message-----
>In a Parent mdi form I have a datagrid. I select a
record
>from the grid and then invoke a childmdi form. I add the
>childmdi to an arraylist to keep track of it. If a user
>has selected multiple records from the grid and has
>multiple childmdi forms open and then re-selects a
>previously selected record, I want to activate that
>childmdi form. Suppose the arraylist contains indexes
>0,1,2,3,4 (5 childmdi forms). A user re-selects a child
>at index 2. How can I activate that childform?
>Pseudocode:
>dim arrayfrms As New Arraylist
>....
>arrayfrms(2).Activate
>
>TIA
>Adda
>.
>