Hello
I have a MDI application with open so many chirldren windows. However, how can i get one of the chirldren window that currently NOT on the top if i need it?
Sooner Or Later, Everyone Does...
Printable View
Hello
I have a MDI application with open so many chirldren windows. However, how can i get one of the chirldren window that currently NOT on the top if i need it?
Sooner Or Later, Everyone Does...
there is a Forms collection which holds all the loaded forms of your application.
dim frm as form
for each frm in forms
if frm.name = "Form1" then
frm.caption = "Hey, I found Form1!"
frm.text1.text = "Oh darn, he found me!"
end if
next frm
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
If you know the name of the form then you can try the following
frmname.ZOrder (0)
Thanks
Goutam