OsakaWebbie
Programmer
I asked this in the MS Office forum, but they didn't have a non-coding answer for me and suggested I try here.
I want to have a database (Internet-based) of information, and using dynamic queries (in my case, in PHP) pull info from it and put it together in a way that it can make new slides in a Powerpoint file that already has the master slides the way I want things to look.
I originally thought I could output the text with some sort of magic codes that Powerpoint would recognize and parse into the right places. For example, I was imagining something like this (total random idea, just to help you understand what I mean):
I can't (easily) make binary data (like a real ppt file), but it's no problem to make my PHP code pad the text with any assortment of ascii, including control characters. But it doesn't look like there is a way to do it all on the front end (in other words, without special code on the Powerpoint end). The help file claims that it will take an RTF file (formatted as MS Word would make it), and put Heading1 text in a title and any other style text in a standard text block. But it doesn't seem to work - it does the titles but ignores the rest.
So it looks like I might have to learn how to make a VBA Powerpoint macro to take what I give it and bring it into a Powerpoint presentation. I have experience with VBA for Access (custom code for forms and reports), but have never used it in any other Office ap. But if you can point me in the right direction, I have enough programming experience in other languages to figure out the syntax. My only handicap is that I'm working with the Japanese version of Office, so reading the on-line help isn't as easy for me as it would be for you guys who have English systems.
Thanks for any suggestions as to how to proceed.
I want to have a database (Internet-based) of information, and using dynamic queries (in my case, in PHP) pull info from it and put it together in a way that it can make new slides in a Powerpoint file that already has the master slides the way I want things to look.
I originally thought I could output the text with some sort of magic codes that Powerpoint would recognize and parse into the right places. For example, I was imagining something like this (total random idea, just to help you understand what I mean):
Code:
[new slide]
[title]
My Title
[text]
Text line 1
Text line 2
[new slide]...
I can't (easily) make binary data (like a real ppt file), but it's no problem to make my PHP code pad the text with any assortment of ascii, including control characters. But it doesn't look like there is a way to do it all on the front end (in other words, without special code on the Powerpoint end). The help file claims that it will take an RTF file (formatted as MS Word would make it), and put Heading1 text in a title and any other style text in a standard text block. But it doesn't seem to work - it does the titles but ignores the rest.
So it looks like I might have to learn how to make a VBA Powerpoint macro to take what I give it and bring it into a Powerpoint presentation. I have experience with VBA for Access (custom code for forms and reports), but have never used it in any other Office ap. But if you can point me in the right direction, I have enough programming experience in other languages to figure out the syntax. My only handicap is that I'm working with the Japanese version of Office, so reading the on-line help isn't as easy for me as it would be for you guys who have English systems.
Thanks for any suggestions as to how to proceed.