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
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
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
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
>>
>>