Downloads, tools and utilities

Getting the Most out of IntelliSense presented by Andy Kramek on FoxCast Webinar on 4/21/2005

The FoxPro implementation of Microsoft’s IntelliSense technology was introduced with the release of Version 7.0 and went far beyond the capabilities of other languages. In VFP, IntelliSense is a fully customizable and extensible productivity tool which has been further enhanced in Version 8.0 and Version 9.0. This session, shows how to tap into the IntelliSense engine and how begin to use the extended capabilities of VFP IntelliSense to assist your daily development work.

The runtime features and memberdata extensions added in Version 9.0 have been covered elsewhere (Toni Feltman of F1 Technologies has written about the at run time implementation, and Doug Hennig of Stonefield has covered memberdata extensively) and so these features are not included in this session.

For details of the FoxCast Webinar program (where you can download complete audio-visual presentations by Andy and other well-known speakers) see www.foxcast.org


Implementing Design Patterns in Visual FoxPro as Seen in Frankfurt, Germany 2003

Design Patterns have long been a topic of interest to Visual FoxPro developers, but one of the biggest problems associated with them is that good examples of how and when to use them in Visual FoxPro are hard to find. In this session Andy addresses a number of typical development problems and shows how to implement the relevant Design Pattern to help solve them. Starting with the Bridge, he develops the theme by illustrating the Strategy, Chain of Responsibility, Decorator/Adapter and Wrapper patterns in the context of specific development issues. A paper accompanies the session and samples written using Visual FoxPro illustrate how you can implement these patterns plus the "Mediator" pattern!) in your own work.


I Never Met a Data I Didn't Like as Presented by Marcia G. Akins at Advisor Devcon 2001 and Essential Fox 2004

This session discusses the benefits of data driving your application so that, when circumstances change, you minimize the need for code changes. It doesn’t matter if you are developing desktop, client-server, or distributed applications to run on the world wide web, your application will be more extensible and more maintainable if you data drive its key components. Some processes lend themselves very well to data driving: data import and export are two that leap to mind. This session includes examples of how to data drive both. You will also see how to use metadata to implement strategy and factory patterns, while the final example demonstrates a data driven Lister class that produces HTML on the fly from data in the middle tier. ( Many thanks to Steven Black for his generosity and brilliant work in developing the original Lister, upon which the class in this session is based. )


Creating Graphs in VFP as Presented by Marcia G. Akins at Essential Fox 2002

It has been said that a picture is worth a thousand words. This is especially true when analyzing trends in financial applications. Viewing the data in a graphical format is usually more meaningful than merely reviewing a bunch of numbers in a spreadsheet. In this session, we will explore several mechanisms by which we can generate graphs to be displayed on forms or printed in reports.


How to Put a Combo Box in a Grid as Presented by Marcia G. Akins at GLGDW 2000

This session covers all aspects of using combo boxes inside grids. The combo box is a very useful control when you need to limit the options that a user may select from, but it is not easy to use well in any situation, and inside a grid it sometimes seems to acquire a life of its own. I will show you how to add combo boxes to your grids and how to make them display and behave properly. We will also cover how to use a view as the grid's RecordSource as well as the easiest and most effective way to use an updateable cursor as the grid's RecordSource. The session finishes by showing some really cool things you can do with a combo in a grid.


Office Automation With VFP as Presented by Marcia G. Akins at Advisor Devcon 2002 and GLGDW 2002

Visual FoxPro is a powerful development tool, but it can't do everything on its own. An application may need to send e-mail, display graphs, send form letters, or perform complex calculations. In these cases, you can use Office automation to get results efficiently. In this session, I'll show you how to use Office automation in your VFP application and how to do so as painlessly as possible.


Class Based Data Management as Presented by Andy Kramek at Advisor Devcon 2001

In the modern business environment access to data is crucial for any application, however, there many different databases in common use. Thus a common problem is how to write an application that can access different data sources without requiring different versions (with all the concomitant maintenance issues) of the source code. The Data Classes illustrate how to implement an Application Programming Interface (API) that enables application code to be written without requiring specific references to the data store. The consequence is that a single suite of source code can access data stored in different databases as required.

The attached version of the classes runs under versions of Visual FoxPro from 6.0 (SP5) or later. These classes have been placed in the Public Domain, with no warranty or guarantee of any kind, and are intended only to illustrate a methodology for accessing data. They may be used ‘as is’, or modified, providing original authorship is acknowledged, but the authors accept no responsibility for any use, nor do the authors maintain or support the Public Domain version of these classes in any way.

To find out more about implementing the Data Classes contact us at: admin@tightlinecomputers.com


A Guide to Buffering and Transactions in VFP by Andy Kramek

A White paper that attempts to de-mystify buffering and transactions in VFP. Examples include how to create generic code for saving data and a class for handling update conflicts in such a way that most conflicts can be resolved automatically. The code is usable in VFP V6.0 or later.


Designing a Database as Presented by Andy Kramek at Southwest Fox 2004

In this paper (and accompanying presentation) Andy examines the issues associated with designing a database. This paper has nothing to do with creating tables, or normalizing data, instead it focuses on the larger issues of classifying data, identifying relationships and choosing the correct type of table. An overview of rule placement completes the paper.

No comments:

Post a Comment

Writing better code (Part 1)

Writing better code (Part 1) As we all know, Visual FoxPro provides an extremely rich and varied development environment but sometimes to...