Problem in permanent type add-in toolbar

Status
Not open for further replies.
P

paresh

Hi, I have been facing a issue with dealing with my add-in toolbar. I want to

make my toolbar permanent so that use can hide and reposition it

permanently(even after restarting Outlook). At the same time, I want to

support my add-in toolbar for all opened Outlook explorer.

I want to make sure that at any point of time there must be one and only one

toolbar on any Outlook window. I have tried below methods but none worked:

1. Tried deleting toolbar on shutdown. This doesn't delete the toolbar and

each restarting outlook adds new toolbar.

Private Sub AddinInstance_OnBeginShutdown(custom() As Variant)

MyCommandBar.Delete

End Sub

Private Sub AddinInstance_Terminate()

MyCommandBar.Delete

End Sub

2. I tried deleting toolbar on Explorer close event but didn't work.

Whenever I open Outlook folder by right clicking it and selecting "Open in

new window", it keep adding new toolbar but does't delete.

Private Sub myExpl_Close()

MyCommandBar.Delete

If out_appt.Explorers.Count < 1 Then

Set myExpl = Nothing

Set myColExpl = Nothing

End If

End Sub

3. Tried checking existence of toolbar but this will not add toolbar when I

right click on outlook folder and open in new window.

Set MyCommandBar = myExpl.CommandBars.Item(TOOLBARNAME)

If Not MyCommandBar Is Nothing Then

MsgBox "exists"

Exit Sub

End If

Could anyone please help me here. I think if I can do any of below then I

would all set here:

1. Delete existing toolbar while closing explorer event

2. Check the existing of toolbar explorer wise. Though I am setting

myExpl to currently active explorer, my code always returns true for

"myExpl.CommandBars.Item(TOOLBARNAME)" whenever I open outlook folder in new

window.

Thanks.

=== MY CODE ===

Option Explicit

Public out_appt As Outlook.Application

Public WithEvents MyButton As Office.CommandBarButton

Public MyCommandBar As Office.CommandBar

Public WithEvents myColExpl As Outlook.Explorers

Public WithEvents myExpl As Outlook.Explorer

Private Sub AddinInstance_OnConnection(ByVal Application As Object, _

ByVal ConnectMode As AddInDesignerObjects.ext_ConnectMode, _

ByVal AddInInst As Object, custom() As Variant)

Set out_appt = Application

End Sub

Private Sub AddinInstance_OnStartupComplete(custom() As Variant)

Set myColExpl = out_appt.Explorers

If out_appt.Explorers.Count > 0 Then

Call CreateToolBar

End If

Exit Sub

End Sub

Private Sub myColExpl_NewExplorer(ByVal Explorer As Outlook.Explorer)

If myExpl Is Nothing Then

Set myExpl = Explorer

End If

If out_appt.Explorers.Count > 0 Then

Call CreateToolBar

End If

End Sub

Private Sub myExpl_Close()

MyCommandBar.Delete

If out_appt.Explorers.Count < 1 Then

Set myExpl = Nothing

Set myColExpl = Nothing

End If

End Sub

Private Sub MyButton_Click(ByVal Ctrl As Office.CommandBarButton,

CancelDefault As Boolean)

On Error Resume Next

MsgBox "button clicked"

End Sub

Private Sub CreateToolBar()

If out_appt.Explorers.Count = 0 Then

Exit Sub

End If

Set myExpl = out_appt.ActiveExplorer

Const TOOLBARNAME = "My Toolbar"

' Set MyCommandBar = myExpl.CommandBars.Item(TOOLBARNAME)

' If Not MyCommandBar Is Nothing Then

' MsgBox "exists"

' Exit Sub

' End If

'

Set MyCommandBar = myExpl.CommandBars.Add(TOOLBARNAME, msoBarTop, False,

False)

Set MyButton = MyCommandBar.Controls.Add(msoControlButton, , "890", ,

False)

With MyButton

> Caption = "&Foo Button"

