C program retrieving information from Outlook?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David

    #1

    C program retrieving information from Outlook?

    Hi!

    I would like my C program to fetch data from Microsoft Outlook, stuff
    like calendar, contacts and so on. Does anyone know if this is even
    possible? Does anyone have any ideas of where to find information about
    this matter, since microsoft does not provide C-related information?

    Regards
    /David [Sweden]

  • M.B

    #2
    Re: C program retrieving information from Outlook?


    David wrote:[color=blue]
    > Hi!
    >
    > I would like my C program to fetch data from Microsoft Outlook, stuff[/color]

    Terribly off topic
    [color=blue]
    > like calendar, contacts and so on. Does anyone know if this is even[/color]
    Yes, of course. you can...
    [color=blue]
    > possible? Does anyone have any ideas of where to find information about
    > this matter, since microsoft does not provide C-related information?[/color]
    Check any win32 programming /MFC/VC++.OLE group.
    Good luck with the hunt!!! :-)[color=blue]
    >
    > Regards
    > /David [Sweden][/color]

    - M.B

    Comment

    • David

      #3
      Re: C program retrieving information from Outlook?


      M.B skrev:
      [color=blue]
      > David wrote:[color=green]
      > > Hi!
      > >
      > > I would like my C program to fetch data from Microsoft Outlook, stuff[/color]
      >
      > Terribly off topic
      >[color=green]
      > > like calendar, contacts and so on. Does anyone know if this is even[/color]
      > Yes, of course. you can...
      >[color=green]
      > > possible? Does anyone have any ideas of where to find information about
      > > this matter, since microsoft does not provide C-related information?[/color]
      > Check any win32 programming /MFC/VC++.OLE group.
      > Good luck with the hunt!!! :-)[/color]

      Thanx, I will try to improve my aim for the next hunt though... ;-)
      [color=blue][color=green]
      > >
      > > Regards
      > > /David [Sweden][/color]
      >
      > - M.B[/color]

      /David

      Comment

      • Mike Wahler

        #4
        Re: [OT] C program retrieving information from Outlook?

        "David" <feldthusen.dav id@gmail.com> wrote in message
        news:1136466174 .111398.77710@g 49g2000cwa.goog legroups.com...[color=blue]
        > Hi!
        >
        > I would like my C program to fetch data from Microsoft Outlook, stuff
        > like calendar, contacts and so on. Does anyone know if this is even
        > possible?[/color]

        Yes it is. I've done a small amount of it myself. But it cannot
        be done with only standard C. You'll need an interface. Microsoft
        provides one.
        [color=blue]
        > Does anyone have any ideas of where to find information about
        > this matter,[/color]

        Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

        [color=blue]
        > since microsoft does not provide C-related information?[/color]

        Much of the Microsoft documentation uses C (and/or C++)
        in its examples etc. For example, the entire Windows API
        is designed to be called from C (although mechanisms are
        also available for access from other languages as well).

        Note that your query is not really topical for comp.lang.c,
        since its solution(*) will involve things outside the domain of the
        ISO standard C language.

        (*) Strictly speaking, I suppose one could use pure standard
        C to open and read an Outlook file, but one would need to have
        the specification of the data layout (which afaik is proprietary),
        and 'manually' parse the file. I recommend using the interface
        provided by Microsoft for this purpose (for example, the data
        format might change, and a 'manual' solution would no longer
        work). Let MS assume the responsibility for guaranteeing their
        interface works correctly with changing data formats.)

        Purpose of comp.lang.c:


        C FAQ:


        -Mike


        Comment

        Working...