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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP 8.0: C++ like operators

Status
Not open for further replies.

TheSofty

Programmer
Jul 8, 2003
35
IT
Hi all,

I'm not able to find in the VFP help where the new (as of 7.0?) operators that look like the ones in C++ are described. I mean += etc.

Any hint?

Thanks

Thesofty
 
They are not native, are implemented via Intellisense.

Check Intellisense manager -> Advanced -> Custom properties
 
Thesofty,
Also understand, that while you can type:
Code:
aa+=2
it will immediately be expanded to the "equivalent":
Code:
aa = aa + 2
Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top