|
-
July 19th, 2001, 08:11 PM
#1
Chirldren Window
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...
-
July 20th, 2001, 01:23 AM
#2
Re: Chirldren Window
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
-
July 20th, 2001, 12:04 PM
#3
Re: Chirldren Window
If you know the name of the form then you can try the following
frmname.ZOrder (0)
Thanks
Goutam
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|