Spakis,
That's a very good question. I've attached a preview of what the array dialog displays. If you are referring to the image in the upper right corner that changes as the user enters different values, it can be done in AutoLISP with the vector_image function and some extra programming.
Flynn
Thanks for reply.
Yes, that's exactly what I'm referring to.
I believe with vector_image function it is possible to draw just about anything in dialog box, if so this will work fine for me.
And that white square with a shadow could be static image?
Hi spakis,
I read your post and I may have a version that you can try out.
This is something that I have been tweaking from a related thread on AUGI.
I hope this helps.
Terry
Spakis,
Thanks for the reply. But you know what? As far as a browser for AutoCAD drawings for my code, I still use this generic version. I've been using this method so the AutoCAD users can also view the drawings in the folder they are selecting. It uses the global variable *LastPath$ to remember the last folder selected. Try it out also.
Terry
Code:
(defun GetPathName (/ PathFile$)
(if (not *LastPath$)
(setq *LastPath$ (getvar "DWGPREFIX"))
);if
(if (setq PathFile$ (getfiled "Select a Drawing in a folder for Folder name" *LastPath$ "dwg" 2))
(setq *LastPath$ (strcat (vl-filename-directory PathFile$) "\\"))
);if
);defun GetPathName