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 file that missing there is dozens more > > While

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 the

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 windows applications:   1. in the Pythonwin Home Page (http://www.python.net/crew/skippy/win32/) I can see that mfc4

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 t

Re: .dll files

2005-06-21 Thread Sabin.A.K
Thank you Larry, And one more thing to ask, 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. Which should get installed in the users system while installing it. but user should not be able to edit those

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