Click here to Skip to main content
15,867,453 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan16-Jul-11 21:50
mveRichard MacCutchan16-Jul-11 21:50 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S17-Jul-11 1:14
Malli_S17-Jul-11 1:14 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan17-Jul-11 7:18
mveRichard MacCutchan17-Jul-11 7:18 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S18-Jul-11 0:16
Malli_S18-Jul-11 0:16 
QuestionCrash in multiple threading with shared resource Pin
includeh1014-Jul-11 9:30
includeh1014-Jul-11 9:30 
AnswerRe: Crash in multiple threading with shared resource Pin
Mark Salsbery14-Jul-11 11:08
Mark Salsbery14-Jul-11 11:08 
AnswerRe: Crash in multiple threading with shared resource Pin
«_Superman_»14-Jul-11 15:44
professional«_Superman_»14-Jul-11 15:44 
AnswerRe: Crash in multiple threading with shared resource Pin
Eugen Podsypalnikov15-Jul-11 1:33
Eugen Podsypalnikov15-Jul-11 1:33 
See also Smile | :) :

class CUserInfo;

typedef CUserInfoArray CArray<CUserInfo*>;

class CUserSyncArray : protected CUserInfoArray
{
  CCriticalSection m_cLock;

public:
  CUserSyncArray() {..}
  virtual ~CUserSyncArray() {..}

  // Beginn of all needed CArray methods:
  CUserInfo* GetAt(INT_PTR iPos) {
    CSingleLock cExceptionFreeLock(&m_cLock, true);
    return CUserInfoArray::GetAt(iPos);
  }
  //..and so on, for all needed methods :)
};

They sought it with thimbles, they sought it with care;
They pursued it with forks and hope;
They threatened its life with a railway-share;
They charmed it with smiles and soap. Smile | :)

AnswerRe: Crash in multiple threading with shared resource Pin
ThatsAlok15-Jul-11 1:46
ThatsAlok15-Jul-11 1:46 
QuestionNeed to detect the properties of any object on an application window. Pin
kartikdasani14-Jul-11 2:11
kartikdasani14-Jul-11 2:11 
AnswerRe: Need to detect the properties of any object on an application window. Pin
Chris Losinger14-Jul-11 2:44
professionalChris Losinger14-Jul-11 2:44 
GeneralRe: Need to detect the properties of any object on an application window. Pin
kartikdasani14-Jul-11 2:57
kartikdasani14-Jul-11 2:57 
GeneralRe: Need to detect the properties of any object on an application window. Pin
Chris Losinger14-Jul-11 3:26
professionalChris Losinger14-Jul-11 3:26 
AnswerRe: Need to detect the properties of any object on an application window. Pin
«_Superman_»14-Jul-11 6:55
professional«_Superman_»14-Jul-11 6:55 
AnswerRe: Need to detect the properties of any object on an application window. Pin
Code-o-mat14-Jul-11 22:46
Code-o-mat14-Jul-11 22:46 
AnswerRe: Need to detect the properties of any object on an application window. Pin
Eugen Podsypalnikov15-Jul-11 1:59
Eugen Podsypalnikov15-Jul-11 1:59 
QuestionHow to make modeless dialog actrive Pin
manju 314-Jul-11 1:32
manju 314-Jul-11 1:32 
AnswerRe: How to make modeless dialog actrive Pin
Richard MacCutchan14-Jul-11 1:55
mveRichard MacCutchan14-Jul-11 1:55 
AnswerRe: How to make modeless dialog actrive Pin
Albert Holguin14-Jul-11 4:01
professionalAlbert Holguin14-Jul-11 4:01 
AnswerRe: How to make modeless dialog actrive Pin
«_Superman_»14-Jul-11 6:57
professional«_Superman_»14-Jul-11 6:57 
AnswerRe: How to make modeless dialog actrive Pin
ThatsAlok15-Jul-11 1:50
ThatsAlok15-Jul-11 1:50 
AnswerRe: How to make modeless dialog actrive Pin
Eugen Podsypalnikov15-Jul-11 2:23
Eugen Podsypalnikov15-Jul-11 2:23 
QuestionC++ Documentation Tool Pin
Hans Dietrich14-Jul-11 1:32
mentorHans Dietrich14-Jul-11 1:32 
AnswerRe: C++ Documentation Tool Pin
Chris Losinger14-Jul-11 2:40
professionalChris Losinger14-Jul-11 2:40 
AnswerRe: C++ Documentation Tool Pin
ThatsAlok15-Jul-11 1:56
ThatsAlok15-Jul-11 1:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.