Categorie: Programmeren

Software voor programmeurs

Handige freeware software voor programmeurs: Notepad++ yEd Eclipse more »

Ping from Visual Foxpro

Ping an IP number and return wether it has responded.* Ping function* (C)2011 Jasper de Graaf for J.A. Software* Source: LPARAMETERS tcIpNumber && IP number to ping* No parameter, wrong type or empty IF PCOUNT()=0 OR !VARTYPE(tcIp… more »

Name lookup in Visual Foxpro using NSlookup

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 for the network names. Found this TekTips article on NSlookup from VFP6 and built my own function around th… more »

Using the foundation Progress Bar/ Thermometer

Progressbar with VFP Foundation ClassesFree after Carl Warner's article at http://www.vfug.org/Newsletters/ThermometerBar.htm more »

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 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

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)

Better Week() function for Foxpro because default Week() function returns wrong week numbers. more »