



Thank you for your replies.Well, I'm a little bit stupid, I forget to mention the Pythonwin version:win98, Py241, wxPy262, pywin32-204.win32-py2.4I hope you have understood the trick, in case it was not clear, it can besummarized in that way:- setup the configuration at the *system level* w...
After trying several things, I now do the following:1. put my group of objects in a new GridBagSizer,2. create a StaticBox and set its background color, etc.3. Create a StaticBoxSizer with the StaticBox as the first argument4. Add the GridBagSizer to the StaticBoxSizer5. Stuff the the StaticBoxS...
Here's a C++ sample which shows the row and column numbers as a tooltip:Thank you, but I don't understand CI guess it binds a wx.EVT_MTIN, computes the underlying cell, but sets the tooltip of the whole grid?In contrary I'd like to set- the cells' tooltips- while filling the...
I believe I've tried every setting known to man, in every script inevery little scrap of documentation available. XMLRPC requests usingSimpleXMLRPCRequestHandler -- no problem. But try to run them as a CGIscript, and I get system lock ups and that's all. No error codes; noresponse what...
Here's a C++ sample which shows the row and column numbers as a tooltip:BEGIN_EVENT_TABLE(DbvalGrid, wxGrid) EVT_MTIN(DbvalGrid::updateToolTips)END_EVENT_TABLE()void DbvalGrid::updateToolTips(wxMouseEvent& event){ int row = YToRow(event.GetPosition().y); int col = XToCol(event.GetPosition()...
We use eclipse+pydev too. It works pretty well, and with the latest pydevplugin the code completion/intellisense (whatever it is called withEclipse) works reasonably well.Hubert"Philippe C. Martin" <philippecmartin (AT) sbcglobal (DOT) net06/22/2005 11:30 AMPlease respond towxPython-users (AT...
Hi,Just thought I'd add that the ActiveGrid IDE, which is a wxPython sampleapp, is getting better all the time. We've added basic support forextending the IDE recently. It already has a debugger that can handle wxapps. We're still missing intellisense, but I've been following...
Perhaps I'm simply too stupid - could you provide a quick hinthow I can attach a tooltip to a grid cell if I only have a gridobject and coordinates?Best regards,Henning Hraban RammS Medienhaus / MediaProSupport/Admin/Development Dept.To unsubscribe, e-mail: wxPython-users-unsubscribe (AT) l...
Hi,How comes that there seem to be multiple APIs for playing sound?There issound = wx.SoundFromData(open("data/plan.wav", "rb").read())And then there isImport winsoundwinsound.PlaySound(open("data/plan.wav", "rb").read(),winsound.SND_MEMRY)Questions:1) which one is supposed to be used?wx.SoundFr...
Thank you Chris, that's excellent information.Christophe Lesketel. +49-(0)211 230 99 70:. 157 .:.::: 40215 :::::: germany :::http://www.multimedial.deTo unsubscribe, e-mail: wxPython-users-unsubscribe (AT) lists (DOT) wxwidgets.orgFor additional commands, e-mail: wxPython-users-help (AT) li...
I just figured this out when your message came in.Cheers! This really made my day MessageFrom: James CarrollSorry, , I still haven't had my cup of coffee, but I actuallytried to make sure it would work, and It's SInt anywayhere's what worked:img = wx.EmptyImage(100,100,False)img.S...
Hi,How comes that there seem to be multiple APIs for playing sound?There issound = wx.SoundFromData(open("data/plan.wav", "rb").read())And then there isImport winsoundwinsound.PlaySound(open("data/plan.wav", "rb").read(), winsound.SND_MEMRY)Questions:1) which one is supposed to be used?2) which...
