Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Take advantage of Intellisense - VFP7 and VFP8

Status
Not open for further replies.

ramani

Programmer
Mar 15, 2001
4,336
AE
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)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top