Click here to Skip to main content
15,887,812 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12347-Jan-12 19:27
meace12347-Jan-12 19:27 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
Richard MacCutchan8-Jan-12 0:02
mveRichard MacCutchan8-Jan-12 0:02 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
rana ray15-Feb-12 20:03
rana ray15-Feb-12 20:03 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12347-Jan-12 17:57
meace12347-Jan-12 17:57 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace123415-Jan-12 22:45
meace123415-Jan-12 22:45 
QuestionWTL/ATL Pin
chithrakochu2-Jan-12 21:03
chithrakochu2-Jan-12 21:03 
AnswerRe: WTL/ATL Pin
Pablo Aliskevicius16-Jan-12 4:17
Pablo Aliskevicius16-Jan-12 4:17 
Questionlisting Office contacts Pin
tasumisra26-Dec-11 0:30
tasumisra26-Dec-11 0:30 
Hi Guys,

i want to list and check the status of each contact of my Office Communicator

for this i have done till
1)i can see number of contact from get_count method
2)GetContact method is also successfully executed.

and done know how to move further..

any help is appriciated..

C++
CoInitialize(NULL);
	HRESULT  hr = CoCreateInstance(CLSID_Messenger,NULL,CLSCTX_LOCAL_SERVER,
	IID_IMessenger, (LPVOID *)&m_pIMessenger);

	BSTR myName;
	MISTATUS sMyStatus;

 	//hr = m_pIMessenger->get_MyFriendlyName(&myName);
	hr=m_pIMessenger->get_MySigninName(&myName);
	hr = m_pIMessenger->get_MyStatus(&sMyStatus);

	BSTR serviceId;
	m_pIMessenger->get_MyServiceId(&serviceId);

	IDispatch *pContacts;
	IMessengerContacts *pCon;
	  BSTR bstrServiceId;

	      hr = m_pIMessenger->get_MyServiceId(&bstrServiceId);
		
	  if (FAILED(hr))
		 return NULL;

	

	  hr = m_pIMessenger->GetContact(myName, bstrServiceId, 
                                     (IDispatch**)&pCon);
	  </blockquote>

vikas da

AnswerRe: listing Office contacts Pin
Richard MacCutchan26-Dec-11 6:54
mveRichard MacCutchan26-Dec-11 6:54 
GeneralRe: listing Office contacts Pin
tasumisra26-Dec-11 21:28
tasumisra26-Dec-11 21:28 
GeneralRe: listing Office contacts Pin
Richard MacCutchan27-Dec-11 0:21
mveRichard MacCutchan27-Dec-11 0:21 
GeneralRe: listing Office contacts Pin
tasumisra27-Dec-11 0:45
tasumisra27-Dec-11 0:45 
GeneralRe: listing Office contacts Pin
Richard MacCutchan27-Dec-11 0:57
mveRichard MacCutchan27-Dec-11 0:57 
GeneralRe: listing Office contacts Pin
tasumisra27-Dec-11 3:18
tasumisra27-Dec-11 3:18 
GeneralRe: listing Office contacts Pin
Richard MacCutchan27-Dec-11 4:50
mveRichard MacCutchan27-Dec-11 4:50 
GeneralRe: listing Office contacts Pin
tasumisra27-Dec-11 5:44
tasumisra27-Dec-11 5:44 
Questionconverting CString to Char[100] Pin
KRISHNARAYALU19-Dec-11 22:30
KRISHNARAYALU19-Dec-11 22:30 
AnswerRe: converting CString to Char[100] Pin
Albert Holguin20-Dec-11 4:56
professionalAlbert Holguin20-Dec-11 4:56 
GeneralRe: converting CString to Char[100] Pin
KRISHNARAYALU20-Dec-11 17:00
KRISHNARAYALU20-Dec-11 17:00 
GeneralRe: converting CString to Char[100] Pin
Richard MacCutchan20-Dec-11 21:37
mveRichard MacCutchan20-Dec-11 21:37 
GeneralRe: converting CString to Char[100] Pin
Albert Holguin21-Dec-11 9:30
professionalAlbert Holguin21-Dec-11 9:30 
GeneralRe: converting CString to Char[100] Pin
Richard MacCutchan21-Dec-11 9:46
mveRichard MacCutchan21-Dec-11 9:46 
AnswerRe: converting CString to Char[100] Pin
stonexin20-Dec-11 18:18
stonexin20-Dec-11 18:18 
GeneralRe: converting CString to Char[100] Pin
stonexin20-Dec-11 18:18
stonexin20-Dec-11 18:18 
GeneralRe: converting CString to Char[100] Pin
jumancollion27-Dec-11 5:08
jumancollion27-Dec-11 5:08 

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.