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
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

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
766
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
158
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
811
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
102
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
127

The End.