Hello, I am writing a python application for my company that we will
need to give to our customers. I am new with this stuff and I have a
few questions:
1) I have the application written in python - how do I give it to my
customers as a stand alone package (i.e., without asking my customers to
download python or anything else)?
2) How is installation handled? I would like to deliver just one
executable file to my users - if I have to use an installation process
where can I learn how to do this?
Thanks.
Jeff
···
-----Original Message-----
From: Robin Dunn [mailto:robin@alldunn.com]
Sent: Tuesday, July 06, 2004 9:20 AM
To: wxPython-users@lists.wxwidgets.org
Subject: Re: [wxPython-users] Standard event identifiers
ZULIANI Thomas wrote:
Hello,
I'd like to know what are the standard event identifiers for Python.
I'm
trying to catch the "wx.ID_CLOSE_FRAME" but it does not seem to work
at
all.
Except in very few cases (Ok and Cancel buttons, etc.) the standard IDs
are not used in the library but are there for you to use as you see the
need for them. So you'll need to have a menu item or whatever with an
id of wx.ID_CLOSE_FRAME in order to receive a matching event for it.
If you are wanting to catch the actual close event then just bind a
handler to wx.EVT_CLOSE.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org