> Enabled = True

> OnAction = "!<PermToolbarTesting.Connect>"

> Tag = "890"

> FaceId = 362

> Style = 3

> Visible = True

End With

MyCommandBar.Visible = True

End Sub
 
I'll answer this one. Don't make your UI permanent. That would leave it

there even if your addin isn't running or even if it's uninstalled. Always

add any UI you add as temporary.

You should be using different Explorer objects for each open Explorer in the

Explorers collection. You add an Explorer class wrapper to a collection when

a new Explorer is opened and remove it when it is closed. You do that in

Explorers.NewExplorer(). The wrapper class should declare any Explorer

events you intend to handle as well as your CommandBarButton events and

declarations for your UI and any folder events.

When you add an Explorer to your wrapper collection you then add the UI in

the first Explorer.Activate() event. For an initial Explorer you bypass

that. You hold a key value that's an index into the collection for each open

Explorer. You add that to a Tag value to get a unique Tag value for each

menu/toolbar/button. That way you can identify each one and get unique

clicks for each.

You can download a template project in VB6 that shows how to work with

wrapper classes like that from

http://www.slovaktech.com/outlook_2007_templates.htm, it is set up for

Outlook 2007 use with VB6.

"paresh" <paresh> wrote in message

news:9ADF7445-9157-41EC-AD5C-FD66C820F667@microsoft.com...
> Hi, I have been facing a issue with dealing with my add-in toolbar. I want
> to
> make my toolbar permanent so that use can hide and reposition it
> permanently(even after restarting Outlook). At the same time, I want to
> support my add-in toolbar for all opened Outlook explorer.

> I want to make sure that at any point of time there must be one and only
> one
> toolbar on any Outlook window. I have tried below methods but none worked:

> 1. Tried deleting toolbar on shutdown. This doesn't delete the toolbar
> and
> each restarting outlook adds new toolbar.

> Private Sub AddinInstance_OnBeginShutdown(custom() As Variant)
> MyCommandBar.Delete
> End Sub

> Private Sub AddinInstance_Terminate()
> MyCommandBar.Delete
> End Sub

> 2. I tried deleting toolbar on Explorer close event but didn't work.
> Whenever I open Outlook folder by right clicking it and selecting "Open in
> new window", it keep adding new toolbar but does't delete.

> Private Sub myExpl_Close()
> MyCommandBar.Delete
> If out_appt.Explorers.Count < 1 Then
> Set myExpl = Nothing
> Set myColExpl = Nothing
> End If
> End Sub

> 3. Tried checking existence of toolbar but this will not add toolbar when
> I
> right click on outlook folder and open in new window.

> Set MyCommandBar = myExpl.CommandBars.Item(TOOLBARNAME)
> If Not MyCommandBar Is Nothing Then
> MsgBox "exists"
> Exit Sub
> End If

> Could anyone please help me here. I think if I can do any of below then I
> would all set here:
> 1. Delete existing toolbar while closing explorer event
> 2. Check the existing of toolbar explorer wise. Though I am setting
> myExpl to currently active explorer, my code always returns true for
> "myExpl.CommandBars.Item(TOOLBARNAME)" whenever I open outlook folder in
> new
> window.

> Thanks.

> === MY CODE ===

