Message 1 of 6

Not applicable
02-13-2018
12:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Perhaps I'm overlooking things somewhere but I can't find enough information to resolve this issue.
Background: I have PASTESPEC an AutoCAD Entity table into AutoCAD after copying it from excel.
I am testing code to confirm the Headers of the table, however I cannot find a way to return the EXACT Cell Text as a string. Can somebody critique my code please?! Thank you
(defun c:EZGEOMARKER (/ GeoTable LatCell) ;;;;;Load the extended AutoLISP functions related to ActiveX support (vl-load-com) ;;;;;Select table with data for GeoMarkers (setq GeoTable (entsel "\n(EZGEOMARKER) Please select AutoCAD Table with Latitude/Longitude/Note: ")) ;;;;;Set variables which will be tested later (setq LatCell (vla-gettext (vlax-ename->vla-object (car GeoTable)) 0 0)) (alert LatCell) );defun
Solved! Go to Solution.