ReMark 发表于 2022-7-5 20:22:37

Where's the banging head smiley?
 
It's deja vu all over again.
 
We may have to bang on the head of the person in question.Gentlemen...grab your hammers.It's head bangin time!

ReMark 发表于 2022-7-5 20:26:49

bala: You owe the man (Alan) his props and a really big apology dude!Then someone should kick your gluteus maximus back to where it came from, pronto, just because you thought you could get away with it.Shame on you.

alanjt 发表于 2022-7-5 20:30:15

Let's compare...
 

;;; ------------------------------------------------------------------------;;;    SelectEverythingTouching.lsp v1.0;;;;;;    Copyright© 03.06.10;;;    Alan J. Thompson (alanjt);;;;;;    Permission to use, copy, modify, and distribute this software;;;    for any purpose and without fee is hereby granted, provided;;;    that the above copyright notice appears in all copies and;;;    that both that copyright notice and the limited warranty and;;;    restricted rights notice below appear in all supporting;;;    documentation.;;;;;;    The following program(s) are provided "as is" and with all faults.;;;    Alan J. Thompson DOES NOT warrant that the operation of the program(s);;;    will be uninterrupted and/or error free.;;;;;;    Allows user to select all object(s) touching selected object(s).;;;;;;    Revision History:;;;;;; ------------------------------------------------------------------------(defun c:SET (/) (c:SelectEverythingTouching))(defun c:SelectEverythingTouching (/ *error* #SS #P1 #P2 #Temp #Add #Num);;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SUBROUTINES ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; error handler (defun *error* (#Message)   (and #Message      (not (wcmatch (strcase #Message) "*BREAK*,*CANCEL*,*QUIT*"))      (princ (strcat "\nError: " #Message))   ) ;_ and ) ;_ defun;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MAIN ROUTINE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (vl-load-com) (cond   ((setq #SS (ssget))    (or *AcadDoc* (setq *AcadDoc* (vla-get-activedocument (vlax-get-acad-object))))    (setq #Add (ssadd))    (vlax-for x (setq #SS (vla-get-activeselectionset *AcadDoc*))      (vla-getboundingbox x '#P1 '#P2)      (setq #P1 (vlax-safearray->list #P1)            #P2 (vlax-safearray->list #P2)      ) ;_ setq      (and (setq #Temp (ssget "_C"                              (trans (list (car #P1) (cadr #P2) 0.) 0 1)                              (trans (list (car #P2) (cadr #P1) 0.) 0 1)                     ) ;_ ssget         ) ;_ setq         (repeat (setq #Num (sslength #Temp))             (if (vlax-invoke                   x                   'IntersectWith                   (vlax-ename->vla-object (ssname #Temp (setq #Num (1- #Num))))                   acExtendNone               ) ;_ vlax-invoke               (ssadd (ssname #Temp #Num) #Add)               T             ) ;_ if         ) ;_ repeat         (ssadd (vlax-vla-object->ename x) #Add)      ) ;_ and    ) ;_ vlax-for    (vla-delete #SS)    (sssetfirst nil #Add)   ) ) ;_ cond (princ)) ;_ defun

Cad64 发表于 2022-7-5 20:33:09

 
At this point, I feel like just banning him for all the trouble he'scaused, but I would really like to hear his explanation about why hestripped out the header on the file you gave him which clearly stateswhat he is allowed to do with your code.
 
I would also like to hear an apology for the disrespect he's shown tothe members of this forum who have gone far out of their way to helphim.

alanjt 发表于 2022-7-5 20:36:31

Between this guy and digger, it's as if some other forum hired these guys to pi$s everyone off enough to force them to leave.

ReMark 发表于 2022-7-5 20:39:41

I would hope that other AutoCAD-related Help sites would not encourage or condone such behavior.I think this guy should be banned at both sites but it is not up to me obviously.

cam-nav 发表于 2022-7-5 20:43:49

Whoa, I guess I'm not going to find what I wanted..
 
I say, ban him, if it already hasn't been done in the last 5 years.
页: 1 [2]
查看完整版本: Crossing Line Selction & Break