Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ssget doesn't seems to work :[

Status
Not open for further replies.

lispino

Technical User
Feb 8, 2004
8
PT
I need to send all the hatch to the back
and was triyng to use this simple lisp

(setq x_hatch (ssget "X" '((0."hatch"))))
(command "draworder" x_hatch "" "b")

But it shows the message "bad SSGET list"
can anyone help ??
 
Lispino,

Try this:

(setq x_hatch (ssget "X" '((0 . "HATCH"))))

Note the spaces between the: 0, ., and "HATCH".

HTH
Todd
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top