+ Reply to Thread
Results 1 to 3 of 3

How to store Metadata in the PowerPoint Presentation (2000, XP, 2003)

  1. #1
    msnews.microsoft.com
    Guest

    How to store Metadata in the PowerPoint Presentation (2000, XP, 2003)

    I'm trying to find some way to store Metadata inside the PowerPoint
    presentation. I am looking solution for PowerPoint 2000, XP, 2003 versions.
    The only way I found is to save it in Custom Properties, but it have size
    limitation to 255 characters, so it not useful for me. In Word document I
    found something calls Variable, which solves me the problem. Is exist
    similar solution for PPT? It can be different solution for different
    PowerPoint versions.

    I'm programming in C# with Office Object Model

    P.S I'm looking for same solution in Excel Sheets too.

    Thanks.



  2. #2
    Bob Phillips
    Guest

    Re: How to store Metadata in the PowerPoint Presentation (2000, XP, 2003)

    See other thread

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "msnews.microsoft.com" <[email protected]> wrote in message
    news:[email protected]...
    > I'm trying to find some way to store Metadata inside the PowerPoint
    > presentation. I am looking solution for PowerPoint 2000, XP, 2003

    versions.
    > The only way I found is to save it in Custom Properties, but it have size
    > limitation to 255 characters, so it not useful for me. In Word document I
    > found something calls Variable, which solves me the problem. Is exist
    > similar solution for PPT? It can be different solution for different
    > PowerPoint versions.
    >
    > I'm programming in C# with Office Object Model
    >
    > P.S I'm looking for same solution in Excel Sheets too.
    >
    > Thanks.
    >
    >




  3. #3
    Steve Rindsberg
    Guest

    Re: How to store Metadata in the PowerPoint Presentation (2000, XP, 2003)

    In article <[email protected]>, Msnews.microsoft.com wrote:
    > I'm trying to find some way to store Metadata inside the PowerPoint
    > presentation. I am looking solution for PowerPoint 2000, XP, 2003 versions.
    > The only way I found is to save it in Custom Properties, but it have size
    > limitation to 255 characters, so it not useful for me. In Word document I
    > found something calls Variable, which solves me the problem. Is exist
    > similar solution for PPT? It can be different solution for different
    > PowerPoint versions.


    I'd avoid using custom properties in PPT for quite a few reasons.

    Instead, use Tags

    Any presentation, slide or shape can have any number of named tags, and each
    tag can have pretty much any amount of text you like. You can use the same
    code for all versions of PPT back to 97.

    Ex:

    Add a tag:

    ActivePresentation.Slides(1).Tags.Add "TagName", "Tag Value"

    Read a tag:

    Msgbox ActivePresentation.Slides(1).Tags("TagName")

    If you attempt to read a tag that isn't there, you simply get a null back; no
    error results.


    --
    Steve Rindsberg, PPT MVP
    PPT FAQ: www.pptfaq.com
    PPTools: www.pptools.com
    ================================================


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1