Notes not showing on slide

When I open the a newly created presentation in Office 2010 it doesn’t show the notes, also notes that where in the original presentation don’t get shown…
Could you tell me what the problem is?

I’m using the code example from the help documentation:


//Notes class is used to deal with notes associated with a slide in the presentation

//Load the presentation

Presentation pres = new Presentation(“example9.ppt”);


//Get first slide


Slide sld = pres.GetSlideByPosition(1);


//Get and edit notes associated with the slide

if
(sld.Notes != null)
{

Notes nt = sld.Notes;


//Print existing notes text


System.Console.WriteLine(nt.Text);


//Edit notes text


nt.Text = “New Notes”;

}


//Write the presentation


pres.Write(“editNotes.ppt”);

Hi
Vincent,


Thanks for your interest in Aspose.Slides.

Kindly, share the source presentation with us for necessary further investigation and to reproduce the issue on our end.

Many Thanks,

Hi Mudassir,

I’ve added the powerpoint as an attachment.

Hi Vincent,


I have worked with the code snippet shared by you using Aspose.Slides for .NET 5.9.0 and have been able to add and view the slide notes in generated presentation. For your reference, the generated presentation is also attached. Please use the specified version of Aspose.Slides for .NET.

Many Thanks,

Using the latest version of Aspose.Slides (5.9.0) solved my issue, my previous version was 5.1.0. Thanks alot Mudassir.