A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Tags: , , , ,

Cant Reply to Meeting Request/Appointment created Progrmatically





 
 
Thread Tools Display Modes
  #1  
Old September 14th 06, 05:13 PM posted to microsoft.public.outlook.program_vba
Scott Townsend
external usenet poster
 
Posts: 3
Default Cant Reply to Meeting Request/Appointment created Progrmatically

When we create a Meeting Request or an appointment programmatically and then
open it in outlook client, add an attendee, that attendee cannot accept, or
decline, etc the Meeting request. They have the Buttons to reply, but when
they click on them they do not get the Dialog that allows them to send,
edit, don't send the response.

This happens on multiple Outlook 2003, Outlook 2002 and Mobile Outlook
Clients. So its not the Client. Something in the Appointment is not getting
set right when we create the appointment.

Any Suggestions?

Thanks,
Scott-=


Ads
  #2  
Old September 15th 06, 03:30 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 3,426
Default Cant Reply to Meeting Request/Appointment created Progrmatically

It might help if we knew how you're creating things. Show some of your code.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Scott Townsend" wrote in message
...
When we create a Meeting Request or an appointment programmatically and
then open it in outlook client, add an attendee, that attendee cannot
accept, or decline, etc the Meeting request. They have the Buttons to
reply, but when they click on them they do not get the Dialog that allows
them to send, edit, don't send the response.

This happens on multiple Outlook 2003, Outlook 2002 and Mobile Outlook
Clients. So its not the Client. Something in the Appointment is not
getting set right when we create the appointment.

Any Suggestions?

Thanks,
Scott-=


  #3  
Old September 18th 06, 02:58 PM posted to microsoft.public.outlook.program_vba
Scott Townsend
external usenet poster
 
Posts: 3
Default Cant Reply to Meeting Request/Appointment created Progrmatically

The code is running within a SQL DTS Job, so its just VBScript.

I've also downloaded OutLookSpy and have a great PDF File that has all of
the Differences between a Meeting Created in Outlook and hte Meeting we
created. There are Several Differences, though I dont know what many of hte
property IDs are so its hard to tell if they are important.

The PDF File can be found he
www.dot.eandm.dot.com/scott/meeting-requests.pdf

Here is the DTS Job Code:
Thanks!
Scott-

OPTION EXPLICIT


'************************************************* *********************
' Visual Basic Transformation Script
' For a description of codes to access appointment fields. Check out
http://www.cdolive.com/cdo10.htm
'************************************************* ***********************

Const cStrServer = "SMTP Server IP"
Const cStrMailbox ="Exchange ADMIN User"
Const bdebug = 1

Const CdoPropSetID1 = "0220060000000000C000000000000046"
Const CdoPropSetID2 = "0320060000000000C000000000000046"
Const CdoPropSetID3 = "0420060000000000C000000000000046"
Const CdoPropSetID4 = "0820060000000000C000000000000046"
Const CdoPropSetID5 = "2903020000000000C000000000000046"
Const CdoPropSetID6 = "0E20060000000000C000000000000046"
Const CdoPropSetID7 = "0A20060000000000C000000000000046"


DIM fso, fname
DIM StrMailBox
DIM StrLastMailbox
DIM bstrProfileInfo

Dim objSession, objInfoStores, objInfoStore, objTopFolder, objFolders,
objFolder
Dim objMessages, objOneMessage, objAppt, objSender,
objRecipient1,objRecipient2, objRecipient3, objRecipient4, objRecipient5,
objRecipient0
Dim strStoreID, isMeeting

Function Start()
StrLastMailbox = ""
IF bdebug = 1 THEN
Set fso = CreateObject("Scripting.FileSystemObject")
Set fname = fso.CreateTextFile("c:\debugdts1.txt")
End if
Start = DTSTransformStat_OK
End Function

Function Endit()
If bdebug = 1Then
fname.Close
Set fname = Nothing
Set fso = Nothing
End If
Endit = DTSTransformStat_OK
End Function

Function Logoff()
Set objSession = Nothing
Set objInfoStores = Nothing
Set objInfoStore = Nothing
Set objTopFolder = Nothing
Set objFolder = Nothing
Set objFolders = Nothing
Set ObjMessages = Nothing
End Function

