in reply to Re^4: problem with script transfered from VBS
in thread problem with script transfered from VBS
Although the you didn't get a compile-time error, you may have experienced a run-time error - which wasn't caught.
If it's the basic Win32::OLE module, any error from the last operation can be accessed via a call to Win32::OLE->LastError(), so try ...
$rs->Fields('AEName')->value($psProxyName); die "value(\$psProxyName) failed - " . Win32::OLE->LastError() if Win3 +2::OLE->LastError();
BTW, my sig is self-deprecating - it says that PM has a higher regard for my experience than I do;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: problem with script transfered from VBS
by xiaoyafeng (Deacon) on Aug 07, 2008 at 03:30 UTC | |
by Bloodnok (Vicar) on Aug 07, 2008 at 09:56 UTC | |
by xiaoyafeng (Deacon) on Aug 08, 2008 at 03:52 UTC | |
by Anonymous Monk on Aug 07, 2008 at 04:00 UTC |