redbyrd
Structural
- May 22, 2008
- 2
I was curious how I could specify a logical name and description when using the following command to attach a reference
Earlier post to refer thread565-107528
Sub main
Dim startPoint As MbePoint
Dim point As MbePoint, point2 As MbePoint
' Start a command
MbeSendCommand "REFERENCE ATTACH "
' When a command brings up a modal dialog,
' a later statement must close the dialog,
' or the MbeState.modalDialogByUser property
' should be set to 1 so that the user must close
' the dialog when the macro is executed.
' Also, you may not use the debugger "Step"
' commands while a modal dialog is displayed.
' Opened modal dialog "Attach Reference"
MbeSendCommand "MDL COMMAND MGDSHOOK,fileList_setFilterCmd *.dgn"
MbeSendCommand "MDL COMMAND MGDSHOOK,fileList_setDirectoryCmd C:\FILEPATH"
MbeSendCommand "MDL COMMAND MGDSHOOK,fileList_setFileNameCmd FILENAME"
MbeSendCommand "MBE1 CLOSEMODAL OK"
MbeSendCommand "MBE1 CLOSEMODAL OK"
End Sub
It only sets the file to attach and its path. I found that this line of code works, but which is better?
MbeSendCommand "REFERENCE ATTACH = BC03.DGN,,TxDOTstd,KHAimport,,,,"
redbyrd
Earlier post to refer thread565-107528
Sub main
Dim startPoint As MbePoint
Dim point As MbePoint, point2 As MbePoint
' Start a command
MbeSendCommand "REFERENCE ATTACH "
' When a command brings up a modal dialog,
' a later statement must close the dialog,
' or the MbeState.modalDialogByUser property
' should be set to 1 so that the user must close
' the dialog when the macro is executed.
' Also, you may not use the debugger "Step"
' commands while a modal dialog is displayed.
' Opened modal dialog "Attach Reference"
MbeSendCommand "MDL COMMAND MGDSHOOK,fileList_setFilterCmd *.dgn"
MbeSendCommand "MDL COMMAND MGDSHOOK,fileList_setDirectoryCmd C:\FILEPATH"
MbeSendCommand "MDL COMMAND MGDSHOOK,fileList_setFileNameCmd FILENAME"
MbeSendCommand "MBE1 CLOSEMODAL OK"
MbeSendCommand "MBE1 CLOSEMODAL OK"
End Sub
It only sets the file to attach and its path. I found that this line of code works, but which is better?
MbeSendCommand "REFERENCE ATTACH = BC03.DGN,,TxDOTstd,KHAimport,,,,"
redbyrd