Click here to Skip to main content
15,892,161 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Very happy with C++11 Pin
Chris Losinger6-Nov-12 9:01
professionalChris Losinger6-Nov-12 9:01 
QuestionPutting a COM dll inside a COM dll Pin
WebMaster5-Nov-12 4:39
WebMaster5-Nov-12 4:39 
AnswerRe: Putting a COM dll inside a COM dll Pin
Richard MacCutchan5-Nov-12 5:20
mveRichard MacCutchan5-Nov-12 5:20 
GeneralRe: Putting a COM dll inside a COM dll Pin
WebMaster5-Nov-12 5:47
WebMaster5-Nov-12 5:47 
GeneralRe: Putting a COM dll inside a COM dll Pin
Richard MacCutchan5-Nov-12 5:56
mveRichard MacCutchan5-Nov-12 5:56 
AnswerRe: Putting a COM dll inside a COM dll Pin
Chris Meech5-Nov-12 7:13
Chris Meech5-Nov-12 7:13 
Questionclient server query Pin
akki2309915-Nov-12 1:35
akki2309915-Nov-12 1:35 
AnswerRe: client server query Pin
Richard MacCutchan5-Nov-12 3:19
mveRichard MacCutchan5-Nov-12 3:19 
AnswerRe: client server query Pin
CPallini5-Nov-12 10:47
mveCPallini5-Nov-12 10:47 
Questionhow to get drive list without using COM? Pin
Le@rner4-Nov-12 23:15
Le@rner4-Nov-12 23:15 
AnswerRe: how to get drive list without using COM? Pin
Santhosh G_4-Nov-12 23:37
Santhosh G_4-Nov-12 23:37 
GeneralRe: how to get drive list without using COM? Pin
Le@rner4-Nov-12 23:41
Le@rner4-Nov-12 23:41 
AnswerRe: how to get drive list without using COM? Pin
Sajeesh Payolam5-Nov-12 2:28
Sajeesh Payolam5-Nov-12 2:28 
QuestionRe: how to get drive list without using COM? Pin
David Crow5-Nov-12 2:48
David Crow5-Nov-12 2:48 
Questioncoinitializesecurity failed with error code 800706ba ! Pin
Le@rner4-Nov-12 17:33
Le@rner4-Nov-12 17:33 
Hi all,

CoInitialize(NULL);

hres =  CoInitializeSecurity(
	    NULL, 
	    -1,                          // COM authentication
	    NULL,                        // Authentication services
	    NULL,                        // Reserved
	    RPC_C_AUTHN_LEVEL_DEFAULT,   // Default authentication 
	    RPC_C_IMP_LEVEL_IMPERSONATE, // Default Impersonation  
	    NULL,                        // Authentication info
	    EOAC_NONE,                   // Additional capabilities 
	    NULL                         // Reserved
	   );
	                  
	if (FAILED(hres))
	{	
                CString str=_T("");
		str.Format(_T("Failed to initialize security. Error code = %0x"),hres);
        }


here coinitializesecurity failed with error code 800706ba.


please help how can i resolve this why this error comes

thanks...
AnswerRe: coinitializesecurity failed with error code 800706ba ! Pin
Jochen Arndt4-Nov-12 21:42
professionalJochen Arndt4-Nov-12 21:42 
AnswerRe: coinitializesecurity failed with error code 800706ba ! Pin
Richard MacCutchan4-Nov-12 21:45
mveRichard MacCutchan4-Nov-12 21:45 
GeneralRe: coinitializesecurity failed with error code 800706ba ! Pin
Le@rner4-Nov-12 23:43
Le@rner4-Nov-12 23:43 
GeneralRe: coinitializesecurity failed with error code 800706ba ! Pin
Richard MacCutchan5-Nov-12 3:10
mveRichard MacCutchan5-Nov-12 3:10 
QuestionWhy the CTreeCtrl disable[solved] Pin
yu-jian4-Nov-12 4:59
yu-jian4-Nov-12 4:59 
AnswerRe: Why the CTreeCtrl disable Pin
Richard MacCutchan4-Nov-12 5:13
mveRichard MacCutchan4-Nov-12 5:13 
GeneralRe: Why the CTreeCtrl disable Pin
yu-jian4-Nov-12 15:28
yu-jian4-Nov-12 15:28 
QuestionRe: Why the CTreeCtrl disable Pin
David Crow4-Nov-12 16:18
David Crow4-Nov-12 16:18 
AnswerRe: Why the CTreeCtrl disable Pin
yu-jian4-Nov-12 16:35
yu-jian4-Nov-12 16:35 
GeneralRe: Why the CTreeCtrl disable Pin
Richard MacCutchan4-Nov-12 21:22
mveRichard MacCutchan4-Nov-12 21:22 

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.