View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default adding references

Why not use late binding?

Dim oPpt As Object

Set oPpt = CreateObject("Powerpoint.Application")

etc.

--

HTH

RP

"Jagadish" wrote in message
...
Hi,

I have developed a tool in excel 2003, in which i had used powerpoint
objects (Microsoft PowerPoint 11.0 Object Library). if i open it in Excel
2002 or Excel 2000 it will give an error. is there any way to find out the
respective object library of the respective versions.

Thanks in advance.