Aug 13, 2003 #1 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
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
Aug 13, 2003 #2 badukist Programmer Jun 26, 2003 146 RO They are not native, are implemented via Intellisense. Check Intellisense manager -> Advanced -> Custom properties Upvote 0 Downvote
They are not native, are implemented via Intellisense. Check Intellisense manager -> Advanced -> Custom properties
Aug 13, 2003 Thread starter #3 TheSofty Programmer Jul 8, 2003 35 IT OK. Thanks Thesofty Upvote 0 Downvote
Aug 13, 2003 #4 rgbean Programmer Nov 9, 2000 5,707 US Thesofty, Also understand, that while you can type: Code: aa+=2 it will immediately be expanded to the "equivalent": Code: aa = aa + 2 Rick Upvote 0 Downvote
Thesofty, Also understand, that while you can type: Code: aa+=2 it will immediately be expanded to the "equivalent": Code: aa = aa + 2 Rick