Are there ang good tutorials on using the vlide debugging tools.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I found this on here but are there other good video tutorials on how to use the vlide editor to debug your code?
https://www.youtube.com/watch?v=cBTQ0uHaI4Y
I have gotten two errors while trying to debug manually, but I could use some extra help.
One error was: ; error: bad argument type: streamp nil
bad argument type: streamp <value> A function requiring a file descriptor argument has been passed an argument of incorrect data type with the value noted in the error message. Usually a result of passing the close AutoLISP function a null or invalid argument.
Then while debugging this error i recieved this second error: bad argument type: fixnump: nil
bad argument type: fixnump: <value> A function requiring an integer argument has been passed an argument of incorrect data type with the value noted in the error message.
The problem is i dont know where the error is occurring. Is there a good tutorial that shows you how to pinpoint the error such as setting breakpoint on error & how to go about doing this?
I have two lisp routines that are working together so I'm not totally sure which file is causing the error. Someone showed me the trick of setting a variable throughout the code & then typing ! & then the variable name to see what it finally gets set 2 & it looks like now it is getting through the first routine & getting hung up on the second routine but I'm not sure why it is expecting an integer argument. I would post the files, but its quite a bit of code.