> Option Explicit
> Public out_appt As Outlook.Application
> Public WithEvents MyButton As Office.CommandBarButton
> Public MyCommandBar As Office.CommandBar
> Public WithEvents myColExpl As Outlook.Explorers
> Public WithEvents myExpl As Outlook.Explorer
> Private Sub AddinInstance_OnConnection(ByVal Application As Object, _
> ByVal ConnectMode As AddInDesignerObjects.ext_ConnectMode, _
> ByVal AddInInst As Object, custom() As Variant)
> Set out_appt = Application
> End Sub
> Private Sub AddinInstance_OnStartupComplete(custom() As Variant)
> Set myColExpl = out_appt.Explorers
> If out_appt.Explorers.Count > 0 Then
> Call CreateToolBar
> End If
> Exit Sub
> End Sub
> Private Sub myColExpl_NewExplorer(ByVal Explorer As Outlook.Explorer)
> If myExpl Is Nothing Then
> Set myExpl = Explorer
> End If
> If out_appt.Explorers.Count > 0 Then
> Call CreateToolBar
> End If
> End Sub
> Private Sub myExpl_Close()
> MyCommandBar.Delete
> If out_appt.Explorers.Count < 1 Then
> Set myExpl = Nothing
> Set myColExpl = Nothing
> End If
> End Sub
> Private Sub MyButton_Click(ByVal Ctrl As Office.CommandBarButton,
> CancelDefault As Boolean)
> On Error Resume Next
> MsgBox "button clicked"
> End Sub
> Private Sub CreateToolBar()
> If out_appt.Explorers.Count = 0 Then
> Exit Sub
> End If
> Set myExpl = out_appt.ActiveExplorer
> Const TOOLBARNAME = "My Toolbar"

> ' Set MyCommandBar = myExpl.CommandBars.Item(TOOLBARNAME)
> ' If Not MyCommandBar Is Nothing Then
> ' MsgBox "exists"
> ' Exit Sub
> ' End If
> '
> Set MyCommandBar = myExpl.CommandBars.Add(TOOLBARNAME, msoBarTop,
> False,
> False)
> Set MyButton = MyCommandBar.Controls.Add(msoControlButton, , "890", ,
> False)
> With MyButton
> .Caption = "&Foo Button"
> .Enabled = True
> .OnAction = "!<PermToolbarTesting.Connect>"
> .Tag = "890"
> .FaceId = 362
> .Style = 3
> .Visible = True
> End With
> MyCommandBar.Visible = True
> End Sub
>
 
Thanks Ken but I think it is very complected way for me till I am acquainted

with it. I am also not sure if you distinguished all explorer using objects

then you can share the values you have loaded during startup.

I have came out with the very simple code that meets my all requirements.

Could you please tell me if there is anything wrong? It creates the toolbar

on new explorer event for any new Outlook window and seem to be working fine.

=== MY CODE ====

Option Explicit

Public out_App As Object

Public WithEvents MyButton As Office.CommandBarButton

Public MyCommandBar As Office.CommandBar

Public WithEvents myColExpl As Outlook.Explorers

Public WithEvents myExpl As Outlook.Explorer

Private Sub AddinInstance_OnConnection(ByVal Application As Object, ByVal

ConnectMode As AddInDesignerObjects.ext_ConnectMode, ByVal AddInInst As

Object, custom() As Variant)

Set out_App = Application

End Sub

Private Sub AddinInstance_OnDisconnection(ByVal RemoveMode _

As AddInDesignerObjects.ext_DisconnectMode, custom() As Variant)

Set MyButton = Nothing

Set MyCommandBar = Nothing

End Sub

Private Sub AddinInstance_OnStartupComplete(custom() As Variant)

Set myColExpl = out_App.Explorers

If out_App.Explorers.Count > 0 Then

Call CreateToolBar

End If

End Sub

Private Sub myColExpl_NewExplorer(ByVal Explorer As Outlook.Explorer)

If myExpl Is Nothing Then

Set myExpl = Explorer

End If

If out_App.Explorers.Count > 0 Then

Call CreateToolBar

End If

End Sub

Private Sub myExpl_Close()

If out_App.Explorers.Count < 1 Then

Set myExpl = Nothing

Set myColExpl = Nothing

End If

End Sub

Private Sub MyButton_Click(ByVal Ctrl As Office.CommandBarButton,

CancelDefault As Boolean)

MsgBox "button clicked"

End Sub

Private Sub CreateToolBar()

Dim testIt As Boolean

If out_App.Explorers.Count = 0 Then

Exit Sub

End If

Const TOOLBARNAME = "Permanent Toolbar Testing2"

