Re: [python-win32] Excel COM-object for cursor position UPDATE

2006-11-24 Thread James Matthews
Thanks helped me i was just working on that also! On 11/23/06, Bob Gailer <[EMAIL PROTECTED]> wrote: Please reply to the list as well as me. Others learn and sometimes offer help. Rikard Bosnjakovic wrote: > > I'm an utter novice of COM/DOM and I really don't have much knowledge > about it. I k

Re: [python-win32] Excel COM-object for cursor position UPDATE

2006-11-23 Thread Bob Gailer
Please reply to the list as well as me. Others learn and sometimes offer help. Rikard Bosnjakovic wrote: > > I'm an utter novice of COM/DOM and I really don't have much knowledge > about it. I know how to launch Word/Excel from Python by using > Dispatch("Excel.Application"), but that's about it.

Re: [python-win32] Excel COM-object for cursor position UPDATE

2006-11-22 Thread Bob Gailer
Rikard Bosnjakovic wrote: > I am going to add data row wise to Excel. Doing it manually, it would > be like this: > > TAB TAB RETURN > TAB TAB RETURN > > The TAB makes the cursor go to the next cell in the row, and the > RETURN makes the cursor go to the next row, in the same column as the >

Re: [python-win32] Excel COM-object for cursor position

2006-11-22 Thread Bob Gailer
Rikard Bosnjakovic wrote: > I am going to add data row wise to Excel. Doing it manually, it would > be like this: > > TAB TAB RETURN > TAB TAB RETURN > > The TAB makes the cursor go to the next cell in the row, and the > RETURN makes the cursor go to the next row, in the same column as the >

[python-win32] Excel COM-object for cursor position

2006-11-22 Thread Rikard Bosnjakovic
I am going to add data row wise to Excel. Doing it manually, it would be like this: TAB TAB RETURN TAB TAB RETURN The TAB makes the cursor go to the next cell in the row, and the RETURN makes the cursor go to the next row, in the same column as the first cell. Now I need to do this in Pyth