Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Writing the html From vsd

Status
Not open for further replies.

200045

Programmer
Jun 4, 2002
1
IN
I want to genarate html file from Visio drawing using automation and not using the save as html feature provided by visio.Is that posible and if it is possible how do i do that.
Regards
Raja
 
You can create html files using Export method of the page or shape, providing that appropriate export filter is installed.

Public Sub Export_Example()
Dim pageObj As Visio.Page

Set pageObj = ThisDocument.Pages(1)

'Use the Export method to save the page in the html format.
pageObj.Export ("c:\temp\Test.htm")

End Sub

http:/
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top