On Error Resume Next

testIt = Not out_App.ActiveExplorer.CommandBars(TOOLBARNAME) Is Nothing

If testIt Then

Set MyCommandBar =

Outlook.Application.ActiveExplorer.CommandBars.Item(TOOLBARNAME)

Else

Set MyCommandBar =

Outlook.Application.ActiveExplorer.CommandBars.Add(TOOLBARNAME, msoBarTop,

False, False)

End If

Set MyButton = MyCommandBar.Controls.Add(msoControlButton, , "891", ,

True)

With MyButton

> BeginGroup = True

> Caption = "My Permanent Button"

> Enabled = True

> OnAction = "!<PermToolbarTesting2.Connect>"

> Tag = "891"

> FaceId = 362

> Style = 3

> Visible = True

End With

MyCommandBar.Visible = True

End Sub

Thanks,

Paresh
 
If the code you have now meets your requirements and seems to work there's

no need for me to review it.

"paresh" <paresh> wrote in message

news:D2E88351-298B-4D6E-8171-EFBBA163F17D@microsoft.com...
> Thanks Ken but I think it is very complected way for me till I am
> acquainted
> with it. I am also not sure if you distinguished all explorer using
> objects
> then you can share the values you have loaded during startup.

> I have came out with the very simple code that meets my all requirements.
> Could you please tell me if there is anything wrong? It creates the
> toolbar
> on new explorer event for any new Outlook window and seem to be working
> fine.

> === MY CODE ====

> Option Explicit
> Public out_App As Object
> Public WithEvents MyButton As Office.CommandBarButton
> Public MyCommandBar As Office.CommandBar
> Public WithEvents myColExpl As Outlook.Explorers
> Public WithEvents myExpl As Outlook.Explorer

> Private Sub AddinInstance_OnConnection(ByVal Application As Object, ByVal
> ConnectMode As AddInDesignerObjects.ext_ConnectMode, ByVal AddInInst As
> Object, custom() As Variant)
> Set out_App = Application
> End Sub

> Private Sub AddinInstance_OnDisconnection(ByVal RemoveMode _
> As AddInDesignerObjects.ext_DisconnectMode, custom() As Variant)
> Set MyButton = Nothing
> Set MyCommandBar = Nothing
> End Sub

> Private Sub AddinInstance_OnStartupComplete(custom() As Variant)
> Set myColExpl = out_App.Explorers
> If out_App.Explorers.Count > 0 Then
> Call CreateToolBar
> End If
> End Sub

> Private Sub myColExpl_NewExplorer(ByVal Explorer As Outlook.Explorer)
> If myExpl Is Nothing Then
> Set myExpl = Explorer
> End If

> If out_App.Explorers.Count > 0 Then
> Call CreateToolBar
> End If
> End Sub

> Private Sub myExpl_Close()
> If out_App.Explorers.Count < 1 Then
> Set myExpl = Nothing
> Set myColExpl = Nothing
> End If
> End Sub

> Private Sub MyButton_Click(ByVal Ctrl As Office.CommandBarButton,
> CancelDefault As Boolean)
> MsgBox "button clicked"
> End Sub

> Private Sub CreateToolBar()
> Dim testIt As Boolean
> If out_App.Explorers.Count = 0 Then
> Exit Sub
> End If

> Const TOOLBARNAME = "Permanent Toolbar Testing2"
> On Error Resume Next
> testIt = Not out_App.ActiveExplorer.CommandBars(TOOLBARNAME) Is Nothing
> If testIt Then
> Set MyCommandBar =
> Outlook.Application.ActiveExplorer.CommandBars.Item(TOOLBARNAME)
> Else
> Set MyCommandBar =
> Outlook.Application.ActiveExplorer.CommandBars.Add(TOOLBARNAME, msoBarTop,
> False, False)
> End If

