enovia dmu navigator
enovia dmu navigator
(OP)
how can i connect to enovia dmu navigaytor v5?
CATIA.ActiveDocument doesn't work in this case. any materials on that?
CATIA.ActiveDocument doesn't work in this case. any materials on that?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: enovia dmu navigator
can you explain?
indocti discant et ament meminisse periti
RE: enovia dmu navigator
From a separate VB.NET application I think it would be the following:
CODE --> VB.NET
System.Runtime.InteropServices.Marshal.GetActiveObject("DMU.application") as INFITF.ApplicationI'm not sure about from a VBA macro. Possibly:
CODE --> VBA
Drew Mumaw
www.textsketcher.com
www.drewmumaw.com
RE: enovia dmu navigator
dim enoviaApp
set enoviaApp = CATIA
I can change the frame title with
enoviaApp.Caption = "This is Enovia DMU hiding behind CATIA app"
indocti discant et ament meminisse periti
RE: enovia dmu navigator
DMU.application work well for me (VBA and external)