Macro problems

S

Shorty

I created the following macro in MS VS in order to publish an excel chart
periodically;

Sub Auto_Open()
ActiveWorkbook.PublishObjects.Add(xlSourceChart, _
"C:\Book3.htm" _
, "Chart1", "", xlHtmlStatic, "Book3_11572", _
"Chart Title").Publish (True)
Application.OnTime Now + TimeValue("00:01:00"), _
"Auto_Open"
End Sub.

I get the following error -' runtime error 1004 - Application Defined or
Object Defined error'. Can anyone see what is wrong with the above macro?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top