d henderson
Posts: 39
Joined: 2006-03-06
|
Env: VB.Net XP pro sp2. Addin-Express
Question: For an Addin-Express supported application I am developing...
When populating a MeetingItem form for a new meeting, I wish to obtain the text going into the Subject: field *as the user types*.
How should I approach this in my application?
|
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Don.
The Outlook.MeetingItem interface has the Subject property. You can use this property to access the 'Subject' field.
E.g.
...
Dim insp As Outlook.Inspector = OutlookApp().ActiveInspector()
Dim meeting As Outlook.MeetingItem = insp.CurrentItem
Dim subject As String
meeting.Save()
subject = meeting.Subject
... |
|