Jowie Tadz Posted August 24, 2021 Posted August 24, 2021 Good day, i have this VLX file which adds another tab in menu bar in autocad, that show the 26 recent opened files, but now my problem is, our company implement some policy on domain that restrict reading vlx files, and i cant use it anymore, is there any way to convert this file to a CUI file or some other files type Thanks RECENT.VLX Quote
rkmcswain Posted August 24, 2021 Posted August 24, 2021 No. But why do you need this? AutoCAD will show you up to the last 50 recent files, this is built into the Application Menu. 1 Quote
Jowie Tadz Posted August 24, 2021 Author Posted August 24, 2021 thanks for the tip, i thought the maximum number is 9 1 Quote
BIGAL Posted August 25, 2021 Posted August 25, 2021 Try this ; Autocad (setq index 0 lst '()) (while (setq fname (vl-registry-read (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Recent File List\\") (setq valuename (strcat "File" (itoa (setq index (1+ index))))) ) ) (setq lst (cons fname lst)) ) (setq lst (reverse lst)) ; Note Bricscad uses recent paths (setq index 0 lst '()) (while (setq fname (vl-registry-read (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Recent Paths\\") (setq valuename (strcat "File" (itoa (setq index (1+ index))))) ) ) (setq lst (cons fname lst)) ) (setq lst (reverse lst)) 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.