Search found 7 matches

by seeek
Thu Oct 01, 2020 11:59 am
Forum: C++ Development
Topic: clear wxLogMessage on new message !
Replies: 4
Views: 495

Re: clear wxLogMessage on new message !

aah thank you thats why ecx register was zero because of this pointer was empty .
Now I understand thank you again and again ^^
I am kinda newbie with classes and still learning on wx
by seeek
Thu Oct 01, 2020 10:49 am
Forum: C++ Development
Topic: clear wxLogMessage on new message !
Replies: 4
Views: 495

Re: clear wxLogMessage on new message !

Sorry for bothering you but the application exit when the event is called . mainPane is just a panel on UIMain .. and MyListCtrl is inherited from wxListCtrl class UIMain :public wxFrame { // header public: UIMain(); void ClearLog(); wxPanel* mainPane = nullptr; wxTextCtrl* m_logWindow; wxListCtrl* ...
by seeek
Wed Sep 30, 2020 10:51 pm
Forum: C++ Development
Topic: clear wxLogMessage on new message !
Replies: 4
Views: 495

clear wxLogMessage on new message !

UIMain::UIMain() : wxFrame( wxTextCtrl* m_logWindow; m_logWindow = new wxTextCtrl(mainPane, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY | wxTE_MULTILINE | wxSUNKEN_BORDER); .....remaining code } I want to use m_logWindow->Clear(); inside the event handler or something to...
by seeek
Wed Sep 30, 2020 6:16 pm
Forum: C++ Development
Topic: how to make wxStyledTextCtrl auto scroll down /how to bind it to wxListCtrl on item selection/
Replies: 2
Views: 308

how to make wxStyledTextCtrl auto scroll down /how to bind it to wxListCtrl on item selection/

I want to make wxStyledTextCtrl auto scroll down to the last element add. and I want to bind wxStyledTextCtrl with wxListCtrl items on selection ... for example : if item in list selected . show its data in wxStyledTextCtrl . Can I set Raw data to wxListCtrl like in AppendTextRaw for wxStyledTextCtr...
by seeek
Wed Sep 30, 2020 8:59 am
Forum: C++ Development
Topic: how to display array of hex bytes into control and translate to ascii
Replies: 3
Views: 880

Re: how to display array of hex bytes into control and translate to ascii

thank you I used DumpBufferToStc function . into my wx dll works very well but some times these exceptions appear . I used the dll in run time application and the dll get called by the external application . do you have any idea how to get the error code reason or handle these exceptions . they get ...
by seeek
Tue Sep 29, 2020 2:02 pm
Forum: C++ Development
Topic: how to display array of hex bytes into control and translate to ascii
Replies: 3
Views: 880

how to display array of hex bytes into control and translate to ascii

Hello that's my first topic on wx forums . I want to print this buffer into any control like the picture . and translate that buffer to ASCII code . please provide any full example to study ,, because I am still beginner in wx world ;D all I want (a Control with hex buffer and other with the transla...