Z
Zoo
Hi,
I want to create multiple instance of PowerPoint by VB6's 'CreateObject'.
Sub Test()
Set p1 = CreateObject("PowerPoint.Application")
p1.Visible = True
Set p2 = CreateObject("PowerPoint.Application")
p2.Visible = True
End Sub
In this case, p1 is equal to p2. This means the number of instance is 1.
I know PowerPoint is the application which does not support multiple
instance.
But , is there workaround?
I want to create multiple instance of PowerPoint by VB6's 'CreateObject'.
Sub Test()
Set p1 = CreateObject("PowerPoint.Application")
p1.Visible = True
Set p2 = CreateObject("PowerPoint.Application")
p2.Visible = True
End Sub
In this case, p1 is equal to p2. This means the number of instance is 1.
I know PowerPoint is the application which does not support multiple
instance.
But , is there workaround?