Function Logon()

Dim i

Logoff()

bstrProfileInfo = cStrServer & vbLf & StrMailbox

If bdebug = 1 then
fname.WriteLine("Logging on to email with profile : " + bstrProfileInfo)
End If

Set objSession = CreateObject("mapi.session")
objSession.Logon "", "", False, True, 0, True, bstrProfileInfo

if bdebug = 1 THEN
fname.WriteLine("Mapi Session:"+ objSession.Version)
End if

Set objInfoStores = objSession.InfoStores

For i = 1 To objInfoStores.Count
If Left(objInfoStores.Item(i),10) = "Mailbox - " Then
Set objInfoStore=objInfoStores.Item(i)
Exit For
End If
Next

IF ISEMPTY(objInfoStore) THEN
Logon = DTSTransformStat_SkipRow
Exit Function
END IF

Set objTopFolder = objInfoStore.RootFolder
Set objFolders = objTopFolder.Folders
Set objFolder=objFolders.GetFirst()

Do Until objFolder.Name = "Calendar"
Set objFolder=objFolders.GetNext()
IF ISEMPTY(objFolder) or ISNULL(objFolder) THEN
Exit Do
END IF
Loop

IF ISEMPTY(objFolder) or ISNULL(objFolder) THEN
Logon = DTSTransformStat_SkipRow
Exit Function
END IF

strStoreID = objFolder.storeID
Set objMessages = objFolder.Messages

If bdebug = 1 Then
fname.WriteLine("All Logged On to Email")
End if

Logon = DTSTransformStat_OK

End Function

Function Main()

Dim strMessageID, strLastMailBox, strStoreID, strBodyText, strLocation,
StrFromAddress
Dim dt_startdate, dt_enddate, dt_now
Dim i, ihours, iminutes
Dim return

StrMailBox = DTSSource("user_name")
StrFromAddress = DTSSource("email_address")
IF StrMailBox StrLastMailBox THEN
return = Logon()
Main = return
IF return DTSTransformStat_OK Then
Exit Function
End if
StrLastMailBox = StrMailBox
END IF

dt_now = Date()

IF DTSSource("source_status") = "New" OR DTSSource("source_status") =
"Modified" THEN

strBodyText = "A Meeting has been scheduled with " +
DTSSource("contact_name") + " from " + DTSSource("customer_name") + vbCRLF +
VBCRLF
strBodyText = strBodyText + "Find it at : ="+ CSTR(DTSSource("task_id")) +
" " + vbCRLF + vbCRLF
strBodyText = strBodyText + DTSSource("description") + vbCRLF + vbCRLF

IF DTSSource("source_status") = "New" THEN
Set objAppt = objMessages.Add
StrBodyText = strBodyText + " (Added on "+ CSTR(Date()) + " " +
CSTR(Time()) +")"
objAppt.Fields.Add &H30070040, dt_now ' Set Creation Time
objAppt.ConversationTopic = "Meeting with " + DTSSource("contact_name") +
" ("+DTSSource("customer_name")+")"
objAppt.ConversationIndex = objSession.CreateConversationIndex()
ELSE
ON ERROR RESUME NEXT ' Disable Error Catching Due to Posible lookup to
find a message that doesn't exist
StrMessageID = DTSSource("outlook_ID")
Set objAppt = objSession.GetMessage(strMessageID, strStoreID)
' IF Err.Number = &H8004010F or Err.Number = &H80040107 THEN
IF Err.Number 0 THEN
Set objAppt = objMessages.Add
StrBodyText = strBodyText + " (ReAdded on "+CSTR( Date()) + " " +
CSTR(Time()) +")"
objAppt.Fields.Add &H30070040, dt_now ' Set Creation Time
objAppt.ConversationTopic = "Meeting with " + DTSSource("contact_name")
+ " ("+DTSSource("customer_name")+")"
objAppt.ConversationIndex = objSession.CreateConversationIndex()
ELSE
StrBodyText = strBodyText + " (Modified on "+ CSTR(Date()) + " " +
CSTR(Time()) +")"
END IF
ON ERROR GOTO 0 ' Enable Error Catching
END IF

