I want to add and subtract numbers on a Delphi form. I have two buttons, one marked "+" and one marked "-".
If you click on the "+" button, obviously, it needs to add a number to a pre-existing value displayed in an edit box. The number in the edit box needs to be incremented by 1 every time you click on "+". If you click on "-", 1 needs to be subtracted from the value in the edit box. The value can NOT go beneath that of the pre-existing value, which is 35 in this case.
So my question is, how does the coding in Delphi look for this, and how do you declare the variables?
+and-buttons? Use aTSpinEditinstead, and set it'sMinValueproperty to 35. It's the way users expect Windows to work with integer values; it also handles keyboard entry in addition to button clicks. – Ken White Dec 29 '11 at 2:03