Results 1 to 4 of 4

Thread: How to make another application invisible??

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2000
    Posts
    47

    Exclamation

    Okay,

    I'm using Visual Basic 6.0 in Win98. Is there any kind of way to make another application invisible (if I know app's name in the tasklist ["ctrl+alt+del"])? Or how can I make all the other windows to be on top so this application's window wont be seen. Oh..this is hard to explain.....Well could somebody help me? Give ideas or maybe tips...

    Lare

  2. #2
    Guest
    well what u could do is keep the program running, and just hide the form, don't unload it, just hide it... "form1.hide"... also if u want to hide your program from the task list, "CTRL+ALT+DEL"... well u can do that using the API, look in the VB-world.net site, u should find it, or search for it on the forum, I'm sure u'll find it..

  3. #3

    Thread Starter
    Member
    Join Date
    Mar 2000
    Posts
    47
    Well, I didn't mean that... My purpose is to hide another program than my own. For example: How is it possible to hide (not just minimize) Internet Exlorer's window from my own application? But I want that Internet Explorer still keeps running in the background.


  4. #4
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221

    Thumbs up

    ShowWindow API shows/hides and iswindowvisible retrieves if it's visible/not
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width