Search found 184 matches

by Wolfgang
Thu Apr 23, 2020 4:25 am
Forum: C++ Development
Topic: Aui -Htmlwindow
Replies: 13
Views: 2644

Re: Aui -Htmlwindow

I tried just to add Resizable(true) to one of the Oncreate in the originial AuiDemo and there the resize posibility is not shown at all. So resizeable not possible. How I managed that it is shown by mine, I do not know, and also why it is shown when new pane is created before new frames are created....
by Wolfgang
Thu Apr 23, 2020 3:48 am
Forum: C++ Development
Topic: Aui -Htmlwindow
Replies: 13
Views: 2644

Re: Aui -Htmlwindow

Lib gtk 3.24.5-1
by Wolfgang
Wed Apr 22, 2020 4:41 pm
Forum: C++ Development
Topic: Aui -Htmlwindow
Replies: 13
Views: 2644

Re: Aui -Htmlwindow

GTK 3.0 WxWidgets 3.1.3 In the sample I did not try it yet, anyway there is resize to a not dockable not included so i will have to rewrite it. Will do that in the next days. But as said it works as long as I open the other panes first and only then open other frames. If I open another frame first t...
by Wolfgang
Wed Apr 22, 2020 12:30 pm
Forum: C++ Development
Topic: Aui -Htmlwindow
Replies: 13
Views: 2644

Re: Aui -Htmlwindow

What I forgot, I use it in Linux.
by Wolfgang
Wed Apr 22, 2020 7:55 am
Forum: C++ Development
Topic: Aui -Htmlwindow
Replies: 13
Views: 2644

Aui -Htmlwindow

Hello I have a frame with an AUI Manager, everything works right. Only Problem, if I start a seperate floating pane, which is not dockable but resizeable, it is resizable, if I did not start any other frame before i opened the pane. If I first start a other frame (even if I close it right after it),...
by Wolfgang
Thu Apr 16, 2020 2:46 pm
Forum: Database Related
Topic: regex select
Replies: 7
Views: 16731

Re: regex select

wxRegEx mynew(_T("[aáàäāâăã]"),wxRE_BASIC); mynew.ReplaceAll(&searchText, _T("\\[aáàăäâāã\\]")); wxRegEx mynew2(_T("[eéèëēĕệê]"),wxRE_BASIC); mynew2.ReplaceAll(&searchText, _T("\\[eéèëēĕėệê\\]")); wxRegEx mynew3(_T("[iíìî]"),wxRE_BASIC); myn...
by Wolfgang
Sun Apr 12, 2020 8:32 am
Forum: C++ Development
Topic: regex
Replies: 2
Views: 787

Re: regex

Overlooked that, totally. But it should show it in the next line. as error.
Happened because I copied java code from a website into it, and wanted to convert it, but then i did not check the ";"
by Wolfgang
Sun Apr 12, 2020 7:36 am
Forum: C++ Development
Topic: regex
Replies: 2
Views: 787

regex

Hello Can somebody help me. wxString addTildeOptions(wxString searchText) { wxRegEx mynew(_T("[aáàäâã]"),wxRE_BASIC); mynew.ReplaceAll(&searchText, _T("\\[aáàäâã\\]")) // searchText.ReplaceAll("[eéèëê]", "\\[eéèëê\\]") // searchText.replaceAll("[iíìî]...
by Wolfgang
Sun Apr 12, 2020 7:31 am
Forum: Database Related
Topic: regex select
Replies: 7
Views: 16731

Re: regex select

Try to convert the java code for c++ wxString addTildeOptions(wxString searchText) { wxRegEx mynew(_T("[aáàäâã]"),wxRE_BASIC); mynew.ReplaceAll(&searchText, _T("\\[aáàäâã\\]")) // searchText.ReplaceAll("[eéèëê]", "\\[eéèëê\\]") // searchText.replaceAll(&qu...
by Wolfgang
Sun Apr 12, 2020 5:02 am
Forum: Database Related
Topic: regex select
Replies: 7
Views: 16731

Re: regex select

Not even sure if regex is the only way. Just need a way to find it. Have found something for java, which might be useful in a way? public static String addTildeOptions(String searchText) { return searchText.toLowerCase() .replaceAll("[aáàäâã]", "\\[aáàäâã\\]") .replaceAll("[...
by Wolfgang
Sat Apr 11, 2020 8:35 pm
Forum: Database Related
Topic: regex select
Replies: 7
Views: 16731

regex select

Hello I would need a select, where it does not see a difference in hebrew if the vowel points are different, or more important if there are any sentence markers in hebrew in. The text is in unicode in a field with name wort, and a table called bibel. יֵּ֥לֶךְ יֵּ֣לֶךְ both should be found and not ju...
by Wolfgang
Fri Dec 20, 2019 10:27 am
Forum: Database Related
Topic: complicated update replace part of field
Replies: 3
Views: 14743

Re: complicated update replace part of field

To make it a bit clearer some more examples: Example two G5944, not finished yet The G5944 should not be there. Example Three G3456 this gets long G5746 really long G2434 really only the G5746 should not be there. So any apperance of any number from 5625 to 5944 with a " G" in front of it ...
by Wolfgang
Thu Dec 19, 2019 5:49 pm
Forum: Database Related
Topic: complicated update replace part of field
Replies: 3
Views: 14743

complicated update replace part of field

I look of a simple resolution (like one update/replace command) for the following problem, or will I have to write a programm. Inside one field of the database there are " G5625" to " G5944" standing inside the field, which simply must be deleted from the field. For example if th...
by Wolfgang
Tue Dec 17, 2019 6:46 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1608

Re: wxhtmlwindow catch when closed

Aui Pane close works perfectly.

Thanks
by Wolfgang
Tue Dec 17, 2019 6:16 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1608

Re: wxhtmlwindow catch when closed

m_bibf[count]->SetPage(page1); m_mgr.AddPane(m_bibf[count], wxAuiPaneInfo().Resizable().Dockable(false).Float()); MyHtmlWindow* m_bibf[1024]; wxAuiManager m_mgr; So it gets created. It has a close button on it, and if I press this close button the close event does not get called,I tried to make a d...