TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: togores on March 27, 2021, 12:21:14 PM

Title: VS Code book, AutoCAD 2022 edition.
Post by: togores on March 27, 2021, 12:21:14 PM
A new edition of my book AutoCAD 2021 VS Code Update: for AutoCAD Expert’s Visual LISP is now available at AMAZON. It is the Release 2022 Edition, which is updated to VS Code version 1.54 and the AutoCAD AutoLISP Extension version 1.4.0.

For the Paperback edition: https://www.amazon.com/dp/B0915BFNJZ (https://www.amazon.com/dp/B0915BFNJZ) and for the Kindle edition: https://www.amazon.com/dp/B0915CCQYS (https://www.amazon.com/dp/B0915CCQYS)

I hope this will help with the transition to this new programming environment.
Title: Re: VS Code book, AutoCAD 2022 edition.
Post by: togores on March 27, 2021, 04:52:57 PM
You test your-programs.Lisp inside BrisCad?

No.
Title: Re: VS Code book, AutoCAD 2022 edition.
Post by: kdub_nz on March 27, 2021, 05:59:49 PM
A new edition of my book AutoCAD 2021 VS Code Update: for AutoCAD Expert’s Visual LISP is now available at AMAZON.
<<  >>
I hope this will help with the transition to this new programming environment.

Thanks Reinaldo
Title: Re: VS Code book, AutoCAD 2022 edition.
Post by: Rustabout on April 01, 2021, 10:56:50 PM
I'm wondering if the newest version of the VS Code extension supports DCL?
Title: Re: VS Code book, AutoCAD 2022 edition.
Post by: togores on April 03, 2021, 12:25:30 PM
It supports editing DCL files with Intellisense and syntax coloring. It does not support automatic formatting or dcl preview that is available in VLISP.
Title: Re: VS Code book, AutoCAD 2022 edition.
Post by: BIGAL on April 03, 2021, 07:07:36 PM
You can use (term_dialog) when testing dcl's this example uses a wait timer function then closes.


(wait w)(term_dialog)(if dcl-id (unload_dialog dcl-id))(if (and dcl-fn (findfile dcl-fn))(vl-file-delete dcl-fn))