> Set MyButton = MyCommandBar.Controls.Add(msoControlButton, , "891", ,
> True)
> With MyButton
> .BeginGroup = True
> .Caption = "My Permanent Button"
> .Enabled = True
> .OnAction = "!<PermToolbarTesting2.Connect>"
> .Tag = "891"
> .FaceId = 362
> .Style = 3
> .Visible = True
> End With
> MyCommandBar.Visible = True
> End Sub

> Thanks,
> Paresh
 
Ken, actually I am just wondering why we have to write the very complex code

to handle the toolbar for all opened Outlook windows individually? I

understood your concept of generating TAG id uniquely after creating the

explorer object but I haven't noticed multiple events firing when I have two

Outlook window open and both have same toolbar "My Toolbar" with same Buttons

and same TAGs.

In short, could you give me a simple example where we have to use the

concept given by you and my code will not work? I am intermediate level in

add-in so I might not be aware of many things.

Thanks,

Paresh
wrote:


> If the code you have now meets your requirements and seems to work there's
> no need for me to review it.

> >

>

> "paresh" <paresh> wrote in message
> news:D2E88351-298B-4D6E-8171-EFBBA163F17D@microsoft.com...
> > Thanks Ken but I think it is very complected way for me till I am
> > acquainted
> > with it. I am also not sure if you distinguished all explorer using
> > objects
> > then you can share the values you have loaded during startup.
> > I have came out with the very simple code that meets my all requirements.
> > Could you please tell me if there is anything wrong? It creates the
> > toolbar
> > on new explorer event for any new Outlook window and seem to be working
> > fine.
> > === MY CODE ====
> > Option Explicit
> > Public out_App As Object
> > Public WithEvents MyButton As Office.CommandBarButton
> > Public MyCommandBar As Office.CommandBar
> > Public WithEvents myColExpl As Outlook.Explorers
> > Public WithEvents myExpl As Outlook.Explorer
> > Private Sub AddinInstance_OnConnection(ByVal Application As Object, ByVal
> > ConnectMode As AddInDesignerObjects.ext_ConnectMode, ByVal AddInInst As
> > Object, custom() As Variant)
> > Set out_App = Application
> > End Sub
> > Private Sub AddinInstance_OnDisconnection(ByVal RemoveMode _
> > As AddInDesignerObjects.ext_DisconnectMode, custom() As Variant)
> > Set MyButton = Nothing
> > Set MyCommandBar = Nothing
> > End Sub
> > Private Sub AddinInstance_OnStartupComplete(custom() As Variant)
> > Set myColExpl = out_App.Explorers
> > If out_App.Explorers.Count > 0 Then
> > Call CreateToolBar
> > End If
> > End Sub
> > Private Sub myColExpl_NewExplorer(ByVal Explorer As Outlook.Explorer)
> > If myExpl Is Nothing Then
> > Set myExpl = Explorer
> > End If
> > If out_App.Explorers.Count > 0 Then
> > Call CreateToolBar
> > End If
> > End Sub
> > Private Sub myExpl_Close()
> > If out_App.Explorers.Count < 1 Then
> > Set myExpl = Nothing
> > Set myColExpl = Nothing
> > End If
> > End Sub
> > Private Sub MyButton_Click(ByVal Ctrl As Office.CommandBarButton,
> > CancelDefault As Boolean)
> > MsgBox "button clicked"
> > End Sub
> > Private Sub CreateToolBar()
> > Dim testIt As Boolean
> > If out_App.Explorers.Count = 0 Then
> > Exit Sub
> > End If
> > Const TOOLBARNAME = "Permanent Toolbar Testing2"
> > On Error Resume Next
> > testIt = Not out_App.ActiveExplorer.CommandBars(TOOLBARNAME) Is Nothing
> > If testIt Then
> > Set MyCommandBar =
> > Outlook.Application.ActiveExplorer.CommandBars.Item(TOOLBARNAME)
> > Else
> > Set MyCommandBar =
> > Outlook.Application.ActiveExplorer.CommandBars.Add(TOOLBARNAME, msoBarTop,
> > False, False)
> > End If
> > Set MyButton = MyCommandBar.Controls.Add(msoControlButton, , "891", ,
> > True)
> > With MyButton
> > .BeginGroup = True
> > .Caption = "My Permanent Button"
> > .Enabled = True
> > .OnAction = "!<PermToolbarTesting2.Connect>"
> > .Tag = "891"
> > .FaceId = 362
> > .Style = 3
> > .Visible = True
> > End With
> > MyCommandBar.Visible = True
> > End Sub
> > Thanks,
> > Paresh


