How do I bring up my pictures from AOL Pictures?

For some reason I cannot locate or bring up pictures that I have downloaded onto AOL Pictures. How do I find them and bring them up?

Participant in OnImReceived

Assuming you are looking at our bot sample, accbot, the event OnImReceived is where you will be able to see the sender's name. One of the values passed back in the event is an IAccParticipant. You can get the name by calling IAccParticipant::get_Name(xp_str). For example:

void CClient::OnImReceived(IAccSession*, IAccImSession* piImSession,
IAccParticipant* piPart, IAccIm* piIm)
{
// get the name of sender
CAccBstr name;
piPart->get_Name(&name);

// Send the IM to the handler
CAccBstr plainIn, plainOut;
CAccPtr spiResponse;
if (SUCCEEDED(piIm->GetConvertedText(OLESTR("text/plain"), &plainIn)) &&
SUCCEEDED(m_spiSession->CreateIm(NULL, OLESTR("text/plain"), &spiResponse)) &&
SUCCEEDED(HandleIm(plainIn, plainOut)) &&
SUCCEEDED(spiResponse->put_Text(plainOut)))
piImSession->SendIm(spiResponse);
}

Thank You!

That's exactly what I was looking for, thanks a ton. :)