Message 1 of 3
batch Update title block with CSV objectDBXwrapper
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I am using this code here with the UpdateTitleblock and ObjectDBXWrapperV1-2 from Lee Mac which open all drawings.
I set up my CSV file and everything is working when I manually do it on my drawings but when I run the code below it says all attributes are up to date but none of them worked when I go check the drawings.
can someone please guide me and tell me what I am missing
(defun c:dbtest nil (LM:ODBX '(lambda (doc) (progn (load "Z:/"path"/UpdateTitleblockV1-9.lsp" "Failed to load UpdateTitleblockV1-9.lsp") (c:utb) nil)) ;; Ensure the lambda function returns nil nil t) (princ) )