HI All,
I want to convert one slider power point to image(jpeg or png) using vbcode in invoke code activity.
Any one have vb code for this & implemented in invoke code activity.
Any help here will be appreciated.
HI All,
I want to convert one slider power point to image(jpeg or png) using vbcode in invoke code activity.
Any one have vb code for this & implemented in invoke code activity.
Any help here will be appreciated.
Hi @rsahu
Feel free to browse our Marketplace, it could that one one of these packages has this functionality:
https://connect.uipath.com/search?search=powerpoint
Thanks Every one for your replies. i resolved this using VB code
The solution that worked for you please mark it as solution and close the topic.
I Have used below code for converting PPT Slide to Image. I have only single slide PPT so below code worked for me. Thanks every one whoever put effort here.
Dim pptapplication As New Microsoft.Office.Interop.PowerPoint.Application
Dim prsPres As Microsoft.Office.Interop.PowerPoint.Presentation = pptapplication.Presentations.Open(“PPT File Path”)
prsPres.Slides(1).Export(“Jpg File Path”, “jpg”, 0, 0)
prsPres.Close()
pptapplication.Quit()
For Each prog As Process In Process.GetProcesses
If prog.ProcessName = “POWERPNT” Then
prog.Kill()
End If
Next
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.