http://www.perlmonks.org?node_id=938700


in reply to Re: -e on windows giving error
in thread -e on windows giving error

well I am using activePerl, and whenever a drive does not exist it causes the popup each time untill it gets to the drive that does exist. and yeah I will loop it haha, thanks I am trying to use SetErrorMode() from Win32API::File but I keep getting the error of undefined subroutine at the function call..

Replies are listed 'Best First'.
Re^3: -e on windows giving error
by Util (Priest) on Nov 17, 2011 at 23:23 UTC
    Either use the fully-qualified name of the function, or import it in the use statement.
    # Either this: use Win32API::File; my $uOldMode = Win32API::File::SetErrorMode( $uNewMode ); # or this: use Win32API::File qw( SetErrorMode ); my $uOldMode = SetErrorMode( $uNewMode );
Re^3: -e on windows giving error
by ikegami (Patriarch) on Nov 17, 2011 at 23:27 UTC

    I presumed you neither imported SetErrorMode nor used its full name?

    use Win32API::File qw( SetErrorMode SEM_NOOPENFILEERRORBOX ); SetErrorMode( SetErrorMode(0) | SEM_NOOPENFILEERRORBOX );