Search found 184 matches

by Wolfgang
Tue Dec 17, 2019 4:28 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1609

Re: wxhtmlwindow catch when closed

it compiles like that, but the onclosewindow never gets called.

The htmlwindow can only get closed with the x from the pane, must I make the eventtable for the auimanager?
by Wolfgang
Tue Dec 17, 2019 4:09 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1609

Re: wxhtmlwindow catch when closed

You were a bit quicker :)
by Wolfgang
Tue Dec 17, 2019 4:08 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1609

Re: wxhtmlwindow catch when closed

wxCloseEvent
by Wolfgang
Tue Dec 17, 2019 4:06 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1609

Re: wxhtmlwindow catch when closed

found now the mistake, just have to find the right thing for it.
is of course not a mouse event
by Wolfgang
Tue Dec 17, 2019 4:04 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1609

Re: wxhtmlwindow catch when closed

wxBEGIN_EVENT_TABLE(MyHtmlWindow, wxHtmlWindow) EVT_MOTION(MyHtmlWindow::OnMouseMotion) EVT_LEFT_DOWN(MyHtmlWindow::OnActivm) EVT_CLOSE(MyHtmlWindow::Onclosewindow) wxEND_EVENT_TABLE() EVT_CLOSE(MyHtmlWindow::Onclosewindow) In Visual Studio EVT_CLOSE is marked red invalid typ converting void MyHtml...
by Wolfgang
Tue Dec 17, 2019 3:43 pm
Forum: C++ Development
Topic: wxhtmlwindow catch when closed
Replies: 13
Views: 1609

wxhtmlwindow catch when closed

Hello I made a derived class MyHtmlwindow from wxhtmlwindo, but now I need to call some code when this window is closed. Tried with EVT_CLOSE but that is not working inside the event table declaration. EVT_CLOSE(MyHtmlWindow::Onclosewindow) C++ #define EVT_CLOSE(func) wx__DECLARE_EVT0(wxEVT_CLOSE_WI...
by Wolfgang
Mon Nov 25, 2019 7:04 pm
Forum: Platform Related Issues
Topic: Installer Problem
Replies: 3
Views: 1495

Re: Installer Problem

Thanks for the inno Setup tip, with that it is possible to set the correct user rights. My approach could have worked as well, but only if started as administrator. For Doublemax, i use that only for those stupid enough to put a datadirectory directly into the programm folder, in the end only the in...
by Wolfgang
Mon Nov 25, 2019 3:42 pm
Forum: Platform Related Issues
Topic: Installer Problem
Replies: 3
Views: 1495

Installer Problem

Hello I now encountered a problem making a working installer. I have already splittet for 32 bit and 64 bit windows, and it calls seperate setups, this is working. Then I created with Visual C++ the installer file. But after it runs the setup, the rights of the folder are not set correctly, meaning ...
by Wolfgang
Mon Nov 25, 2019 7:48 am
Forum: General Forum Issues
Topic: THANK YOU
Replies: 3
Views: 17725

Re: THANK YOU

Not yet, some finishing touches, and prepare a public version without any licensed bibles.
by Wolfgang
Wed Nov 20, 2019 6:57 pm
Forum: General Forum Issues
Topic: THANK YOU
Replies: 3
Views: 17725

THANK YOU

I only want to write thank you for all the help I did get. I now managed to finish the programm I wanted to make. A Bible translation programm, with import and export, print to pdf. With sqlite3 as database almost every word in an own datacell. So it was pretty much work. But I'm satisfied. So again...
by Wolfgang
Wed Nov 20, 2019 6:50 pm
Forum: wxCode
Topic: wxpdfdoc lib directory wrong
Replies: 18
Views: 19697

Re: wxpdfdoc lib directory wrong

Thanks I managed it, was to quick with asking.

Only now looked.

But with creating the pdf two times, I know the exact pages, where it will be. So everything works fine,and links are included.
by Wolfgang
Sun Nov 17, 2019 12:55 pm
Forum: wxCode
Topic: wxpdfdoc lib directory wrong
Replies: 18
Views: 19697

Re: wxpdfdoc lib directory wrong

Just another thought, is it possible to link to an not yet existing page?

Meaining if I create the index to link the index to the page number. Is this possible?
by Wolfgang
Sun Nov 17, 2019 10:22 am
Forum: wxCode
Topic: wxpdfdoc lib directory wrong
Replies: 18
Views: 19697

Re: wxpdfdoc lib directory wrong

To the problem with the coloring, it was mainly for my poor programming, and only learning how the pdfdoc works. in the end I did now achieve what I want and am satisfied with it. The problem there had a lot to do with that multicell do not save the position where it last wrote. As I had to change t...
by Wolfgang
Thu Nov 14, 2019 4:15 pm
Forum: wxCode
Topic: wxpdfdoc lib directory wrong
Replies: 18
Views: 19697

Re: wxpdfdoc lib directory wrong

Ok, I managed it, also for the normal pdf for printing everything is fine. For the pdf with colours, I have some problems, but decided to leave it for now. As it is anyway just for screen view. Where the programm not works. The problem I write now: As you know I wanted to first import some pages and...
by Wolfgang
Thu Nov 07, 2019 3:18 pm
Forum: wxCode
Topic: wxpdfdoc lib directory wrong
Replies: 18
Views: 19697

Re: wxpdfdoc lib directory wrong

I have the bibel in a database (each word a own record). In front of each verse I write the versnumbers. Inside the verses there might exist notes, which then will have a separate fontsize and are indicated with numbers. The notes then should be written to the footer. Problem I just saw, is that the...