Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Hiding DOS windows that accompany TK

by admiral_grinder (Pilgrim)
on Dec 08, 2008 at 14:35 UTC ( [id://728961]=note: print w/replies, xml ) Need Help??


in reply to Hiding DOS windows that accompany TK

I don't know about keeping it from showing up at all, but here is how you get ride of it when it does.

Look at Win32::GuiTest. Try the FindWindowLike, ShowWindow, and IsWindowVisible functions:

my @win = FindWindowLike( 0, "Super App", undef ); foreach my $win ( @win ) { ShowWindow( $win, SW_HIDE ) if ( IsWindowVisible( $win ) ); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://728961]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-26 06:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found