RE: Resolved - Question about Win32::OLE

2006-05-26 Thread robert . w . sturdevant
Title: RE: Resolved - Question about Win32::OLE After screwing up the last two days, I now have this well embedded in my mind. Wel, at least until I have another memory dump. This list is a great resource. Best to all, Sturdy -Original Message- From: Timothy Johnson

RE: Resolved - Question about Win32::OLE

2006-05-25 Thread Bharucha, Nikhil
Take a look at the API doc for whatever SFTP program you are accessing; it may be returning values you are not expecting. After you instantiate via the new method in OLE you are passed back whatever the external program passes back. It could be passing back 0 upon success which will cause die to

RE: Resolved - Question about Win32::OLE

2006-05-25 Thread robert . w . sturdevant
Title: RE: Resolved - Question about Win32::OLE Hi Nick, Take a look at the API doc for whatever SFTP program you are accessing; it may be returning values you are not expecting. After you instantiate via the new method in OLE you are passed back whatever the external program passes

RE: Resolved - Question about Win32::OLE

2006-05-25 Thread Timothy Johnson
on success. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, May 25, 2006 8:15 AM To: [EMAIL PROTECTED] Cc: perl-win32-users@listserv.ActiveState.com Subject: RE: Resolved - Question about Win32::OLE Hi Nick

RE: Resolved - Question about Win32::OLE

2006-05-25 Thread Timothy Johnson
This isn't really a Win32::OLE issue. There are two different philosophies when it comes to returning success or error from a function: 1. The kind of function you run into most frequently in Perl is the kind that will return a false value on error (usually 0), and a true value on success