[quote name=\'RuffRyders\' date=\'Nov 22 2004, 05:01 AM\']MYTH: WindowBlinds is a memory hog.
FACT: No. WindowBlinds not only uses very little memory but it actually uses LESS memory than the bundled themes do. That's because WindowBlinds visual styles are designed to use less memory since ...
Search found 5 matches
- Wed Feb 02, 2005 6:18 pm
- Forum: Application Skinning
- Topic: Myths & Facts about WindowBlinds
- Replies: 8
- Views: 1619
- Sun Jan 23, 2005 7:00 pm
- Forum: Web Design Principles
- Topic: Sample Programs
- Replies: 8
- Views: 845
Sample Programs
Tkinter's a lot less confusing than wxPython, it just doesn't have as many controls, in fact, it's missing quite a few vital ones such as the combo box.
- Wed Jan 05, 2005 12:04 am
- Forum: Web Design Principles
- Topic: Sample Programs
- Replies: 8
- Views: 845
Sample Programs
This little snippet will find five types of audio in a certain directory and return the results in a list.
[code]from glob import *
from string import *
def FindAudio(Directory):
Audio = []
Directory += '\\*'
for Filename in ...
[code]from glob import *
from string import *
def FindAudio(Directory):
Audio = []
Directory += '\\*'
for Filename in ...
- Tue Jan 04, 2005 6:45 pm
- Forum: Web Design Principles
- Topic: Sample Programs
- Replies: 8
- Views: 845
Sample Programs
Here's a pretty useless example of using Tkinter in python, I won't bother explaining it because you can learn all about tkinter [url=\"http://www.pythonware.com/library/tkinter/introduction/index.htm\"]here[/url].
[code]from Tkinter import *
class App:
def __init__(self ...
[code]from Tkinter import *
class App:
def __init__(self ...
- Tue Jan 04, 2005 4:09 pm
- Forum: Web Design Principles
- Topic: Python 2.2.3
- Replies: 7
- Views: 992
Python 2.2.3
Python is a good language to start with in some ways (Mainly because it's simple), but in other ways it's not so good.
Python will get you used to things such as indentation, but it's missing other important aspects of some of the major languages such as strict variable types, for example:
[code ...
Python will get you used to things such as indentation, but it's missing other important aspects of some of the major languages such as strict variable types, for example:
[code ...