SelfExtract with zipfile

2005-11-23 Thread Catalin Lungu
Hi, I need to compress files in self-extract archive. I use the zipfile module. Is there an option or parameter to do that? Thanks in advance, Catalin -- http://mail.python.org/mailman/listinfo/python-list

Image capture

2005-01-05 Thread Catalin Lungu
Hi, Can anybody help me to implement the following VB code in Python. Thanks in advance. Private Declare Function SendMessage Lib "user32.dll" Alias _ "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, _ ByVal wParam As Long, ByVal lParam As Long) As Long Private Const WM_PAINT = &HF

Re: Image capture

2005-01-05 Thread Catalin Lungu
Hi, I want to capture a no visible area of a wxFrame of Python. This area contain a wxGrid object. In VB6 this code work very good. Thanks. "Kartic" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Catalin, > > Some explanation about what you are tring to do will be of imm

Re: How to make executable file ?

2005-01-05 Thread Catalin Lungu
Also, you can try with py2exe. It's very easy. Catalin. "Andrew Robert" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > BOOGIEMAN wrote: >> Just how to make *.exe file from python code ?? >> I typed this : >> >> a, b = 0, 1 >> while b < 1000: >> print b, >> a, b = b, a+b >> >>