If "Inital Load Behavior" was set to "Startup" the DLL loads and works. However if a new drawing is started in the same session the DLL is lost and has to be reloaded. Is the ADDIN MANAGER the only way to reload? (some of my users do not have VBA installed) A better solution is i...
Very informative.Works like a charm.
Does this only work in VB6 as I only
have VB5 at work?
If not does anyone have an insight on how to do it with VB5?
Is there still a chance of getting a tutorial
on creating a DLL to work from Icad?
I am very new to VB and VBA so any help would be appreciated.
Thanks.
I'll have to eat my words also. The "group 40" problem seems to have been fixed in Icad-4. I was trying it in the older versions (Icad-98 etc.)
Hopefully the bug with the -4 group will be fixed soon.
Until then there is always the work-around.
- Thanks
---RSTRACH
The example that you show ..... (setq sstmp (ssget "X" (list '(-4 . "<AND") '(40 . 15.0) '(0 . "CIRCLE")'(-4 . "AND>")))) does not work on any of my machines either. If you substitute a different group code ... say 60 (SETQ SSTMP (SSGET "X" (LIST '(-...
My problem is worse than I thought. It seems that the problem isn't "group -4" but "group 40" instead. I can't even get the "ssget" lisp example from the help file to work.(shown below) (ssget "X" '((0 . "CIRCLE") (62 . 1) (-4 . "<") (40 . ...
Great tutorial I am having a problem with selection-set filters. It seems that group "-4" is not recognized. Here is a sample that does not work. Dim Ftyp(0 To 2) As Integer Dim Fval(0 To 2) As Variant Dim Filter1 As Variant Dim Filter2 As Variant Ftyp(0) = 0: Fval(0) = "circle" ...