No response when created object OUTLOOK.APPLICATION

M

Martin Couture

I use ASP page with the following code.

<script LANGUAGE="VBScript">

Set objsession = createobject("OUTLOOK.APPLICATION")
Set objNewMail = objsession.CreateItem(olMailItem)

objNewMail.Bcc = "List of recipient variable..."
objNewMail.Subject = ""
objNewMail.Recipients.ResolveAll
objNewMail.Display

window.close

</SCRIPT>

It works fine on many computers but some users can't execute this
page. If I connect using the userid of a person for whom this code
does not works, on another computer on which it works using my UserID,
this code still does not work. I believe that the problem is connected
to the configuration of UserID in NT domain but I do not know what to
look for...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top