Outlook 2003 Custom Form Error Handling

Status
Not open for further replies.
T

TWF1aTgw

I would like to include some error handling in my VBScript on my custom form.

I've tried the On Error GoTo statement, but I keep getting a Syntax Error.

Then I've tried

On Error Resume Next

> ... code to check ...

If Err <> 0 Then

> ... do stuff

End If

But my error catching code does not seem to execute (I'm pretty sure my code

to check has a runtime error in it)

Basically, I have the following procedure call in one of my events:

Item.GetInspector ...

I know that it fails sometimes. I'd like to catch the error if my statement

fails and handle it.

Any suggestions?

Thanks in advance!
 
VBScript does not support On Error GoTo. What you're doing with On Error

Resume Next and Err <> 0 is a good approach.

Item.GetInspector should never fail in a custom form. But if you're worried

that it might, this is the way to handle it:

On Error Resume Next

Set insp = Item.GetInspector

If insp Is Nothing Then

' there is no Inspector

Else

' do something with insp

End If

Sue Mosher

"Maui80" <Maui80> wrote in message

news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> I would like to include some error handling in my VBScript on my custom
> form.
> I've tried the On Error GoTo statement, but I keep getting a Syntax Error.
> Then I've tried
> On Error Resume Next
> ... code to check ...
> If Err <> 0 Then
> ... do stuff
> End If
> But my error catching code does not seem to execute (I'm pretty sure my
> code
> to check has a runtime error in it)

> Basically, I have the following procedure call in one of my events:
> Item.GetInspector ...
> I know that it fails sometimes. I'd like to catch the error if my
> statement
> fails and handle it.

> Any suggestions?
> Thanks in advance!
 
Thank you so much for your quick reply. Your answer was helpful in helping me

find that I might be on the wrong track in finding the source of my problem.

the Item.GetInspector line is in my custom appointment form. When I allow

scripts to run on shared calendars and then I use my custom form to book a

resource, the resource that autoaccepts my invitiation shows a blank body of

