Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi Community,
at the moment i try to insert a 3D View with creo view in Microsoft access. It will work with ActiveX.
But I dont know, how the commands works.
here are some commands in access for the activex plugin
Is there any documentation about the active X module?!
Very helpfull
Cu Eric
In HTML/Javascript I use this:
HTML 4/5 and InternetExplorer 10/11 on Windows 64bit:
<object border='1' id='PVactiveX1' width=280 height=187 classid='CLSID:F1BFCEEA-892D-405c-945F-19F87338A17F'>
<param name='thumbnailView' value='true'>
<param name='renderatstartup' value='true'>
</object>
Accessing this object with Javascript works in this way:
var pvxObj = document.getElementById('PVactiveX1');
Displaying a PVZ file (or even *.prt/*.asm/*.drw) can be done like this:
pvxObj.pvt = "c:\\temp\\mytest.pvz";
Andreas