Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

Last post 02-21-2012, 10:14 AM by Mudassir. 27 replies.
Page 2 of 2 (28 items)   < Previous 1 2
Sort Posts: Previous Next
  •  02-01-2012, 1:00 PM 358748 in reply to 358731

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mahalakshmi,

    I have worked with the source presentation and code shared by you in your very first post of this thread and have been able to successfully clone the slide. Kindly, share the sample source presentation along with generate presentation by highlighting the issue incurred. Secondly, the product release has been done just week back and even in old dll, for many properties that are going to be replaced in future, the tool tip message has been shared that this particular property will be changed/replaced by Y property by X month. Secondly, help file may also contain these new properties as well and so is the online documentation.

    Many Thanks, 

    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
  •  02-01-2012, 9:40 PM 358802 in reply to 358731

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Attachment: Present (inaccessible)

    Hi Mudassir,

    As mentioned in your reply, I am attaching the "Source.ppt" and generated "Clone.ppt". In the cloned slide, the message "Evaluation only. Created with Aspose.Slides for .NET 3.5 5.9.0.0. Copyright 2004 - 2012 Aspose Pty, Ltd." is displaying along with the content in Source.ppt. This is not suppose to display in the cloned slide. Kindly provide the resolution to overcome this issue.

    Thanks,

    Mahalakshmi M

     
  •  02-01-2012, 10:35 PM 358812 in reply to 358802

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi  Mahalakshmi,

    The watermark is coming because you might not be setting Aspose.Slides license in your application. Please visit this link to see how to set the Aspose.Slides license. If you are already setting the license and still getting watermark then your subscription may be expired. In that case, please share the license file with me for necessary verification. Please follow these guidelines for sending license to us. Please notify us here once you have shared the license.

    Many Thanks,

    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
  •  02-01-2012, 11:00 PM 358816 in reply to 358812

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mudassir,

     

    While doing cloneslide with new DLL, we are getting the error message "The subscription included in this license allows free upgrades until 06 Jan 2011, but this version of the product was released on 23 Jan 2012. Please renew the subscription or use a previous version of the product."  But changing date in the license file results us the watermark in the cloned slide.

     

    Thanks,

    Mahalakshmi M

     
  •  02-02-2012, 12:56 AM 358846 in reply to 358816

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mahalakshmi,

    As I shared with you in my last post here that your subscription may be expired if you are using license in your application. You need to renew your subscription. Please visit this link for your kind reference.

    Many Thanks,

    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
  •  02-14-2012, 3:51 AM 361393 in reply to 358846

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mudassir,

    Thanks for the resolution and with the new DLL  the issue of displaying some of the characters in wingdings font style by using CloneSlide method has been resolved.

    We are facing an another issue with a new DLL(Aspose Slides 5.9.0), while embedding an Excel Chart as an OLE Object in to the PowerPoint Slide. While double clicking on the chart in the output PPT, the error message "The server application, source file, or item can't be found, or returned an unknown error. You may need to reinstall the server application" is being thrown.

    Please look in to this issue and let us know what could be done to resolve this. Thanks.

    Regards,

    Mahalakshmi M

     
  •  02-14-2012, 6:29 AM 361459 in reply to 361393

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mahalakshmi,

    Kindly share the source and generated presentation along with the code snippet used so that I may investigate it further on my end.

    Many Thanks,

    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
  •  02-14-2012, 11:38 AM 361560 in reply to 361459

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Attachment: Present (inaccessible)

    Hi Mudassir,

    As per your previous post, I am attaching the sample source code as well as the Output presentation.Please find the same in the attachment Output.ppt.

    Below is the sample code snippet to replicate the issue.

                string[] cellsName = new string[]  {
                                     "A1", "A2", "A3", "A4",
                                     "B1", "B2", "B3", "B4",
                                     "C1", "C2", "C3", "C4" };

                //Array of cell data
                int[] cellsValue = new int[]
                                {   64,86,68,91,
                                    41,64,89,48,
                                    48,97,78,60
                                };

                Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook();

                wb.Worksheets.RemoveAt(0);

                //Add a chart sheet
                int chartSheetIdx = wb.Worksheets.Add(Aspose.Cells.SheetType.Chart);
                Aspose.Cells.Worksheet chartSheet = wb.Worksheets[chartSheetIdx];
                chartSheet.Name = "ChartSheet";

                //Add a new worksheet to populate cells with data
                int dataSheetIdx = wb.Worksheets.Add();
                Aspose.Cells.Worksheet dataSheet = wb.Worksheets[dataSheetIdx];
                string sheetName = "DataSheet";
                dataSheet.Name = sheetName;

                for (int i = 0; i < cellsName.Length; i++)
                {
                    string cellName = cellsName[i];
                    int cellValue = cellsValue[i];
                    dataSheet.Cells[cellName].PutValue(cellValue);
                }

                //Add a chart in ChartSheet with data series from DataSheet
                int chartIdx = chartSheet.Charts.Add(Aspose.Cells.ChartType.Line, 0, 0, 0, 0);
               
                Aspose.Cells.Chart chart = chartSheet.Charts[chartIdx];
                chart.NSeries.Add(sheetName + "!A1:A4", true);
                chart.NSeries.Add(sheetName + "!B1:B4", true);
                chart.NSeries.Add(sheetName + "!C1:C4", true);

                chart.NSeries[0].Name = "UNITS";
                chart.NSeries[0].Area.ForegroundColor = System.Drawing.Color.FromArgb(154, 153, 255);

                chart.NSeries[1].Name = "VALUE";
                chart.NSeries[1].Area.ForegroundColor = System.Drawing.Color.FromArgb(153, 51, 101);

                chart.NSeries[2].Name = "GVALUE";
                chart.NSeries[2].Area.ForegroundColor = System.Drawing.Color.FromArgb(255, 255, 203);


                //Set ChartSheet an active sheet
                wb.Worksheets.ActiveSheetIndex = chartSheetIdx;
               
                Bitmap imgChart = wb.Worksheets[chartSheetIdx].Charts[0].ToImage();

                MemoryStream wbStream = wb.SaveToStream();

                int picId = -1;
                Aspose.Slides.License license = new Aspose.Slides.License();
                license.SetLicense("Aspose.Slides.lic");

                Presentation pres = new Presentation();
                Slide sld = pres.GetSlideByPosition(1);

                if (imgChart != null)
                {
                    Aspose.Slides.Picture pic = new Aspose.Slides.Picture(pres, imgChart);
                    picId = pres.Pictures.Add(pic);
                }

                int slideWidth = pres.SlideSize.Width;
                int slideHeight = pres.SlideSize.Height;

                byte[] chartOleData = new byte[wbStream.Length];
                wbStream.Position = 0;
                wbStream.Read(chartOleData, 0, chartOleData.Length);

                OleObjectFrame oof = sld.Shapes.AddOleObjectFrame(0, 0, slideWidth, slideHeight, "Excel.Sheet.8", chartOleData);

                oof.PictureId = picId;

     
                pres.Write(@"C:\temp\Output.ppt");

    Regards,

    Mahalakshmi

     
  •  02-15-2012, 1:00 AM 361705 in reply to 361560

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mahalakshmi,

    I have worked with the code snippet shared and have been able to observe the issue shared. An issue with ID SLIDESNET-33214 has been created in our issue tracking system to further investigate and resolve the issue. This thread has been linked with the issue so that you may be automatically notified once the issue will be resolved.

    We are sorry for your inconvenience,

    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
  •  02-15-2012, 2:45 AM 361733 in reply to 361705

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mudassir,

    Can you provide an ETA for this issue?

    Thanks,

    Mahalakshmi M

     
  •  02-15-2012, 5:05 AM 361769 in reply to 361733

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mahalakshmi,

    I like to share that the issue has just been created and at the moment it is too early to comment that when issue will be resolved. As soon as our development team will investigate and schedule the issue, I will be able to share the ETA on the basis of that. I will share the updates with you as soon as they will be available.

    Many Thanks,


    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
  •  02-21-2012, 6:31 AM 362960 in reply to 361769

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mudassir,

    Can we have any update on this issue?  Even a work around from your end to overcome this issue would be really helpful for us.

    Thanks,

    Mahalakshmi M

     
  •  02-21-2012, 10:14 AM 363013 in reply to 362960

    Re: Issue in displaying some of the characters in wingdings font style by using CloneSlide method.

    Hi Mahalakshmi,

    I have verified from our issue tracking system and regret to share that issue shared has not been resolved yet. Actually, we are currently uniting models for PPT and PPTX and the issue of Ole frame un-editable is dependent upon the completion of said requirement. The said unification of models will be completed in Aspose.Slides for .NET 6.4.0, which is scheduled for release on June 20, 2012. Hopefully, after this uni faction the issue will be resolved. I am aware that this is some long time span but this is some major modification in product. We will really appreciate your patience and cooperation in this regard.

    Many Thanks,

    Mudassir Fayyaz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
Page 2 of 2 (28 items)   < Previous 1 2
View as RSS news feed in XML