> .
>
 
Here's one example.

You have a toggle button that indicates a state for doing something. If you

have 2 Inspectors open and both use the same Tag value for a

CommandBarButton, both will get the click event that toggles the button. So

toggling in one toggles both. Then when some action is taken based on the

button state you can't maintain separate states for the button in each

Inspector.

Using wrapper classes solves a number of problems such as that with unique

Tag values, individually handling events in multiple open windows, handling

discrete ribbon clicks that are directed to only one Inspector where you

pass the click to a handler in your wrapper class, etc.

Every advanced Outlook developer I know uses wrapper classes and

collections, but your mileage may vary. I'd never do an Outlook addin myself

without wrapper classes.

"paresh" <paresh> wrote in message

news:2E9E6C5E-720E-45C2-8264-FE17747B909B@microsoft.com...
> Ken, actually I am just wondering why we have to write the very complex
> code
> to handle the toolbar for all opened Outlook windows individually? I
> understood your concept of generating TAG id uniquely after creating the
> explorer object but I haven't noticed multiple events firing when I have
> two
> Outlook window open and both have same toolbar "My Toolbar" with same
> Buttons
> and same TAGs.

> In short, could you give me a simple example where we have to use the
> concept given by you and my code will not work? I am intermediate level in
> add-in so I might not be aware of many things.

> Thanks,
> Paresh
 
Thanks that makes perfect sense to me but I think I don't need to write

wrapper class for explorer as my requirements are very simple and nothing is

shared between the toolbar clicks that might cause the issue.

What all I want is to put toolbar whenever new explorer open and perform the

operation when button click.

Thanks a lot for your help.

Paresh
wrote:


> Here's one example.

> You have a toggle button that indicates a state for doing something. If you
> have 2 Inspectors open and both use the same Tag value for a
> CommandBarButton, both will get the click event that toggles the button. So
> toggling in one toggles both. Then when some action is taken based on the
> button state you can't maintain separate states for the button in each
> Inspector.

> Using wrapper classes solves a number of problems such as that with unique
> Tag values, individually handling events in multiple open windows, handling
> discrete ribbon clicks that are directed to only one Inspector where you
> pass the click to a handler in your wrapper class, etc.

> Every advanced Outlook developer I know uses wrapper classes and
> collections, but your mileage may vary. I'd never do an Outlook addin myself
> without wrapper classes.

> >

>

> "paresh" <paresh> wrote in message
> news:2E9E6C5E-720E-45C2-8264-FE17747B909B@microsoft.com...
> > Ken, actually I am just wondering why we have to write the very complex
> > code
> > to handle the toolbar for all opened Outlook windows individually? I
> > understood your concept of generating TAG id uniquely after creating the
> > explorer object but I haven't noticed multiple events firing when I have
> > two
> > Outlook window open and both have same toolbar "My Toolbar" with same
> > Buttons
> > and same TAGs.
> > In short, could you give me a simple example where we have to use the
> > concept given by you and my code will not work? I am intermediate level in
> > add-in so I might not be aware of many things.
> > Thanks,
> > Paresh


