> Steve wrote:
> 
> In the Win32 docs at
> http://search.cpan.org/author/JHI/perl-5.8.0/lib/Win32.pod in the item
> for Win32::SetChildShowWindow it says:
> 
> [EXT] The following symbolic constants for SHOWWINDOW are available
> (but not exported) from the Win32 module: SW_HIDE, SW_SHOWNORMAL,
> SW_SHOWMINIMIZED, SW_SHOWMAXIMIZED and SW_SHOWNOACTIVATE.
> 
> But when I specify use Win32 and use strict and then try something
> like
> 
>     Win32::SetChildShowWindow(SW_SHOWMINIMIZED)
> 
> I get a bareword error.  If I put the argument in quotes, nothing
> hapens.  I guess, then, I must need to import these constants.
> However the only docs I can find about importing symbolic constants
> are in Win32::OLE which I don't think applies here, probably.  Can
> anyone tell me how to do it?

try this:

Win32::SetChildShowWindow(Win32::SW_SHOWMINIMIZED)

-- 
Alan F. Dickey - Interaction and Realization
http://www.intac.com/~afdickey
mailto:[EMAIL PROTECTED]
VOX: 908-273-3232 Cell: 908-334-0932

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to