Dynamic Data Exchange with Excel
Have used this code in AutoCAD LT with success, but as I'm now converted to Bricscad and try to reuse the code it fail's in the setup of the DDE-chanel (what I feel)
Is there some one that have a solution or experience about this.
ChanNum = Application.DDEInitiate("bricscad", "system")
Create script
Application.DDEExecute ChanNum, "[Command line in Bricscad to open created script]"
Application.DDEExecute ChanNum, Chr(13)
Application.DDETerminate ChanNum
Regards/palm
0
Comments
-
Try "BricscadApp"
0 -
Also an alternative would be
Set bcad = GetObject(, "BricscadApp.AcadApplication")
bcad.Visible = True
bcad.runScript ("Script")0 -
Thank's
0
This discussion has been closed.