FoxCast Event - Getting the most out of IntelliSense
Another great Foxcast event on "Getting the most out of IntelliSense" on Thursday, April 21 at 7:00 pm Eastern by Visual FoxPro MVP Andy Kramek.
About Programming, Visual FoxPro, .NET.
Another great Foxcast event on "Getting the most out of IntelliSense" on Thursday, April 21 at 7:00 pm Eastern by Visual FoxPro MVP Andy Kramek.
Hi, everybody.To view the complete thread and reply, please visit:
Last Friday I presented a session on TDD at Microsoft Argentina, using nUnit and ReSharper. There were about 100 people there, and when I arrived to the slide on Unit Testing tools, where I listed tools for several platforms:
jUnit for Java
cppUnit for C++
nUnit for .NET
vbUnit for VB6
FoxUnit for Visual FoxPro
many people opened their eyes wide seeing VFP in the list. 8-)
As usual, one of the guys asked me if FoxPro was still around, and everybody laughed when I told them that it was alive and kicking, and the really weird on this list was the VB6 tools.
Aren't these moments great?
Martín Salías
Buenos Aires, Argentina
Microsoft MVP - www.Salias.com.ar
An upcoming FoxCast.org Event - Extending the VFP 9 Reporting System at Run-Time is schduled to be lived on March 21, 2005 at 7:00 pm Eastern, presented by Doug Hennig of Stonefield Systems Group Inc. and one of the authors What's New in Nine: Visual FoxPro's Latest Hits.
Robert Scoble is sitting on the the red couch working on his Tablet PC while wearing the limited edition navy blue Visual FoxPro 9.0 polo shirt.
A press announcement has been released called Developers Report on Power, Productivity and Extensibility of New Visual FoxPro 9.0
Most of the time, we need hook(s) to allow custom program to be run before/after certain process. There are many ways to accomplish it in VFP, ex. add-in manager (as class browser does), EXECSCRIPT() to run code stored in memo field or external app.
IF FILE("premyprcs.app")The downside of doing this is we can't return value from external .app to report status. The workaround is, pass an additional parameter by reference and assign the return value to it within the external .app.
DO ("premyprcs") WITH para1, para2, ...
ENDIF