Take advantage of Intellisense: VFP7 / VFP8
If you know C language, you will be aware of var++
A similar feature is available thru intellisense in VFP
In code editor, type and see the following
myVar++ followed by a spacebar. You will see the intellisense do the codeing for you as given below.
myVar = myvar + 1
Now try the following also..
myVar-- {spacebar}
myVar+= {spacebar}
myVar-= {spacebar}
myVar*= {spacebar}
myVar/= {spacebar}
You can take advantage of these.
ramani
(Subramanian.G)
If you know C language, you will be aware of var++
A similar feature is available thru intellisense in VFP
In code editor, type and see the following
myVar++ followed by a spacebar. You will see the intellisense do the codeing for you as given below.
myVar = myvar + 1
Now try the following also..
myVar-- {spacebar}
myVar+= {spacebar}
myVar-= {spacebar}
myVar*= {spacebar}
myVar/= {spacebar}
You can take advantage of these.
ramani
(Subramanian.G)