Re: [python-win32] Pywin32-Excel Range/Cells problems

2010-04-06 Thread lin_2008
Yellow stone diesel parts plant is one of the leading manufacturers of engine parts, in particular diesel fuel injection system accessories for replacement, such as Fuel injection Nozzle, Plunger and Delivery valve, ETC In south of china . for more detail please visit our website : www.yell

Re: [python-win32] Pywin32-Excel Range/Cells problems

2010-03-16 Thread Sylvain Fauveau (apli-agipa)
Tim Roberts a écrit : Sylvain Fauveau (apli-agipa) wrote: Tim Roberts a écrit : For what it's worth, it works up through 911 characters and fails on 912. That's odd. I wonder if this is a request-length restriction in the marshalling code. So you can reproduce it, but with

Re: [python-win32] Pywin32-Excel Range/Cells problems

2010-03-16 Thread Tim Roberts
Sylvain Fauveau (apli-agipa) wrote: > Tim Roberts a écrit : >> For what it's worth, it works up through 911 characters and fails on >> 912. That's odd. I wonder if this is a request-length restriction in >> the marshalling code. >> > So you can reproduce it, but with which version of python/py

Re: [python-win32] Pywin32-Excel Range/Cells problems

2010-03-16 Thread Sylvain Fauveau (apli-agipa)
Tim Roberts a écrit : Sylvain Fauveau (apli-agipa) wrote: sheet.Range('A1:C1').Value = ['test','test'*400,'test'] doesn't work : pywintypes.com_error(-2147352567,"Une exception s'est produite.", (0, None, None, None, 0, -2416827284), None) It's always dangerous to retype lines like the

Re: [python-win32] Pywin32-Excel Range/Cells problems

2010-03-15 Thread Tim Roberts
Sylvain Fauveau (apli-agipa) wrote: > Hello everybody. > > I have detected a problem with a cell with lng text in it but I'm > not sure of his source. > > To reproduce it : > from win32com.client import Dispatch > excel = Dispatch('Excel.Application') > sheet = excel.ActiveSheet > > sheet.Range

[python-win32] Pywin32-Excel Range/Cells problems

2010-03-15 Thread Sylvain Fauveau (apli-agipa)
Hello everybody. I have detected a problem with a cell with lng text in it but I'm not sure of his source. To reproduce it : from win32com.client import Dispatch excel = Dispatch('Excel.Application') sheet = excel.ActiveSheet sheet.Range('A1:C1').Value = ['test','test'*400,'test'] doesn'