Search found 174 matches
- Thu Aug 01, 2019 11:08 am
- Forum: C++ Development
- Topic: wxhtmlwindow alternative
- Replies: 7
- Views: 802
Re: wxhtmlwindow alternative
Thank you wxhtmllistbox works fine, just a new problem arose. If I change the selectionbackground with SetSelectionBackground("LIGHT BLUE"); it also changes the colours of the foreground text. If it uses the standard colour for the selection background it does not change it, so what is going wrong?
- Tue Jul 30, 2019 5:43 am
- Forum: C++ Development
- Topic: wxhtmlwindow alternative
- Replies: 7
- Views: 802
wxhtmlwindow alternative
Hello I have the problem that for one of my windows, the result by a query could reach even 6000 lines, and building this with wxhtmlwindow takes ages. Each entry is consisting of a reference name in the beginning, and a text with different length and with line breaks and different colours. The clic...
- Wed Jun 05, 2019 3:19 am
- Forum: C++ Development
- Topic: Jump with tab between wxstatictext
- Replies: 2
- Views: 317
Re: Jump with tab between wxstatictext
Yes, found this earlier,but had one big mistake which prevented me of managing the panel.
panel->Setsizerandfit must be of course after the sizer is filled.
I tried previously around and missed that part and therefore I did not manage it, now it is working.
panel->Setsizerandfit must be of course after the sizer is filled.
I tried previously around and missed that part and therefore I did not manage it, now it is working.
- Tue Jun 04, 2019 7:58 pm
- Forum: C++ Development
- Topic: Jump with tab between wxstatictext
- Replies: 2
- Views: 317
Jump with tab between wxstatictext
wxGridSizer *button_sizer4 = new wxGridSizer(4); //wxPanel *panel2 = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL); //button_sizer4->Add(panel2, 1, wxEXPAND | wxALL, 5 ); button_sizer4->Add(new wxStaticText(this, wxID_ANY, sp_text[48]), 0, wxALL, 10); button_sizer4-...
- Mon May 20, 2019 6:39 pm
- Forum: C++ Development
- Topic: position of cursour by htmlcellhover
- Replies: 2
- Views: 272
Re: position of cursour by htmlcellhover
Thanks, working now.
- Mon May 20, 2019 2:31 pm
- Forum: C++ Development
- Topic: position of cursour by htmlcellhover
- Replies: 2
- Views: 272
position of cursour by htmlcellhover
Hello I have an HTMLCELLHOVER event All is working, but if the htmlwindow is scrolled down the caclulated position is not correct. At the calculated point I show another window. lpos = H_cell->GetAbsPos(); wxSize bibsy; bibsy= m_bibf[count]->GetSize(); while (lpos.y > bibsy.GetY()) { lpos.y = lpos.y...
- Fri Mar 29, 2019 3:21 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
Thanks managed it somehow.
- Thu Mar 28, 2019 10:34 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
how can I give the m_mgr from one class to the other?
- Thu Mar 28, 2019 8:56 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
global wxclass was it, had as global in it.
Code: Select all
wxAuiManager m_mgr
- Thu Mar 28, 2019 8:15 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
The clean and rebuild I tried, already, and at the moment I rebuild the wxwidgets, just in case I messed the wxrichtooltip up, while I was working with it.
Afterwards I will check for the global wxclass.
Afterwards I will check for the global wxclass.
- Thu Mar 28, 2019 8:02 am
- Forum: Database Related
- Topic: complicated select
- Replies: 5
- Views: 1952
Re: complicated select
Thank you
- Thu Mar 28, 2019 7:17 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
it is when I start the debugging, before it really launches the application, and when i stop it, before it comes back to Visual studio.
- Thu Mar 28, 2019 7:17 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
callstack is empty.
- Thu Mar 28, 2019 6:05 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
Re: suddenly wxwidgets debug alert
What I forgot: I use Visual Studio 2015, until recently I did not have this error.
- Thu Mar 28, 2019 5:51 am
- Forum: Compiler / Linking / IDE Related
- Topic: suddenly wxwidgets debug alert
- Replies: 10
- Views: 4553
suddenly wxwidgets debug alert
Everything worked fine, I also had a header and cpp file included earlier which used a timer, but now I took them out of the solution. And suddenly this is appearing. I physically removed the files which used the timer, I also took the include out, but stil it is giving the mesage. If I search my so...