Click here to Skip to main content
16,004,458 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralEmbedding the Player Control in an MFC Project Pin
c+-8-Aug-05 3:56
c+-8-Aug-05 3:56 
GeneralRe: Embedding the Player Control in an MFC Project Pin
Marc Soleda8-Aug-05 5:39
Marc Soleda8-Aug-05 5:39 
GeneralRe: Embedding the Player Control in an MFC Project Pin
Marc Soleda8-Aug-05 7:48
Marc Soleda8-Aug-05 7:48 
GeneralRe: Embedding the Player Control in an MFC Project Pin
c+-8-Aug-05 17:53
c+-8-Aug-05 17:53 
GeneralRe: Embedding the Player Control in an MFC Project Pin
Marc Soleda8-Aug-05 19:23
Marc Soleda8-Aug-05 19:23 
GeneralStringFromCLSID Pin
Alexander M.,8-Aug-05 3:29
Alexander M.,8-Aug-05 3:29 
GeneralRe: StringFromCLSID Pin
Tim Smith8-Aug-05 3:58
Tim Smith8-Aug-05 3:58 
GeneralRe: StringFromCLSID Pin
peterchen8-Aug-05 8:49
peterchen8-Aug-05 8:49 
CString CGuid::ToString(bool withCurlies)  const
{

#ifdef _UNICODE   // ----- UNICODE -----------
   LPCWSTR mask = withCurlies ? L"{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}" :
                                L"%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X";
#else
   LPCSTR  mask = withCurlies ? "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}" :
                                "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X";
#endif

   CString s;
   s.Format(mask, 
            Data1,  Data2, Data3, Data4[0], Data4[1],
            Data4[2], Data4[3], Data4[4], Data4[5],Data4[6], Data4[7]); 
   return s;
}



Pandoras Gift #44: Hope. The one that keeps you on suffering.
aber.. "Wie gesagt, der Scheiss is' Therapie"
boost your code || Fold With Us! || sighist | doxygen

Generalproblem with Cursor size bigger than 32x32 256 color Pin
DionChen8-Aug-05 3:22
DionChen8-Aug-05 3:22 
GeneralRe: problem with Cursor size bigger than 32x32 256 color Pin
PJ Arends8-Aug-05 5:51
professionalPJ Arends8-Aug-05 5:51 
GeneralRe: problem with Cursor size bigger than 32x32 256 color Pin
DionChen8-Aug-05 6:15
DionChen8-Aug-05 6:15 
GeneralRe: problem with Cursor size bigger than 32x32 256 color Pin
DionChen8-Aug-05 8:42
DionChen8-Aug-05 8:42 
Generalobject not created Pin
sayup8-Aug-05 2:49
sayup8-Aug-05 2:49 
GeneralRe: object not created Pin
Jose Lamas Rios8-Aug-05 2:53
Jose Lamas Rios8-Aug-05 2:53 
GeneralRe: object not created Pin
sayup8-Aug-05 3:35
sayup8-Aug-05 3:35 
GeneralRe: object not created Pin
Cedric Moonen8-Aug-05 3:53
Cedric Moonen8-Aug-05 3:53 
GeneralConvert Font Size Pin
HumanOsc8-Aug-05 2:40
HumanOsc8-Aug-05 2:40 
GeneralRe: Convert Font Size Pin
Jose Lamas Rios8-Aug-05 3:03
Jose Lamas Rios8-Aug-05 3:03 
GeneralRe: Convert Font Size Pin
HumanOsc8-Aug-05 7:26
HumanOsc8-Aug-05 7:26 
GeneralRe: Convert Font Size Pin
HumanOsc10-Aug-05 23:19
HumanOsc10-Aug-05 23:19 
Generalhelp me.. Regarding Tapi 3.0 Pin
rajesh_kapure8-Aug-05 2:19
rajesh_kapure8-Aug-05 2:19 
GeneralRe: help me.. Regarding Tapi 3.0 Pin
Eytukan8-Aug-05 4:23
Eytukan8-Aug-05 4:23 
GeneralRe: help me.. Regarding Tapi 3.0 Pin
Michael P Butler8-Aug-05 6:27
Michael P Butler8-Aug-05 6:27 
AnswerRe: help me.. Regarding Tapi 3.0 Pin
Michael P Butler8-Aug-05 6:24
Michael P Butler8-Aug-05 6:24 
GeneralRe: help me.. Regarding Tapi 3.0 Pin
John R. Shaw8-Aug-05 20:15
John R. Shaw8-Aug-05 20:15 

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.