No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: please try here... [url]http://www.screendirect.com/page/ICPE/CTGY/PCLP[/url] andrew | |
Hi, I am working with a wx.Python ListCtrl attempting to edit data in the second column. Is there a way of detecting which column,row has been clicked? thanks -- andrew | |
Hi, working with the 're' module I am having some difficulty figuring out simple RE. here is the code. p = re.complie('amb') m = p.match("mamba") print m.group() according to the following documents ... [url]http://www.amk.ca/python/howto/regex/regex.html#SECTION000300000000000000000[/url] [url]http://gnosis.cx/publish/programming/regular_expressions.html[/url] there should be a pattern match like... 'amb' but I am getting 'None' back. Can … | |
Hi, I am looking for a Python module that would allow rasterizing of SVG files. I have looked extensively on google with no luck other than a module name I cannot seem to find called rsvg. Has anyone heard of this as a Python module? And if so where? Or … | |
Hi, I am attempting to view the source code of a module i have imported to a project but am having trouble finding its source. I had previously thought the command 'import' would look for a script in python paths named the same as the import name plus a '.py'. … | |
In process of attempting to build a CSS editor. I was wondering if anyone could lead me to a way to highlight CSS for a rich GUI control in wxPython specifically? Also I would like to parse,serialize, validate and write CSS to file. I did find cssutils but was getting … | |
I have done some extensive searching for a tutorial or sample code for context menus in wxPython to no avail. Could someone post a link or a tad of sample code to get me started? Thanks in advance -- Andrew | |
I have a small bit of code here I am working with. The goal I have set forth was to scale the size of panel to the frame. Does the frame have a size property that can be fetched? Are there functions or methods (not sure I know the difference … | |
I am writing simple Python modules and when running one containing errors in the script the console window that displays the error just flashes up for a split second and disapears. Is there any way to keep this window shown? I am working on Windows XP in the Eclipse environment … | |
wxPython.org seems to be unreachable! Anyone else having this problem? thanks - andrew | |
I am unfamiliar with this syntax and am having trouble finding info about it... void MyTextCtrl::OnChar(wxKeyEvent& event) { if ( isalpha( event.KeyCode() ) ) { // key code is within legal range. we call event.Skip() so the // event can be processed either in the base wxWidgets class // or … |
The End.