Topmost Window in VB6
Visual Basic
2
Posts
2
Posters
1
Views
1
Watching
-
How do create a floating window in VB6 that minimises when the main application is minimised. I've tried using the SetWindowPos prcodedure contained in the user32.dll but the floating form doesn't minimise when the main application minimises. Cheers :)
-
How do create a floating window in VB6 that minimises when the main application is minimised. I've tried using the SetWindowPos prcodedure contained in the user32.dll but the floating form doesn't minimise when the main application minimises. Cheers :)
Just show the form with the main form as a parent.
Load frmChild frmChild.Show 0, frmMain