> .
>
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
Victor_50 Problem - Google Workspace will stop "unsafe" access to Outlook end 2024 Using Outlook 3
Geldner Problem submitting SPAM using Outlook VBA Form Outlook VBA and Custom Forms 2
A Online Mode to Cached Exchange Mode problem Using Outlook 2
S Problem Accessing .MSG Property 'ImageNaturalHeight' Tag '0x80010003' Outlook VBA and Custom Forms 1
T Problem when requesting to view an email in a browser Using Outlook 0
R Outlook 2021 Having problem setting up outlook 2021 with windows 11. I have 3 gmail accounts and I want the 3 gmail, emails to merge into the same outlook input. Using Outlook.com accounts in Outlook 0
e_a_g_l_e_p_i Is anyone else having problem conneccting to gmail? Using Outlook 27
P Outlook calendar and contacts sync problem-outlook disconnects Using Outlook.com accounts in Outlook 2
S Archiving and Likely Modified Date Problem Using Outlook 3
R Problem moving file “Email folders.pst” to new PC Using Outlook 5
S Problem Checking the available stores in my Inbox (Outlook VBA) Outlook VBA and Custom Forms 0
Witzker GetAssignedView Problem Outlook VBA and Custom Forms 2
M Outlook 2010 Problem with OutLook 2010 32 bit, after Windows Auto Update Using Outlook 3
Marc2019 Outlook 2016 Font Problem Using Outlook 5
X I have met my waterloo trying to resolve embedded graphics problem with outlook 2007 and now 2016 Using Outlook 1
D Problem with custom form including _DocSiteControl1 Outlook VBA and Custom Forms 0
S Outlook 2007 Calendar instant search problem. Windows 7 Using Outlook 4
S Outlook 2007 Calendar instant search problem. Windows 7 Using Outlook 0
D Sort Problem with Sent Folders Using Outlook 1
S Conditional formatting problem with "is not empty" and categories Using Outlook 2
Mark Foley The upload of "Calendar" failed. There was a problem with the request. Using Outlook 6
avant-guvnor Import csv problem Using Outlook 7
katehawkins Outlook 2013 Ost to pst conversion problem Using Outlook 1
AbbieWhite The problem with a fairly large file. Using Outlook 3
I Outlook 2013 Send problem - 'Not Responding' forever Using Outlook.com accounts in Outlook 10
EmelineGueguen Help to understand the problem of work Using Outlook 1
W Outlook 2016 search problem persists after applying all known solutions Using Outlook 12
S problem with convert Using Outlook 1
S SendFromAccount - Problem trying to test existing value in open email Outlook VBA and Custom Forms 2
DruinaBiscardi unexpected problem in outlook Using Outlook 1
V Outlook 2003 problem with Windows 10 Creators Update 1709 Using Outlook 0
G Windows Update Causes BCM Database Access Problem? BCM (Business Contact Manager) 4
Grimev66 problem with conversion ost to pst Using Outlook 2
R Problem with searching public folders Exchange 2013/16 Exchange Server Administration 2
J Problem with Outlook 2016 new mail tray icon alert (envelope in the systems tray) Using Outlook.com accounts in Outlook 0
S Problem running Command button code Outlook VBA and Custom Forms 2
A .ost file problem Using Outlook 4
G PROBLEM REGARDING OUTLOOK STORAGE LANGUAGES Using Outlook 4
PetraTech Odd Folder View Problem Using Outlook 3
V iCloud problem Using Outlook 9
D Reply Problem with Outlook.com account Using Outlook.com accounts in Outlook 0
MattC Problem with Outlook 2007 & iCloud / duplicate tasks Using Outlook 1
V Problem moving folders Using Outlook 4
C Problem tracking meeting responses Using Outlook 3
Mark Foley Problem subscribing to shared calendar Using Outlook 1
K Problem with FreeBusy (before 1pm only) Outlook VBA and Custom Forms 7
skylark53 Advanced recurrence problem Using Outlook 2
E RSS export as OPML problem Using Outlook 4
D outlook 2013 contact list problem Using Outlook 0
T Problem with .Recipients.Add("alias") Outlook VBA and Custom Forms 3

Similar threads

Back
Top