Bits and pieces

Bits and pieces

Stuff I collect because it's interesting, but has to be organized. Script to add mobile usage to the body class (Wordpress) <script type="text/javascript"> if(navigator.userAgent.match(/(Android|iPod|iPhone|iPad|BlackBerry|IEMobile|Opera Mini)/)) { document.body.className += " using-mobile-browser…
Websites I like

Websites I like

Wayback Machine: Find archived versions of web pages. Very useful if pages are lost! https://web.archive.org/ Dutch vehicle registration lookup. See all kind of gathered info for any license. https://ovi.rdw.nl/Bright TV.…
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…