|
-
Sep 24th, 2001, 09:57 AM
#1
Thread Starter
Need-a-life Member
-
Sep 24th, 2001, 10:54 AM
#2
Frenzied Member
use the APIs FindWindow and SendMessage. Pass FindWindow the title of the window to hide, and then use SendMessage to send it the WM_HIDE message. (all this can be found in VB's API Viewer)
-
Sep 24th, 2001, 11:21 AM
#3
Thread Starter
Need-a-life Member
I didn't find the WM_Hide, but I found the:
Code:
Private Const SW_HIDE = 0
Private Const SW_SHOW = 5
However, it won't hide the app. Any ideas?
Emiliano F. Martín
If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
Encourage the person who helped you to keep doing it, and give him the points he deserves.
MP3 Organizer: Freeware to logically organize all your MP3s.
-
Sep 24th, 2001, 11:26 AM
#4
Frenzied Member
try SetWindowLong, with WM_VISIBLE, passing a value of False
-
Sep 24th, 2001, 11:37 AM
#5
Thread Starter
Need-a-life Member
Nevermind... I managed to do it with Kings' advice (ShowWindow API)
Emiliano F. Martín
If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
Encourage the person who helped you to keep doing it, and give him the points he deserves.
MP3 Organizer: Freeware to logically organize all your MP3s.
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
|