Programmer since 1984. Specialties: AutoLISP (Lisp under AutoCAD)Delphi / Java / Oracle / MsSQL
- Interests
- I play harmonica and like all sorts of music kikds but prefer french folk music
- PC Specs
- Home network (peer to peer) Windows XP / Vista / 7 and Linux. Dream of buying a Mac but am affraid I'd…
5 Posted Topics
Re: My first observation is that you should first query to see if « NUMBERINSTOCK » is equal or greater than the value entered in the « RemoveTextField1 » box ... Otherwise you might set « NUMBERINSTOCK » to a negative value. Second, you should do a bit of validation on … | |
Re: I used to program PASCAL on PDP-11 and VAX but the language I've used the most (and still am using) is LISP in the AutoCAD environment.... | |
Re: Hello everyone, Reading this post I note two areas where I can add my own opinion and (if possible) my programmer's experience. First, when using the Assign(...) and Reset(....) procedures, one should prevent program crashes when the expected file is not there or any I/O error occurs. In TurboPascal and … | |
Re: You should look into using a database to save this kind of data since text files are harder and take longer to modify.... | |
Re: I would have suggested the following: [code=lisp] (defun enlarge ( x ) (cond ( (< x 0) (- x 1) ) ( (> x 0) (+ x 1) ) ( T nil ) ) ) [/code] |
The End.