An online conference presenting the latest in Microsoft Visual FoxPro development techniques
Thursday, May 6, 2021
"Level" shows the expected level for attendees for a session. Click a speaker's name to see their bio.
Presenter: Rick Borup
Level: All levels
Note: if you cannot access YouTube, you can watch the video here
Data visualization is a powerful tool for turning raw data into useful information. Because vision is the dominant human perception, an effective visual presentation of data can quickly convey meaning that might otherwise be obscured or difficult to ferret out. Data visualization is much more than just pie charts and bar graphs, and is just as relevant for small data as it is for big data. Come to this session to learn tools and techniques for turning the data from your applications into meaningful information for your users.
You will learn:
Prerequisites: None
Presenter: Rick Schummer
Level: All levels
Note: if you cannot access YouTube, you can watch the video here
IntelliSense at DevCon and recall the chills it sent up my spine because I knew this new feature would instantly make me more productive. This single VFP feature has been heralded as "the greatest thing since sliced bread" and is, at least in my mind, the single biggest productivity boost to developers. Yet to this day I feel I under-use it and wish I would take the time to make things better for myself.
This session reveals how IntelliSense works using scripts and settings, and how it can be implemented, using real world examples authored by numerous Visual FoxPro developers. The implementation will be demonstrated and analyzed with the number one goal of inspiring you to boost your own productivity in the VFP IDE, and later to share those items that might help other developers in the FoxPro community.
Discover the details needed to take advantage of Quick Info, Member Lists, Command and Keyword expansion, Types, and MRU Lists. Techniques include leveraging the FoxCode object, text merge, and more. If time allows, we will explore other IntelliSense implementations and extensions like MY, IntellisenseX, and ISX.
You will learn:
Prerequisites: Desire to be more productive in the VFP IDE, and basic understanding of IntelliSense inside VFP.
Presenter: Doug Hennig
Level: All levels
Note: if you cannot access YouTube, you can watch the video here
The Project Manager is one of the oldest tools built into VFP, and it's been showing its age for a long time. For example, it doesn't provide integration with modern distributed version control systems (DVCS) such as Mercurial and Git, it doesn't have a way to filter or organize the list of items, and it can only work with one project at a time.
Project Explorer is a VFPX project that replaces the Project Manager with a modern interface and modern capabilities. It has all of the features of the Project Manager but adds integration with DVCS (including built-in support for FoxBin2PRG and optional auto-commit after changes), supports multiple projects within a "solution", allows you to organize your items by keyword or other criteria, and has support for easy "auto-registering" addins that can customize the appearance and behavior of the tool.
This session introduces Project Explorer and shows how it can make you more productive than working with the Project Manager. This session starts by going through the interface and functionality of Project Explorer, then looks at its internals to see how it's designed, and finally shows how to write addins that extend the functionality or customize the user interface.
You will learn:
Prerequisites: Experience using the VFP Project Manager
Presenter: Jody L. Meyer
Level: Beginner
Note: if you cannot access YouTube, you can watch the video here
I am a VFP developer through and through. But... times are changing and I have found myself writing VFP front-ends to SQL Server back-ends. There have been times where the passed-through T-SQL code runs extremely fast and other times... not so much. Why?
Well, there are tools such as the SQL Server Execution Plan to help you resolve questions like speed issues. SQL Server creates and saves these Execution Plans for future use. SQL Server Management Studio gives us a way to look at these Execution Plans graphically and save them so we can share with other developers. In doing so, we can then work together to come up with the best solution for faster speed.
So, do you want to answer questions like:
Most SQL Server developers and administrators will tell you, “It depends”. Execution Plans show you what's going on behind the scenes in SQL Server. The plans can provide you with a wealth of information on how SQL Server is executing your queries, including: which indexes are getting used or not used, how the data is being retrieved and joined, how aggregations in GROUP BY queries are put together, anticipated load, and the estimated cost of all the operations.
Execution Plans are a great addition to the tool belt of a developer. Understanding what they are telling you goes a long way to answering many of those why questions and leads you to better performance.
You will learn:
Prerequisites: Some SQL Server experience
Presenter: Tuvia Vinitsky
Level: All levels
Note: if you cannot access YouTube, you can watch the video here
Remote Desktop Protocol (RDP) / Terminal Services has become a popular option for moving VFP applications to the "cloud". RDP's very thin client and Windows standardization make it an excellent platform, but running VFP applications over RDP requires some tweaks to the server and to the VFP application. In this session, we will review server side issues such as licensing and printing, and then VFP issues such as deployment, memory management, UI issues, security, and OLE access of outside programs such as MS Word.
You will learn:
Prerequisites: Basic VFP knowledge
Presenter: Tamar E. Granor
Level: Intermediate
Note: if you cannot access YouTube, you can watch the video here
In many applications, you need to take nice, normalized data and turn it "sideways," using the values in one or more columns to specify columns in the result. Most often, the process also involves aggregating data for each of those values. In Visual FoxPro, the result is called a cross-tab; SQL Server calls it a pivot. Once you've created a cross-tab or pivot, reporting can be difficult because the result may have many, many columns.
In this session, we'll see how to generate cross-tabs and pivots, as well as how to report on them, including exporting to Excel and creating graphs of the results.
You will learn:
Prerequisites: Some familiarity with SQL queries