|
-
Nov 12th, 2003, 07:10 AM
#1
Thread Starter
New Member
Form On Top of Form
In my program I have a child form with a textbox that is displayed when a MenuItem is clicked. I want it to display on top of the parent form, but what is happening is that you can see the parent form right through it, making the textbox impossible to read. Both forms have the Opacity set to 100%. I fiddled with setting the Topmost property but that didn't do it.
How can I display a child form on top of a parent form without taking down the parent?
-
Nov 12th, 2003, 09:20 AM
#2
Lively Member
VB Code:
Dim f As New SomeForm
Me.Enabled = False
f.ShowDialog(Me)
DannyJoumaa
Advanced VB6 Programmer
Intermediate-Advanced VB .NET Programmer
Intermediate C# Programmer
Intermediate Win32 Developer
Beginner Mac OS X Developer
Contact: [email protected]
Favorite Sayings:
"Every time you open your mouth, you prove your an idiot."
"God is a programmer. Satan is a bug. Life is debugging."
-
Nov 12th, 2003, 10:20 AM
#3
I wonder how many charact
You may also want to check that you haven't fiddled with the TransparencyKey property of the Forms.
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
|