Virtual FoxFest 2022 Coming up

In October 2022, Virtual FoxFest returns and if past events are any indication, there should be a lot of great sessions for FoxPro developers who want to ensure their skills are ready for what’s happening in the development world. From supporting legacy applications to moving existing applications into the web-based world, Tamar, Doug and Rick … Read more

Virtual FoxFest – A New Way to Conference

If you haven’t been keeping up with the news around the Fox community, the Southwest Fox conference has gone digital now showing up as Virtual FoxFest.  At $49, it’s a steal and a great way to learn some new ideas and get inspired. While the reasoning for this change is fairly obvious with the year of COVID … Read more

SwFox 2012 Ceil Silver Ambassador is Jun Tangunan!

Doug just noted that Jun Tangunan will be the 2012 Ceil Silver Ambassador for this year’s Southwest Fox conference. Jun blogs at sandstorm36.blogspot.ca and has some really cool ideas with his ssClasses for Visual FoxPro, some fun and some more product centred. Congrats Jun and hope to see you in October! FoxPro VFP

VFP Entity Framework 4 Provider

Tom Brothers pointed me to a new project he’s working on:  the successor to his LINQ for VFP work: an VFP entity framework 4.0 provider.  This means using the VFP OLEDB driver, you can easily access FoxPro data in VS 2010 Entity Framework solutions. The project is on Codeplex but the post noted here gives full details. Great job, … Read more

PEM Editor Video Series for VFP

If you haven’t tried out the VFPX PEM Editor, you may want to check out Jordan’s video series here. The PEM Editor replaces the Properties Window, Edit Property/Method, New Property, and New Method, and Document View tools in Visual FoxPro. Sound like a lot? There are 8 videos in all, totaling less than an hour … Read more

Dealing with Font Sizes

Andy Kramek offers some great samples of identifying how long a string can be in a particular font. This is something that every UI designer needs to consider when dealing with screen design. While many VFP developers will use FONTMETRIC and TXTWIDTH, Andy has wrapped it all into a fairly easy function to call. Check … Read more

SQL: Does a Field Exist?

In the FoxPro world, checking to see if a field exists can be done a number of ways: =AFIELDS(la)IF ASCAN(la,”FIELDNAME”)>0 ENDIF or IF TYPE(“FIELDNAME”) = “U” (I’m sure there are lots of other ways especially if you’re already working with a data dictionary tool) In T-SQL, there is no real equivalent however, you can do … Read more

VFPx Showcase: Control Renamer

When speaking about VFPx at last year’s Southwest Fox conference, it became evident that there aren’t a lot of avenues for finding out how to use various pieces of VFPx. So as part of the FoxShow, I’m creating videos designed to showcase VFPx components, starting with the Control Renamer. If you have ever wanted to … Read more