Categorie: Programmeren
Interpreting XML Feed in Visual Foxpro
By jasperdg on Mar 26, 2010 | In Programmeren
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 opinion.
So I used the methods and created some lean code that does what I want in far less code.
This piece of progra… more »
Read web content to a file
By jasperdg on Mar 25, 2010 | In Computers, Programmeren
A function to read a webpage's content into a (cached) file.
UrlToFile.prg
LPARAMETERS tcRemote
* URL reader from Fox Wiki site: http://fox.wikis.com/wc.dll?Wiki~ReadUrl~VFP
* Accept URL
* Return cached filename
* Note: file gets deleted after fi… more »
Calculate Week number correctly in Foxpro (Visual Foxpro)
By jasperdg on Dec 24, 2009 | In Programmeren, Software
Better Week() function for Foxpro because default Week() function returns wrong week numbers. more »
VFP: Make sure a procedure file has been opened
By jasperdg on Oct 3, 2008 | In Programmeren
Simple VFP solution to make sure a procedure file has been "loaded". more »
Foxpro return focus to previous active program
By jasperdg on Sep 2, 2008 | In Programmeren
:oops: Update: This doesn't work. Only on my development system with VFP 9.0 running :oops:
Today I created a popup screen to identify the calling party to our staff. Downside was that their work on hand was interupted because the popup captured the f… more »
Een betere pagina refresh (verversing)
Door jasperdg opJul 1, 2008 | InComputers, Programmeren, Software
Je kan een internet pagina zichzelf laten verversen met een meta http-equiv refresh als volgt:
<meta http-equiv="Refresh" content="20" URL="Pagina.html">
Hiermee wordt de bezoeker na 20 secondes doorgestuurd naar Pagina.html.
Als je een bepaalde p… more »
Hide Mouse Cursor in Visual Foxpro (VFP)
Door jasperdg opJun 12, 2008 | InProgrammeren, Software
Today I needed to hide the mouse cursor for a presentation program.
Objects in VFP have a MousePointer property with which you can select the appearance of the cursor. 0 for default Windows behaviour, 1 to 17 for specific shapes like arrow (1) or hourgl… more »
