Trying to start Outlook from VBA or VBS not working.

Status
Not open for further replies.
T

Trefor

I have the following code in a VBS, but Outlook is not starting. Am I missing

something?

Dim ObjOL

Set ObjOL= GetObject("Outlook.Application")

If Err <> 0 then

Err.Clear

Set ObjOL= CreateObject("Outlook.Application")

End If

I have also tried similar code from VBA and this does not work either and

there are no errors in VBA to give me a clue.

Trefor
 
Do you have any On Error Resume Next statements in your code? I'm surprised

that you did not get some error message if you don't, usually something like

a 429 error (ActiveX cannot create object). Usually this is due to lack of

permissions or some script stopper running. Many A-V products such as Norton

or McAfee have script stoppers like that. If this is due to McAfee then you

can tell it to trust your code, go their support site to find out how. If

it's Norton then you're out of luck unless you disable the script stopper,

Norton doesn't care what you want to do.

"Trefor" <Trefor@home.com> wrote in message

news:D0051806-ACE2-4347-A130-23AF051053D6@microsoft.com...
> I have the following code in a VBS, but Outlook is not starting. Am I
> missing
> something?

> Dim ObjOL
> Set ObjOL= GetObject("Outlook.Application")
> If Err <> 0 then
> Err.Clear
> Set ObjOL= CreateObject("Outlook.Application")
> End If

> I have also tried similar code from VBA and this does not work either and
> there are no errors in VBA to give me a clue.

> > Trefor
 
Ken,

Thanks for the reply. There is nothing wrong with the VBScript running

because other code is running fine.

I replaced: Set ObjOL= CreateObject("Outlook.Application")

with: WshShell.run "Outlook"

and of course:

Dim WshShell

Set WshShell=WScript.CreateObject("WScript.Shell")

and it works fine. Doesn't make sense to me, but it works so I'm happy ;)

Thanks.

Trefor
wrote:


> Do you have any On Error Resume Next statements in your code? I'm surprised
> that you did not get some error message if you don't, usually something like
> a 429 error (ActiveX cannot create object). Usually this is due to lack of
> permissions or some script stopper running. Many A-V products such as Norton
> or McAfee have script stoppers like that. If this is due to McAfee then you
> can tell it to trust your code, go their support site to find out how. If
> it's Norton then you're out of luck unless you disable the script stopper,
> Norton doesn't care what you want to do.

> >

>

> "Trefor" <Trefor@home.com> wrote in message
> news:D0051806-ACE2-4347-A130-23AF051053D6@microsoft.com...
> >I have the following code in a VBS, but Outlook is not starting. Am I
> >missing
> > something?
> > Dim ObjOL
> > Set ObjOL= GetObject("Outlook.Application")
> > If Err <> 0 then
> > Err.Clear
> > Set ObjOL= CreateObject("Outlook.Application")
> > End If
> > I have also tried similar code from VBA and this does not work either and
> > there are no errors in VBA to give me a clue.
> > > > Trefor


>
 
Ken,

I found one of your posts re checking Send/Receive has completed using

Events. I seem to be having having the same issue using "synch.Start" as I

did using CreateObject to start Outlook i.e. it does nothing:

blnFinished = False

Set synch = olNS.SyncObjects.Item(1)

synch.Start

While blnFinished = False

DoEvents

Loop

This works fine for checking if it started ok though????

Set ObjOL= GetObject(, "Outlook.Application")

Trefor

"Trefor" wrote:


> Ken,

> Thanks for the reply. There is nothing wrong with the VBScript running
> because other code is running fine.

> I replaced: Set ObjOL= CreateObject("Outlook.Application")

> with: WshShell.run "Outlook"

> and of course:

> Dim WshShell
> Set WshShell=WScript.CreateObject("WScript.Shell")

> and it works fine. Doesn't make sense to me, but it works so I'm happy ;)

> Thanks.

> > Trefor

> " - " wrote:
>
> > Do you have any On Error Resume Next statements in your code? I'm surprised
> > that you did not get some error message if you don't, usually something like
> > a 429 error (ActiveX cannot create object). Usually this is due to lack of
> > permissions or some script stopper running. Many A-V products such as Norton
> > or McAfee have script stoppers like that. If this is due to McAfee then you
> > can tell it to trust your code, go their support site to find out how. If
> > it's Norton then you're out of luck unless you disable the script stopper,
> > Norton doesn't care what you want to do.
> > > >

> >

> > "Trefor" <Trefor@home.com> wrote in message
> > news:D0051806-ACE2-4347-A130-23AF051053D6@microsoft.com...
> > >I have the following code in a VBS, but Outlook is not starting. Am I
> > >missing
> > > something?
> > > > Dim ObjOL
> > > Set ObjOL= GetObject("Outlook.Application")
> > > If Err <> 0 then
> > > Err.Clear
> > > Set ObjOL= CreateObject("Outlook.Application")
> > > End If
> > > > I have also tried similar code from VBA and this does not work either and
> > > there are no errors in VBA to give me a clue.
> > > > > > > > Trefor

> >
 
Does that synch.Start code have an event handler for the completion of the

