You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(116) |
Sep
(146) |
Oct
(78) |
Nov
(69) |
Dec
(70) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(188) |
Feb
(142) |
Mar
(143) |
Apr
(131) |
May
(97) |
Jun
(221) |
Jul
(127) |
Aug
(89) |
Sep
(83) |
Oct
(66) |
Nov
(47) |
Dec
(70) |
2003 |
Jan
(77) |
Feb
(91) |
Mar
(103) |
Apr
(98) |
May
(134) |
Jun
(47) |
Jul
(74) |
Aug
(71) |
Sep
(48) |
Oct
(23) |
Nov
(37) |
Dec
(13) |
2004 |
Jan
(24) |
Feb
(15) |
Mar
(52) |
Apr
(119) |
May
(49) |
Jun
(41) |
Jul
(34) |
Aug
(91) |
Sep
(169) |
Oct
(38) |
Nov
(32) |
Dec
(47) |
2005 |
Jan
(61) |
Feb
(47) |
Mar
(101) |
Apr
(130) |
May
(51) |
Jun
(65) |
Jul
(71) |
Aug
(96) |
Sep
(28) |
Oct
(20) |
Nov
(39) |
Dec
(62) |
2006 |
Jan
(13) |
Feb
(19) |
Mar
(18) |
Apr
(34) |
May
(39) |
Jun
(50) |
Jul
(63) |
Aug
(18) |
Sep
(37) |
Oct
(14) |
Nov
(56) |
Dec
(32) |
2007 |
Jan
(30) |
Feb
(13) |
Mar
(25) |
Apr
(3) |
May
(15) |
Jun
(42) |
Jul
(5) |
Aug
(17) |
Sep
(6) |
Oct
(25) |
Nov
(49) |
Dec
(10) |
2008 |
Jan
(12) |
Feb
|
Mar
(17) |
Apr
(18) |
May
(12) |
Jun
(2) |
Jul
(2) |
Aug
(6) |
Sep
(4) |
Oct
(15) |
Nov
(45) |
Dec
(9) |
2009 |
Jan
(1) |
Feb
(3) |
Mar
(18) |
Apr
(8) |
May
(3) |
Jun
|
Jul
(13) |
Aug
(2) |
Sep
(1) |
Oct
(9) |
Nov
(13) |
Dec
|
2010 |
Jan
(2) |
Feb
(3) |
Mar
(9) |
Apr
(10) |
May
|
Jun
(1) |
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
(1) |
Dec
(4) |
2011 |
Jan
|
Feb
|
Mar
(10) |
Apr
(44) |
May
(9) |
Jun
(22) |
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(2) |
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(1) |
Jun
|
Jul
(3) |
Aug
(8) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jussi S. <jus...@pp...> - 2006-09-03 17:34:41
|
Apologies for the long post! I've made 2 applications that could interest others also. 1. Blood Pressure Monitor (BPM) BPM is a PythonCard application for storing values of blood pressure measurements and for producing PDF charts of those values. The chart can be used by the physician of a patient to control the effect of the medical treatment being used. Despite its rather pompous name BPM is a modest, simple to use program. All it does could probably have been accomplished easily by a couple of Office macros, but I'm only willing to use tools that include Python or at least Py in their names.;) The purpose was to make - the data entry fast but still ensure the validity of the data - the charting in the ideal case happen with a single mouse click BPM produces a one-page PDF file containing: - the 'traditional' date-oriented systolic and diastolic pressure graphs - the scatterplot of (systolic, diastolic) pairs - the BP value distribution as a bar chart with BP values as X-axis and the frequencies of those values as Y-axis. - the quartiles Q1-Q3 for systolic and diastolic pressures After that BPM starts Acrobat Reader giving it the name of the file produced. The chart can then be viewed and printed or e-mailed as need be. BPM could serve as an example for developers using Pythoncard of how to use wx.Notebook and wx.Grid with Pythoncard. It might also be an example of how to do things the hard and wrong way, because part of what I've accomplished has been the result of trial-and-error. Some of the things I would have liked to been able to do I couldn't. For example, I would have liked to make the first field 'sDay' of the second tabsheet 'Data Chart' to be active when coming to this tab the first time after the start and yet to have the first tabsheet 'Data Entry' and preferably the (0,0) cell of the grid in it be active. Trying to do this resulted in a perverse condition where I had activated the 'Data Entry' with 'stringselection' and yet the input focus was in the 'sDay' field in the hidden tabsheet 'Data Chart'! 2. A Trick Card Game This card game belongs to the "plain trick games without trumps" category. I'm not aware of its name, so I'll have to describe its rules. The game is simple so it is particularly suitable for children. One player plays against 3 computer players. Each player is dealt a hand of 5 cards. A round consists of each player in turn playing one card. The suit of the leading card determines the suit to play in that round. If the player has cards of that suit, he has to play the suit but he is not forced to use a higher-valued card. If the player does not have the leading suit, any suit can be played. The player with the highest card of the round's suit wins the trick getting 1 point. The game comes with UIs defined for two languages, English and Finnish, and with description on how to translate the UI to some other language. 3. Environment and download The programs have been developed and tested on Windows XP Home SP2 using the following great software: Python 2.4.3, wxPython 2.6.3, PythonCard 0.8.2, PyChart 1.34 and Acrobat Reader 7.0.8. They have a non-essential Windows dependence of using winsound with error messages. They are distributed under the MIT license (see the attached file License.txt) The download page is: http://personal.inet.fi/cool/operator/ProgToDownload.html |
From: hwphillips <bu...@ya...> - 2006-09-03 17:14:40
|
I have an interesting window problem. My pcard rsrc sets the window size at 700x500. When the program runs it it maximized to full screen (1152x864). So it seems to ignore the program setting. This seems to be related to other programs, because it has worked before, but does not work after running some other programs. Why doesn't the pcard routine control the window size like it's supposed too? |
From: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - 2006-08-27 09:51:31
|
On 26/8/06 22:02, Kevin Altis wrote: > > On Aug 26, 2006, at 6:31 AM, XXXXXXXXXXX wrote: > >> I'm still building Windows EXEs via the Mcmillan installer that I set-up >> quite a while ago (I'll get standaloneBuilder one of these days!) and I >> still use that old debugging technique, the print statement, all the >> time. >> <snip> > > That sounds more like a bug in McMillan to me. Have you tried using the > updated pyInstaller instead? Maybe it is changing where sys.stdout and > sys.stderr go? You could add some fields to your application and dump > the values for both of those. You could also assign some other file-like > object to sys.stdout. You could make your own that even dumps text on a > write to a hidden TextArea field which might be a temporary workaround > until you figure out the real problem. Alternatively, assign a real file > handle to sys.stdout or sys.stderr and capture the specific tracebacks > that way. Just a few ideas to help debug the problem. > Thanks Kevin....I'll have to get the latest pyInstaller and find out if that makes a diference. In the meantime I've commented out the print statements and left the code in place to write the strings to a text file. -- XXXXXXXXXXX |
From: Kevin A. <al...@se...> - 2006-08-26 21:02:21
|
On Aug 26, 2006, at 6:31 AM, Neil Hughes wrote: > I'm still building Windows EXEs via the Mcmillan installer that I > set-up > quite a while ago (I'll get standaloneBuilder one of these days!) > and I > still use that old debugging technique, the print statement, all > the time. > > For some reason I had assumed that switching the standalone config > file > from console to no-console would make no difference if I left the > print > statements in place, i.e. the standard output would just get > directed to > NULL or something. However I just tracked down a problem I was > having to > the fact that with the console switched off but the printing still > active my PythonCard app was stopping halfway through processing a > button press and control returning to the event loop. The issue would > not affect every PC the application was running on but when it > happened > it was always in the same place. > > I presume printing to no console is therefore "a bad thing" and the > standalone build mechanism isn't capable of redirecting standard > output > with no console - could anyone confirm this? > > It also makes me wonder what happens to standard error output, e.g. > exceptions. Traditionally they get reported to the console - in > "non-console mode" could this also trigger issues (presumably in most > cases the exception occurring in the first place is probably a bad > sign, > but sometimes you might be able to recover)? Do I need to make sure > that > any error output is blocked off as well or logged to a file? > > I feel a bit of an idiot for taking so long to realize what now seems > pretty obvious, but I just wanted to make sure I am now correct and > that > there isn't something else weird going on with my application and this > standard output business is just a red herring. > > -- > Neil Hughes > That sounds more like a bug in McMillan to me. Have you tried using the updated pyInstaller instead? Maybe it is changing where sys.stdout and sys.stderr go? You could add some fields to your application and dump the values for both of those. You could also assign some other file-like object to sys.stdout. You could make your own that even dumps text on a write to a hidden TextArea field which might be a temporary workaround until you figure out the real problem. Alternatively, assign a real file handle to sys.stdout or sys.stderr and capture the specific tracebacks that way. Just a few ideas to help debug the problem. ka |
From: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - 2006-08-26 13:32:16
|
I'm still building Windows EXEs via the Mcmillan installer that I set-up quite a while ago (I'll get standaloneBuilder one of these days!) and I still use that old debugging technique, the print statement, all the time. For some reason I had assumed that switching the standalone config file from console to no-console would make no difference if I left the print statements in place, i.e. the standard output would just get directed to NULL or something. However I just tracked down a problem I was having to the fact that with the console switched off but the printing still active my PythonCard app was stopping halfway through processing a button press and control returning to the event loop. The issue would not affect every PC the application was running on but when it happened it was always in the same place. I presume printing to no console is therefore "a bad thing" and the standalone build mechanism isn't capable of redirecting standard output with no console - could anyone confirm this? It also makes me wonder what happens to standard error output, e.g. exceptions. Traditionally they get reported to the console - in "non-console mode" could this also trigger issues (presumably in most cases the exception occurring in the first place is probably a bad sign, but sometimes you might be able to recover)? Do I need to make sure that any error output is blocked off as well or logged to a file? I feel a bit of an idiot for taking so long to realize what now seems pretty obvious, but I just wanted to make sure I am now correct and that there isn't something else weird going on with my application and this standard output business is just a red herring. -- XXXXXXXXXXX |
From: Michael a. C. M. <mcd...@ve...> - 2006-08-22 01:26:49
|
standaloneBuilder problemCould I please get taken off the mail list?=20 Greately appreciated.=20 M.Martinez |
From: Labhard, M. E <mic...@in...> - 2006-08-21 22:14:53
|
I am seeing an error after the Build.py step when executing the resulting EXE. This looks kind of like an import error. But I cannot figure out how to resolve it. Any suggestions? $ ./HHSNotebook.exe Traceback (most recent call last): File "<string>", line 10, in ? File "C:\Python23\Installer\iu.py", line 277, in importHook mod =3D _self_doimport(nm, ctx, fqname) File "C:\Python23\Installer\iu.py", line 362, in doimport exec co in mod.__dict__ File "c:\Documents and Settings\melabha\Projects\HeartHealth\configure\buildHH SNotebook\out1.pyz/HHSContextAssoc", line 50, in ? AttributeError: 'module' object has no attribute 'PageBackground' -- Michael |
From: Ruben M. <rmc...@ya...> - 2006-08-21 16:53:38
|
One of these days I'm going to have to set some time to try this. The last I heard on this issue pointed me to PyInstaller: http://pyinstaller.hpcf.upr.edu/cgi-bin/trac.cgi You may want to give that a try and let us know how it works. -Ruben --- John Rose <joh...@ho...> wrote: > It would be nice to be able to run a PythonCard > application on a Linux box which does not have > PythonCard or even Python installed. Particularly as > the equivalent has been done to allow an app to be > run > a Windows box. > PS Freeze allows a Python module to be compiled. > However, to do this for PythonCard would need the > interpreter from PythonCard to be included with the > rsrc.py & py files in the app. > > Regards, > John > > _________________________________________________________________ > The new Windows Live Toolbar helps you guard against > viruses > http://toolbar.live.com/?mkt=en-gb > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support > web services, security? > Get stuff done quickly with pre-integrated > technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 > based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Pythoncard-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pythoncard-users > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Kevin A. <al...@se...> - 2006-08-20 18:32:00
|
Begin forwarded message: > From: "Celio Franco" <cel...@no...> > Date: August 15, 2006 5:45:55 AM PDT > To: "Python Card_ Using Pythoncard-devel" <pythoncard-=20 > de...@li...> > Subject: [Pythoncard-devel] Trobles iin Python Card !!! Help Me !!! > > Dear Friends, > > I'm more lose in Python Card... I use a MultiColumnList =20 > component and I want format each column after create or in Python =20 > Layout Editor, but I don't know do these... My problem: > > 1- I have a MultiColumnList with 8 items - 2 items I want right =20 > alignment and the others left. How I do these ??? > > 2- What the better utility for print reports under Python Card =20 > envirnment ?? Exist some document or page about that ??? > > Thank you Very Much, > > Eng. Celio Franco - Gestor > Portal Nosso S=E3o Paulo > www.nossosaopaulo.com.br |
From: John R. <joh...@ho...> - 2006-08-17 07:44:01
|
It would be nice to be able to run a PythonCard application on a Linux box which does not have PythonCard or even Python installed. Particularly as the equivalent has been done to allow an app to be run a Windows box. PS Freeze allows a Python module to be compiled. However, to do this for PythonCard would need the interpreter from PythonCard to be included with the rsrc.py & py files in the app. Regards, John _________________________________________________________________ The new Windows Live Toolbar helps you guard against viruses http://toolbar.live.com/?mkt=en-gb |
From: Phil E. <ph...@li...> - 2006-08-13 18:02:10
|
On Sunday 13 Aug 2006 07:10, Kevin Altis wrote: > On Aug 12, 2006, at 3:41 PM, hwphillips wrote: > > How do you select a notebook page, other than with the mouse. I load 3 > > pages and when the program runs, the last page is selected. I would > > like > > to default to the first page but can't figure out how to do it. > > Thanks. > > Simply change the selection attribute of your notebook: > > self.components.notebook.selection = 0 > The other option is to do it when you create each page of the notebook, for example assuming you have a notebook component called 'myNotebook' and you want to add 4 tabs and end up with the 2nd tab selected, the relevant parts of the code would look like this: self.components.myNoteook.AddPage(tab1, 'Tab #1', False) self.components.myNoteook.AddPage(tab2, 'Tab #2', True) self.components.myNoteook.AddPage(tab3, 'Tab #3', False) self.components.myNoteook.AddPage(tab4, 'Tab #4', False) It's the True/False parameter on the end which governs which tab is made 'active'. -- Regards Phil Edwards Brighton, UK |
From: Jussi S. <jus...@pp...> - 2006-08-13 11:02:15
|
You can also use (the more application oriented way?): self.components.notebook.stringSelection = 'Data Entry' where '...' ( 'Data Entry' in my case) is the text in the notebook tab. JS hwphillips wrote: > How do you select a notebook page, other than with the mouse. I load 3 > pages and when the program runs, the last page is selected. I would like > to default to the first page but can't figure out how to do it. Thanks. > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Pythoncard-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pythoncard-users > > |
From: Kevin A. <al...@se...> - 2006-08-13 06:09:55
|
On Aug 12, 2006, at 3:41 PM, hwphillips wrote: > How do you select a notebook page, other than with the mouse. I load 3 > pages and when the program runs, the last page is selected. I would > like > to default to the first page but can't figure out how to do it. > Thanks. Simply change the selection attribute of your notebook: self.components.notebook.selection = 0 That's assuming your notebook component is named 'notebook'. ka |
From: hwphillips <bu...@ya...> - 2006-08-13 00:00:09
|
How do you select a notebook page, other than with the mouse. I load 3 pages and when the program runs, the last page is selected. I would like to default to the first page but can't figure out how to do it. Thanks. |
From: Kevin A. <al...@se...> - 2006-08-12 17:06:39
|
On Aug 10, 2006, at 1:06 PM, kc1...@ya... wrote: > Hi list, > > What's the proper way to pass parameters to child > window? > > For instance, if I do: > > cw=model.childWindow(self, childWindowClass(a, b)) > > and it appears I can't expect that the __init__ > routine in childWindowClass be: > > class childWindowClass(model.Background): > def __init__(self, a, b): > > So, what exactly should I create childWindowClass > with? I've been doing it with no parameters and then > try to set the parameters of the child window > afterwards but that's really ugly. > > How should I pass parameters to a childWindow? > > Thanks, > > -- > John Henry Check out this reply from last year http://article.gmane.org/gmane.comp.python.pythoncard/1346/ match=childwindow The event handler you are creating the child window in has to finish executing before you can be sure that the underlying C++ control has "settled". The purpose of the on_initialize event for a background is to avoid all the nasty bugs that can occur on the different platforms if you try to do certain operations on controls during the underlying initialization. As Brad mentioned, you can get data from the parent window, but often what you'll want to do is simply use wx.CallAfter() to set additional variables, call other methods, etc. ka |
From: Brad A. <bra...@ma...> - 2006-08-12 00:13:19
|
John Henry wrote: >What's the proper way to pass parameters to child >window? > >For instance, if I do: > >cw=model.childWindow(self, childWindowClass(a, b)) > >and it appears I can't expect that the __init__ >routine in childWindowClass be: > >class childWindowClass(model.Background): > def __init__(self, a, b): > >So, what exactly should I create childWindowClass >with? I've been doing it with no parameters and then >try to set the parameters of the child window >afterwards but that's really ugly. > >How should I pass parameters to a childWindow? You can't, as far as I know. It would be a nice feature to add, but you can have the child window request data from the parent via self.getParent(). Also, you can't use __init__ for PythonCard classes, you have to use on_initialize; I recall that was due to timing issues but someone else can probably explain better. |
From: <kc1...@ya...> - 2006-08-10 20:06:36
|
Hi list, What's the proper way to pass parameters to child window? For instance, if I do: cw=model.childWindow(self, childWindowClass(a, b)) and it appears I can't expect that the __init__ routine in childWindowClass be: class childWindowClass(model.Background): def __init__(self, a, b): So, what exactly should I create childWindowClass with? I've been doing it with no parameters and then try to set the parameters of the child window afterwards but that's really ugly. How should I pass parameters to a childWindow? Thanks, -- John Henry |
From: Alex T. <al...@tw...> - 2006-08-02 22:12:16
|
Wesley Phillips wrote: >I use Eclipse for Python development. I can run PyCard as an external tool just fine. I would like to send a source file when I run PyCard. I have accomplished this with other external programs, however not sucessfully with PyCard. To run pycard from eclipse I call pythonw.exe with C:\Python24\Lib\site-packages\PythonCard\tools\resourceEditor\layoutEditor.py as a variable. Is there any way to add the resource file? > > I'm not sure if this is a PythonCard question or an Eclipse question :-) Here's what I do know ..... the layoutEditor will accept a resource file name as its (only) command line argument. For instance, (in Win XP) open a shell box (aka DOS box) give the command (for me) pythonw c:\python\PythonCard\tools\resourceEditor\layoutEditor.py samples\flock\flock.rsrc.py and it opens the layout editor and then opens the resource file for the flock sample. So if there's a way to append the resource file name to the command line from Eclipse, you should be OK. -- Alex Tweedly http://www.tweedly.net -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.10.5/405 - Release Date: 01/08/2006 |
From: Wesley P. <hw...@be...> - 2006-08-02 20:27:21
|
I use Eclipse for Python development. I can run PyCard as an external tool just fine. I would like to send a source file when I run PyCard. I have accomplished this with other external programs, however not sucessfully with PyCard. To run pycard from eclipse I call pythonw.exe with C:\Python24\Lib\site-packages\PythonCard\tools\resourceEditor\layoutEditor.py as a variable. Is there any way to add the resource file? |
From: Jussi S. <jus...@pp...> - 2006-08-02 09:08:56
|
I don't know what is the correct way to answer questions in this list, so I just send this as a new message. I just spent a couple hours wondering the same issue. The solution is to change the line: class XYZ(model.Background) in your independent PythonCard application that is to become a tabsheet to be like this: class XYZ(model.PageBackground) Cheers, Jussi Salmela |
From: Lance H. <lh...@ha...> - 2006-07-31 21:42:36
|
Hi Kevin, Thanks a million. I will get a new version and install it. Cheers Lance Kevin Altis wrote: > On Jul 31, 2006, at 11:42 AM, Kevin Altis wrote: > > >> On Jul 31, 2006, at 11:01 AM, Lance Haig wrote: >> >> >>> Hi, >>> >>> I was wondering if the Documentation from the website is available >>> for >>> download? >>> >>> I spend quite a bit of time travelling and don't have access to the >>> web. >>> >>> The tutorials on the web are great for sorting out problems but I >>> can't >>> get to them. >>> >>> Thanks >>> >>> Lance >>> >> Almost everything on the web site is in PythonCard/docs. The >> exception are large sets of images or auto-generated pages. >> > > On all platforms, you can get to the documentation via the PythonCard > Documentation menu item under the Help menu in the codeEditor, > resourceEditor and Debug menu if you have any of the debug tools > turned on. In addition, if you installed onto a Windows box you > should have a Programs group with a link to the docs. > > If this isn't working for anyone on the various platforms (Mac, > Windows, Linux) then we need to update the code that attempts to find > the documents locally before linking off to the main web site, so > please let us know. > > ka > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Pythoncard-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pythoncard-users > > |
From: Kevin A. <al...@se...> - 2006-07-31 18:48:05
|
On Jul 31, 2006, at 11:42 AM, Kevin Altis wrote: > > On Jul 31, 2006, at 11:01 AM, Lance Haig wrote: > >> Hi, >> >> I was wondering if the Documentation from the website is available >> for >> download? >> >> I spend quite a bit of time travelling and don't have access to the >> web. >> >> The tutorials on the web are great for sorting out problems but I >> can't >> get to them. >> >> Thanks >> >> Lance > > Almost everything on the web site is in PythonCard/docs. The > exception are large sets of images or auto-generated pages. On all platforms, you can get to the documentation via the PythonCard Documentation menu item under the Help menu in the codeEditor, resourceEditor and Debug menu if you have any of the debug tools turned on. In addition, if you installed onto a Windows box you should have a Programs group with a link to the docs. If this isn't working for anyone on the various platforms (Mac, Windows, Linux) then we need to update the code that attempts to find the documents locally before linking off to the main web site, so please let us know. ka |
From: Kevin A. <al...@se...> - 2006-07-31 18:43:10
|
On Jul 31, 2006, at 11:01 AM, Lance Haig wrote: > Hi, > > I was wondering if the Documentation from the website is available for > download? > > I spend quite a bit of time travelling and don't have access to the > web. > > The tutorials on the web are great for sorting out problems but I > can't > get to them. > > Thanks > > Lance Almost everything on the web site is in PythonCard/docs. The exception are large sets of images or auto-generated pages. ka |
From: Lance H. <lh...@ha...> - 2006-07-31 18:01:51
|
Hi, I was wondering if the Documentation from the website is available for download? I spend quite a bit of time travelling and don't have access to the web. The tutorials on the web are great for sorting out problems but I can't get to them. Thanks Lance |
From: Wesley P. <bu...@ya...> - 2006-07-31 14:21:41
|
I have written some scripts fashioned after the testNoteBook.py routines. However, when I select a tab, the child window opens but is not inside to the main window. The code is shown below: class MFMNote(model.Background): def on_initialize(self, event): self.components.notebook.SetMinSize(self.size) self.singleItemExpandingSizerLayout() panel1 = wx.Panel(self.components.notebook, -1) self.components.notebook.AddPage(panel1, 'test1', True) panel2 = model.childWindow(self.components.notebook, test2note.test2) self.components.notebook.AddPage(panel2, 'test2', True) The testNotebook samples run fine. "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former." -- Albert Einstein --------------------------------- Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1¢/min. |