objAppt.Type = "IPM.Appointment"
objAppt.Subject = "Meeting with " + DTSSource("contact_name") + "
("+DTSSource("customer_name")+")"
objAppt.Fields.Add &H1000001F, StrBodyText
objAppt.Fields.Add &H30080040, dt_now ' Set Modification Time

' Set Recipient Information


IsMeeting = 0

SET objRecipient0 = objAppt.Recipients.Add ("", "SMTP:"&strFromAddress,
1 )
objRecipient0.Resolve


IF Len(DTSSource("invitee1_email")) 0 THEN
isMeeting = 1
SET objRecipient1 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee1_email"), 1 )
objRecipient1.Resolve
END IF
IF Len(DTSSource("invitee2_email"))0 THEN
isMeeting = 1
SET objRecipient2 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee2_email"), 1)
objRecipient2.Resolve
END IF
IF Len(DTSSource("invitee3_email"))0 THEN
isMeeting = 1
SET objRecipient3 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee3_email"), 1)
objRecipient3.Resolve
END IF
IF Len(DTSSource("invitee4_email"))0 THEN
isMeeting = 1
SET objRecipient4 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee4_email"), 1)
objRecipient4.Resolve
END IF
IF Len(DTSSource("invitee5_email"))0 THEN
isMeeting = 1
SET objRecipient5 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee5_email"), 1)
objRecipient5.Resolve
END IF

If isMeeting = 1 THEN
objAppt.Fields.Add "0x8219",vbLong,1, CdoPropSetID1 ' Set the IS Meeting
Tag
END IF

' Set Start Time and End time of Appointment

dt_startdate =CDATE(DTSSource("thedate"))
ihours = CDBL(DTSSource("duration"))
iminutes = ihours * 60
dt_enddate = DateAdd("N", iminutes , dt_startdate)

objAppt.Fields.Add "0x820D", vbDate, dt_startdate, CdoPropSetID1 ' Set
Start Date
objAppt.Fields.Add "0x820E", vbDate, dt_enddate, CdoPropSetID1 ' Set
End Date
objAppt.Fields.Add "0x8205", vbLong, 2, CdoPropSetID1 ' Set Busy
Status to "Busy"
objAppt.Fields.Add "0x8503", vbBoolean, vbFalse, CdoPropSetID4 ' Set
Reminder to "No"
objAppt.Fields.Add "0x8223", vbBoolean, vbFalse, CdoPropSetID1 ' Set
Recurring to No

' Set Location Field to whatever description the user put in.
strLocation = DTSSource("location")
objAppt.Fields.Add "0x8208", vbString, strLocation , CdoPropSetID1 ' Set
Location
objAppt.Update true, true

DTSDestination("event_id") = DTSSource("event_id")
strMessageID = objAppt.ID
DTSDestination("outlook_ID") = strMessageID
DTSDestination("source_timestamp") =DTSSource("last_modified_date")

IF isMeeting = 1 THEN
' objAppt.Send
END IF

Main = DTSTransformstat_UpdateQuery

ELSEIF DTSSource("source_status") = "Deleted" THEN
DTSDestination("event_id") = DTSSource("event_id")
StrMessageID = DTSSource("outlook_ID")
ON ERROR RESUME NEXT
Set objAppt = objSession.GetMessage(strMessageID, strStoreID)
' IF objAppt.MeetingStatus = 1 THEN ' If This is a Meeting
' objAppt.Fields.Add "0x8219",vbLong,2, CdoPropSetID1 ' Set the IS
Meeting Tag
' objAppt.Send ' Tell Invitees
' END IF
objAppt.Delete
ON ERROR GOTO 0
Main = DTSTransformStat_DeleteQuery
ELSE
Main = DTSTransformStat_SkipRow
END IF

Set objAppt = Nothing
Set objMessages = Nothing
Set ObjFolder = Nothing
Set objFolders = Nothing
Set objSession = Nothing
End Function


"Ken Slovak - [MVP - Outlook]" wrote in message
...
It might help if we knew how you're creating things. Show some of your
code.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Scott Townsend" wrote in message
...
When we create a Meeting Request or an appointment programmatically and
then open it in outlook client, add an attendee, that attendee cannot
accept, or decline, etc the Meeting request. They have the Buttons to
reply, but when they click on them they do not get the Dialog that allows
them to send, edit, don't send the response.

