[no subject]

2006-05-25 Thread carlosperezs
hello together !!! I would like to know if it is available the com component for wmeditor in python language? This program is called windows media file editor, lets users to create marks into a movie and belongs to installation packet of windows encoder. thank you

Doubt with wx.CallAfter

2006-05-22 Thread carlosperezs
Hello together:: I have programmed this fuction: def OnNewMovie(self, event): Local user receives a new movie event from a user #self.log.debug( Got OnNewMovie, + `event`) if event.data[0] == self.pubId: fDep.write(New movie equal\n)

Menu's problem

2006-05-22 Thread carlosperezs
Hello together : I have programmed that: a listCtrl with binding functions. self.ListCtrlMarks = wx.ListCtrl(self.panel, -1, style = wx.LC_REPORT) self.Bind(wx.EVT_LIST_ITEM_SELECTED,self.OnSelectedItem,self.ListCtrlMarks) self.ListCtrlMarks.Bind(wx.EVT_RIGHT_DOWN,

wx.ListCtrl.EditLabel

2006-05-10 Thread carlosperezs
I have problems with this method. I have programmed this wx.Listctrl: self.ListCtrlMarks = wx.ListCtrl(self.panel, -1, style = wx.LC_REPORT) self.Bind(wx.EVT_LIST_ITEM_SELECTED,self.OnSelectedItemList,self.ListCtrlMarks) vs.Add(self.ListCtrlMarks, 1, wx.EXPAND | wx.ALL, 4)

List Ctrl

2006-05-08 Thread carlosperezs
Hello together !! I have programmed a List Control and I introduced information in several rows. What I want to do is, modify this information when i select a row and press a button. There two options: - when i do this, a window appears and asks me to introduce the information. - or in the

Doubt with wx.ListCtrl

2006-04-28 Thread carlosperezs
I have programmed this code: # self ist a panel self.partListCtrlMarks = wx.ListCtrl(self.panel, -1, style = wx.LC_REPORT) self.Bind(wx.EVT_LIST_ITEM_SELECTED,self.OnSelectedItemList,self.partListCtrlMarks) vs.Add(self.partListCtrlMarks, 1, wx.EXPAND | wx.ALL, 4)

[no subject]

2006-04-27 Thread carlosperezs
Hallo !!! I am new in Python and my doubts are basics.I would like to a window appears when press a button. This window would have only an advise. Therefore it would be a simple window. I don't know which window to choose. Thank you.