Search found 96 matches

by MuhammadSohail
Thu Sep 17, 2009 1:20 pm
Forum: C++ Development
Topic: Debugging tool with wxWidgets and VC++ .NET
Replies: 7
Views: 2257

is there any freeware debugging tool with good documentation?
by MuhammadSohail
Thu Sep 17, 2009 1:01 pm
Forum: C++ Development
Topic: Debugging tool with wxWidgets and VC++ .NET
Replies: 7
Views: 2257

Can you please write an example of stackWalker , How do i use it in my programm or any tutorial.

How would i debug my programm with Visual studio in releas mode?
by MuhammadSohail
Thu Sep 17, 2009 12:53 pm
Forum: C++ Development
Topic: Debugging tool with wxWidgets and VC++ .NET
Replies: 7
Views: 2257

Yes i know it can only be used on compiling.
We are selling our software, i want to generate dump or stack report at the customer PC in order to improve my software.
by MuhammadSohail
Thu Sep 17, 2009 12:11 pm
Forum: C++ Development
Topic: Debugging tool with wxWidgets and VC++ .NET
Replies: 7
Views: 2257

Debugging tool with wxWidgets and VC++ .NET

Hi all,
I m working with VC++ .Net and wxWidgets. Does someone know about the free debugging tools.

I have found "WinDbg" tool in the Internet but currently good documenation with example is not available.

Plz write me all possible debugging tools and there links
by MuhammadSohail
Wed Aug 19, 2009 3:24 pm
Forum: C++ Development
Topic: How to close Joinable threads
Replies: 6
Views: 1627

I have just modified my close function ,without Wait() function, its working if (IsRunning()) { while (IsRunning()) { Sleep(100); cout << "UDPMessageThread::close(): IsRunning check" << endl; } //exitCode = Wait(); //cout << "UDPMessageThread::close() " << "exit code: "...
by MuhammadSohail
Tue Aug 18, 2009 11:45 am
Forum: C++ Development
Topic: How to close Joinable threads
Replies: 6
Views: 1627

Do i use wxMutex or wxCriticalSection??
by MuhammadSohail
Tue Aug 18, 2009 9:27 am
Forum: C++ Development
Topic: How to close Joinable threads
Replies: 6
Views: 1627

How do i use the TestDestroy() function. Here is my Entry code wxThread::ExitCode UDPMessageThread::Entry() { MessageBase::version = 2; d_accessDataMutex.Lock(); PingMessage ping(0, d_currentUser); ping.createByteArray(ping.rawData, true); d_accessDataMutex.Unlock(); while (d_run && d_socket...
by MuhammadSohail
Mon Aug 17, 2009 2:43 pm
Forum: C++ Development
Topic: How to close Joinable threads
Replies: 6
Views: 1627

How to close Joinable threads

Trying to close the GUI application immediately after calling the close function of the UDP thread. GUI application is crashed. After debugging BugReporter.exe!wxMutexInternal::LockTimeout(unsigned long milliseconds=0xffffffff) Zeile 232 + 0x7 C++ BugReporter.exe!wxMutexInternal::Lock() Zeile 190 + ...
by MuhammadSohail
Thu Jul 30, 2009 10:41 am
Forum: C++ Development
Topic: wxTextValidator and Filter range
Replies: 2
Views: 6921

wxArrayString includeList; for (size_t i = 65; i <= 90 ; i++) { std::stringstream alpha; alpha << (char) i; includeList.Add( wxT(alpha.str()) ); } for (size_t i = 97; i <= 122 ; i++) { std::stringstream alpha; alpha << (char) i; includeList.Add( wxT( alpha.str()) ); } includeList.Add(wxT("0&qu...
by MuhammadSohail
Wed Jul 22, 2009 8:44 am
Forum: C++ Development
Topic: wxTextValidator and Filter range
Replies: 2
Views: 6921

wxTextValidator and Filter range

Hallo all,
Is there any possibility to define a filter with specific range?

e.g.
I only want to filter following chracters for my password in the wxTextCtrl

A - Z
a - z
0 - 9
by MuhammadSohail
Mon Jul 13, 2009 1:40 pm
Forum: C++ Development
Topic: How to save encrypted password in the configration file
Replies: 3
Views: 1623

Thanks for quick reply. I wrote my own config file parser , Therefore i would not be possible to use wxConfig class anymore.

Is there any other idea. is there any GnU Lib?
by MuhammadSohail
Mon Jul 13, 2009 12:24 pm
Forum: C++ Development
Topic: How to save encrypted password in the configration file
Replies: 3
Views: 1623

How to save encrypted password in the configration file

How do i en/decode the password and save/read into/from the ini file.

Currently using
Visual studio: 2003
wxWidgets : 2.8.8

Is there any command line tool or any wxWidget class?
Any idea would be helful
by MuhammadSohail
Thu Jun 04, 2009 9:26 am
Forum: C++ Development
Topic: wxGrid and validator
Replies: 11
Views: 4936

Thanks a lot Jim Fairy, it works HexNumberGridEditor class overides the Create() functiion and includes the following code HexNumberGridEditor::Create(wxWindow* parent, wxWindowID id, wxEvtHandler* evtHandler) { wxArrayString includeList; includeList.Add(wxT("0")); includeList.Add(wxT(&quo...
by MuhammadSohail
Mon Mar 23, 2009 11:04 am
Forum: C++ Development
Topic: wxTextCtrl with windows xp style
Replies: 3
Views: 1130

the wxTextCtrl style wxTE_LEFT|wxTE_MULTILINE |wxTE_RICH |wxTE_DONTWRAP shows the horizontal bar, I dont want it , is there any way to supress the horizonntal bar or dont show the horizontal bar?

any hint would be helpful.
by MuhammadSohail
Mon Mar 23, 2009 10:21 am
Forum: C++ Development
Topic: wxTextCtrl with windows xp style
Replies: 3
Views: 1130

Is there any function in wxWindows to hide the scrollbar or dont show the scrollbar??