Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #20.4K
~2K People Reached
About Me

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…
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for cc

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 …

Member Avatar for Ghost_Buster
0
759
Member Avatar for progcomputeach

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....

Member Avatar for MeSam0804
0
151
Member Avatar for Holali

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 …

Member Avatar for belthazor
0
784
Member Avatar for Infidus

You should look into using a database to save this kind of data since text files are harder and take longer to modify....

Member Avatar for Wolfgan
0
91
Member Avatar for TotoTitus

I would have suggested the following: [code=lisp] (defun enlarge ( x ) (cond ( (< x 0) (- x 1) ) ( (> x 0) (+ x 1) ) ( T nil ) ) ) [/code]

Member Avatar for Ghost_Buster
0
116

The End.