Link to home
Start Free TrialLog in
Avatar of KIRK50
KIRK50

asked on

How To Kill A Program Window?

Hi all,

I found a command, "KillWin" in some short pgm code which was supposed to kill or disable the download window in AOL, allowing one to do other work during a download.  However, I tried it in VB5 and the object/method doesn't work.  Any suggestions on how to do this?
Avatar of polygon
polygon

give more info - do you want to stop the execution of this window, to pause it or just to hide it for some time
Avatar of KIRK50

ASKER

Polygon,

I'd like to hide it to allow me to do other work during a long upload or download.  I can CANCEL using the button on the AOL box, but code for HIDING (and PAUSING, for that matter) would be very helpful.  Thanks again!

-- Kirk

Use SendMessage(hwnd, WM_HIDE,0,0), where hwnd is the handle of the window you need to hide.
You can also use ShowWindow app_hWnd, 0 to hide the window
ASKER CERTIFIED SOLUTION
Avatar of viktornet
viktornet
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of KIRK50

ASKER

Hi again all,

Good suggestions, I'll go to 20 points if someone can write me a short piece of code to get it working, and also:  when do you execute the routine, just prior to the download, or can you leave it running "hidden" in the background, waiting for the appropriate download "window" to appear?  Thanks,

-- Kirk

Avatar of KIRK50

ASKER

Thanks CoRpsE,

I also wanted to know, do you put in into a loop, a form_load event, or how does it look?  Also, what other cool AOL things can you do?  Do you have a web site?  

Thanks a bunch,

-- Kirk

Avatar of KIRK50

ASKER

Oops .. sorry, I think you answered my last comment/question, CoRpSe, thanks .. but still interested in AOL tricks, how you learned them, if you've a web page, etc.

-- Kirk

Avatar of KIRK50

ASKER

Dave,

Thanks, I'll drop you a line when I come across my next problem!  If you want, I've got a kinda neat AOL Anti Timer I developed (with Experts help, natch) ... I can upload it if u like, but I'll wait for your permission first.  I'm at KSIMP5050@aol.com, and you can have the source code too.  I want to add your routines to the program for kicks (i'm really a tech writer just playing around with this stuff!)--

Thanks again,

-- Kirk