Author Topic: error message when running lisp  (Read 8299 times)

0 Members and 1 Guest are viewing this topic.

ELOQUINTET

  • Guest
error message when running lisp
« on: November 04, 2004, 09:08:39 AM »
hey i've been getting this error message when i try to run my lisps does anyone know why and how i could fix it? seems to happen in every drawing i've tried so far
 :twisted:

Command: PLOTTABS ; error: ActiveX Server returned an error: Error loading type
library/DLL

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
error message when running lisp
« Reply #1 on: November 04, 2004, 10:08:52 AM »
ActiveX is attempting to load a dll or tlb, but for some reason it is not found. It can usually be attributed to only a couple of things ...
The tlb or dll was moved or deleted
The path to the tlb or dll is wrong in the VLisp proggie.
The tlb has not been registered or has been unregistered on your system.

To fix those problems...

1) Verify the file is there
2) Verify the path to the file is correct in the code
3) Use regsrv32 to register the DLL as a service
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

ELOQUINTET

  • Guest
error message when running lisp
« Reply #2 on: November 04, 2004, 10:23:19 AM »
1) verify what file is there, the lisp?
2) path to what file, activex?
3) register dll as a service???

sorry keith this is all going right over my head

ELOQUINTET

  • Guest
error message when running lisp
« Reply #3 on: November 04, 2004, 10:48:26 AM »
i did a search and found mant tlb files and was searching through help but can't figure it out. trying to think if it was something i did yesterday that caused this and nothing really comes to mind.

ELOQUINTET

  • Guest
error message when running lisp
« Reply #4 on: November 04, 2004, 10:50:47 AM »
actually on second thought it seemed to start happening when i was editing my cad drawing for the nostromo which was done in 2005 and i'm working with adt 3.3. could this be the culprit i don't really know?

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
error message when running lisp
« Reply #5 on: November 04, 2004, 10:52:54 AM »
I cannot help you any more than that because I don't know the particulars either. You would have to post the code.

I said it was "usually" ... so I can't say for sure...
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
error message when running lisp
« Reply #6 on: November 04, 2004, 10:54:18 AM »
Could be the activeX com module is not loaded ...

Try typing

(vl-load-com)

on the command line
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

ELOQUINTET

  • Guest
error message when running lisp
« Reply #7 on: November 04, 2004, 11:30:25 AM »
damn this is annoying i can't use my favorite 2 lisps plottabs and stretch by layer names. i need to figure out what happened

daron

  • Guest
error message when running lisp
« Reply #8 on: November 04, 2004, 11:31:46 AM »
I was going to suggest that.

ELOQUINTET

  • Guest
error message when running lisp
« Reply #9 on: November 04, 2004, 11:39:23 AM »
yeah if i knew where to begin i would. just doing some troubleshooting to try to isolate it. the lisp to change objects' color to bylar doesn't work either. i have taken my dimension reactor which has caused problems in the past out but that doesn't seem to be it. i'll keep tryin i suppose  :cry:

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
error message when running lisp
« Reply #10 on: November 04, 2004, 11:43:11 AM »
Quote from: Keith
Could be the activeX com module is not loaded ...

Try typing

(vl-load-com)

on the command line

DAN
did you try this?
What happend when you entered it?
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

ELOQUINTET

  • Guest
error message when running lisp
« Reply #11 on: November 04, 2004, 11:46:58 AM »
nothing happened cab  :?

ELOQUINTET

  • Guest
error message when running lisp
« Reply #12 on: November 04, 2004, 11:48:26 AM »
when i run plottabs the dialogue flashes real quick then disappears if that gives any indication?

ELOQUINTET

  • Guest
error message when running lisp
« Reply #13 on: November 04, 2004, 11:50:16 AM »
what type library/DLL is it looking for?

ELOQUINTET

  • Guest
error message when running lisp
« Reply #14 on: November 05, 2004, 02:08:16 PM »
still haven't been able to solve the mystery error. anybody have anymore advice? keith how do i do the first things you told me to do

Quote
1) Verify the file is there
2) Verify the path to the file is correct in the code
3) Use regsrv32 to register the DLL as a service