Icon on wx.MDIParentFrame

2005-11-06 Thread LenS
I would like to put an Icon on the frame but cannot figure out how to do it any help. Running on XP machine. It appears that wxPython suffers from the same problem as most software packages. I find that the reference manual is only of any real help once you have a pretty good understanding of

Re: Icon on wx.MDIParentFrame

2005-11-06 Thread LenS
Thanks I will keep an eye out for the book. I just downloaded wxGlade and created a small file and looked at how it does it. Again thanks for the response -- http://mail.python.org/mailman/listinfo/python-list

? MDI depreciated

2005-11-06 Thread LenS
Hate to ask this dum question (since I've been hiding under a rock). But if the MDI UI model is/was depreciated. What is the new UI model. Would love some links that explain in gerneral and specific terms. Len Sumnler -- http://mail.python.org/mailman/listinfo/python-list

wxGlade will not run on my machine

2005-11-03 Thread LenS
I have installed wxGlade on a MS XP machine. It executed on completion of the install. However, when I try to double click on the wxGlade icon to start nothing happens. I searched the NG and found that this had been report before but no solution was posted. I am running the following

? Pythoncard

2005-10-28 Thread LenS
I have created a small gui stub as follows using Pythoncard: c:\myhome lmsgui.py lmsgui.rsrc.py When I try to run I get the following error: (Errno2) no such file or directory lmsqui.rsrc.py I understand why I am getting the error the question is how do I fix this so it looks in the

Re: ? Pythoncard

2005-10-28 Thread LenS
Never mind I figured out my on stupid mistake Thanks -- http://mail.python.org/mailman/listinfo/python-list

Problem Pythoncard tutorial

2005-10-17 Thread LenS
Under the Getting Started with Pythoncard there is a short little example of changing the starter1.py. I have made the 2 changes and when I run the program I get the following error: Traceback error ... result = dialog.alertDialog(self, 'It works!', 'Showing Off') NameError: name 'self' is

Advice on this code

2005-10-12 Thread LenS
If this is the wrong place to post this, please advise better place. Otherwise, I have created the following python program and it works. Running on XP. I think I am now at that stage of learning python where I'm not quit a newbie and I am not really knowlegable. I know just enough to be

Looking for a Python mentor

2005-10-12 Thread LenS
Hello Was wandering if there is any place where some one could go to get mentoring on python coding. I have started coding in python but I am the only one in the shop using it. So there is no one around to look over my code give suggestions on improvement, in style, logic, easier ways of doing

Re: Python adodb

2005-10-12 Thread LenS
You also might want to take a look at; http://www.mayukhbose.com/python/ado/index.php I found it very helpful LenS -- http://mail.python.org/mailman/listinfo/python-list

Newbie using python to update sql table

2005-10-06 Thread LenS
I have created a python program that takes a flat file and changes some of the data and create a new flat file with the changes. Part of this process requires that I try to find a particular model car in an MS Sql table. This part of the program is now working great. It has come to my attention

Newbie Python XML

2005-06-04 Thread LenS
I have a situation at work. Will be receiving XML file which contains quote information for car insurance. I need to translate this file into a flat comma delimited file which will be imported into a software package. Each XML file I receive will contain information on one quote only. I have

Re: Newbie learning OOP

2005-05-30 Thread LenS
Thanks for the reply. I will be looking over you code. I'm trying to learn OOP. It just hasn't sunk in yet;-\ -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie learning OOP

2005-05-30 Thread LenS
You are correct, the code so far is just a simple problem to learn OOP. Oh by the way I don't work for Dept. of Homeland Security just remember drop those fingernail clipers and step away from those shoes:-) -- http://mail.python.org/mailman/listinfo/python-list

Newbie learning OOP 2nd ?

2005-05-30 Thread LenS
I have coded this little program which is a small little tip calculator program. I am in the process of trying to convert this program to use OOP. Would appreciate others more experienced in OOP code in how they might do it. Would be happy to forward all profits from the sale of the program;-))

Re: Newbie learning OOP 2nd ?

2005-05-30 Thread LenS
Thank you for your suggestion and especially your time. I will study your code:-) Len Sumnler -- http://mail.python.org/mailman/listinfo/python-list

Newbie learning OOP

2005-05-29 Thread LenS
Trying to learn OOP concepts and decided to use Python for this purpose. I have coded the following CLASS and it seems to work fine. Any comments on the code or suggestions would be appreciated. The class let you take a person's name and split it up into first last and middle. The class