BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Outlook - AppointmentItem

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi OLE Automation
View previous topic :: View next topic  
Author Message
Jon Jacobs
Guest





PostPosted: Mon Jan 26, 2004 2:56 pm    Post subject: Outlook - AppointmentItem Reply with quote



At the bottom-left of the appointment window is a contacts button. Just to
the right of button is an edit control where you can type anything. What
property of AppointmentItem contains this text?

Thanks,
Jon


Back to top
Mike Shkolnik
Guest





PostPosted: Mon Jan 26, 2004 3:23 pm    Post subject: Re: Outlook - AppointmentItem Reply with quote



Recipients collection?

--
With best regards, Mike Shkolnik
EMail: [email]mshkolnik (AT) scalabium (DOT) com[/email]
http://www.scalabium.com

"Jon Jacobs" <jqjacobsATgte.net> wrote in message:
news:40152aa5$1 (AT) newsgroups (DOT) borland.com...
Quote:
At the bottom-left of the appointment window is a contacts button. Just to
the right of button is an edit control where you can type anything. What
property of AppointmentItem contains this text?

Thanks,
Jon





Back to top
Jon Jacobs
Guest





PostPosted: Mon Jan 26, 2004 3:40 pm    Post subject: Re: Outlook - AppointmentItem Reply with quote



Thanks. That looked promising. but turned out not to be the one.

Jon

"Mike Shkolnik" <mshkolnik2002 (AT) ukr (DOT) net> wrote

Quote:
Recipients collection?

--
With best regards, Mike Shkolnik
EMail: [email]mshkolnik (AT) scalabium (DOT) com[/email]
http://www.scalabium.com

"Jon Jacobs" <jqjacobsATgte.net> wrote in message:
news:40152aa5$1 (AT) newsgroups (DOT) borland.com...
At the bottom-left of the appointment window is a contacts button. Just
to
the right of button is an edit control where you can type anything. What
property of AppointmentItem contains this text?

Thanks,
Jon







Back to top
Dmitry Streblechenko
Guest





PostPosted: Mon Jan 26, 2004 6:15 pm    Post subject: Re: Outlook - AppointmentItem Reply with quote

AppointmentItem.Links

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Jon Jacobs" <jqjacobsATgte.net> wrote

Quote:
At the bottom-left of the appointment window is a contacts button. Just to
the right of button is an edit control where you can type anything. What
property of AppointmentItem contains this text?

Thanks,
Jon





Back to top
Jon Jacobs
Guest





PostPosted: Mon Jan 26, 2004 11:35 pm    Post subject: Re: Outlook - AppointmentItem Reply with quote

That's It! Thank you.

I was afraid it would be something not available in the older versions of
Outlook.
I can compile the Links property if I use Outlook2000, but not if I use
Outlook8 (which I must, since I can not guarantee that our users are up to
date in Outlook versions - some of them still use Win98 even - which is a
support nightmare).

I'll just have to forget about accessing that information. Oh well.

Jon

"Dmitry Streblechenko" <dmitry (AT) dimastr (DOT) com> wrote

Quote:
AppointmentItem.Links

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Jon Jacobs" <jqjacobsATgte.net> wrote in message
news:40152aa5$1 (AT) newsgroups (DOT) borland.com...
At the bottom-left of the appointment window is a contacts button. Just
to
the right of button is an edit control where you can type anything. What
property of AppointmentItem contains this text?

Thanks,
Jon







Back to top
Dmitry Streblechenko
Guest





PostPosted: Tue Jan 27, 2004 7:06 am    Post subject: Re: Outlook - AppointmentItem Reply with quote

You can still *try* to access it using late binding. Assuming
AppointmentItem is an IDispatch from Outlook:

var Links : OleVariant;
....
try
Links:=OleVariant(AppointmentItem).Links;
...
except
//oh well, it is not accessible
end;

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Jon Jacobs" <jqjacobsATgte.net> wrote

Quote:
That's It! Thank you.

I was afraid it would be something not available in the older versions of
Outlook.
I can compile the Links property if I use Outlook2000, but not if I use
Outlook8 (which I must, since I can not guarantee that our users are up to
date in Outlook versions - some of them still use Win98 even - which is a
support nightmare).

I'll just have to forget about accessing that information. Oh well.

Jon

"Dmitry Streblechenko" <dmitry (AT) dimastr (DOT) com> wrote in message
news:4015593d$1 (AT) newsgroups (DOT) borland.com...
AppointmentItem.Links

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Jon Jacobs" <jqjacobsATgte.net> wrote in message
news:40152aa5$1 (AT) newsgroups (DOT) borland.com...
At the bottom-left of the appointment window is a contacts button.
Just
to
the right of button is an edit control where you can type anything.
What
property of AppointmentItem contains this text?

Thanks,
Jon









Back to top
Jon Jacobs
Guest





PostPosted: Tue Jan 27, 2004 12:38 pm    Post subject: Re: Outlook - AppointmentItem Reply with quote

Thanks. Useful technique.
Jon
"Dmitry Streblechenko" <dmitry (AT) dimastr (DOT) com> wrote

Quote:
You can still *try* to access it using late binding. Assuming
AppointmentItem is an IDispatch from Outlook:

var Links : OleVariant;
...
try
Links:=OleVariant(AppointmentItem).Links;
...
except
//oh well, it is not accessible
end;

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Jon Jacobs" <jqjacobsATgte.net> wrote in message
news:4015a447$1 (AT) newsgroups (DOT) borland.com...
That's It! Thank you.

I was afraid it would be something not available in the older versions
of
Outlook.
I can compile the Links property if I use Outlook2000, but not if I use
Outlook8 (which I must, since I can not guarantee that our users are up
to
date in Outlook versions - some of them still use Win98 even - which is
a
support nightmare).

I'll just have to forget about accessing that information. Oh well.

Jon

"Dmitry Streblechenko" <dmitry (AT) dimastr (DOT) com> wrote in message
news:4015593d$1 (AT) newsgroups (DOT) borland.com...
AppointmentItem.Links

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Jon Jacobs" <jqjacobsATgte.net> wrote in message
news:40152aa5$1 (AT) newsgroups (DOT) borland.com...
At the bottom-left of the appointment window is a contacts button.
Just
to
the right of button is an edit control where you can type anything.
What
property of AppointmentItem contains this text?

Thanks,
Jon











Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi OLE Automation All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.