synch that would set your blnFinished flag to True? If not that's a nice

endless loop you've set up.

The only reason I can think of for a failure for CreateObject() or New is

that there is some problem with the Outlook installation/registrations or

the aforementioned script stopper.

"Trefor" <Trefor@home.com> wrote in message

news:EF73F395-9789-48C4-A5D9-E2BFB9C3D0C5@microsoft.com...
> Ken,

> I found one of your posts re checking Send/Receive has completed using
> Events. I seem to be having having the same issue using "synch.Start" as I
> did using CreateObject to start Outlook i.e. it does nothing:

> blnFinished = False
> Set synch = olNS.SyncObjects.Item(1)
> synch.Start

> While blnFinished = False
> DoEvents
> Loop

> This works fine for checking if it started ok though????

> Set ObjOL= GetObject(, "Outlook.Application")

> > Trefor
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
e_a_g_l_e_p_i I can't believe what I am seeing when trying to install Outlook 2021 Using Outlook 9
C Trying to move messages between imap accounts/folders Using Outlook 5
J Outlook 2016 Trying to get Outlook 2016 to work with Office 365 Using Outlook 0
U Outlook not responding when trying to print Emails Using Outlook 6
e_a_g_l_e_p_i Trying to customize the ribbon but can't figure this one out Using Outlook 3
B Outlook 2016 Outlook crashes when trying to print certain emails Using Outlook 5
M outlook 365 trying to finish my sentences Using Outlook 2
A Run-time error '430' on certain emails when trying to set "Outlook.mailitem" as "ActiveExplorer.Selection.Item" Outlook VBA and Custom Forms 2
R Error when trying to forward current email item Outlook VBA and Custom Forms 7
X I have met my waterloo trying to resolve embedded graphics problem with outlook 2007 and now 2016 Using Outlook 1
O The page that you are trying to access cannot be loaded. Using Outlook 0
C Trying to populate an appointment ComboBox from Excel Outlook VBA and Custom Forms 2
T Outlook "A program is trying to access Outlook" Using Outlook 3
S SendFromAccount - Problem trying to test existing value in open email Outlook VBA and Custom Forms 2
N Error 0x80090326 when trying to setup IMAP account on Outlook.com Using Outlook.com accounts in Outlook 1
KURTiS MAXiMUS Trying to appactivate ERP window Outlook VBA and Custom Forms 16
R Trying to extract information between two symbols from outlook subject Using Outlook 2
Danie Lawson Trying to recover calendar Using Outlook 4
L Trying to open contacts pst. file in outlook 365 Using Outlook 3
L Trying to check for the absence of mail. Outlook VBA and Custom Forms 1
M trying to disable junk email filter. completely. Using Outlook 4
D Trying to repair Outlook rules Using Outlook 5
S Outlook 2010 trying to default Data file to outlook.com calendar Using Outlook 6
C Trying to move my Business Contact Manager ver. 2003 to BCM ver. 2010 Using Outlook 3
R Trying to sync my Outlook email on iphone Using Outlook 1
A outlook trying to keep sending Using Outlook 1
P Trying to add subject and name to an email using VB Code Using Outlook 3
B Trying to get old emails from a not working computer but having trouble. Using Outlook 6
P Outlook works, but freezes when trying to use calender v2007 (vista prof) Using Outlook 1
K A program is trying to send an e-mail message on your behalf... Using Outlook 1
P Trying to get 'Calendar Name' to appear like 'Subject' and 'Location' in event Using Outlook 0
S Trying to have a prompt to ask for text to be added to subject before sending. Using Outlook 3
A Trying to connect to exchange Exchange Server Administration 3
K Wont send or recieve now with new server keeps asking for password when trying Using Outlook 1
D Outlook "Trying to Connect" Exchange Server Administration 1
P Word experienced and error trying to open the file Using Outlook 2
S Trying to install BCM 2010 x64, getting error BCM (Business Contact Manager) 8
D Outlook 2003 - A program is trying to access e-mail addresses Outlook VBA and Custom Forms 5
S Trying to create a UPS from Outlook VBA and Custom Forms 2
S how to disable security message in save attachments macro "A programis trying to access e-mail addre Outlook VBA and Custom Forms 5
A Error: 3033 when trying to OpenDatabase using DAO Outlook VBA and Custom Forms 3
U Recovered PST file "Cannot move item" error when trying to move e- Using Outlook 6
D Error trying to connect to database on the server BCM (Business Contact Manager) 1
D Trying to reconnect BCM databases in Outlook 2003 BCM (Business Contact Manager) 1
Fozzie Bear Calendar Events created on iPhone have suddenly start sending invitations to attendees Using Outlook 2
D Unable to change AppointmentItem.Start property Outlook VBA and Custom Forms 3
R unable to filter tasks when start date is on or before today Using Outlook 3
O Outlook 365 - Gmail and Outlook: how to force Outlook to start up in Gmail? Using Outlook 2
S Change "This Week" flag start date behavior Using Outlook 1
Witzker HowTo start a macro with an Button in OL contact form Outlook VBA and Custom Forms 12

Similar threads

Back
Top