zeke79
Petroleum
- Jan 14, 2003
- 16
Ok guys I wrote a startup routine to open the properties dialog box everytime autocad is started. Now i want to get rid of it and cannot. I delete the acad.lsp file that the startup routine was located in but it still loads everytime autcad starts. I have tried appending the startup to no avail. I am running a network version of autocad 2002 on a windows 2000 professional operating system. My startup routines are as listed below:
This loads the properties dialog.
(defun s::startup ()
(command "properties"
)
This file attemps to append it and close the properties dialog.
(defun-q mystartup (/)
(if (> (getvar "opmstate" 0)
(command ".propertiesclose")
)
(setq s::startup (append s::startup mystartup))
If there are any system variable or anything i can reset to make this go away it would be wonderful. I appreciate any help.
This loads the properties dialog.
(defun s::startup ()
(command "properties"
)
This file attemps to append it and close the properties dialog.
(defun-q mystartup (/)
(if (> (getvar "opmstate" 0)
(command ".propertiesclose")
)
(setq s::startup (append s::startup mystartup))
If there are any system variable or anything i can reset to make this go away it would be wonderful. I appreciate any help.