in reply to Warning: "Win32::OLE operating in debugging mode: _Unique => 1"
This is likely a (bad/weird) side effect of your development environment. Try running your program outside of Eclipse.
Looking at the distribution, the code for generating this message is (in Win32::OLE::Lite, as even the warning messages in your screendump say)
if (defined &DB::sub && !defined $_Unique) { warn "Win32::OLE operating in debugging mode: _Unique => 1\n"; $_Unique = 1; }
So it would seem that Eclipse defines &DB::sub, which makes Win32::OLE::Lite generate this message.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Warning: "Win32::OLE operating in debugging mode: _Unique => 1"
by HelenCr (Monk) on Jun 24, 2012 at 16:34 UTC | |
by Corion (Patriarch) on Jun 24, 2012 at 17:32 UTC | |
by bulk88 (Priest) on Jun 25, 2012 at 03:10 UTC | |
by afoken (Chancellor) on Jun 24, 2012 at 20:02 UTC |