Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/25/2021 in all areas

  1. If you somehow got the impression I'm not impressed or thankfull for all of David's work , you're wrong. So let me rephrase : social media , David good . David, gives us a platform that doesn't care about race , borders , religion , IQ or whatever , just all people trying to help each other.
    3 points
  2. I beg to differ with you. CADTutor is thriving because of the perseverance, dedication and vision of David Watson who deserves our thanks. So... "Thank you" David for all that you have done.
    3 points
  3. Thanks @Lee Mac good to have the feedback - glad it feels more responsive. I think the developers have been trying to streamline the codebase and it seems they've been successful, despite adding new features.
    1 point
  4. Thank you for all your continued work in keeping this place online David, it is tremendously appreciated - the forum feels far more responsive following the upgrade!
    1 point
  5. Maybe what he meant and didn't explain was something like this. ;;; Delete all the texts with the string "0.0:" (defun c:fsc (/ i str ss) (if (setq ss (ssget "_X" (list (cons 0 "*TEXT") (cons 1 (strcat "*" "0.0:" "*")) (cons 410 (getvar 'ctab))))) (progn (setq i -1) (repeat (sslength ss) (entdel (ssname ss (setq i (1+ i)))) ) ) ) (princ) )
    1 point
  6. maybe like this : [code] (defun C:FSC (/ str ss) (setq str (getstring "\nYour [full or partial] string content to search for: ")) (if (setq ss (ssget "_X" (list (cons 0 "*TEXT") (cons 1 (strcat "*" str "*")) (cons 410 (getvar 'ctab))))) (progn (setq i -1) (repeat (sslength ss) (entdel (ssname ss (setq i (1+ i)))))))) ;;; Delete EVERY text entity (defun C:FSC2 (/ ss) (if (setq ss (ssget "_X" (list (cons 0 "*TEXT") (cons 410 (getvar 'ctab))))) (progn (setq i -1) (repeat (sslength ss) (entdel (ssname ss (setq i (1+ i)))))))) [/code]
    1 point
  7. Thanx for all your excellent work!
    1 point
  8. The upgrade has completed successfully, and the forum is open again. You will notice quite a few diferences in the user interface but I've tried to keep our theme as close to the previous version as possible. As usual, keep an eagle eye out for anything that looks unusual, and let me know in this thread if you spot anything that requires my attention. Other than that, enjoy the new version of the CADTutor forum
    1 point
×
×
  • Create New...