This happens on multiple Outlook 2003, Outlook 2002 and Mobile Outlook
Clients. So its not the Client. Something in the Appointment is not
getting set right when we create the appointment.

Any Suggestions?

Thanks,
Scott-=




  #4  
Old September 20th 06, 06:13 PM posted to microsoft.public.outlook.program_vba
Scott Townsend
external usenet poster
 
Posts: 3
Default Cant Reply to Meeting Request/Appointment created Progrmatically

No Reply? )-;

"Scott Townsend" wrote in message
...
The code is running within a SQL DTS Job, so its just VBScript.

I've also downloaded OutLookSpy and have a great PDF File that has all of
the Differences between a Meeting Created in Outlook and hte Meeting we
created. There are Several Differences, though I dont know what many of
hte property IDs are so its hard to tell if they are important.

The PDF File can be found he
www.dot.eandm.dot.com/scott/meeting-requests.pdf

Here is the DTS Job Code:
Thanks!
Scott-

OPTION EXPLICIT


'************************************************* *********************
' Visual Basic Transformation Script
' For a description of codes to access appointment fields. Check out
http://www.cdolive.com/cdo10.htm
'************************************************* ***********************

Const cStrServer = "SMTP Server IP"
Const cStrMailbox ="Exchange ADMIN User"
Const bdebug = 1

Const CdoPropSetID1 = "0220060000000000C000000000000046"
Const CdoPropSetID2 = "0320060000000000C000000000000046"
Const CdoPropSetID3 = "0420060000000000C000000000000046"
Const CdoPropSetID4 = "0820060000000000C000000000000046"
Const CdoPropSetID5 = "2903020000000000C000000000000046"
Const CdoPropSetID6 = "0E20060000000000C000000000000046"
Const CdoPropSetID7 = "0A20060000000000C000000000000046"


DIM fso, fname
DIM StrMailBox
DIM StrLastMailbox
DIM bstrProfileInfo

Dim objSession, objInfoStores, objInfoStore, objTopFolder, objFolders,
objFolder
Dim objMessages, objOneMessage, objAppt, objSender,
objRecipient1,objRecipient2, objRecipient3, objRecipient4, objRecipient5,
objRecipient0
Dim strStoreID, isMeeting

Function Start()
StrLastMailbox = ""
IF bdebug = 1 THEN
Set fso = CreateObject("Scripting.FileSystemObject")
Set fname = fso.CreateTextFile("c:\debugdts1.txt")
End if
Start = DTSTransformStat_OK
End Function

Function Endit()
If bdebug = 1Then
fname.Close
Set fname = Nothing
Set fso = Nothing
End If
Endit = DTSTransformStat_OK
End Function

Function Logoff()
Set objSession = Nothing
Set objInfoStores = Nothing
Set objInfoStore = Nothing
Set objTopFolder = Nothing
Set objFolder = Nothing
Set objFolders = Nothing
Set ObjMessages = Nothing
End Function

Function Logon()

Dim i

Logoff()

bstrProfileInfo = cStrServer & vbLf & StrMailbox

If bdebug = 1 then
fname.WriteLine("Logging on to email with profile : " + bstrProfileInfo)
End If

Set objSession = CreateObject("mapi.session")
objSession.Logon "", "", False, True, 0, True, bstrProfileInfo

if bdebug = 1 THEN
fname.WriteLine("Mapi Session:"+ objSession.Version)
End if

Set objInfoStores = objSession.InfoStores

For i = 1 To objInfoStores.Count
If Left(objInfoStores.Item(i),10) = "Mailbox - " Then
Set objInfoStore=objInfoStores.Item(i)
Exit For
End If
Next

IF ISEMPTY(objInfoStore) THEN
Logon = DTSTransformStat_SkipRow
Exit Function
END IF

Set objTopFolder = objInfoStore.RootFolder
Set objFolders = objTopFolder.Folders
Set objFolder=objFolders.GetFirst()

Do Until objFolder.Name = "Calendar"
Set objFolder=objFolders.GetNext()
IF ISEMPTY(objFolder) or ISNULL(objFolder) THEN
Exit Do
END IF
Loop

