Re: [python-win32] SetCursor

2008-07-25 Thread Brian Parma
On Fri, Jul 25, 2008 at 6:13 PM, Tim Roberts <[EMAIL PROTECTED]> wrote: > Brian Parma wrote: > >> >> >> I was under the impression that SetCursor sets the mouse cursor >> 'system-wide', not just for your window. At least that's how it seems to >> work in this C++ example: >> > > No. It did in Wi

Re: [python-win32] SetCursor

2008-07-25 Thread Tim Roberts
Brian Parma wrote: I was under the impression that SetCursor sets the mouse cursor 'system-wide', not just for your window. At least that's how it seems to work in this C++ example: No. It did in Win16, but not in the Win32 systems. For the second part, this example produces it. It use

Re: [python-win32] SetCursor

2008-07-25 Thread Brian Parma
On Fri, Jul 25, 2008 at 4:13 PM, Tim Roberts <[EMAIL PROTECTED]> wrote: > Brian Parma wrote: > >> Is this function working? When I try it using a default cursor >> (IDC_WAIT), the cursor changes only if the mouse is over the window, and >> even then if I move the mouse at all it reverts back imme

Re: [python-win32] SetCursor

2008-07-25 Thread Tim Roberts
Brian Parma wrote: Is this function working? When I try it using a default cursor (IDC_WAIT), the cursor changes only if the mouse is over the window, and even then if I move the mouse at all it reverts back immediately. I googled this problem a bit and only found one mailing list post on th

[python-win32] SetCursor

2008-07-25 Thread Brian Parma
Is this function working? When I try it using a default cursor (IDC_WAIT), the cursor changes only if the mouse is over the window, and even then if I move the mouse at all it reverts back immediately. I googled this problem a bit and only found one mailing list post on this problem, but there wa

Re: [python-win32] i have this code, how do i passed to word

2008-07-25 Thread Emanuel Sotelo
thanks Tim i will look into all the opcions that you give me, but more specific in the one were a printed in a txt file. well you see a im beginning to lear python a used to only program in VB, so maybe that is the reason that i wan to automate everything. ___

Re: [python-win32] Excel Document

2008-07-25 Thread Tony Cappellini
Message: 1 Date: Fri, 25 Jul 2008 12:52:04 +0200 From: Michiel Overtoom <[EMAIL PROTECTED]> Subject: Re: [python-win32] Excel Document To: python-win32@python.org Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" Sina wrote... >To read the contents of an excel spreadshe

Re: [python-win32] i have this code, how do i passed to word

2008-07-25 Thread Tim Roberts
Emanuel Sotelo wrote: hello Tim yes that is something that i did, it was printed in the idle and a cut-and-paste to word. what i was wondering if it is posible to print the result in word instead of idle? what line codes do i need to make this hapend? I hope you do not think I am being stubb

Re: [python-win32] i have this code, how do i passed to word

2008-07-25 Thread Emanuel Sotelo
hello Tim yes that is something that i did, it was printed in the idle and a cut-and-paste to word. what i was wondering if it is posible to print the result in word instead of idle? what line codes do i need to make this hapend?

Re: [python-win32] i have this code, how do i passed to word

2008-07-25 Thread Tim Roberts
Emanuel Sotelo wrote: hello again well this time a grab this code from a web page, the result is printed in the Interactive Window, now i will appreciated if some can help me pass this result to microsoft word This example shows you the available ProgIDs of the Windows applications which are i

[python-win32] i have this code, how do i passed to word

2008-07-25 Thread Emanuel Sotelo
hello again well this time a grab this code from a web page, the result is printed in the Interactive Window, now i will appreciated if some can help me pass this result to microsoft word This example shows you the available ProgIDs of the Windows applications which are installed and ahould b

[python-win32] i have this code, how do i passed to word

2008-07-25 Thread Emanuel Sotelo
hello again well this time a grab this code from a web page, the result is printed in the Interactive Window, now i will appreciated if some can help me pass this result to microsoft word This example shows you the available ProgIDs of the Windows applications which are installed and ahould b

[python-win32] i have this code, how do i passed to word

2008-07-25 Thread Emanuel Sotelo
hello again well this time a grab this code from a web page, the result is printed in the Interactive Window, now i will appreciated if some can help me pass this result to microsoft word This example shows you the available ProgIDs of the Windows applications which are installed and ahould b

Re: [python-win32] from excel to word

2008-07-25 Thread Tim Golden
Emanuel Sotelo wrote: #word part wordapp = Dispatch("Word.Application") wordapp.Visible = 1 worddoc = wordapp.Documents.Add() rango = worddoc.Range(0,0) rango.InsertBefore('hi we are goin to bring the data from excel and have it print in word') worddoc.SaveAs(MYDIR+ '\\wordexcel.doc') rango.Ins

[python-win32] from excel to word

2008-07-25 Thread Emanuel Sotelo
hello, well this time i have to do someting more easier from python i create a excel document were a wrote a message, a number, and a have this number multiply by another with a formula. the a save de excel document. next in the same programa a create a word doucument were a also wrote a mes

Re: [python-win32] Excel Document

2008-07-25 Thread Michiel Overtoom
Sina wrote... >To read the contents of an excel spreadsheet. In one case I am trying to >read the value of the cell rather than its contents. i.e. if I have a >hyperlink called "Document" or "Procedure" which is a hyperlink to >http://intranet/foo.pdf then this script will return "Document" or "Li