3DXML from VBA

  • Thread starter Thread starter Shivani
  • Start date Start date
S

Shivani

From VBA can we open 3DXML file in 3dxml viewer? I tried adding some
references from tools-references but I am not able to find any relevant class
or function that can open 3dxml viewer. Can someone please help. Thanks in
advance. Shivani
 
I'm not familiar with 3DXML, but assuming the files in question have a
unique file extension that's set up to be opened in 3DXML Viewer, you should
be able to use the FollowHyperlink method:

Application.FollowHyperlink strFile

(where strFile contains the full path to the file)
 
Back
Top