Re: [IronPython] Word and MissingMemberException, 'tuple' object has no attribute 'SaveAs

2006-10-09 Thread Peter Frey
Problem is solved now. The Tuple I get behaves indeed like a Python tuple, so I can use myDoc[0] and invoke the SaveAs operation on that.Irritation was that the CLR debugger does not allow to evaluate python expressions like myDoc[0],what is rather unexpected when used to a Python editor like

Re: [IronPython] Word and MissingMemberException, 'tuple' object has no attribute 'SaveAs

2006-10-09 Thread Martin Maly
= app.Documents.Open( ... ); myDoc = values[0] Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frey576 Sent: Saturday, October 07, 2006 2:48 PM To: users@lists.ironpython.com Subject: [IronPython] Word and MissingMemberException, 'tuple' object has no attribute