Re: [Tutor] Problem with logic while extracting data from binary file

2008-03-27 Thread bob gailer
Bryan Fodness wrote: > > I have not used a debugger yet, I was getting ready to try that. I am > using IDLE on Windows Vista. > Ah. May I recommend Python for Windows. The debugging support is excellent. I prefer it to IDLE. http://sourceforge.net/projects/pywin32/ -- Bob Gailer 919-636-423

Re: [Tutor] Creating Standalone Executables

2008-03-27 Thread Rizauddin Saian
Just put an extra raw_input() at the end of the python script. It will wait for your input, instead of closing the command prompt. BTW, easygui (http://www.ferg.org/easygui/) is a very simple gui. If you use wxPython, you can use wxGlade as the gui editor. - Original Message - From:

Re: [Tutor] Problem with logic while extracting data from binary file

2008-03-27 Thread bob gailer
Bryan Fodness wrote: > Thanks again, The problem is that parseSequence gets the length of the block, then, in effect, skips to the next block. That bypasses the sub-sequences you want. parseSquence needs to examine the block for the sub-blocks beginning with \n0\x84\x00. This will probably requ

Re: [Tutor] Tutor support request.

2008-03-27 Thread Dick Moores
At 03:15 AM 3/27/2008, you wrote: Hi There: I am Olrik. 17 year old student that is practicing IT. I recently began learning Python and it's going quite fine. I'm following a tutorial at http://www.freenetpages.co.uk/hp/alan.gauld/ I just finished the branching tab to the left. And i'm about to

Re: [Tutor] Interactive plots...

2008-03-27 Thread John Fouhy
On 28/03/2008, David Perlman <[EMAIL PROTECTED]> wrote: > I am thinking about writing a program which will involve, among other > things, displaying a plot of a series of numbers. The idea is that > you could click on the points and move them to change the numbers. > Reverse-plotting, I suppose

Re: [Tutor] Problem with logic while extracting data from binary file

2008-03-27 Thread Bryan Fodness
On Thu, Mar 27, 2008 at 6:43 PM, bob gailer <[EMAIL PROTECTED]> wrote: > Bryan Fodness wrote: > > Thanks again, > > The problem is that parseSequence gets the length of the block, then, in > effect, skips to the next block. That bypasses the sub-sequences you want. > > parseSquence needs to exam

Re: [Tutor] Scripting Outlook

2008-03-27 Thread wesley chun
> > Can anyone direct me to some examples/documentation for using python to work > > with Outlook? > > and just for another example, here's some older code > which I post untested (altho' it certainly worked > once upon a time). If I get a chance I'll work it > into a how-do-i. i began to write a

[Tutor] Interactive plots...

2008-03-27 Thread David Perlman
I am thinking about writing a program which will involve, among other things, displaying a plot of a series of numbers. The idea is that you could click on the points and move them to change the numbers. Reverse-plotting, I suppose. It need not be complex; the numbers will all be zero or

Re: [Tutor] Problem with logic while extracting data from binary file

2008-03-27 Thread Bryan Fodness
Thanks again, I can't seem to keep track of my start values when I break up the value variable into svalues. Do you think I should do this, or should I have a running count from the beginning of the file and keep track until the end? I am trying to find \n0\x82\x00 and \n0\x84\x00 within the blo

Re: [Tutor] Problem with logic while extracting data from binary file

2008-03-27 Thread Bryan Fodness
the start_2 is supposed to be start On Thu, Mar 27, 2008 at 5:42 PM, Bryan Fodness <[EMAIL PROTECTED]> wrote: > Thanks again, > > I can't seem to keep track of my start values when I break up the value > variable into svalues. Do you think I should do this, or should I have a > running count fro

[Tutor] Creating Standalone Executables

2008-03-27 Thread Artur Sousa
Hi. Is there a way to create a user friendly, with a simple GUI, *.py executable? The packages I've been trying create executables for doscmd that doesn't wait for the user to input the required values. Let me explain: What I'm trying to publish is one single script with various subscripts defined

Re: [Tutor] Scripting Outlook

2008-03-27 Thread Tim Golden
Justin Cardinal wrote: > Can anyone direct me to some examples/documentation for using python to work > with Outlook? So far, the most useful thing I've come across is a post from > someone with problems adding an attachment: and just for another example, here's some older code which I post untest

Re: [Tutor] Scripting Outlook

2008-03-27 Thread Tim Golden
Justin Cardinal wrote: > Can anyone direct me to some examples/documentation for using python to work > with Outlook? So far, the most useful thing I've come across is a post from > someone with problems adding an attachment: > http://mail.python.org/pipermail/python-list/2002-August/160894.html >

[Tutor] Scripting Outlook

2008-03-27 Thread Justin Cardinal
Can anyone direct me to some examples/documentation for using python to work with Outlook? So far, the most useful thing I've come across is a post from someone with problems adding an attachment: http://mail.python.org/pipermail/python-list/2002-August/160894.html That actually got me far enou

Re: [Tutor] Tutor support request.

2008-03-27 Thread bhaaluu
Hello Olrik, You can post your questions to this list and have access to many tutors. Generally speaking, if you'll post a code snippet with your question, it makes replying with a helpful answer much easier. Happy Programming! -- b h a a l u u at g m a i l dot c o m "You assist an evil system m

[Tutor] Tutor support request.

2008-03-27 Thread Olrik Lenstra
Hi There: I am Olrik. 17 year old student that is practicing IT. I recently began learning Python and it's going quite fine. I'm following a tutorial at http://www.freenetpages.co.uk/hp/alan.gauld/ I just finished the branching tab to the left. And i'm about to start Modules & Functions. However,