Message 1 of 9
Error handling
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
1. It seems that command function does not work with vl-catch-all-apply. The following does not work.
(vl-catch-all-apply
'Command
'("Insert"
"D:\\A600.dwg"
(list 0 0 0)
1
1
1
0
"x"
"5"
""
""
)
)
Am I missing something.
2. Following works but does not execute the command )block not inserted).
(vl-catch-all-apply
'vl-cmdf
'("Insert"
"D:\\A600.dwg"
(list 0 0 0)
1
1
1
0
"x"
"5"
""
""
)
)