"Great customer service. The folks at Novedge were super helpful in navigating a somewhat complicated order including software upgrades and serial numbers in various stages of inactivity. They were friendly and helpful throughout the process.."
Ruben Ruckmark
"Quick & very helpful. We have been using Novedge for years and are very happy with their quick service when we need to make a purchase and excellent support resolving any issues."
Will Woodson
"Scott is the best. He reminds me about subscriptions dates, guides me in the correct direction for updates. He always responds promptly to me. He is literally the reason I continue to work with Novedge and will do so in the future."
Edward Mchugh
"Calvin Lok is “the man”. After my purchase of Sketchup 2021, he called me and provided step-by-step instructions to ease me through difficulties I was having with the setup of my new software."
Mike Borzage
May 08, 2026 2 min read

Sharpening your AutoLISP debugging skills in VLIDE (Visual LISP Editor) dramatically reduces downtime and improves code quality.
(defun c:Demo (/ *error* oldsnap)
(defun *error* (msg)
(if (and msg (not (wcmatch (strcase msg) "*BREAK*,*CANCEL*,*EXIT*")))
(princ (strcat "\nError: " msg)))
(if oldsnap (setvar 'OSMODE oldsnap))
(princ))
(setq oldsnap (getvar 'OSMODE))
(setvar 'OSMODE 0)
;; ... your code here ...
(*error* nil)) (setq res (vl-catch-all-apply 'some-func some-args)) (if (vl-catch-all-error-p res) (princ (strcat "\nCaught: " (vl-catch-all-error-message res))))
(setq f (open "C:/Temp/demo.log" "a")) (write-line (strcat (menucmd "M=$(edtime,0,YYYY-MM-DD HH:MM:SS)") " - step A") f) (close f)
(setq t0 (getvar "MILLISECS")) ;; ... work ... (princ (strcat "\nms: " (itoa (- (getvar "MILLISECS") t0))))
(defun c:MyCmd () (if (not (findfile "mytools.lsp")) (princ)) (load "mytools" -1) (c:MyCmd))
(vlr-remove-all) before re‑running.(gc) to catch lifetime issues early.With disciplined VLIDE use, targeted logging, and defensive error handling, you’ll locate faults faster, ship sturdier routines, and spend more time designing than debugging.
You can find all the AutoCAD products on the NOVEDGE web site at this page.

August 03, 2026 1 min read
Read More
August 03, 2026 1 min read
Read More
August 03, 2026 1 min read
Read MoreSign up to get the latest on sales, new releases and more …