Outlook.Application

Using the Outlook.Application object to read e-mails from Visual Foxpro. Trying to read e-mail using POP3 or IMAP proved to be hell to me. Documentation is not present or hardly…

Foxpro ReturnObject

Function to prevent problems during object creation to crash your program. When problems arise, your program might be unable to continue, but at least you can show the user what…
Foxpro and Excel

Foxpro and Excel

It is very possible to automate spreadsheets from Visual Foxpro using VBA/ COM automation. Here I wil document the parts I need. Connecting to Excel oExcel = CreateObject("Excel.Application") if vartype(oExcel)…
VFP: Create header files

VFP: Create header files

Header files (.H) contain declarations and sometimes code. Software uses codes for specific actions or settings, but these codes are illegible for most humans. The header file for Microsoft Word…
VFP: Check already running (NL)

VFP: Check already running (NL)

Draait een programma al? Door jasperdg op 16 Jul 2007 Het is soms niet handig als je een programma start terwijl dit al draait. Vooral bij programma's die bewerkingen uitvoeren…