When i load an lisp routine, I lose my "open, save and save as dialouge box. The only way I've found to get them back is to do a system restore. Thanks....Mel
The lisp routine must be setting FILEDIA to 0. You can reset FILEDIA to 1 (typing it on the command line) rather than doing a system restore. And the lisp routine should be modified to reset the FILEDIA after running or loading. Add the line near the end of the lisp file:
(setvar "FILEDIA" 1)
Consult a lisper if you need help on where to add the line.