Similar Threads:
1.How I can carry power point's design template to computer that not
How I can carry power point's downloads designs template to a computer that
no have internet?
2.Design Power Point Template
Hi,
How to design Power Point Template. I would like to let user define
Graph Data from template wizard.
Can the Graph data in Power Point is external data source?
Any way to done those thing?
Thanks in advance,
With regards,
Goh
3.outlook is blocking me from emailing power point slide shows
I have been creating slide shows for a few years mostly for my own amusement.
Iv'e decided to begin sharing some to family. I immediatly found that
outlook ( OE ) was blocking my attempts because they contained potentual
virus's. I thought it must be something I'm doing so I read up a bit and
discoverd I wasn't saving them as a slide show or a single web page, so I did
both several times, still to no avail. I should mention that I am sending
digital photos.
4.Music does not follow power point slide show
I have a power point slide presentation consisting of 41 pictures that is 3mb
(3082kb) and I have attached music from my music file which is 128kbps.
When I email this pps file the recipient receives only the slide show and no
music. How can I make certain the music follows? I used Package for CD to
reduce the size of the file. I use XP and Office 2003.
--
Thank you,
5.Transfering Power point slides Imges to Word document Images oneby
I have taken refences
using PowerPoint = Microsoft.Office.Interop.PowerPoint;
using Word = Microsoft.Office.Interop.Word;
and some code below:
public class PptToWord
{
PowerPoint.Application objApp;
PowerPoint.Presentations objPresSet;
PowerPoint._Presentation objPres;
PowerPoint.Slides objSlides;
public void CreateFile(StringCollection array)
{
String strTemplate;
strTemplate = "C:\\TFSPRESENTATION.ppt"; // some power point file.
try
{
objApp = new PowerPoint.Application();
objPresSet = objApp.Presentations;
objApp.Visible = MsoTriState.msoTrue;
objPres = objPresSet.Open(strTemplate,MsoTriState.msoFalse ,
MsoTriState.msoTrue, MsoTriState.msoTrue);
objSlides = objPres.Slides;
// word doc
object oMissing = System.Reflection.Missing.Value;
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,ref
oMissing, ref oMissing);
//oWord.ActiveDocument.InlineShapes.AddPicture();
foreach(PowerPoint._Slide slide in objSlides)
{
foreach(PowerPoint.Shape Slideshape in slide.Shapes)
{
if (Microsoft.Office.Core.MsoTriState.msoTrue ==
Slideshape.HasTextFrame)
{
if (Microsoft.Office.Core.MsoTriState.msoTrue ==
Slideshape.TextFrame.HasText)
{
Word.Paragraph oPara1;
oPara1 = oDoc.Content.Paragraphs.Add(ref
oMissing);
oPara1.Range.Text =
Slideshape.TextFrame.TextRange.Text;
oPara1.Range.Font.Bold = 1;
oPara1.Format.SpaceAfter = 24;
oPara1.Range.InsertParagraphAfter();
}
}
if(Microsoft.Office.Core.MsoShapeType.msoPicture==Slideshape.Type)//for image
{
//Word.Shape oPicture;
//oPicture = (Word.Shape)Slideshape
/// I am facing problem here how to directly
convert or transfer picture from slide to picture in word document.
}
if
(Microsoft.Office.Core.MsoShapeType.msoPlaceholder == Slideshape.Type)//for
placeholder
{
}
}
}
}
catch (Exception exp)
{
MessageBox.Show(exp.Message);
}
}
}
Can any one guide me to resolve my probelm, my problem is how to transfer
Power point slides Pictures to Word document Pictures one by one. Without
saving image file temprory to any file on disk
6. Copy & paste a word art graph from 2003 to a power point slide
7. How do I get graphics/text from word doc into power point slid
8. moving between word and power point during slide show