Maybe something like this if I understand you correctly:
- (defun c:test ( / ss attval ) (vl-load-com) (if (and (setq ss (ssget "_X" '((0 . "INSERT") (2 . "Title") (66 . 1)))) (setq attval (vl-some (function (lambda ( attrib ) (if (eq "JOBNO" (strcase (vla-get-TagString attrib))) (vla-get-TextString attrib) ) ) ) (vlax-invoke (vlax-ename->vla-object (ssname ss 0)) 'GetAttributes) ) ) ) (startapp "C:\\Program Files\\Microsoft Office\\Office12\\MSACCESS.EXE V:\\GISIII\\AppTabs\\AcBin\\EDocument\\Sonarauto.mdb /cmd" attval) ) (princ))
|