Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: -e on windows giving error

by Rudolf (Pilgrim)
on Nov 17, 2011 at 23:17 UTC ( [id://938700]=note: print w/replies, xml ) Need Help??


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 );

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (10)
As of 2024-04-19 08:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found