



Thu, 22 Sep 2005, Matt Williams wrote:I've been looking for a simple python based DB for a fairly simple app.a single user, single access needed, but with a dynamic structure(which needs to be extensible very easily).Hi Matt,What kind of data are you trying to represent? And how large will...
Hi All,I want to test DrPython, but I can't install it.Near the beginning of the installation, I have the next message :"Cannot find MSVCR71.dll".MSW XP Home SP2Python 2.3.5wxPython 2.6.1.0 ansiDrPython-3.10.13.win32Friendly....
Dear List,I've been looking for a simple python based DB for a fairly simple app. a single user, single access needed, but with a dynamic structure(which needs to be extensible very easily).Having googled and read some stuff, I seem to come down to a choicebetween KirbyBase (very nice and s...
Hi everyone,I'm using the wx.Notebook control and using wx.Panel as the pages.Now in our application user's have certain rights and some panelswill remain hidden for user's with insufficient rights. However,these panels are created anyway (because their initialization codeis impor...
Hi,I'm having trouble sizing a TreeCtrl within a FoldPanelBar.I've got a FoldPanelBar with two Foldpanels. The FoldPanelBar isconfigured to collapsed the Foldpanels to the bottom of the control whenthe captionbar is clicked. Each panel contains a TreeCtrl. At themoment the size of the...
Wed, 21 Sep 2005, Bob Nienhuis wrote:When I do:import syssys.exit(0)I get:Traceback (most recent call last):File "C:\Python24\Lib\site-packages\pythonwin\pywin\scintilla\bindings.py",line 141, in firerc = apply(binding.handler, args)File "C:\Python24\Lib\site-packages\pythonwin\pywin\framework\...
Hi Bob,Bob, when you see these kinds of errors, please don't paraphrase the errormessage. You mentioned:When I call:import syssys.exit()I get a traceback error saying it needs more inputInstead of putting the error in your own, just copy-and-paste the error.Don't worry about verbosity...
Working my way through Alan Gauld's tutorial, and I am on thesection on modules.When I call:import syssys.exit()I get a traceback error saying it needs more inputSame when I do:import sysprint sys.path()Both of these work if I dosys.exitor print sys.path without the parentheses.Is this new...
Hello,I am using wx.SplashScreen (not the one from lib). It draws a nicesemi-transparent image up on loading. Now, SplashScreen has an annoyingborder surrounding it. How can I get rid of that? I already triedSetWindowStyle(wx.NBRDER) and SetWindowStyle(self.GetWindowStyle() |~wx.SIMPLE_BRDER) bu...
Hi,has anyone succeeded in embedding wxPython inside an S X applicationbundle? I have an application that uses wxWidgets and would like toprovide wxPython as a UI toolkit for user scripts.The problems I ran into so far:* the Xcode project file that comes with wxPython is useless here asit doesn&...
>>(Please reply to the tutor list, not to me privately)whoops>>Generally, you want to catch the exception at the level that knows what to do about it. Your function2() isn't handling the exception in any meaningful sense, it is just converting it to a magic return value. You mig...
I use Vim as my primary Python code editor. I've always wondered ifthere is a way to make wrapped lines take on the indentation of theprevious line. course I mean *in the display only*, since I don'twant any newlines introduced. This would also be handy for me whenediting indented html...
