Right now, when i want to access and do some manipulation on a child window, I use:
var
Child: TMDIChild;
begin
Child := ActiveMDIChild as TMDIChild;
That selects the foremost child displayed. The problem I am encountering is that I have a requester that pops up. I want to enter data in this requester that is not really a child window and the data entered need to affect the window behind it. If i use the above statement, the requester is the activechildwindow. How do i find out what is the child behind the requester?
I hope i'm making sense.
Thanks.
PO
var
Child: TMDIChild;
begin
Child := ActiveMDIChild as TMDIChild;
That selects the foremost child displayed. The problem I am encountering is that I have a requester that pops up. I want to enter data in this requester that is not really a child window and the data entered need to affect the window behind it. If i use the above statement, the requester is the activechildwindow. How do i find out what is the child behind the requester?
I hope i'm making sense.
Thanks.
PO