Re: Wx.FindReplaceDialog I need help

2020-06-10 Thread AudioGames . net Forum — Developers room : zywek via Audiogames-reflector
Re: Wx.FindReplaceDialog I need help Thanks, Yep. Nuno sait me the same, but i have defined EVT_FIND and EVT_FIND_NEXT in one function. After EVT_ON_FIND i'm increasing sel.pof += 2 and it works.BUt thanks fr your help! URL: https://forum.audiogames.net/post/539365/#p539365

Re: Wx.FindReplaceDialog I need help

2020-06-09 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: Wx.FindReplaceDialog I need help You have to bind and handle when the next button is pressed, you can find the find dialog event triggers [here]. Its a bit rough, but this might help:import wx class MyFrame(wx.Frame): def __init__(self, *args, **kwds): kwds["

Re: Wx.FindReplaceDialog I need help

2020-06-09 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: Wx.FindReplaceDialog I need help You have to bind and handle when the next button is pressed, you can find the find dialog event triggers [here]. Its a bit rough, but this might help:import wx class MyFrame(wx.Frame): def __init__(self, *args, **kwds): kwds["

Wx.FindReplaceDialog I need help

2020-06-09 Thread AudioGames . net Forum — Developers room : zywek via Audiogames-reflector
Wx.FindReplaceDialog I need help Hello. I found an example of wx.FindReplaceDialog which give a possibility to search the text in a text field. But i have a problem, that only first phrase is searchable. What i have to do, to have possibility to search next occurence of a typed text?Here's