IF ISEMPTY(objFolder) or ISNULL(objFolder) THEN
Logon = DTSTransformStat_SkipRow
Exit Function
END IF

strStoreID = objFolder.storeID
Set objMessages = objFolder.Messages

If bdebug = 1 Then
fname.WriteLine("All Logged On to Email")
End if

Logon = DTSTransformStat_OK

End Function

Function Main()

Dim strMessageID, strLastMailBox, strStoreID, strBodyText, strLocation,
StrFromAddress
Dim dt_startdate, dt_enddate, dt_now
Dim i, ihours, iminutes
Dim return

StrMailBox = DTSSource("user_name")
StrFromAddress = DTSSource("email_address")
IF StrMailBox StrLastMailBox THEN
return = Logon()
Main = return
IF return DTSTransformStat_OK Then
Exit Function
End if
StrLastMailBox = StrMailBox
END IF

dt_now = Date()

IF DTSSource("source_status") = "New" OR DTSSource("source_status") =
"Modified" THEN

strBodyText = "A Meeting has been scheduled with " +
DTSSource("contact_name") + " from " + DTSSource("customer_name") + vbCRLF
+ VBCRLF
strBodyText = strBodyText + "Find it at : ="+ CSTR(DTSSource("task_id"))
+ " " + vbCRLF + vbCRLF
strBodyText = strBodyText + DTSSource("description") + vbCRLF + vbCRLF

IF DTSSource("source_status") = "New" THEN
Set objAppt = objMessages.Add
StrBodyText = strBodyText + " (Added on "+ CSTR(Date()) + " " +
CSTR(Time()) +")"
objAppt.Fields.Add &H30070040, dt_now ' Set Creation Time
objAppt.ConversationTopic = "Meeting with " + DTSSource("contact_name")
+ " ("+DTSSource("customer_name")+")"
objAppt.ConversationIndex = objSession.CreateConversationIndex()
ELSE
ON ERROR RESUME NEXT ' Disable Error Catching Due to Posible lookup to
find a message that doesn't exist
StrMessageID = DTSSource("outlook_ID")
Set objAppt = objSession.GetMessage(strMessageID, strStoreID)
' IF Err.Number = &H8004010F or Err.Number = &H80040107 THEN
IF Err.Number 0 THEN
Set objAppt = objMessages.Add
StrBodyText = strBodyText + " (ReAdded on "+CSTR( Date()) + " " +
CSTR(Time()) +")"
objAppt.Fields.Add &H30070040, dt_now ' Set Creation Time
objAppt.ConversationTopic = "Meeting with " + DTSSource("contact_name")
+ " ("+DTSSource("customer_name")+")"
objAppt.ConversationIndex = objSession.CreateConversationIndex()
ELSE
StrBodyText = strBodyText + " (Modified on "+ CSTR(Date()) + " " +
CSTR(Time()) +")"
END IF
ON ERROR GOTO 0 ' Enable Error Catching
END IF

objAppt.Type = "IPM.Appointment"
objAppt.Subject = "Meeting with " + DTSSource("contact_name") + "
("+DTSSource("customer_name")+")"
objAppt.Fields.Add &H1000001F, StrBodyText
objAppt.Fields.Add &H30080040, dt_now ' Set Modification Time

' Set Recipient Information


IsMeeting = 0

SET objRecipient0 = objAppt.Recipients.Add ("", "SMTP:"&strFromAddress,
1 )
objRecipient0.Resolve


IF Len(DTSSource("invitee1_email")) 0 THEN
isMeeting = 1
SET objRecipient1 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee1_email"), 1 )
objRecipient1.Resolve
END IF
IF Len(DTSSource("invitee2_email"))0 THEN
isMeeting = 1
SET objRecipient2 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee2_email"), 1)
objRecipient2.Resolve
END IF
IF Len(DTSSource("invitee3_email"))0 THEN
isMeeting = 1
SET objRecipient3 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee3_email"), 1)
objRecipient3.Resolve
END IF
IF Len(DTSSource("invitee4_email"))0 THEN
isMeeting = 1
SET objRecipient4 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee4_email"), 1)
objRecipient4.Resolve
END IF
IF Len(DTSSource("invitee5_email"))0 THEN
isMeeting = 1
SET objRecipient5 = objAppt.Recipients.Add ("",
"SMTP:"&DTSSource("invitee5_email"), 1)
objRecipient5.Resolve
END IF

