CADtech101 Posted February 12 Posted February 12 I have tried to "drag & drop / re-arrange" the layout tabs at the bottom. It only shows a red stop sign icon. My "LOCKUI" is set to zero. I dont know anywhere else that may be locking these tabs and not letting me re-arrange them. Would anyone have another suggestion. Quote
SLW210 Posted February 13 Posted February 13 Has it ever worked? Any recent updates to AutoCAD and/or the OS? You might try creating a new profile. You may need to try a reset to defaults, repair or reinstall. 1 Quote
BIGAL Posted February 13 Posted February 13 (edited) You can via lisp rearrange the layouts order, the only issue I see is if you have say like I did 88 layouts how you work out the order. This is one example. Moves current tab. (defun C:Mtab ( / lay num) (setq num (getint "\nEnter tab number")) (setq curtab (getvar "ctab")) (vlax-for lay (vla-get-Layouts (vla-get-activedocument (vlax-get-acad-object))) (if (= curtab (vla-get-name lay)) (vla-put-taborder lay num) ) ; if ) ; for (princ) ) ; defun (c:mtab) If there alphabetical etc you can reorder using a lisp. You could build a dcl list and some how rearrange the order, then update. I know if you have less than 20 can make a dcl with a number that you set. Edited February 13 by BIGAL 1 Quote
CADtech101 Posted February 21 Author Posted February 21 (edited) Hey all, I finally had an Autodesk tech help me. They found out that it was a display problem with my monitors. One monitor was displaying at 100% and the other two were set at 125%. Weird resolve but that is what it ended up being only the monitor settings. Still thanks for the replies. Edited February 21 by CADtech101 Quote
SLW210 Posted February 24 Posted February 24 Thanks for coming back with the solution! I started to suggest checking the graphics card and driver, didn't think about the monitor scaling, though I have heard of gamers having issues in games. Would it matter if they were all the same or anything other than 100%? 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.