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…
VFP: Execute latest (NL)

VFP: Execute latest (NL)

Foxpro nieuwste versie programma starten Door jasperdg op 14 Feb 2008 In Visual Foxpro compileer je een programma naar een executable (.exe). Als echter het programma reeds in gebruik is…
VFP: Create Datetime

VFP: Create Datetime

Foxpro convert date and time to DateTime variable By jasperdg on Mar 13, 2008 On the net some silly, unusable answers have been posted where programmers just concatenate DTOC() and…
VFP: Hide mouse cursor

VFP: Hide mouse cursor

Hide Mouse Cursor in Visual Foxpro Today I needed to hide the mouse cursor for a presentation program. Objects in VFP have a MousePointer property with which you can select…
VFP: Correct week number

VFP: Correct week number

Calculate Week number correctly in Visual Foxpro Silly Week() function in Foxpro doesn't work like it should! The year 2009 was very long... So it had a week 53. I…
VFP: Webpage to file

VFP: Webpage to file

Read web content to a file A Visual Foxpro function to read a web page's content into a (cached) file. UrlToFile.prg LPARAMETERS tcRemote * URL reader from Fox Wiki site:…
VFP: Fetch XML feed

VFP: Fetch XML feed

Interpreting XML Feed in Visual Foxpro Looking for ways to interpret XML files I stumbled on this article at the foxite.com forum. This was still way too difficult in my…
VFP: Progress bar

VFP: Progress bar

VFP Progress bar using foundation class Using the foundation class you can have a progress bar in no time. Hardest part is to locate the FFC folder, but most of…
VFP: Find IP by name

VFP: Find IP by name

VfpNameLookup For my network checks I want to ping some computers to see if they're still active on my network. But before that, I have to lookup the IP numbers…