Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 649027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:53:52+00:00 2026-05-13T21:53:52+00:00

How to access Offline Address Book (from exchange server/outlook configured to exchange machine) using

  • 0

How to access “Offline Address Book” (from exchange server/outlook configured to exchange machine) using Redemption dll (C#).

I am looking for some sample code to proceed with my task.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T21:53:52+00:00Added an answer on May 13, 2026 at 9:53 pm

    Try this. I am using Redemption 4.6. I created a form and added a DataGridView for result viewing purpose. Here is my code:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    
    namespace TestingJojoWinForms
    {
    public partial class frmRedemption : Form
    {
        public frmRedemption()
        {
            InitializeComponent();
        }
    
        private void frmRedemption_Load(object sender, EventArgs e)
        {
            DataTable dtResult = new DataTable("Result");
            dtResult.Columns.Add("EntryID");
            dtResult.Columns.Add("FirstName");
            dtResult.Columns.Add("LastName");
            dtResult.Columns.Add("Alias");
            dtResult.Columns.Add("SMTPAddress");
            dtResult.Columns.Add("JobTitle");
            dtResult.Columns.Add("Address");
            dtResult.Columns.Add("StreetAddress");
    
            Redemption.RDOSessionClass session = new Redemption.RDOSessionClass();
            session.Logon(@"your_account_name", "your_password", false, false, 0, false);
            for(int index = 1; index <= session.AddressBook.GAL.AddressEntries.Count; index++) 
            {
                Redemption.RDOAddressEntryClass entry = (Redemption.RDOAddressEntryClass)session.AddressBook.GAL.AddressEntries.Item(index);
                dtResult.Rows.Add(entry.EntryID, entry.FirstName, entry.LastName, entry.Alias, entry.SMTPAddress, entry.JobTitle, entry.Address, entry.StreetAddress);
            }
            session.Logoff();
    
            this.dataGridView1.DataSource = dtResult;
        }
    
    
    }
    }
    

    The result will be like this:
    alt text

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using PHP/MySQL, and I want to publish for some offline users, I have
I'm trying to access the offline application cache of a shared webworker (HTML5) with
I'm using the Facebook C# SDK for build an website with some facebook integration
There are some question on the StackOverflow about facebook & email, but after reading
Hey All, I am thinking to save the data offline so that user can
When using the Facebook real-time callbacks to update user settings/details, are you able to
I need my app to request the offline_access permission (detailed here ), but as
if I want to authenticate a user through facebook is it necessary to get
I have an iframe Facebook application that uses the Facebook PHP SDK to authenticate
I am working on a project to post data to the walls of Facebook

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.