Any one else having probelms with outlook.application

dayv2005

Member
recently we did a windows update it had some outlook updates in it. ANd ever since after that this appointment and task application is getting hung and wont let me create new items or edit current ones. I spent a good bit of time ion this project and now it all seems like it isn't working. Has anyone else had this problem. Like i get an opperation failed error that's it. Kind of like Im not destroying the outlook.applicaiton object. is there a way to destroy it other than releasing the object?
 
I remember having troubles with outlook in this way :

All things (like all Microsoft app's) are build of collections.

The inbox, outboux, ... objects in outlook are part of collections.

In some way, sometimes the sequence of objects in the collections changes. So if you refer in your code to object(1) (simple way of saying), as your inbox, the other day you should refer to it as object(3). You get what I mean?

It could be possible that the update changed the sequence of your collection objects.

Try changing the number of your object.
 
yeah i know exactly what you mean bc microsoft seems to be always changing around their constant definition. But that was the first thing i thought. Nope wasn't that. Then i find out that someone put our server in install mode and for some reason that wigged it out. They had to have it rebooted and i just now checked and it works fine agian thank god i put a good amount of time in this haha
 
Heck yeah but im worried that these numerous office updates microsoft was releasing might mangle my code down the road haha.
 
Back
Top