the message. (This doesn't happen when 'allow scripts to run on shared

calendars' is disabled.)

When I remove that Item.GetInspector line, I'm finding that the body of my

appointment message is there fine.

That's why I thought perhaps the form class changes to something else in the

resource calendar response and GetInspector object would not exist...

I've been trying to figure this out on an off for weeks now - Do you have

any ideas?

thanks again for your last response!

"Sue Mosher [MVP]" wrote:


> VBScript does not support On Error GoTo. What you're doing with On Error
> Resume Next and Err <> 0 is a good approach.

> Item.GetInspector should never fail in a custom form. But if you're worried
> that it might, this is the way to handle it:

> On Error Resume Next
> Set insp = Item.GetInspector
> If insp Is Nothing Then
> ' there is no Inspector
> Else
> ' do something with insp
> End If

> > Sue Mosher
> > >

> "Maui80" <Maui80> wrote in message
> news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> >I would like to include some error handling in my VBScript on my custom
> >form.
> > I've tried the On Error GoTo statement, but I keep getting a Syntax Error.
> > Then I've tried
> > On Error Resume Next
> > ... code to check ...
> > If Err <> 0 Then
> > ... do stuff
> > End If
> > But my error catching code does not seem to execute (I'm pretty sure my
> > code
> > to check has a runtime error in it)
> > Basically, I have the following procedure call in one of my events:
> > Item.GetInspector ...
> > I know that it fails sometimes. I'd like to catch the error if my
> > statement
> > fails and handle it.
> > Any suggestions?
> > Thanks in advance!


>
 
Also, I marked your answer as 'Yes' it helped because it was the right

response to my question. However, I'm still hoping someone will help me with

my bigger problem. Should I repost as a new question? Thanks!

"Sue Mosher [MVP]" wrote:


> VBScript does not support On Error GoTo. What you're doing with On Error
> Resume Next and Err <> 0 is a good approach.

> Item.GetInspector should never fail in a custom form. But if you're worried
> that it might, this is the way to handle it:

> On Error Resume Next
> Set insp = Item.GetInspector
> If insp Is Nothing Then
> ' there is no Inspector
> Else
> ' do something with insp
> End If

> > Sue Mosher
> > >

> "Maui80" <Maui80> wrote in message
> news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> >I would like to include some error handling in my VBScript on my custom
> >form.
> > I've tried the On Error GoTo statement, but I keep getting a Syntax Error.
> > Then I've tried
> > On Error Resume Next
> > ... code to check ...
> > If Err <> 0 Then
> > ... do stuff
> > End If
> > But my error catching code does not seem to execute (I'm pretty sure my
> > code
> > to check has a runtime error in it)
> > Basically, I have the following procedure call in one of my events:
> > Item.GetInspector ...
> > I know that it fails sometimes. I'd like to catch the error if my
> > statement
> > fails and handle it.
> > Any suggestions?
> > Thanks in advance!


>
 
Oh and I forgot to add, my Item.GetInspector is in the event

Sub Item_CustomPropertyChange(ByVal Name)

"Maui80" wrote:


> Thank you so much for your quick reply. Your answer was helpful in helping me
> find that I might be on the wrong track in finding the source of my problem.

> the Item.GetInspector line is in my custom appointment form. When I allow
> scripts to run on shared calendars and then I use my custom form to book a
> resource, the resource that autoaccepts my invitiation shows a blank body of
> the message. (This doesn't happen when 'allow scripts to run on shared
> calendars' is disabled.)

> When I remove that Item.GetInspector line, I'm finding that the body of my
> appointment message is there fine.

> That's why I thought perhaps the form class changes to something else in the
> resource calendar response and GetInspector object would not exist...

> I've been trying to figure this out on an off for weeks now - Do you have
> any ideas?

> thanks again for your last response!

> "Sue Mosher [MVP]" wrote:
>
> > VBScript does not support On Error GoTo. What you're doing with On Error
> > Resume Next and Err <> 0 is a good approach.
> > Item.GetInspector should never fail in a custom form. But if you're worried
> > that it might, this is the way to handle it:
> > On Error Resume Next
> > Set insp = Item.GetInspector
> > If insp Is Nothing Then
> > ' there is no Inspector
> > Else
> > ' do something with insp
> > End If
> > > > Sue Mosher
> > > > > > > > "Maui80" <Maui80> wrote in message
> > news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> > >I would like to include some error handling in my VBScript on my custom
> > >form.
> > > I've tried the On Error GoTo statement, but I keep getting a Syntax Error.
> > > Then I've tried
> > > On Error Resume Next
> > > ... code to check ...
> > > If Err <> 0 Then
> > > ... do stuff
> > > End If
> > > But my error catching code does not seem to execute (I'm pretty sure my
> > > code
> > > to check has a runtime error in it)
> > > > Basically, I have the following procedure call in one of my events:
> > > Item.GetInspector ...
> > > I know that it fails sometimes. I'd like to catch the error if my
> > > statement
> > > fails and handle it.
> > > > Any suggestions?
> > > Thanks in advance!

> >
 
What are you seeking to do with the Inspector? What exactly do you mean by

"shows a blank body"? In code? In the UI?

Sue Mosher

"Maui80" <Maui80> wrote in message

news:D13C5351-8319-4EB2-B0C1-7A1E49555827@microsoft.com...
> Thank you so much for your quick reply. Your answer was helpful in helping
> me
> find that I might be on the wrong track in finding the source of my
> problem.

> the Item.GetInspector line is in my custom appointment form. When I allow
> scripts to run on shared calendars and then I use my custom form to book a
> resource, the resource that autoaccepts my invitiation shows a blank body
> of
> the message. (This doesn't happen when 'allow scripts to run on shared
> calendars' is disabled.)

> When I remove that Item.GetInspector line, I'm finding that the body of my
> appointment message is there fine.

> That's why I thought perhaps the form class changes to something else in
> the
> resource calendar response and GetInspector object would not exist...

> I've been trying to figure this out on an off for weeks now - Do you have
> any ideas?

> thanks again for your last response!

> "Sue Mosher [MVP]" wrote:
>
> > VBScript does not support On Error GoTo. What you're doing with On Error
> > Resume Next and Err <> 0 is a good approach.
>

>> Item.GetInspector should never fail in a custom form. But if you're
> > worried
> > that it might, this is the way to handle it:
>

>> On Error Resume Next
> > Set insp = Item.GetInspector
> > If insp Is Nothing Then
> > ' there is no Inspector
> > Else
> > ' do something with insp
> > End If
>

>> "Maui80" <Maui80> wrote in message
> > news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> > >I would like to include some error handling in my VBScript on my custom
> > >form.
> > > I've tried the On Error GoTo statement, but I keep getting a Syntax
> > > Error.
> > > Then I've tried
> > > On Error Resume Next
> > > ... code to check ...
> > > If Err <> 0 Then
> > > ... do stuff
> > > End If
> > > But my error catching code does not seem to execute (I'm pretty sure my
> > > code
> > > to check has a runtime error in it)
> >> > Basically, I have the following procedure call in one of my events:
> > > Item.GetInspector ...
> > > I know that it fails sometimes. I'd like to catch the error if my
> > > statement
> > > fails and handle it.
> >> > Any suggestions?
> > > Thanks in advance!

>

>
>>
 
I have a custom tab on my appointment form. In it, I have a check box that

when the user checks or unchecks, it shows/hides a frame.

Sub Item_CustomPropertyChange(ByVal Name)

Select Case Name

Case "IsTrue"

Set oPage = Item.GetInspector.ModifiedFormPages

Set oCntrl = oPage("My Tab Name").Controls("My Control")

oCntrl.Visible = Item.UserProperties.Find("IsTrue").Value

Case "Etc"

> ...

End Select

End Sub

And when I mean 'blank body', I'm referring to the UI. In other words, the

message of the body is no longer there. I see the message body fine in my

calendar, but when I look at the calendar event in the resource calendar,

there is no message body.

In another post I made, the MVP suggested that when a user reply's, another

message class is used - IPM.Schedule.Meeting.Resp, and I would have to run

code to capture that item. So I tried checking if the

Item.MessageClass <> "IPM.Appointment.MyAppointment"

but that didn't help either...

"Sue Mosher [MVP]" wrote:


> What are you seeking to do with the Inspector? What exactly do you mean by
> "shows a blank body"? In code? In the UI?

> > Sue Mosher
> > >

> "Maui80" <Maui80> wrote in message
> news:D13C5351-8319-4EB2-B0C1-7A1E49555827@microsoft.com...
> > Thank you so much for your quick reply. Your answer was helpful in helping
> > me
> > find that I might be on the wrong track in finding the source of my
> > problem.
> > the Item.GetInspector line is in my custom appointment form. When I allow
> > scripts to run on shared calendars and then I use my custom form to book a
> > resource, the resource that autoaccepts my invitiation shows a blank body
> > of
> > the message. (This doesn't happen when 'allow scripts to run on shared
> > calendars' is disabled.)
> > When I remove that Item.GetInspector line, I'm finding that the body of my
> > appointment message is there fine.
> > That's why I thought perhaps the form class changes to something else in
> > the
> > resource calendar response and GetInspector object would not exist...
> > I've been trying to figure this out on an off for weeks now - Do you have
> > any ideas?
> > thanks again for your last response!
> > "Sue Mosher [MVP]" wrote:
> >
> >> VBScript does not support On Error GoTo. What you're doing with On Error
> >> Resume Next and Err <> 0 is a good approach.
> >
> >> Item.GetInspector should never fail in a custom form. But if you're
> >> worried
> >> that it might, this is the way to handle it:
> >
> >> On Error Resume Next
> >> Set insp = Item.GetInspector
> >> If insp Is Nothing Then
> >> ' there is no Inspector
> >> Else
> >> ' do something with insp
> >> End If
> >
> >> "Maui80" <Maui80> wrote in message
> >> news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> >> >I would like to include some error handling in my VBScript on my custom
> >> >form.
> >> > I've tried the On Error GoTo statement, but I keep getting a Syntax
> >> > Error.
> >> > Then I've tried
> >> > On Error Resume Next
> >> > ... code to check ...
> >> > If Err <> 0 Then
> >> > ... do stuff
> >> > End If
> >> > But my error catching code does not seem to execute (I'm pretty sure my
> >> > code
> >> > to check has a runtime error in it)
> >> >> > Basically, I have the following procedure call in one of my events:
> >> > Item.GetInspector ...
> >> > I know that it fails sometimes. I'd like to catch the error if my
> >> > statement
> >> > fails and handle it.
> >> >> > Any suggestions?
> >> > Thanks in advance!
> >
> >
> >>


>
 
I'm still not clear on what you're doing. Is the user working with a check

box on an appointment in the Calendar folder or on a meeting request in the

Inbox?

I can't think of any reason why GetInspector would affect the item body. Is

there any code behind the form that touches the Body property?

Also, you said you have a resource calendar that autoaccepts invitations. If

this an autoaccept script, have you looked at its code? If it's Exchange

2007, is the resource calendar configured not to store appointment details?

(That's an option in 2007.)

Sue Mosher

"Maui80" <Maui80> wrote in message

news:0A6194FF-01B4-4CD6-9799-71FE7EE564C1@microsoft.com...
> I have a custom tab on my appointment form. In it, I have a check box that
> when the user checks or unchecks, it shows/hides a frame.

> Sub Item_CustomPropertyChange(ByVal Name)
> Select Case Name
> Case "IsTrue"
> Set oPage = Item.GetInspector.ModifiedFormPages
> Set oCntrl = oPage("My Tab Name").Controls("My Control")
> oCntrl.Visible = Item.UserProperties.Find("IsTrue").Value
> Case "Etc"
> ...
> End Select
> End Sub

> And when I mean 'blank body', I'm referring to the UI. In other words, the
> message of the body is no longer there. I see the message body fine in my
> calendar, but when I look at the calendar event in the resource calendar,
> there is no message body.

> In another post I made, the MVP suggested that when a user reply's,
> another
> message class is used - IPM.Schedule.Meeting.Resp, and I would have to
> run
> code to capture that item. So I tried checking if the

> Item.MessageClass <> "IPM.Appointment.MyAppointment"

> but that didn't help either...

> "Sue Mosher [MVP]" wrote:
>
> > What are you seeking to do with the Inspector? What exactly do you mean
> > by
> > "shows a blank body"? In code? In the UI?
>

>
>> "Maui80" <Maui80> wrote in message
> > news:D13C5351-8319-4EB2-B0C1-7A1E49555827@microsoft.com...
> > > Thank you so much for your quick reply. Your answer was helpful in
> > > helping
> > > me
> > > find that I might be on the wrong track in finding the source of my
> > > problem.
> >> > the Item.GetInspector line is in my custom appointment form. When I
> > > allow
> > > scripts to run on shared calendars and then I use my custom form to
> > > book a
> > > resource, the resource that autoaccepts my invitiation shows a blank
> > > body
> > > of
> > > the message. (This doesn't happen when 'allow scripts to run on shared
> > > calendars' is disabled.)
> >> > When I remove that Item.GetInspector line, I'm finding that the body of
> > > my
> > > appointment message is there fine.
> >> > That's why I thought perhaps the form class changes to something else
> > > in
> > > the
> > > resource calendar response and GetInspector object would not exist...
> >> > I've been trying to figure this out on an off for weeks now - Do you
> > > have
> > > any ideas?
> >> > thanks again for your last response!
> >> > "Sue Mosher [MVP]" wrote:
> >> >> VBScript does not support On Error GoTo. What you're doing with On
> > >> Error
> > >> Resume Next and Err <> 0 is a good approach.
> > >
>> >> Item.GetInspector should never fail in a custom form. But if you're
> > >> worried
> > >> that it might, this is the way to handle it:
> > >
>> >> On Error Resume Next
> > >> Set insp = Item.GetInspector
> > >> If insp Is Nothing Then
> > >> ' there is no Inspector
> > >> Else
> > >> ' do something with insp
> > >> End If
> > >
>> >> "Maui80" <Maui80> wrote in message
> > >> news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> > >> >I would like to include some error handling in my VBScript on my
> > >> >custom
> > >> >form.
> > >> > I've tried the On Error GoTo statement, but I keep getting a Syntax
> > >> > Error.
> > >> > Then I've tried
> > >> > On Error Resume Next
> > >> > ... code to check ...
> > >> > If Err <> 0 Then
> > >> > ... do stuff
> > >> > End If
> > >> > But my error catching code does not seem to execute (I'm pretty sure
> > >> > my
> > >> > code
> > >> > to check has a runtime error in it)
> > >>> >> > Basically, I have the following procedure call in one of my events:
> > >> > Item.GetInspector ...
> > >> > I know that it fails sometimes. I'd like to catch the error if my
> > >> > statement
> > >> > fails and handle it.
 
My custom form is a custom appointment form, so they are working with

appointments off the Calendar.

Yes, I am adding stuff to the Body property. To test, I decided to remove

all my code (so that it still works) that alters Item.Body. The behavior is

still the same - the message body is gone. Only when I remove that

Item.GetInspector code when the body of the message stays intact.

And yes, the resource calendar is set to autoaccept - but this is not using

a custom script. We're using Outlook 2003 on Exchange 2003 and are not even

using auto-accept agent. The way we set up our resource calendar was from

Tools > Options > Preferences (Tab) > Calendar Options (Button) > Resource

Scheduling (Button) > Automatically accept meeting requests... (option

checked). No extra bells and/or whistles. Perhaps Outlook 2003 has some

scripts running for that I don't know about?

It is still very strange that this behavior happens only when 'Allow Scripts

to Run on Shared Calendars' is checked.

Thanks for your patience.

"Sue Mosher [MVP]" wrote:


> I'm still not clear on what you're doing. Is the user working with a check
> box on an appointment in the Calendar folder or on a meeting request in the
> Inbox?

> I can't think of any reason why GetInspector would affect the item body. Is
> there any code behind the form that touches the Body property?

> Also, you said you have a resource calendar that autoaccepts invitations. If
> this an autoaccept script, have you looked at its code? If it's Exchange
> 2007, is the resource calendar configured not to store appointment details?
> (That's an option in 2007.)

> > Sue Mosher
> > >

> "Maui80" <Maui80> wrote in message
> news:0A6194FF-01B4-4CD6-9799-71FE7EE564C1@microsoft.com...
> >I have a custom tab on my appointment form. In it, I have a check box that
> > when the user checks or unchecks, it shows/hides a frame.
> > Sub Item_CustomPropertyChange(ByVal Name)
> > Select Case Name
> > Case "IsTrue"
> > Set oPage = Item.GetInspector.ModifiedFormPages
> > Set oCntrl = oPage("My Tab Name").Controls("My Control")
> > oCntrl.Visible = Item.UserProperties.Find("IsTrue").Value
> > Case "Etc"
> > ...
> > End Select
> > End Sub
> > And when I mean 'blank body', I'm referring to the UI. In other words, the
> > message of the body is no longer there. I see the message body fine in my
> > calendar, but when I look at the calendar event in the resource calendar,
> > there is no message body.
> > In another post I made, the MVP suggested that when a user reply's,
> > another
> > message class is used - IPM.Schedule.Meeting.Resp, and I would have to
> > run
> > code to capture that item. So I tried checking if the
> > Item.MessageClass <> "IPM.Appointment.MyAppointment"
> > but that didn't help either...
> > "Sue Mosher [MVP]" wrote:
> >
> >> What are you seeking to do with the Inspector? What exactly do you mean
> >> by
> >> "shows a blank body"? In code? In the UI?
> >
> >
> >> "Maui80" <Maui80> wrote in message
> >> news:D13C5351-8319-4EB2-B0C1-7A1E49555827@microsoft.com...
> >> > Thank you so much for your quick reply. Your answer was helpful in
> >> > helping
> >> > me
> >> > find that I might be on the wrong track in finding the source of my
> >> > problem.
> >> >> > the Item.GetInspector line is in my custom appointment form. When I
> >> > allow
> >> > scripts to run on shared calendars and then I use my custom form to
> >> > book a
> >> > resource, the resource that autoaccepts my invitiation shows a blank
> >> > body
> >> > of
> >> > the message. (This doesn't happen when 'allow scripts to run on shared
> >> > calendars' is disabled.)
> >> >> > When I remove that Item.GetInspector line, I'm finding that the body of
> >> > my
> >> > appointment message is there fine.
> >> >> > That's why I thought perhaps the form class changes to something else
> >> > in
> >> > the
> >> > resource calendar response and GetInspector object would not exist...
> >> >> > I've been trying to figure this out on an off for weeks now - Do you
> >> > have
> >> > any ideas?
> >> >> > thanks again for your last response!
> >> >> > "Sue Mosher [MVP]" wrote:
> >> >> >> VBScript does not support On Error GoTo. What you're doing with On
> >> >> Error
> >> >> Resume Next and Err <> 0 is a good approach.
> >> >
> >> >> Item.GetInspector should never fail in a custom form. But if you're
> >> >> worried
> >> >> that it might, this is the way to handle it:
> >> >
> >> >> On Error Resume Next
> >> >> Set insp = Item.GetInspector
> >> >> If insp Is Nothing Then
> >> >> ' there is no Inspector
> >> >> Else
> >> >> ' do something with insp
> >> >> End If
> >> >
> >> >> "Maui80" <Maui80> wrote in message
> >> >> news:F846532B-BD9C-4169-9EC3-68B7A349C41C@microsoft.com...
> >> >> >I would like to include some error handling in my VBScript on my
> >> >> >custom
> >> >> >form.
> >> >> > I've tried the On Error GoTo statement, but I keep getting a Syntax
> >> >> > Error.
> >> >> > Then I've tried
> >> >> > On Error Resume Next
> >> >> > ... code to check ...
> >> >> > If Err <> 0 Then
> >> >> > ... do stuff
> >> >> > End If
> >> >> > But my error catching code does not seem to execute (I'm pretty sure
> >> >> > my
> >> >> > code
> >> >> > to check has a runtime error in it)
> >> >> >> >> > Basically, I have the following procedure call in one of my events:
> >> >> > Item.GetInspector ...
> >> >> > I know that it fails sometimes. I'd like to catch the error if my
> >> >> > statement
> >> >> > fails and handle it.


>
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
H Custom Contact form not working in Outlook 2003 Using Outlook 3
O Outlook custom forms (2003) Using Outlook 5
Y custom search outlook 2003 Outlook VBA and Custom Forms 1
D Outlook 2003 custom form not viewable by receiver Outlook VBA and Custom Forms 11
L Custom Form (Outlook 2003 and Exchange 2003) Outlook VBA and Custom Forms 6
N Custom Contact Form in Outlook 2003 Outlook VBA and Custom Forms 1
J Outlook 2007 using custom form created for Outlook 2003 Outlook VBA and Custom Forms 2
B Outlook 2007 Custom Form does not display in 2003 Outlook VBA and Custom Forms 3
D Wishlist How to use 'app password' in Outlook 2003 after Google pulled plug on "less secure apps" Using Outlook 2
J Outlook 2003 .pst Will Not Restore Completely to Outlook 2019 Using Outlook 5
D Outlook 2003 Mail Fails Using Outlook 1
D Wrong email address in Outlook 2003 "From" tab in new outgoing emails Using Outlook 4
V Outlook 2003 and Windows 11 Using Outlook 4
glnz Moving from Outlook 2003 to MS365 Outlook - need basics Using Outlook 4
I Outlook 2003 shows html code when To: field is empty Using Outlook 7
B Outlook 2003 email sending & receiving suddenly stopped working Using Outlook 3
H Outlook 2003 find by "has attachment" Using Outlook 1
glnz How set up new IMAP on Outlook-Office 365 and merge in pst from Outlook 2003 for same two email accounts? Using Outlook 5
P Import Categories from Outlook 2003 Using Outlook 8
V Outlook 2003 problem with Windows 10 Creators Update 1709 Using Outlook 0
M Outlook 2003 pictures - some visible, some not Using Outlook 0
S Outlook 2003 to Outlook 2013 pst file Using Outlook 5
O Memory Leak in Outlook 2003 Using Outlook 3
W Changing looks of emails in Outlook 2003 Using Outlook 0
O Outlook 2003 can't send, but settings seem OK Using Outlook 1
P URL Hyperlink not working correctly in Outlook 2003 Using Outlook 10
O Outlook 2003 can't open contacts. Using Outlook 2
O Promoting Outlook 2003 User Templates Using Outlook 1
O W-a-a-y too many PSTs (Outlook 2003) Using Outlook 0
J Outlook 2003-2010 PST Field Editor Using Outlook 1
P Outlook 2003 - Do I need a new profile? Using Outlook 2
E Want to Import Outlook 2003 pst files to later version Using Outlook 6
A error message outlook 2003 Using Outlook 1
B Seeking advice now Outlook 2003 is unsupported by Exchange Using Outlook 4
O Change Debit to Credit in Outlook 2003? Using Outlook 1
J problems downloading POP3 emails to Outlook 2003 Using Outlook 1
G Outlook 2003 VBA Won't Run In Outlook 2010 Outlook VBA and Custom Forms 4
P Outlook 2003 - possible to recreate corrupt account? Using Outlook 3
Calvyn Outlook 2003 cannot import .vcs subject Using Outlook 1
T Query about one aspect of migrating .pst files from Outlook 2003 to Outlook 2013 Using Outlook 5
C Outlook 2003 contacts Using Outlook 1
G Configuring Outlook 2003 for Gmail with both pop3 & imap4 accounts Using Outlook 1
M HELP--Extract Data from 2003 outlook transfer to excel spreadsheet Using Outlook 1
V Outlook 2003 editing problem Using Outlook 4
X Outlook 2003 not sending all of the new email message Using Outlook 1
2 How to use outlook 2003 calendar in always offline mode Using Outlook 0
G Outlook 2003 I need to move email to folder based on subject, using wild card Using Outlook 0
G outlook 2013 - Open In Outlook 2003 Using Outlook 1
A Exchange 2003 Outlook 2010 64 Bit- AutoDiscover Connection Err - Certificate Exchange Server Administration 9
T Use Outlook 2003 with Office 2013 Using Outlook 1

Similar threads

Back
Top