- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Once again, being a stickler for company standards, I'm trying to get a long mleader note into a LISP routine. However, after providing the requested inputs from the user, the resulting mleader is the leader only and no text. Review of the command line shows the LISP is accepting the inputs and performing the necessary math,. but no text. I hate to ask so soon after my last request, but there seems to be some very smart people on this forum.
(defun c:stmpump ( / ml_txt)
(setq top (getreal "\nWhat is the top or gorund elevation of the pump's wet well?"))
(setq flow (getstring "\nWhat is the flowline elevation of the incoming pipe?"))
(setq ml_txt (strcat "FLYHT NP 3085 SUBMERSIBLE PUMP (OR APPROVED EQUAL)\nAND 45in X 120in CONCRETE BASIN (OR APPROVED EQUAL)\nWITH SOLID H-20 RATED COVER\nT=" (rtos top 2 2) "\n6in PVC FL IN=" flow "\n3in DISCHARGE W/ GATE VALVE FL=" (rtos (- top 3.00) 2 2) "\nBOTTOM=" (rtos (- top 10.00) 2 2) "\n(DUPLEX PUMPS MAY BE INSTALLED AT OWNERS DIRECTION)\n(240v BACKUP GENERATOR OR BATTERY BACKUP WITH\n2 HOUSE MINIMUM RUNTIM IS RECOMMENDED FOR\nEMERGENCY USE DURING POWER FAILURE OR OUTAGE\n(NOTE: PUMP FAILURE MAY RESULT IN PONDING INTO THE\nGARAGE AND BASEMENT)\n(IF GROUND WATER IS ENCOUNTERED, CONTRACTOR TO\n ADJUST 'ON' FLOAT SWITCH TO BE AT OR ABOVE NORMAL\nWATER LEVEL"))
(command "_mleader" pause pause ml_txt)
)
Any help is greatly appreciated. And I am learning each time.
Thank you
Solved! Go to Solution.