[issue28989] .dll files missing

2021-11-22 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue28989] .dll files missing

2016-12-28 Thread Steve Dower
Steve Dower added the comment: Gabriel - did that solution work for you? If not, can you install and provide all the Python logs from %TEMP%? -- ___ Python tracker

[issue28989] .dll files missing

2016-12-16 Thread Brendan Donegan
Brendan Donegan added the comment: This more likely to be a system misconfiguration issue than a Python one. Following http://stackoverflow.com/questions/33265663/api-ms-win-crt-runtime-l1-1-0-dll-is-missing-when-opening-microsoft-office-file will probably fix the issue for you. --

[issue28989] .dll files missing

2016-12-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___

[issue28989] .dll files missing

2016-12-16 Thread Gabriel Lopez
atus: open title: .dll files missing ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28989> ___ ___ Python-bugs-list mailing list Unsubscribe: h

Re: dll files missings ....how to solve this problem

2016-10-21 Thread eryk sun
On Fri, Oct 21, 2016 at 4:05 PM, Dennis Lee Bieber wrote: > On Fri, 21 Oct 2016 15:00:58 +, mohammed iqtefan > declaimed the following: > >>i installed python 3.5.2 >> ... >>api-ms-win-crt-conio-l1-1-0.dll is missing >>and its not the only dll

Re: dll files missings ....how to solve this problem

2016-10-21 Thread Michael Torrie
On 10/21/2016 09:00 AM, mohammed iqtefan wrote: > hi > > i installed python 3.5.2 but i coudln't run it because i always have > this msg > > api-ms-win-crt-conio-l1-1-0.dll is missing > > and its not the only dll file that missing there is dozens more The api-ms-win-crt-conio dll is part of

dll files missings ....how to solve this problem

2016-10-21 Thread mohammed iqtefan
hi i installed python 3.5.2 but i coudln't run it because i always have this msg api-ms-win-crt-conio-l1-1-0.dll is missing and its not the only dll file that missing there is dozens more help me plz -- https://mail.python.org/mailman/listinfo/python-list

Any downsides to UPX-ing my 32-bit Python 2.6.4 EXE/PYD/DLL files?

2010-03-11 Thread python
Are there any downsides to UPX-ing my 32-bit Python 2.6.4 development environment EXE/PYD/DLL files? The reason I'm asking is that I frequently use a custom PY2EXE script that UPX's copies of these files on every build. Yes, I could get fancy and try to cache UPXed files, but I think a simpler

Dll files and Python2.5

2006-10-12 Thread roee88 shlomo
Hi, I would like to know a few things about the dll files usually included in Python windowsapplications: 1. in the Pythonwin Home Page (http://www.python.net/crew/skippy/win32/) I can see that mfc42.dll is required for python2.3 and mfc71.dll is required for python2.4 . Ismfc71.dll still

Re: Dll files and Python2.5

2006-10-12 Thread roee88 shlomo
Ignore the first question, it is required. On 10/12/06, roee88 shlomo [EMAIL PROTECTED] wrote: Hi, I would like to know a few things about the dll files usually included in Python windowsapplications: 1. in the Pythonwin Home Page (http://www.python.net/crew/skippy/win32/) I can see that mfc42

Re: .dll files

2005-06-21 Thread Sabin.A.K
files. thats why i ve turned towards dlls. Is it possible with COM objects? i am unaware of it. SABIN. Larry Bates wrote: You are most likely better off creating COM objects than trying to create old .dll files. Good treatment of COM object creation is in the book titled Python Programming

Re: .dll files

2005-06-21 Thread Konstantin Veretennicov
On 20 Jun 2005 23:56:50 -0700, Sabin.A.K [EMAIL PROTECTED] wrote: Will the COM Object be a total solution for my problems? I just try to make a dll to encapsulate some 'icon and text' files for my application. Are you trying to create a windows resource dll? I believe Python isn't the tool

dll files

2005-06-20 Thread Sabin
How can i create dll files in Python? Is it possible? If yes, how to enclose image and font files in a dll ? Plis reply. SABIN. B'lore. -- http://mail.python.org/mailman/listinfo/python-list

Re: dll files

2005-06-20 Thread Larry Bates
You are most likely better off creating COM objects than trying to create old .dll files. Good treatment of COM object creation is in the book titled Python Programming on Win32. Most other languages have no problem interfacing with COM objects. -Larry Sabin wrote: How can i create dll files