Merging Powerpoint slides?

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Merging Powerpoint slides?

    I was hoping to get some opinions on how best to approach a problem:

    A customer will browse our web site selecting .ppt presentations
    he/she wishes to download. In the background, these presentations are
    merged into ONE presentation, which is then downloaded by the
    customer.
    My employer is concerned with performance (the site could receive
    quite a bit of traffic) and security.

    I have few ideas in mind:

    1. Write a script to run on the web server that executes powerpnt.exe
    -i <file1> <file2> <finalfile>.

    2. Have the task performed by a separate machine with the same script
    - which is executed by the web server. (Can wsh scripts be executed
    remotely from another machine?)

    3. Write a program to run as a service on a separate machine. It
    would listen for file requests (generated by the web server) on a
    given port, then perform the file merges and send the end result to
    the customer.
    - any suggestions which language to use here? Is VBscript capable of
    this, or am I looking at using something like Java or C?
    Trigger Guest

  2. Similar Questions and Discussions

    1. Menu that slides down????
      I wanna make a menu in Firework for html that works like this: One button that say menu on.... when people are trying to click it or move the...
    2. Ruby-slides;
      Hi all, Some time ago I asked what we should focus on when talking to a we-love-Java-shop. These are the slides Stefan and I showed on...
    3. Prints From Slides -- HELP
      just had my first batch of slides developed (Fuji Velvia) and they all look MAGNIFICENT. so off i went to the photolab to have a few prints...
    4. Slides
      I would like a step by step method on how to prepare and image so that it can be made into a slide....I keep getting teeny tiny picturew with big...
    5. Old 5247 slides
      x-no-archive: yes "chuck" <cciafNOSPAMfone@earthlinNOSPAMk.net> wrote in message news:xN_Oa.36910$C83.3045996@newsread1.prod.itd.earthlink.net... ...
  3. #2

    Default Merging Powerpoint slides?

    I was hoping to get some opinions on how best to approach a problem:

    A customer will browse our web site selecting .ppt presentations
    he/she wishes to download. In the background, these presentations are
    merged into ONE presentation, which is then downloaded by the
    customer.
    My employer is concerned with performance (the site could receive
    quite a bit of traffic) and security.

    I have few ideas in mind:

    1. Write a script to run on the web server that executes powerpnt.exe
    -i <file1> <file2> <finalfile>.

    2. Have the task performed by a separate machine with the same script
    - which is executed by the web server. (Can wsh scripts be executed
    remotely from another machine?)

    3. Write a program to run as a service on a separate machine. It
    would listen for file requests (generated by the web server) on a
    given port, then perform the file merges and send the end result to
    the customer.
    - any suggestions which language to use here? Is VBscript capable of
    this, or am I looking at using something like Java or C?
    Trigger Guest

  4. #3

    Default Re: Merging Powerpoint slides?

    [url]http://www.aspfaq.com/5003/[/url]

    Ray at home

    "Trigger" <tristan_abroad@hotmail.com> wrote in message
    news:254e49e.0310061850.1beff352@posting.google.co m...
    > I was hoping to get some opinions on how best to approach a problem:
    >
    > A customer will browse our web site selecting .ppt presentations
    > he/she wishes to download. In the background, these presentations are
    > merged into ONE presentation, which is then downloaded by the
    > customer.
    > My employer is concerned with performance (the site could receive
    > quite a bit of traffic) and security.
    >
    > I have few ideas in mind:
    >
    > 1. Write a script to run on the web server that executes powerpnt.exe
    > -i <file1> <file2> <finalfile>.
    >
    > 2. Have the task performed by a separate machine with the same script
    > - which is executed by the web server. (Can wsh scripts be executed
    > remotely from another machine?)
    >
    > 3. Write a program to run as a service on a separate machine. It
    > would listen for file requests (generated by the web server) on a
    > given port, then perform the file merges and send the end result to
    > the customer.
    > - any suggestions which language to use here? Is VBscript capable of
    > this, or am I looking at using something like Java or C?

    Ray at Guest

  5. #4

    Default Re: Merging Powerpoint slides?

    On 6 Oct 2003 19:50:53 -0700, [email]tristan_abroad@hotmail.com[/email] (Trigger)
    wrote:
    >I was hoping to get some opinions on how best to approach a problem:
    >
    >A customer will browse our web site selecting .ppt presentations
    >he/she wishes to download. In the background, these presentations are
    >merged into ONE presentation, which is then downloaded by the
    >customer.
    >My employer is concerned with performance (the site could receive
    >quite a bit of traffic) and security.
    >
    >I have few ideas in mind:
    >
    >1. Write a script to run on the web server that executes powerpnt.exe
    >-i <file1> <file2> <finalfile>.
    >
    >2. Have the task performed by a separate machine with the same script
    >- which is executed by the web server. (Can wsh scripts be executed
    >remotely from another machine?)
    >
    >3. Write a program to run as a service on a separate machine. It
    >would listen for file requests (generated by the web server) on a
    >given port, then perform the file merges and send the end result to
    >the customer.
    >- any suggestions which language to use here? Is VBscript capable of
    >this, or am I looking at using something like Java or C?
    Well, yuk. While my preference would be to never merge them and have
    the presentations packaged correctly to begin with, I'd be tempted to
    look at a fourth option - Merging on the client side. That only works
    if the client has PowerPoint of course.

    Otherwise, your first two methods are essentially the same, just
    different hardware. A service would be great, and a lot more
    programming, which I gather you're not yet capable of given your
    question about langauge to use. I'm assuming your presentations are
    pulling from a database (you asked in an ASP database group after all)
    so I'd be tempted to use number one, at least until you test and find
    out nobody waits for the presentations to merge and download.

    Jeff
    Jeff Cochran Guest

  6. #5

    Default Re: Merging Powerpoint slides?

    [email]jcochran.nospam@naplesgov.com[/email] (Jeff Cochran) wrote in message news:<3f82aff5.81806311@msnews.microsoft.com>...
    > On 6 Oct 2003 19:50:53 -0700, [email]tristan_abroad@hotmail.com[/email] (Trigger)
    > wrote:
    >
    > >I was hoping to get some opinions on how best to approach a problem:
    > >
    > >A customer will browse our web site selecting .ppt presentations
    > >he/she wishes to download. In the background, these presentations are
    > >merged into ONE presentation, which is then downloaded by the
    > >customer.
    > >My employer is concerned with performance (the site could receive
    > >quite a bit of traffic) and security.
    > >
    > >I have few ideas in mind:
    > >
    > >1. Write a script to run on the web server that executes powerpnt.exe
    > >-i <file1> <file2> <finalfile>.
    > >
    > >2. Have the task performed by a separate machine with the same script
    > >- which is executed by the web server. (Can wsh scripts be executed
    > >remotely from another machine?)
    > >
    > >3. Write a program to run as a service on a separate machine. It
    > >would listen for file requests (generated by the web server) on a
    > >given port, then perform the file merges and send the end result to
    > >the customer.
    > >- any suggestions which language to use here? Is VBscript capable of
    > >this, or am I looking at using something like Java or C?
    >
    > Well, yuk. While my preference would be to never merge them and have
    > the presentations packaged correctly to begin with, I'd be tempted to
    > look at a fourth option - Merging on the client side. That only works
    > if the client has PowerPoint of course.
    >
    > Otherwise, your first two methods are essentially the same, just
    > different hardware. A service would be great, and a lot more
    > programming, which I gather you're not yet capable of given your
    > question about langauge to use. I'm assuming your presentations are
    > pulling from a database (you asked in an ASP database group after all)
    > so I'd be tempted to use number one, at least until you test and find
    > out nobody waits for the presentations to merge and download.
    >
    > Jeff
    Thanx for the response Jeff...you're right, I probably wouldn't yet be
    capable of writing a service, though I do have a bit of experience
    with C/C++. I've been doing a little research and I just don't see an
    easy way of creating slides without running the powerpoint executable
    (please correct me if I'm wrong, actually I hope I'm wrong, this
    option would be nice, as you say).

    Whats your estimate at length of time to complete option 1 OR option
    3, if I were to go that route? I have to come up with some sort of
    proposal for my employer. He's hoping for a finished product by the
    end of Dec., maybe Jan.
    Thanx
    Trigger Guest

  7. #6

    Default Re: Merging Powerpoint slides?

    On 7 Oct 2003 20:08:44 -0700, [email]tristan_abroad@hotmail.com[/email] (Trigger)
    wrote:
    >jcochran.nospam@naplesgov.com (Jeff Cochran) wrote in message news:<3f82aff5.81806311@msnews.microsoft.com>...
    >> On 6 Oct 2003 19:50:53 -0700, [email]tristan_abroad@hotmail.com[/email] (Trigger)
    >> wrote:
    >>
    >> >I was hoping to get some opinions on how best to approach a problem:
    >> >
    >> >A customer will browse our web site selecting .ppt presentations
    >> >he/she wishes to download. In the background, these presentations are
    >> >merged into ONE presentation, which is then downloaded by the
    >> >customer.
    >> >My employer is concerned with performance (the site could receive
    >> >quite a bit of traffic) and security.
    >> >
    >> >I have few ideas in mind:
    >> >
    >> >1. Write a script to run on the web server that executes powerpnt.exe
    >> >-i <file1> <file2> <finalfile>.
    >> >
    >> >2. Have the task performed by a separate machine with the same script
    >> >- which is executed by the web server. (Can wsh scripts be executed
    >> >remotely from another machine?)
    >> >
    >> >3. Write a program to run as a service on a separate machine. It
    >> >would listen for file requests (generated by the web server) on a
    >> >given port, then perform the file merges and send the end result to
    >> >the customer.
    >> >- any suggestions which language to use here? Is VBscript capable of
    >> >this, or am I looking at using something like Java or C?
    >>
    >> Well, yuk. While my preference would be to never merge them and have
    >> the presentations packaged correctly to begin with, I'd be tempted to
    >> look at a fourth option - Merging on the client side. That only works
    >> if the client has PowerPoint of course.
    >>
    >> Otherwise, your first two methods are essentially the same, just
    >> different hardware. A service would be great, and a lot more
    >> programming, which I gather you're not yet capable of given your
    >> question about langauge to use. I'm assuming your presentations are
    >> pulling from a database (you asked in an ASP database group after all)
    >> so I'd be tempted to use number one, at least until you test and find
    >> out nobody waits for the presentations to merge and download.
    >>
    >> Jeff
    >
    >Thanx for the response Jeff...you're right, I probably wouldn't yet be
    >capable of writing a service, though I do have a bit of experience
    >with C/C++. I've been doing a little research and I just don't see an
    >easy way of creating slides without running the powerpoint executable
    >(please correct me if I'm wrong, actually I hope I'm wrong, this
    >option would be nice, as you say).
    Try the PowerPoint or Office newsgroups for that information, it's not
    even remotely related to ASP or databases.
    >Whats your estimate at length of time to complete option 1 OR option
    >3, if I were to go that route? I have to come up with some sort of
    >proposal for my employer. He's hoping for a finished product by the
    >end of Dec., maybe Jan.
    Dummy it up and try. That's the only way you'll know what's involved
    in your situation.

    Jeff
    Jeff Cochran Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139