Are you running this under WINE?
On 22 March 2017 at 19:23, Brahim EL ALLIOUI wrote:
> Hello,
>
> I use win32com.client to integrate a C # dll under python. This works well
> under windows
>
> From win32com.client import Dispatch, pythoncom
> From ctypes import cdll
> Mydll = cdll.LoadLibrary (
Yes it is.
http://www.py2exe.org/
http://cx-freeze.sourceforge.net/
On 6 January 2015 at 14:50, John Sampson wrote:
> Is it possible to create a standalone executable (.EXE file) from a Python
> script?
>
> By 'standalone' I mean an executable file that can be placed in any folder
> and conta
On Thu, Jun 3, 2010 at 9:30 AM, Mauricio Martinez Garcia
wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi, i have an problem at import module collections:
>> #=== Python
>> 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310
On Tue, May 18, 2010 at 9:22 AM, pacopyc wrote:
> Hi, I've a question for you. I'd like to call a function and waiting its
> return value for a time max (30 sec).
> The function could not respond and then I must avoid to wait for infinite
> time.
> Can you help me?
>
> Thanks
It depends on what m
On Sat, May 15, 2010 at 1:25 PM, Trong Hai wrote:
> Hello!
>
> Excuse me, I have a problem with python program, I don’t know fix it . Do
> you can help me? I very thank you. My problem is “ ImportError: No module
> named adodbapi ” when I run file “test_tsqlunit.py” and another. I hope you
> can h
On Sat, May 8, 2010 at 10:58 AM, Mico Siahaan wrote:
> Hi all, are there any tutorials in developing GUI using python-win32?
>
> rgds,
> Mico
>
>
If you going to be doing win32 programming I highly recommend you buy this book.
http://oreilly.com/catalog/pythonwin32/chapter/ch20.html
a web search
On Wed, Apr 21, 2010 at 9:05 AM, kNish wrote:
> Hi,
>
> How is it possible to run import win32api successfully on a 64bit maya
> version 2008?
>
> The following error occurs:
>
> Error: No module named win32api
> Traceback (most recent call last):
> File "", line 1, in
> ImportError: No module n
On Tue, Jul 7, 2009 at 10:16 AM, Fadhley Salim
wrote:
> https://sourceforge.net/projects/pywin32/
>
>
> The Sourceforge PyWin32 download site seems to have been down for a very
> long time. Is there an alternate source of downloads?
>
> Thanks
>
Site working fine for me. I think it might be somet
On Fri, Mar 6, 2009 at 1:29 PM, wrote:
>
> Hi folkz,
> just a simple question for a python guru:-)
>
> How can I execute dos commands via python?
> The command exec("chdir \Dir1\dir2\..") doesn't do it.
>
> Many thanks in advance!
>
> Solomon
>
> ___
> p
On Tue, Oct 21, 2008 at 4:50 AM, A. TNG <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm looking for a way to write a python app running at background on
> Windows.
>
> Like some Instant Messenger applications, the app may have a main
> windows. When user click "close", main window disappears. But the app
On Wed, Aug 13, 2008 at 4:56 PM, Vernon Cole <[EMAIL PROTECTED]> wrote:
> Where can one find documentation of MCI?
>
> On Tue, Aug 12, 2008 at 4:30 PM, Michel Claveau <[EMAIL PROTECTED]> wrote:
>
>> Hi!
>>
>> This is perfect. Works like a charm ... Thank you very much!
>>>
>>
>> Thanks for retur
On Thu, Jul 31, 2008 at 11:39 PM, Emanuel Sotelo
<[EMAIL PROTECTED]>wrote:
> hello, everybody
> perhaps somebody already ask this question but a i dont now the answer
>
> at what year was pythonwin develop, or at what year was his first release?
>
> is Mark Hammond the creator of pythonwin or was
On Thu, May 22, 2008 at 6:21 PM, Tim Golden <[EMAIL PROTECTED]> wrote:
> I have a request of the python-win32 community. Have a look at:
>
> http://timgolden.me.uk/python-on-windows/
>
> In particular, click through to the section on the Registry (which is the
> only section which has anything use
On Tue, May 13, 2008 at 8:37 AM, Antony Joseph <[EMAIL PROTECTED]>
wrote:
> Hi ,
> I am trying to hide the console as soon as the script starts
> and display console window to System Tray .
> Could someone point me to any links.
>
> Thanks
> Antony
Execute your script with pythonw.exe
> If I am not mistaken, you can use the with statement with python 2.4
>
> from __future__ import with_statement
>
>
>
Um, forget that. That is 2.5 like you said. Sorry.
Don't have 2.4 installed anymore to test my brain farts before sending them
on.
*Jedi mind trick* You never saw this mail
__
> import wmi
> >
> > servers = open ("c:/servernames.txt").read ().splitlines ()
> > for server in servers:
> > wmi_connection = wmi.WMI (server)
> > with open ("%s-services.log" % server, "w") as f:
> > for service in wmi_connection.Win32_Service ():
> > f.write ("%s\t%s\n" % (
On Feb 5, 2008 12:01 AM, Graessle, Glenn (FC COE) <
[EMAIL PROTECTED]> wrote:
> Is there an import file that defines the FormField types symbolically?
>
> For example, Word Checkbox has the value of 71 for it's type.
>
>
> *Glenn Graessle*
> Flight Controls CoE
> Honeywell International, Inc.
>
On Jan 31, 2008 12:36 PM, Pallavi Apotikar <[EMAIL PROTECTED]> wrote:
>
> Actually, I have an excel sheet, where I am entering the data.
>
> I am reading the entered data in python.
>
> excel takes data as a string.
>
> before passing it to python, i wanted to check whether the entered
> data(valu
On Jan 31, 2008 11:43 AM, Pallavi Apotikar <[EMAIL PROTECTED]> wrote:
>
> Hello Sir/Madam,
>
> I would like to know, is it possible to read a python file from an excel
> sheet ?
>
> Thanks and Regards
>
> Pallavi Ajabrao Apotikar
>
I don't fully understand what you are asking,
But...
If you wh
On Jan 14, 2008 8:55 PM, Patrick Li <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Does anyone know if there's a way to programmatically check to see if a
> user has windows administrator privilege? I need this to work in WinXP and
> Vista.
>
> Thanks in advance,
> Patrick
>
>
> ___
On Jan 8, 2008 11:20 AM, Antony Joseph <[EMAIL PROTECTED]> wrote:
> Hi,
> Can anyone help me , what the problem ?
> I am running this code in windows xp and outlook also installed in my
> machine.
>
> >>> from win32com.client import Dispatch
> >>> s=Dispatch('Mapi.Session ')
>
> Traceback (most re
There are a couple of posts about this about 3 years back, when I
tried to do this.
(http://aspn.activestate.com/ASPN/Mail/Browse/Plain/Python-win32?period=200409)
The project died the next week, so never got anything going, but
hopefully some of those comments might help you along your way.
Rega
On 9/6/07, Larry Bates <[EMAIL PROTECTED]> wrote:
> Does anyone have any insight where I would start looking for information on
> writing .NET compatible components in Python. I have a COM object that is
> written in Python and some developers have asked for a .NET port of it. I
> spent
> some t
On 8/3/07, scripteaze <[EMAIL PROTECTED]> wrote:
>
> Hello all, im new to the python scene and was wondering if there were any
> beginer python newsgroups similar to this. I did look in the python.orglist
> or newsgroups and did not see one avail.
>
> THnX
>
> --
>
>
>
>
> -=scripteaze=-
>
For g
On 6/28/07, Chandra,Devendran <[EMAIL PROTECTED]> wrote:
Hie,
I am a newbie to python. I hope this question is not so silly to
programmers out there
I am a test engineer discovering python, and my thoughts are skewed
towards engineering issues (^_^)
I have a program that accesses EEPRO
On 6/21/07, Matthew Perry <[EMAIL PROTECTED]> wrote:
Hi all,
I'm using Access 2000 .mdb as a backend to my python script and am
seeing some inconsistencies in the results.
If I run the script below, I get 15 rows.
If I run the SAME EXACT query directly in MS Access, I get 12 rows.
Perhaps
On 6/14/07, Richard Bell <[EMAIL PROTECTED]> wrote:
I'm trying to debug code for a class to automate IE and am having
difficulty
with ShowBrowserBar. I've looked on the Web and found a couple of
examples
that suggest this should work:
--- begin code ---
def spin(t):
t0 = time.clock()
w
On 6/14/07, Mickel Grönroos <[EMAIL PROTECTED]> wrote:
Hi!
I am thinking about fiddling with the Research Task Pane in Microsoft
Office using Python. The goal is to create a simple, generic module
that can be used for building various web services (in Python) for the
Research Task Pane. Basical
Maybe Portable Python (http://www.portablepython.com/,
http://www.voidspace.org.uk/python/movpy/)?
Or you could write a python script that takes a python script as an argument
and executes it, then freeze that using py2exe (http://www.py2exe.org/) or
cx_freeze (http://python.net/crew/atuining/cx_
#x27;)
when running the python script.
Am i doing something wrong? I am using python 2.4.3 pywin32 build 208,
running on WinXP pro.
Thanks,
Graeme
On 5/3/06, Graeme Glass <[EMAIL PROTECTED]> wrote:
> Great, thanks to the both of you, very helpful!!
> I had found a interim work
Great, thanks to the both of you, very helpful!!
I had found a interim work around, (not programmable, using GoRC and
Resource Hacker) and so was not happy with it, this is of great help,
thank you.
Graeme
On 5/3/06, Ralf Schmitt <[EMAIL PROTECTED]> wrote:
> Mark Hammond schrieb:
> >> Does anyone
Greetings,
Does anyone know of a way to add an icon to an existing .exe file on
win32 platform using win32all package?
Thanks.
Graeme
___
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32
On python 2.3.4 pythonwin build 203, i don't seem to have a problem.
can replace much more than 30 chars.
Not sure what your problem could be, but just thought that i would let
you know it's must your setup not pythonwin.
(you proberbly already tried this,) but try installing the a diffrent build.
Then os.popen(), popen2(), popen3() is your man/men/woman.
You can call the .exe without bringing up a command prompt and then
redirect the return data as you feel fit.
On 5/14/05, Bhanuprakash <[EMAIL PROTECTED]> wrote:
>
>
>
> Hi
>
> Actually my question is:
>
>
>
> I have written
Could anyone tell me if it is possible to create a sparse file on
win32 platform using python, and if so how?
And just out of interest, what is the practical limit for pickling an object?
I pickled a 89MB binary read from a disk file, and although it worked,
hogged my PC for about 8minutes making
Is there anyway to create a sparse file win32 platform using python?
And out of interested what is the practical limit for pickling an
object? I used pickle.dump() on a 89MB object (a binary read from a
disk file) and although it worked, my PC was pretty unusable for the 8
minutes it took to pickl
36 matches
Mail list logo