If isMeeting = 1 THEN
objAppt.Fields.Add "0x8219",vbLong,1, CdoPropSetID1 ' Set the IS
Meeting Tag
END IF

' Set Start Time and End time of Appointment

dt_startdate =CDATE(DTSSource("thedate"))
ihours = CDBL(DTSSource("duration"))
iminutes = ihours * 60
dt_enddate = DateAdd("N", iminutes , dt_startdate)

objAppt.Fields.Add "0x820D", vbDate, dt_startdate, CdoPropSetID1 ' Set
Start Date
objAppt.Fields.Add "0x820E", vbDate, dt_enddate, CdoPropSetID1 ' Set
End Date
objAppt.Fields.Add "0x8205", vbLong, 2, CdoPropSetID1 ' Set Busy
Status to "Busy"
objAppt.Fields.Add "0x8503", vbBoolean, vbFalse, CdoPropSetID4 ' Set
Reminder to "No"
objAppt.Fields.Add "0x8223", vbBoolean, vbFalse, CdoPropSetID1 ' Set
Recurring to No

' Set Location Field to whatever description the user put in.
strLocation = DTSSource("location")
objAppt.Fields.Add "0x8208", vbString, strLocation , CdoPropSetID1 ' Set
Location
objAppt.Update true, true

DTSDestination("event_id") = DTSSource("event_id")
strMessageID = objAppt.ID
DTSDestination("outlook_ID") = strMessageID
DTSDestination("source_timestamp") =DTSSource("last_modified_date")

IF isMeeting = 1 THEN
' objAppt.Send
END IF

Main = DTSTransformstat_UpdateQuery

ELSEIF DTSSource("source_status") = "Deleted" THEN
DTSDestination("event_id") = DTSSource("event_id")
StrMessageID = DTSSource("outlook_ID")
ON ERROR RESUME NEXT
Set objAppt = objSession.GetMessage(strMessageID, strStoreID)
' IF objAppt.MeetingStatus = 1 THEN ' If This is a Meeting
' objAppt.Fields.Add "0x8219",vbLong,2, CdoPropSetID1 ' Set the IS
Meeting Tag
' objAppt.Send ' Tell Invitees
' END IF
objAppt.Delete
ON ERROR GOTO 0
Main = DTSTransformStat_DeleteQuery
ELSE
Main = DTSTransformStat_SkipRow
END IF

Set objAppt = Nothing
Set objMessages = Nothing
Set ObjFolder = Nothing
Set objFolders = Nothing
Set objSession = Nothing
End Function


"Ken Slovak - [MVP - Outlook]" wrote in message
...
It might help if we knew how you're creating things. Show some of your
code.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Scott Townsend" wrote in message
...
When we create a Meeting Request or an appointment programmatically and
then open it in outlook client, add an attendee, that attendee cannot
accept, or decline, etc the Meeting request. They have the Buttons to
reply, but when they click on them they do not get the Dialog that
allows them to send, edit, don't send the response.

This happens on multiple Outlook 2003, Outlook 2002 and Mobile Outlook
Clients. So its not the Client. Something in the Appointment is not
getting set right when we create the appointment.

Any Suggestions?

Thanks,
Scott-=






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Appointment and Meeting Request Issues divins Outlook - Calandaring 0 August 3rd 06 07:16 PM
Meeting Request w/o Ability to Reply. windmiller Outlook - Installation 1 July 22nd 06 04:51 AM
Reply to different name on meeting request. IT Boys Outlook - Calandaring 1 May 13th 06 07:27 PM
Duplicate appointment created when replying to original request O Chacon Outlook - Calandaring 4 May 2nd 06 08:36 PM
Meeting Request vs. Appointment J. Ashley Outlook - Calandaring 4 January 28th 06 07:35 PM


All times are GMT +1. The time now is 06:24 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2008 Outlook Banter, part of the NewsgroupBanter project.
The comments are property of their posters.
Buy Anything On eBay - Credit Cards - Music Festival - Bad Credit Mortgages - Loans