[python-win32] assigning vb properties from python via COM?

Mark Hammond MarkH@ActiveState.com
Tue, 17 Apr 2001 12:21:41 +1000


> form.CellText(index, col, "hello") leads to an
> "expected 3 arguments, got 4" error.
> 
> Any tips other than writing more "code" in VB?

Try form.SetCellText(index, col)

form.CellText(index, col) should be able to get the value.

Mark.