Has anyone else had there profile menu disappear? I have tried unistalling and reinstalling the programs and nothing seems to help. Occasionally the Profile menu will appear then disappear again??? Any help will be appreciated.
Thanks
|
Has anyone else had there profile menu disappear? I have tried unistalling and reinstalling the programs and nothing seems to help. Occasionally the Profile menu will appear then disappear again??? Any help will be appreciated.
Thanks
Is the "civildesign.cui" becoming corrupt, or is the Profile menu just not showing up in the Civil workspace?
If the latter, are you trying to load more than 24 pull-down menus at one time? You can, but only 24 are remembered between AutoCAD sessions.
You can solve this by defining a workspace and then restoring that workspace when needed.
If the Profile menu is simply being dropped from the workspace without you doing it, then you have other problems.....
R.K. McSwain | CAD Panacea |
If the problem is caused by the 24-item limit in menus, you can get around that by putting the following code in your ACAD.LSP file:
This automatically refreshes your last-active workspace each time you startup Land Desktop, which should cause the extra menu items to appear on the screen.Code:(defun-q MYSTARTUP () (command "WSCURRENT" "") ) ;_ defun-q (setq S::STARTUP (append S::STARTUP MYSTARTUP))