|
-
Feb 4th, 2008, 04:43 AM
#1
Thread Starter
Hyperactive Member
-
Feb 4th, 2008, 04:55 AM
#2
Re: [2005] Floating painel
in your parent form where you load the child form:
vb Code:
Form2.TopLevel = False
Form2.Parent = Me
Form2.Show()
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Feb 4th, 2008, 04:58 AM
#3
Re: [2005] Floating painel
You don't set the TopMost property. That is intended to create windows that are always in front of every other window, like the Task Manager. What you want is a modeless dialogue, otherwise known as an owned form. There are several ways to create an owned form but the easiest is instead of doing this:you do this:The dialogue form is now owned by Me, so it will always stay on top of Me without preventing access like a modal dialogue. It will also minimise, restore and close with Me.
-
Feb 4th, 2008, 05:08 AM
#4
Thread Starter
Hyperactive Member
Re: [2005] Floating painel
OMG so simple o.0
LOOOOL
Okok :P
TY Rated the 2 posts
The Future Is Always The Way To Live The Life
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
|