O
Oscar
I have implemented a Outlook Addin ( with lots of pain) it is
increible how compilcate it is to get to work on .NET, well any how...
I have implemented everything even the set parent, which is another
big problem... but everytime I create my Options page, there is not
title on the tab that I added to the too-option dialog... I have spend
like day and half and no luck.. can some one help me !!! please !!!
here is the code for the set parent if some one need it.
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
Try
objSite = CType(Parent, Outlook.PropertyPageSite) 'this is
what works for me ...
If objSite Is Nothing Then
Dim erg As Boolean = SetParent 'Thats the way
If objSite Is Nothing Then
DebugWriter("OnLoad return nothing")
End If
End If
Catch ex As System.Exception
DebugWriter("SetParent caused error", ex.Message)
End Try
End Sub
increible how compilcate it is to get to work on .NET, well any how...
I have implemented everything even the set parent, which is another
big problem... but everytime I create my Options page, there is not
title on the tab that I added to the too-option dialog... I have spend
like day and half and no luck.. can some one help me !!! please !!!
here is the code for the set parent if some one need it.
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
Try
objSite = CType(Parent, Outlook.PropertyPageSite) 'this is
what works for me ...
If objSite Is Nothing Then
Dim erg As Boolean = SetParent 'Thats the way
If objSite Is Nothing Then
DebugWriter("OnLoad return nothing")
End If
End If
Catch ex As System.Exception
DebugWriter("SetParent caused error", ex.Message)
End Try
End Sub