Thanks so much for this. I'm a longtime CAD user, and for an equally long time I have been hesitant to introduce LISP files into my workflow, because I have no programming experience and I guess that made me nervous. Thanks to your tutorial I realize now how easy and 'clean'/'safe' these are to load into a drawing, and they require no programming background at all.
Hello sir I have created customized block via through CUI in auto CAD I want to provide shortcut command that customized block For eg: CO for copy I want to provide PPP for my block
Sir, I need a program to show Physical progress at site on drawing linked with data like number of foundations / wall / road completed. Kindly suggest if you can provide it.
What happens if i cant open the LISP editor? I receive an error, "Cannot invoke (command) from *error* without prior call to (*push-error-using-command*). Converting (command) calls to (command-s) is recommended." Please advise?
Thanks so much for this. I'm a longtime CAD user, and for an equally long time I have been hesitant to introduce LISP files into my workflow, because I have no programming experience and I guess that made me nervous. Thanks to your tutorial I realize now how easy and 'clean'/'safe' these are to load into a drawing, and they require no programming background at all.
excellent video for lisp learner including me...thnk you
Pleasure to watch the concept sir.
Hello, I am looking for a lisp program for bricscad to create a rectangle with dimensions. Have you made any such video yet? Thanks in advance
Hello sir
I have created customized block via through CUI in auto CAD
I want to provide shortcut command that customized block
For eg: CO for copy
I want to provide PPP for my block
Thanks in advance
wow incredible tech
Is autoLISP available in advance steel?
Dear sir,
your video very helpfull.
Sir,
I need contour volume quantity lips.
Can you make a video for main function with sub function knit working
Thanks a lot!
You're welcome 😊
Sir, I need a program to show Physical progress at site on drawing linked with data like number of foundations / wall / road completed. Kindly suggest if you can provide it.
Programming for printing particular rectangle
nice work.
please make and upload the lisp for road cross section.
how can we draw the road cross section in autocad with lisp
Dear Sir, I want to learn LISPing. Please provide your details to contact .
How to write new commend in lisp sir
ruclips.net/p/PLDAB879C3A94AFF70
How to get road x section software. PLZ send details. Sir
What happens if i cant open the LISP editor?
I receive an error,
"Cannot invoke (command) from *error* without prior call to (*push-error-using-command*).
Converting (command) calls to (command-s) is recommended."
Please advise?
Hi sir. May I know the good book to understand that concpet
www.caddsoftsolutions.com/AutoLISP-VisualLISP-DCL-Books.htm
Should I know C## for this?
No
Can you make lisp command for me i am help less in internet please help me
Please create a lisp for road cross section
Can you just copy and paste the code?
THANKS I WANT TO LEARN
Geeky!!! 😍
please show railway curve lips file
please help
the following programme not run
;cord-ldr.lsp
; x,y Coordinates on Leader Lines
(defun C:CR (/ PNT1 P1X P1Y STDY DY COORD PTXT)
(setq PNT1 (getpoint
"
Pick coordinate point: "))
(setq P1X (car pnt1)) ;x coord
(setq P1Y (cadr pnt1)) ;y coord
(setq STDX (rtos(/(nth (P1X 1000) 2 3)))
(setq STDY (rtos(/(nth (P1Y 1000) 2 3)))
(setq COORD (strcat "E" STDX)
COORD1(strcat "N" STDY))
(setq PTXT (getpoint PNT1
"
Pick text location: "))
(command "LEADER" PNT1 PTXT ""
COORD COORD1 "" "")
(princ)) ; end
(ALERT "IT WILL PRINT THE X,Y CO-ORDINATES OF A POINT..., C:CR")