Results 1 to 3 of 3

Thread: VB6 - Read Current Outlook Profile Name

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Cool VB6 - Read Current Outlook Profile Name

    Outlook profile info is not accessable using the Outlook Object
    Model, but using CDO it is possible (without incurring any security popups!).
    VB Code:
    1. Option Explicit
    2. 'Add a reference to Microsoft CDO 1.21 Type Library
    3. 'If you do not have it installed on your system you can install it
    4. 'from your Office CD.
    5. 'Also, Outlook needs to be running first!!!
    6. Private Function GetCurrentProfileName() As String
    7.  
    8.     Dim oSession As MAPI.Session
    9.    
    10.     Set oSession = CreateObject("MAPI.Session")
    11.     oSession.Logon "", "", False, False
    12.     GetCurrentProfileName = oSession.Name
    13.     oSession.Logoff
    14.     Set oSession = Nothing
    15.  
    16. End Function
    17.  
    18. Private Sub Form_Load()
    19.     MsgBox "Current Outlook Profile = " & GetCurrentProfileName, vbOkOnly + vbInformation
    20. End Sub
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    Learning .Net danasegarane's Avatar
    Join Date
    Aug 2004
    Location
    VBForums
    Posts
    5,853

    Re: VB6 - Read Current Outlook Profile Name

    Dear Robert,
    I am getting the warning Mesage.What could be the problem,
    I am using Outlook 2003 version

    Dana
    Attached Images Attached Images  
    Please mark you thread resolved using the Thread Tools as shown

  3. #3

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: VB6 - Read Current Outlook Profile Name

    See my FAQ item on the dreaded Outlook Security Prompt.

    http://vbforums.com/showthread.php?t=402086
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width