Re: how to update my changed picture in my buddy (General questions)
Sapna,
The following code accesses your VCard:
[code]IXMPPVCard mycard;
mycard.AttachDispatch(m_XMPP.GetVCard(), TRUE);
AfxMessageBox(mycard.GetJid());[/code]
While this code:
[code] IXMPPContact cnt;
cnt.AttachDispatch(Contact, TRUE);
IXMPPVCard vcard;
vcard.AttachDispatch(cnt.GetVCard(), TRUE);
vcard.Receive();[/code]
Is accessing VCard of a Contact.
I'm not really expert in c++, but can't you check if object is null or not?
Something like this (in VCardDetails):
[code] if(Contact)
{
IXMPPContact cnt;
cnt.AttachDispatch(Contact, TRUE);
IXMPPVCard vcard;
vcard.AttachDispatch(cnt.GetVCard(), TRUE);
vcard.Receive();
}
else
{
IXMPPVCard mycard;
mycard.AttachDispatch(m_XMPP.GetVCard(), TRUE);
AfxMessageBox(mycard.GetJid());
}[/code]
Can you try that? If that doesn't help, I'll ask our programmers for a code sample, but imo something like that should work.
As for the LicenseKey. Did you set the property? Does it exist? If property doesn't exist, then you most probably downloaded Demo, or you didn't re-import the component into VC.
Regards,
Damba
Complete thread:
- how to update my changed picture in my buddy - sapna, 2009-07-06, 08:17
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 09:56
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 10:56
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 11:56
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 13:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 15:44
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 16:02
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 16:29
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 17:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 17:18
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 18:36
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 07:45
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 10:39
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 13:43
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 13:59
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 14:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:02
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:05
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:08
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:25
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:33
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:58
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:34
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:38
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-08, 08:42
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 09:35
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 10:15
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 10:22
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 13:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:35
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:45
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:49
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 15:27
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 16:11
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 15:27
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:49
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:45
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:35
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 13:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 10:22
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 10:15
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 09:35
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-08, 08:42
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:34
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:58
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:33
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:25
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:05
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:02
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 14:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 13:59
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 13:43
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 10:39
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 07:45
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 18:36
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 17:18
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 17:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 16:29
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 16:02
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 15:44
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 13:38
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 11:56
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 10:56
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 09:56