On Nov 15, 2:20 am, Cannonbiker wrote:
> Please I need Calling Python functions from Excel and receive result
> back in Excel. Can me somebody advise simplest solution please? I am
> more VBA programmer than Python.
A couple of years ago I used MSScriptControl for this. Couldn't find a
great ref
On Feb 6, 9:11 pm, Jason Voegele wrote:
> I'm working on my first substantial Python project, and I'm following a fully
> test-first approach. I'd like to know how Pythonistas typically go about
> running all of their tests to ensure that my application stays "green".
>
> In Ruby, I would have a
On Oct 22, 3:43 pm, korean_dave <[EMAIL PROTECTED]> wrote:
> Hi. I need a dummy's explanation to utilizing the win32com component
> to access Microsoft Excel.
>
> So far, I have this code.
>
> import win32com.client
> xl = win32com.client.Dispatch("Excel.Application")
> xl.Visible = 1
>
On Oct 20, 2:14 pm, Sid <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am tryin to copy an image into my own data structure(a sort of 2d array
> for further FFT). I've banged my head over the code for a couple of hours
> now. The simplified version of my problem is below.
>
> #-Code-