[Tutor] Producing a pop-up on graphics area?

2008-02-15 Thread Wayne Watson
I want to allow a user who is looking at a graphic area that contains an image to be able to right-click on the graphic to produce a menu of choices. What's available to do that? -- Wayne Watson (Watson Adventures, Prop., Nevada City, CA) (121.015 Deg. W, 39.262 Deg

Re: [Tutor] Processing .NK2 files

2008-02-15 Thread Jason Coggins
How can I check the speed of the internet connection in Python? Jason___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] the bios serial number

2008-02-15 Thread Jason Coggins
How do you pull up the bios serial number in Python? Jason___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] [Fwd: RE: total beginner stuff]

2008-02-15 Thread Kent Johnson
Forwarding to the list. Original Message Subject: RE: [Tutor] total beginner stuff Date: Fri, 15 Feb 2008 15:09:38 -0600 (CST) From: Toby <[EMAIL PROTECTED]> To: 'Kent Johnson' <[EMAIL PROTECTED]> Sorry I was using 2 single quotes not 1 so it ''looked'' like a double quote but w

Re: [Tutor] total beginner stuff

2008-02-15 Thread Kent Johnson
Toby wrote: > Ok well while I was preparing examples and writing down error messages for > posting I realized I was using a single quote instead of a double quote and > it was highlighting the input function but it really did not have a problem > with the function but rather the quotes. That still

Re: [Tutor] total beginner stuff

2008-02-15 Thread Kent Johnson
Toby wrote: > I’ve been doing the tutorials online and learning on my own for less > than a week (not sure if I’ll get blasted for posting questions this > soon or not but here goes): We don't do much blasting around here, don't worry! > I’ve tried to do some of the online tutorials but they ar

[Tutor] total beginner stuff

2008-02-15 Thread Toby
I've been doing the tutorials online and learning on my own for less than a week (not sure if I'll get blasted for posting questions this soon or not but here goes): I've tried to do some of the online tutorials but they are ALL similar and quickly bypass very basic questions that I'm having

[Tutor] Processing .NK2 files

2008-02-15 Thread jeff
I need to delete records in an MS Outlook .NK2 file if they contain a specific email address. This code has been inspired mainly by: http://code.google.com/p/debunk2/wiki/fileformat. import re NUL='\x00' sep1 = '\x04H\xfe\x13' # record separator sep2 = '\x00\xdd\x01\x0fT\x02\x00\x00\x01' # recor

Re: [Tutor] designing POOP

2008-02-15 Thread Michael Langford
I'm firmly with Kent here: OO programming is not about simulation. You are not modeling real world items. You are making code easier to maintain and making parts of code that have to do with one another be near one another. If you spend all your time trying to make your objects into real world thi

Re: [Tutor] designing POOP

2008-02-15 Thread Kent Johnson
Tiger12506 wrote: > I like things to be explicit, and don't care for the level of > abstraction common in MVC. I know it seems naive, but I like to be able to > model object designs after tangible things, and to me, a View does not know > how to keep a state or execute methods because it does n

Re: [Tutor] designing POOP

2008-02-15 Thread Alan Gauld
"Tiger12506" <[EMAIL PROTECTED]> wrote > up. I like things to be explicit, and don't care for the level of > abstraction common in MVC. I know it seems naive, but I like to be > able to > model object designs after tangible things, and to me, a View does > not know > how to keep a state or execu